4 releases (2 breaking)

0.3.0 Feb 14, 2019
0.2.1 Feb 14, 2019
0.2.0 Feb 4, 2019
0.1.1 Dec 18, 2018
0.1.0 Dec 11, 2018

#10 in #daemonize

Download history 64/week @ 2024-01-05 96/week @ 2024-01-12 57/week @ 2024-01-19 45/week @ 2024-01-26 30/week @ 2024-02-02 56/week @ 2024-02-09 70/week @ 2024-02-16 69/week @ 2024-02-23 84/week @ 2024-03-01 102/week @ 2024-03-08 66/week @ 2024-03-15 99/week @ 2024-03-22 109/week @ 2024-03-29 65/week @ 2024-04-05 87/week @ 2024-04-12 88/week @ 2024-04-19

360 downloads per month

GPL-3.0 license

20KB
376 lines

Daemonize-rs Crates.io Released API docs Build Status Build Status

Example

extern crate parity_daemonize;

use parity_daemonize::daemonize;
use std::{thread, time, process, io};
use io::Write;

fn main() {
    match daemonize("pid_file.txt") {
        // we are now in the daemon, use this handle to detach from the parent process
        Ok(handle) => {
            let mut count = 0;
            loop {
                // the daemon's output is piped to the parent process' stdout
                println!("Count: {}", count);
                if count == 5 {
                    handle.detach_with_msg("count has reached 5, continuing in background");
                }
                thread::sleep(time::Duration::from_secs(1));
                count += 1;
            }
        }
        // the daemon or the parent process may receive this error,
        // just print it and exit
        Err(e) => {
            // if this is the daemon, this is piped to the parent's stderr
            eprintln!("{}", e);
            // don't forget to flush
            io::stderr().flush();
            process::exit(1);
        }
    }
}

License

This crate is distributed under the terms of GNU GENERAL PUBLIC LICENSE version 3.0.

See LICENSE for details.

Dependencies

~0.7–1MB
~16K SLoC