eventcore/README.md

77 lines
3.4 KiB
Markdown
Raw Normal View History

2016-01-16 14:47:27 +00:00
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/).
2017-01-23 08:06:28 +00:00
[![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)
2016-06-18 05:32:17 +00:00
2016-01-16 14:47:27 +00:00
Supported drivers and operating systems
---------------------------------------
Driver | Linux | Windows | macOS | FreeBSD | Android | iOS
---------------------|---------|---------|---------|---------|---------|---------
2017-01-25 15:14:42 +00:00
SelectEventDriver | yes | yes | yes | yes¹ | — | —
EpollEventDriver | yes | — | — | — | — | —
WinAPIEventDriver | — | yes | — | — | — | —
2017-01-25 15:14:42 +00:00
KqueueEventDriver | — | — | yes | yes¹ | — | —
2017-01-22 20:01:13 +00:00
LibasyncEventDriver | —¹| —¹| —¹| —¹| — | —
2016-06-24 12:22:08 +00:00
¹ planned, but not currenly implemented
2016-01-16 14:47:27 +00:00
Supported compilers
-------------------
The following compilers are tested and supported:
- DMD 2.073.0
- DMD 2.072.2
- DMD 2.071.2
- DMD 2.070.2
- LDC 1.1.0
- LDC 1.0.0
2016-01-16 14:47:27 +00:00
Driver development status
-------------------------
2016-10-19 12:29:18 +00:00
Feature | SelectEventDriver | EpollEventDriver | WinAPIEventDriver | KqueueEventDriver
-----------------|-------------------|------------------|-------------------|------------------
TCP Sockets | yes | yes | yes | yes
2017-01-22 19:55:16 +00:00
UDP Sockets | yes | yes | — | yes
USDS | yes | yes | — | yes
DNS | yes | yes | yes | yes
2017-01-22 19:55:16 +00:00
Timers | yes | yes | yes | yes
Events | yes | yes | yes | yes
Unix Signals | yes² | yes | — | —
2017-01-22 19:55:16 +00:00
Files | yes | yes | yes | yes
2017-01-22 20:01:13 +00:00
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
2017-01-22 20:01:13 +00:00
² Currently only supported on Linux
### Open questions
- Error code reporting
- Enqueued writes
- Use the type system to prohibit passing thread-local handles to foreign threads