This document is supposed to give you a short introduction to the project.
It explains the project structure, so you can get a rough overview of the overall architecture.
Feel free to expand this document!
This project is divided into two modules, the client (pueue
) and the daemon (pueued
).
Pueue also depends on pueue-lib.
Pueue-lib contains everything that is shared between the daemon and the client.
This includes:
- The protocol used for communicating.
- Settings, since they're parsed by both binaries.
- All data structs, namely
state
,task
andmessage
. - Helper to interact with task's logs.
The daemon is composed of two main components.
- Request handling in
daemon/network/
. This is the code responsible for communicating with clients. Indaemon/network/message_handler/
you can find neatly separated handlers for all of Pueue's subcommands. - The TaskHandler in
daemon/task_handler/
. It's responsible for everything regarding process interaction.
All information that's not sub-process specific, is stored in the State
(pueue-lib/state.rs
) struct.
Both components share a reference to the State, a Arc<Mutex<State>>
.
That way we can guarantee a single source of truth and a consistent state.
It's also important to know, that there's a mpsc
channel.
This channel is used to send on-demand messages from the network request handler to the the TaskHandler.
This includes stuff like "Start/Pause/Kill" sub-processes or "Reset everything".
The daemon/network/socket.rs
module contains the logic for accepting client connections and receiving payloads.
The request accept and handle logic is a single async-await loop run by the main thread.
The payload is then deserialized to Message
(pueue-lib/message.rs
) and handled by its respective function.
All functions used for handling these messages can be found in daemon/network/message_handler
.
Many messages can be instantly handled by simply modifying or reading the state. \
However, sometimes the TaskHandler has to be notified, if something involves modifying actual system processes (start/pause/kill tasks).
That's when the mpsc
channel to the TaskHandler comes into play.
The TaskHandler is responsible for actually starting and managing system processes.
It's further important to note, that it runs in its own thread.
The TaskHandler runs a never ending loop, which checks a few times each second, if
- there are new instructions in the
mpsc
channel. - a new task can be started.
- tasks finished and can be finalized.
- delayed tasks can be enqueued (
-d
flag onpueue add
) - A few other things. Check the
TaskHandler::run
function indaemon/task_handler/mod.rs
.
The TaskHandler is by far the most complex piece of code in this project, but there is also a lot of documentation.
Whenever you're writing some core-logic in Pueue, please make sure to understand how mutexes work.
Try to be conservative with your state.lock()
calls, since this also blocks the request handler!
Only use the state, if you absolutely have to.
At the same time, you should also lock early enough to prevent inconsistent states.
Operations should generally be atomic.
Anyhow, working with mutexes is usually straight-forward, but can sometimes be a little bit tricky.
This is a result of tokei ./client ./daemon
on commit fde79eb
at the 2021-07-27.
===============================================================================
Language Files Lines Code Comments Blanks
===============================================================================
Rust 62 6332 4860 522 950
|- Markdown 53 644 0 600 44
(Total) 6976 4860 1122 994
===============================================================================
Total 62 6332 4860 522 950
===============================================================================
cargo format
and cargo clean && cargo clippy
should never return any warnings on the current stable Rust version!
PR's are automatically checked for these two and won't be accepted unless everything looks fine.
- All functions must have a doc block.
- All non-trivial structs must have a doc block.
- Rather too many inline comments than too few.
- Non-trivial code should be well documented!
In general, please add a lot of comments. It makes maintenance, collaboration and reviews MUCH easier.