eventcore 0.9.29

Pro-actor based abstraction layer over operating system asynchronous I/O facilities.


To use this package, run the following command in your project's root directory:

Manual usage
Put the following dependency into your project's dependences section:

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.

The API documentation is part of vibe.d:

DUB Package Posix and Windows Build Status

Supported drivers and operating systems

DriverLinuxWindowsmacOSFreeBSDAndroidiOS
SelectEventDriveryesyesyesyes¹yesyes
EpollEventDriveryesyes
WinAPIEventDriveryes
KqueueEventDriveryesyes¹yes
CFRunloopEventDriveryesyes
LibasyncEventDriver—¹—¹—¹—¹

¹ planned, but not currenly implemented

Supported compilers

The following compilers are tested and supported:

  • DMD 2.103.0
  • DMD 2.086.1
  • LDC 1.32.0
  • LDC 1.16.0

Driver development status

Feature \ EventDriverSelectEpollWinAPIKqueueCFRunloopLibasync
TCP Socketsyesyesyesyesyes
UDP Socketsyesyesyesyesyes
USDSyesyesyesyes
DNSyesyesyesyesyes
Timersyesyesyesyesyes
Eventsyesyesyesyesyes
Unix Signalsyes²yes
Filesyesyesyesyesyes
UI Integrationyes¹yes¹yesyes¹yes¹
File watcheryes²yesyesyes²yes²
Pipesyesyesyesyes
Processesyesyesyesyes

¹ Manually, by adopting the X11 display connection socket

² Systems other than Linux use a polling implementation

Compile-time configuration

Configurations

The DUB configuration meachnism can be used to force choosing a particular event driver implementation. The following configurations are available:

EventcoreCFRunLoopDriver: Forces using the CFRunLoop driver (for DUB, use the "cfrunloop" configuration instead) EventcoreKqueueDriver: Forces using the kqueue driver (for DUB, use the "kqueue" configuration instead) EventcoreWinAPIDriver: Forces using the WinAPI driver (for DUB, use the "winapi" configuration instead) EventcoreLibasyncDriver: Forces using the libasync driver (for DUB, use the "libasync" configuration instead) EventcoreSelectDriver: Forces using the select driver (for DUB, use the "select" configuration instead) EventcoreUseGAIA: Forces using getaddressinfo_a for the epoll driver (for DUB, use the "epoll-gaia" configuration instead)

Version identifiers

Several version identifiers can be set to configure the behavior of the library at compile time. Simply insert any of the following identifiers as a "version" to the compiler command line or into your DUB recipe:

dub.sdl:

versions "EventCoreSilenceLeakWarnings"

dub.json:

{
	...
	"versions": ["EventCoreSilenceLeakWarnings"]
	...
}
  • EventCoreSilenceLeakWarnings: Disables checking for leaked handles at shutdown
  • EventcoreCFRunLoopDriver: Forces using the CFRunLoop driver (for DUB, use the "cfrunloop" configuration instead)
  • EventcoreKqueueDriver: Forces using the kqueue driver (for DUB, use the "kqueue" configuration instead)
  • EventcoreWinAPIDriver: Forces using the WinAPI driver (for DUB, use the "winapi" configuration instead)
  • EventcoreLibasyncDriver: Forces using the libasync driver (for DUB, use the "libasync" configuration instead)
  • EventcoreSelectDriver: Forces using the select driver (for DUB, use the "select" configuration instead)
  • EventcoreUseGAIA: Forces using getaddressinfo_a for the epoll driver (for DUB, use the "epoll-gaia" configuration instead)

Debug identifiers

For additional debug output, the following debug identifiers are available. When building with DUB, you can specify them similar to version identifiers, but using the debugVersions directive instead:

  • EventCoreLogDNS: Prints detailed information about DNS lookups
  • EventCoreLeakTrace: Gathers stack traces when allocating handles to assist in fixing leaked handles
  • EventCoreEpollDebug: Outputs epoll event details
  • EventCoreLogFiles: Outputs detailed logging for file operations carried out through the threadedfile implementation

Open questions

  • Error code reporting
  • Enqueued writes
  • Use the type system to prohibit passing thread-local handles to foreign threads
Dependencies:
taggedalgebraic
Versions:
0.9.29 2024-Mar-15
0.9.28 2024-Jan-12
0.9.27 2023-Dec-13
0.9.26 2023-Sep-16
0.9.25 2023-Mar-17
Show all 102 versions
Download Stats:
  • 487 downloads today

  • 4631 downloads this week

  • 23188 downloads this month

  • 1652943 downloads total

Score:
4.7
Short URL:
eventcore.dub.pm