ipipe - A cross-platform named-pipe library for Rust
This library allows the creation of platform-independant named pipes. Standard Read/Write traits are implemented. Higher level/more fleshed-out APIs are under development and will be added in future versions. Improvements and PRs welcome.
Example:
use ;
use thread;
use ;
Running the above example program will output:
1
2
3
4
5
6
7
8
9
10
Pipe::create generates a random pipe name in a temporary location.
Example path (Windows):
\\.\pipe\pipe_23676_xMvclVhNKcg6iGf
Example path (Unix):
/tmp/pipe_1230_mFP8dx8uVl
Pipe::with_name allows a pipe name to be specified.
The 'static_pipe' feature
Enabling the static_pipe feature allows the creation of mutex-protected static pipes that can be written to from anywhere in a way that mimics stdout. Here's an example:
use static_pipe;
init.unwrap;
let mut reader = reader.unwrap;
println!;
Then anywhere your program (or another program with enough permission to access the pipe) can write code like this:
pprintln!;
Lower level & more complete APIs to the static pipes are also planned for a future release.