Go to file
Sönke Ludwig 07baa0f612
Improve performance of accepting incoming connections.
- Removes the accept() loop, as that doesn't measurably improve performance in practice. This also gives each connection the possibility to perform initial I/O before more concurrency is generated by accepting the next connection.

- Uses SOCK_NONBLOCK in conjunction with socket() and accept4() to save one additional syscall per connection.
2017-09-02 15:40:07 +02:00
examples Fix compile error in http server example. 2017-01-23 11:03:36 +01:00
lib Implement WinAPI based TCP socket support. 2017-06-24 22:31:16 +02:00
source/eventcore Improve performance of accepting incoming connections. 2017-09-02 15:40:07 +02:00
tests Adjust all tests to rely on automatic event loop exiting. 2017-06-10 10:28:16 +02:00
.editorconfig Add .editorconfig. 2017-01-16 21:40:14 +01:00
.gitignore Update .gitignore. 2017-03-24 09:06:28 +01:00
.travis.yml Test DMD 2.075.0 and drop 2.070.x frontend support. 2017-07-21 21:43:40 +02:00
appveyor.yml Test DMD 2.075.0 and drop 2.070.x frontend support. 2017-07-21 21:43:40 +02:00
dub.sdl Implement WinAPI based TCP socket support. 2017-06-24 22:31:16 +02:00
README.md Update compiler list in README. 2017-07-21 21:44:15 +02:00
travis-ci.sh Run tests with the actually selected configurations and fix the tested OS/config combinations. 2017-01-22 21:41:09 +01: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.

DUB Package Posix Build Status Windows Build Status

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

Supported compilers

The following compilers are tested and supported:

  • DMD 2.075.0
  • DMD 2.074.1
  • DMD 2.073.2
  • DMD 2.072.2
  • DMD 2.071.2
  • LDC 1.3.0
  • LDC 1.2.0
  • LDC 1.1.0

Driver development status

Feature SelectEventDriver EpollEventDriver WinAPIEventDriver KqueueEventDriver
TCP Sockets yes yes yes yes
UDP Sockets yes 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
  • Enqueued writes
  • Use the type system to prohibit passing thread-local handles to foreign threads