I'd be interested in aspects like:
- scope/features
- performance
- maturity
|
ScopeBoost.Asio is a C++ library that started with a focus on networking, but its asynchronous I/O capabilities have been extended to other resources. Additionally, with Boost.Asio being part of the Boost libraries, its scope is slightly narrowed to prevent duplication with other Boost libraries. For example, Boost.Asio will not provide a thread abstraction, as Boost.Thread already provides one. On the other hand, libuv is a C library designed to be a the platform layer for node.js. It provides an abstraction to IOCP for Windows and libev on Unix systems. Although there are efforts to remove libev as noted in this issue. Additionally, it looks as though its scope has increased slightly to include abstractions and functionality, such as threads, threadpools, and inter-thread communication. At their core, each library provides an event loop and asynchronous I/O capabilities. They have overlap for some of the basic features, such as timers, sockets, and asynchronous operations. libuv has a broader scope, and provides additional functionality, such as thread and synchronization abstractions, synchronous and asynchronous file system operations, process management, etc. In contrast, Boost.Asio's original networking focus surfaces, as it provides a richer set of network related capabilities, such as ICMP, SSL, synchronous blocking and non-blocking operations, and higher-level operations for common tasks, including reading from a stream until a newline is received. Feature ListHere is the brief side-by-side comparison on some of the major features. Since developers using Boost.Asio often have other Boost libraries available, I have opted to consider additional Boost libraries if they are either directly provided or trivial to implement.
libuv Boost
Event Loop: yes Asio
Threadpool: yes Asio + Threads
Threading:
Threads: yes Threads
Synchronization: yes Threads
File System Operations:
Synchronous: yes FileSystem
Asynchronous: yes Asio + Filesystem
Timers: yes Asio
Scatter/Gather I/O[1]: no Asio
Networking:
ICMP: no Asio
DNS Resolution: async-only Asio
SSL: no Asio
TCP: async-only Asio
UDP: async-only Asio
Signal:
Handling: yes Asio
Sending: yes no
IPC:
UNIX Domain Sockets: yes Asio
Windows Named Pipe: yes Asio
Process Management:
Detaching: yes Process[2]
I/O Pipe: yes Process[2]
Spawning: yes Process[2]
System Queries:
CPU: yes no
Network Interface: yes no
Serial Ports: no yes
TTY: yes no
Shared Library Loading: yes Extension[3]
2. Boost.Process was not accepted into the Boost library during the review. Nevertheless, the author continues efforts in trying to have this become the process management library for Boost. The latest, non-reviewed version is available here. 3. Boost.Extension was never submitted for review to Boost. As noted here, the author considers it to be complete. Event LoopWhile both libuv and Boost.Asio provide event loops, there are some subtle differences between the two:
Threadpool
Threading and Synchronization
File System Operations
Networking
Signal
IPC
API DifferencesWhile the APIs are different based on the language alone, here are a few key differences: Operation and Handler AssociationWithin Boost.Asio, there is a one-to-one mapping between an operation and a handler. For instance, each Call Chains vs. Watcher LoopsWhen dealing with task, such as reading from a stream/UDP, handling signals, or waiting on timers, Boost.Asio's asynchronous call chains are a bit more explicit. With libuv, a watcher is created to designate interests in a particular event. A loop is then started for the watcher, where a callback is provided. Upon receiving the event of interests, the callback will be invoked. On the other hand, Boost.Asio requires an operation to be issued each time the application is interested in handling the event. To help illustrate this difference, here is an asynchronous read loop with Boost.Asio, where the
And here is the same example with libuv, where
Memory AllocationAs a result of the asynchronous call chains in Boost.Asio and the watchers in libuv, memory allocation often occurs at different times. With watchers, libuv defers allocation until after it receives an event that requires memory to handle. The allocation is done through a user callback, invoked internal to libuv, and defers deallocation responsibility of the application. On the other hand, many of the Boost.Asio operations require that the memory be allocated before issuing the asynchronous operation, such as the case of the This memory allocation difference also presents itself within the PerformanceUnfortunately, I do not have any concrete benchmark numbers to compare libuv and Boost.Asio. However, I have observed similar performance using the libraries in real-time and near-real-time applications. If hard numbers are desired, libuv's benchmark test may serve as a starting point. Additionally, while profiling should be done to identify actual bottlenecks, be aware of memory allocations. For libuv, the memory allocation strategy is primarily limited to the allocator callback. On the other hand, Boost.Asio's API does not allow for an allocator callback, and instead pushes the allocation strategy to the application. However, the handlers/callbacks in Boost.Asio may be copied, allocated, and deallocated. Boost.Asio allows for applications to provide custom memory allocation functions in order to implement a memory allocation strategy for handlers. MaturityBoost.AsioAsio's development dates back to at least OCT-2004, and it was accepted into Boost 1.35 on 22-MAR-2006 after undergoing a 20-day peer review. It also served as the reference implementation and API for Networking Library Proposal for TR2. Boost.Asio has a fair amount of documentation, although its usefulness varies from user to user. The API also have a fairly consistent feel. Additionally, the asynchronous operations are explicit in the operation's name. For example, Finally, Boost 1.47+ provides handler tracking, which can prove to be useful when debugging, as well as C++11 support. libuvBased on their github graphs, Node.js's development dates back to at least FEB-2009, and libuv's development dates to MAR-2011. The uvbook is a great place for a libuv introduction. The API is documented in the form of a detailed header, but could still use contributions in some areas. Overall, the API is fairly consistent and easy to use. One anomaly that may be a source of confusion is that Finally, a quick glance at the libuv commit history shows that the developers are very active. |
|||||||||||
|
|
Ok. I have some experience in using both libraries and can clearify some things. First, from a conceptual view-point these libraries are quite different in design. They have different architectures, because they are of different scale. Boost.Asio is a large networking library aimed to be used with TCP/UDP/ICMP protocols, POSIX, SSL and so on. Libuv is just a layer for cross-platform abstraction of IOCP for Node.js, predominantly. So libuv is functionally a subset of Boost.Asio (common features only TCP/UDP Sockets threads,timers). Being that the case, we can compare these libraries using only few criteria:
As conclusion, I should said that it all depends on your purposes, your project and what concretely you intend to do. |
|||||||||||||||
|