65 lines
3.3 KiB
Markdown
65 lines
3.3 KiB
Markdown
EventCore
|
|
=========
|
|
|
|
This is a high-performance native event loop abstraction for D, focused on asynchronous I/O and GUI message integration. The API is callback (delegate) based. For a higher level fiber based abstraction, take a look at [vibe.d](https://vibed.org/).
|
|
|
|
[![DUB Package](https://img.shields.io/dub/v/eventcore.svg)](https://code.dlang.org/packages/eventcore)
|
|
[![Posix Build Status](https://travis-ci.org/vibe-d/eventcore.svg?branch=master)](https://travis-ci.org/vibe-d/eventcore)
|
|
[![Windows Build Status](https://ci.appveyor.com/api/projects/status/1a9r8sypyy9fq2j8/branch/master?svg=true)](https://ci.appveyor.com/project/s-ludwig/eventcore)
|
|
|
|
|
|
Supported drivers and operating systems
|
|
---------------------------------------
|
|
|
|
Driver | Linux | Windows | macOS | FreeBSD | Android | iOS
|
|
---------------------|---------|---------|---------|---------|---------|---------
|
|
SelectEventDriver | yes | yes | yes¹ | yes¹ | — | —
|
|
EpollEventDriver | yes | — | — | — | — | —
|
|
WinAPIEventDriver | — | yes | — | — | — | —
|
|
KqueueEventDriver | — | — | yes¹ | yes¹ | — | —
|
|
LibasyncEventDriver | —¹| —¹| —¹| —¹| — | —
|
|
|
|
¹ planned, but not currenly implemented
|
|
|
|
|
|
Driver development status
|
|
-------------------------
|
|
|
|
Feature | SelectEventDriver | EpollEventDriver | WinAPIEventDriver | KqueueEventDriver
|
|
-----------------|-------------------|------------------|-------------------|------------------
|
|
TCP Sockets | yes | yes | — | yes
|
|
UDP Sockets | yes | yes | — | yes
|
|
USDS | yes | yes | — | yes
|
|
DNS | yes | yes | yes | yes
|
|
Timers | yes | yes | yes | yes
|
|
Events | yes | yes | yes | yes
|
|
Unix Signals | yes² | yes² | — | —
|
|
Files | yes | yes | yes | yes
|
|
UI Integration | yes¹ | yes¹ | yes | yes¹
|
|
File watcher | yes² | yes² | yes | —
|
|
|
|
Feature | LibasyncEventDriver
|
|
-----------------|---------------------
|
|
TCP Sockets | —
|
|
UDP Sockets | —
|
|
USDS | —
|
|
DNS | —
|
|
Timers | —
|
|
Events | —
|
|
Unix Signals | —
|
|
Files | —
|
|
UI Integration | —
|
|
File watcher | —
|
|
|
|
¹ Manually, by adopting the X11 display connection socket
|
|
|
|
² Currently only supported on Linux
|
|
|
|
|
|
### Open questions
|
|
|
|
- Error code reporting
|
|
- Adopting existing file descriptors (done for files)
|
|
- Enqueued writes
|
|
- Use the type system to prohibit passing thread-local handles to foreign threads
|