In this chapter, we’ll create a simple version of an event queue using epoll. We’ll take inspiration from mio (https://github.com/tokio-rs/mio), a low-level I/O library written in Rust that underpins much of the Rust async ecosystem. Taking inspiration from mio has the added benefit of making it easier to dive into their code base if you wish to explore how a real production-ready library works.
By the end of this chapter, you should be able to understand the following:
- The difference between blocking and non-blocking I/O
- How to use epoll to make your own event queue
- The source code of cross-platform event queue libraries such as mio
- Why we need an abstraction layer on top of epoll, kqueue, and IOCP if we want a program or library to work across different platforms
We’ve divided the chapter into the following sections:
- Design and introduction to epoll
- The ffi module
- The Poll module
- The main program
Technical requirements
This chapter focuses on epoll, which is specific to Linux. Unfortunately, epoll is not part of the Portable Operating System Interface (POSIX) standard, so this example will require you to run Linux and won’t work with macOS, BSD, or Windows operating systems.
If you’re on a machine running Linux, you’re already set and can run the examples without any further steps.
If you’re on Windows, my recommendation is to set up WSL (https://learn.microsoft.com/en-us/windows/wsl/install), if you haven’t already, and install Rust on the Linux operating system running on WSL.
If you’re using Mac, you can create a virtual machine (VM) running Linux, for example, by using the QEMU-based UTM application (https://mac.getutm.app/) or any other solution for managing VMs on a Mac.
A last option is to rent a Linux server (there are even some providers with a free layer), install Rust, and either use an editor such as Vim or Emacs in the console or develop on the remote machine using VS Code through SSH (https://code.visualstudio.com/docs/remote/ssh). I personally have good experience with Linode’s offering (https://www.linode.com/), but there are many, many other options out there.
It’s theoretically possible to run the examples on the Rust playground, but since we need a delay server, we would have to use a remote delay server service that accepts plain HTTP requests (not HTTPS) and modify the code so that the modules are all in one file instead. It’s possible in a clinch but not really recommended.
Leave a Reply