vibe-core 1.2.0

The I/O core library of vibe.d.


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:

vibe.d

vibe.d core package

The core package provides the low level I/O and concurrency primitives that are used to implement the higher level systems:

  • Event loop management
  • Fiber based lightweight tasks, including task local storage and std.concurrency integration
  • Files, sockets, timers
  • Stream type definitions (used for files, sockets and higher level stream types)
  • Synchronization primitives (mutexes, condition variables, semaphores, cross task/cross thread events)
  • Logging facilities
  • Command line argument parsing
  • Various smaller utilities

The fundamental building block is the fiber based task concept, together with the event based asynchronous I/O model. This enables developing highly scalable I/O concurrent applications without running into the complexities and design implications that asynchronous I/O programming models usually impose. See the features page for a more detailed explanation.

DUB Package Posix Build Status Windows Build status

Separation of the former vibe-d:core package

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 on the other hand could only be done in a very limited context due to its viral nature and the lack of an @trusted equivalent.

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, leading 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 them).

Finally, the stream design has received two big changes. Streams can now either be implemented as classes, as usual, or they can be implemented as structs in a duck typing/DbC fashion. This, coupled with templated wrapper stream types, allows to eliminate the overhead of virtual function calls, enables reference counting instead of GC allocations, and allows the compiler to inline across stream boundaries. The second change to streams is the added support for an IOMode parameter that enables I/O patterns as they are possible when using OS sockets directly. The leastSize and dataAvailableForRead properties will in turn be deprecated.

Supported compilers

The following compilers are tested and supported:

  • DMD 2.076.0
  • DMD 2.075.1
  • 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

Supported up to 1.1.1:

  • DMD 2.070.2
  • LDC 1.0.0
Authors:
  • Sönke Ludwig
Dependencies:
eventcore
Versions:
2.8.2 2024-Feb-19
2.8.1 2024-Feb-15
2.8.0 2024-Feb-15
2.7.4 2024-Feb-12
2.7.3 2024-Jan-17
Show all 127 versions
Download Stats:
  • 972 downloads today

  • 9669 downloads this week

  • 26431 downloads this month

  • 1547771 downloads total

Score:
4.6
Short URL:
vibe-core.dub.pm