Find a file
2017-01-25 22:40:07 +01:00
examples/bench-dummy-http-server Update for eventcore 0.5.0 and the latest DMD beta. 2016-10-24 08:22:49 +02:00
source/vibe Let InterfaceProxy handle parameter storage classes properly. 2017-01-25 22:40:07 +01:00
tests Fix compile error in file test. 2016-12-19 21:57:52 +01:00
.editorconfig Add .editorconfig. 2017-01-16 21:40:32 +01:00
.gitignore Initial commit. 2016-03-01 20:30:42 +01:00
.travis.yml Test with latest DMD versions. 2017-01-15 22:34:36 +01:00
dub.sdl Upgrade to latest eventcore. 2017-01-25 21:04:13 +01:00
README.md Update general development state statement. 2017-01-18 10:41:43 +01:00
travis-ci.sh Test with all Linux eventcore configurations. 2016-12-19 22:37:18 +01:00

vibe.d core module

This is the designated successor of the vibe-d:core sub package of vibe.d 0.7.x. The API is mostly compatible from a library user point of view, but the whole library has received some heavy lifting under the surface, close to a rewrite. Most classes have been replaced by reference counting structs and @safe nothrow attributes are now used throughout the library, whenever possible. Adding @nogc still has to be decided, because of its viral nature.

Another major design change is that instead of the previous driver model, there is now a separate, lower-level event loop abstraction (eventcore) which follows a callback based Proactor pattern. The logic to schedule fibers based on events has been pulled out of this abstraction and is now maintained as a single function, leaving to a huge improvment in terms of robustness (most issues in the previous implementation have probably never surfaced in practice, but there turned out to be lots of hidden bugs).

The implementation is mostly finished, except for final production testing and a final review of the stream API. Also, eventcore is still missing WinAPI and kqueue implementations.

Build Status

Progress

Feature State
Task scheduling done
Concurrency done
Streams done (may be subject to smaller changes)
DNS lookup done
TCP connections done
UDP connections done
File I/O done
Directory watchers done
ManualEvent done
Path/URL types done