asio and custom socket implementation

Hello! I have a custom network stack (it processed packets in userspace) which exposed some functions in C. It has its own listen, bind, accept functions and many other, and furthermore even custom epoll, select and poll. I want to expand asio in some away, just to support my application with this custom network stack. But I'm a bit confused how I can do it. Should I write my own basic io class? Or should I write custom socket service class like (reactive_socket_service_base)? And is it possible to use basic tcp classes (with any of them)? If there are any examples in open source please let me know. -- Best regards Stanislav Zaikin

Not answering the question, but I don't know that there's documented extension points in the library for what you're wanting to do. It's surely possible, but maybe complex. I'd suggest asking for help on the asio list from https://think-async.com/. On Wed, Apr 1, 2020 at 7:11 AM Stanislav Zaikin via Boost-users < boost-users@lists.boost.org> wrote:

On Wed, 1 Apr 2020 at 16:11, Stanislav Zaikin via Boost-users < boost-users@lists.boost.org> wrote:
Boost.Beast implements some custom stream types. That is, objects that model AsyncReadStream and AsyncWriteStream. This would be a good place to start looking for examples. There is also a primer on writing asio operations in the beast documentation.
-- Richard Hodges hodges.r@gmail.com office: +442032898513 home: +376841522 mobile: +376380212

On 2/04/2020 07:27, Richard Hodges wrote:
That might suffice for custom listen/bind/accept/read/write. But custom epoll/select/poll is an entirely different kettle of fish. If your custom library must use those (and cannot provide a standard platform file descriptor that works with the standard platform epoll/select/poll), then you're largely out of luck. For that, you would have to write a custom reactor instead; and as far as I am aware without deep modifications to Asio there is no provision for doing so (and it's a massive amount of work that is hard to get correct, although you can use the existing implementations as a guide). (There's also the question of whether you want to completely replace Asio's standard reactor or if you want to have something like a gateway thread that marshals work between your custom reactor and the standard reactor. Each has different tradeoffs.) Jeff is probably correct that if you have questions about this you should ask directly on the Asio lists. The primary author doesn't read this list.

On Thu, 2 Apr 2020 at 00:48, Gavin Lambert via Boost-users < boost-users@lists.boost.org> wrote:
I respectfully disagree. You'd have to write a new executor and associated context. It would look very similar to the existing one.
-- Richard Hodges hodges.r@gmail.com office: +442032898513 home: +376841522 mobile: +376380212

On 2/04/2020 11:57, Richard Hodges wrote:
(Granted I was mostly thinking of pre-executor Asio when writing the above, but...) Having recently had an adventure myself in implementing a custom executor, I stand by my statement. There are many required operations it does not seem possible to implement without either depending on or reimplementing 'detail' code from Asio, and there is very little guidance on doing so. Unless you know of some example...?
participants (5)
-
Gavin Lambert
-
Jeff Garland
-
Mathias Gaunard
-
Richard Hodges
-
Stanislav Zaikin