This example relies on calls made to a server that delays the response for a configurable duration. In the repository, there is a project named delayserver in the root folder.
You can set up the server by simply entering the folder in a separate console window and writing cargo run. Just leave the server running in a separate, open terminal window as we’ll use it in our example.
The delayserver program is cross-platform, so it works without any modification on all platforms that Rust supports. If you’re running WSL on Windows, I recommend running the delayserver program in WSL as well. Depending on your setup, you might get away with running the server in a Windows console and still be able to reach it when running the example in WSL. Just be aware that it might not work out of the box.
The server will listen to port 8080 by default and the examples there assume this is the port used. You can change the listening port in the delayserver code before you start the server, but just remember to make the same corrections in the example code.
The actual code for delayserver is less than 30 lines, so going through the code should only take a few minutes if you want to see what the server does.
Design and introduction to epoll
Okay, so this chapter will be centered around one main example you can find in the repository under ch04/a-epoll. We’ll start by taking a look at how we design our example.
As I mentioned at the start of this chapter, we’ll take our inspiration from mio. This has one big upside and one downside. The upside is that we get a gentle introduction to how mio is designed, making it much easier to dive into that code base if you want to learn more than what we cover in this example. The downside is that we introduce an overly thick abstraction layer over epoll, including some design decisions that are very specific to mio.
I think the upsides outweigh the downsides for the simple reason that if you ever want to implement a production-quality event loop, you’ll probably want to look into the implementations that are already out there, and the same goes for if you want to dig deeper into the building blocks of asynchronous programming in Rust. In Rust, mio is one of the important libraries underpinning much of the async ecosystem, so gaining a little familiarity with it is an added bonus.
It’s important to note that mio is a cross-platform library that creates an abstraction over epoll, kqueue, and IOCP (through Wepoll, as we described in Chapter 3). Not only that, mio supports iOS and Android, and in the future, it will likely support other platforms as well. So, leaving the door open to unify an API over so many different systems is bound to also come with some compromises if you compare it to what you can achieve if you only plan to support one platform.
Leave a Reply