1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
# I/O Process
Set of **I/O-free** Rust coroutines and runtimes to manage processes.
This library allows you to manage processes using an I/O-agnostic approach, based on 3 concepts:
### Coroutine
A coroutine is an *I/O-free*, *resumable* and *composable* state machine that **emits I/O requests**. A coroutine is considered *terminated* when it does not emit I/O requests anymore.
*See available coroutines at [./src/coroutines](https://github.com/pimalaya/io-process/tree/master/src/coroutines).*
### Runtime
A runtime contains all the I/O logic, and is responsible for **processing I/O requests** emitted by coroutines.
*See available runtimes at [./src/runtimes](https://github.com/pimalaya/io-process/tree/master/src/runtimes).*
### Loop
The loop is the glue between coroutines and runtimes. It makes the coroutine progress while allowing runtime to process I/O.
## Examples
*See complete examples at [./examples](https://github.com/pimalaya/io-process/blob/master/examples).*
### Spawn std blocking command
```rust,ignore
use io_process::{
coroutines::spawn_then_wait::{SpawnThenWaitResult, SpawnThenWait},
runtimes::std::handle,
command::Command,
};
let mut command = Command::new("ls");
command.arg("-al");
command.arg("/tmp");
let mut arg = None;
let mut spawn = SpawnThenWait::new(command);
let status = loop {
match spawn.resume(arg.take()) {
SpawnThenWaitResult::Ok(status) => break status,
SpawnThenWaitResult::Io(io) => arg = Some(handle(io).unwrap()),
SpawnThenWaitResult::Err(err) => panic!("{err}"),
}
}
```
### Spawn tokio async command then wait for output
```rust,ignore
use io_process::{
coroutines::spawn_then_wait_with_output::{
SpawnThenWaitWithOutputResult,
SpawnThenWaitWithOutput,
},
runtimes::std::handle,
command::Command,
};
let mut command = Command::new("ls");
command.arg("-al");
command.arg("/tmp");
let mut arg = None;
let mut spawn = SpawnThenWaitWithOutput::new(command);
let output = loop {
match spawn.resume(arg.take()) {
SpawnThenWaitWithOutputResult::Ok(status) => break status,
SpawnThenWaitWithOutputResult::Io(io) => arg = Some(handle(io).await.unwrap()),
SpawnThenWaitWithOutputResult::Err(err) => panic!("{err}"),
}
}
```
### More examples
Have a look at projects built on the top of this library:
- [Comodoro](https://github.com/pimalaya/comodoro): CLI to manage timers
- [Ortie](https://github.com/pimalaya/ortie): CLI to manage OAuth access tokens
## License
This project is licensed under either of:
- [MIT license](LICENSE-MIT)
- [Apache License, Version 2.0](LICENSE-APACHE)
at your option.
## Sponsoring
Special thanks to the [NLnet foundation](https://nlnet.nl/) and the [European Commission](https://www.ngi.eu/) that helped the project to receive financial support from various programs:
- [NGI Assure](https://nlnet.nl/project/Himalaya/) in 2022
- [NGI Zero Entrust](https://nlnet.nl/project/Pimalaya/) in 2023
- [NGI Zero Core](https://nlnet.nl/project/Pimalaya-PIM/) in 2024 *(still ongoing)*
If you appreciate the project, feel free to donate using one of the following providers:
- [GitHub](https://github.com/sponsors/soywod)
- [Ko-fi](https://ko-fi.com/soywod)
- [Buy Me a Coffee](https://www.buymeacoffee.com/soywod)
- [Liberapay](https://liberapay.com/soywod)
- [thanks.dev](https://thanks.dev/soywod)
- [PayPal](https://www.paypal.com/paypalme/soywod)
|