#graceful-shutdown #process #signal

processmanager

manage process lifecycles, graceful shutdown and process faults

4 releases (2 breaking)

0.3.0 Sep 16, 2024
0.2.1 Sep 7, 2024
0.2.0 Sep 7, 2024
0.1.0 Mar 27, 2024

#646 in Rust patterns

Download history 5/week @ 2024-07-29 256/week @ 2024-09-02 39/week @ 2024-09-09 179/week @ 2024-09-16 15/week @ 2024-09-23 12/week @ 2024-09-30 3/week @ 2024-10-07 25/week @ 2024-10-14 65/week @ 2024-10-21

106 downloads per month

MIT license

21KB
372 lines

ProcessManager

Manage multiple running services. A ProcessManager collects impl of Runnable and takes over the runtime management like starting, stopping (graceful or in failure) of services.

If one service fails, the manager initiates a graceful shutdown for all other.

Examples

use processmanager::*;

#[tokio::main]
async fn main() {

    #[derive(Default)]
    struct ExampleController {
        runtime_guard: RuntimeGuard,
    }

    #[async_trait::async_trait]
    impl Runnable for ExampleController {
        async fn process_start(&self) -> Result<(), RuntimeError> {
            // This can be any type of future like an async streams
            let mut interval = tokio::time::interval(tokio::time::Duration::from_secs(1));

            loop {
                match self.runtime_guard.tick(interval.tick()).await {
                    ProcessOperation::Next(_) => println!("work"),
                    ProcessOperation::Control(RuntimeControlMessage::Shutdown) => {
                        println!("shutdown"); 
                        break
                    },
                    ProcessOperation::Control(RuntimeControlMessage::Reload) => println!("trigger relead"),
                }
            }

            Ok(())
        }

        fn process_handle(&self) -> Box<dyn ProcessControlHandler> {
            Box::new(self.runtime_guard.handle())
         }
    }

    let mut manager = ProcessManager::new();
    manager.insert(ExampleController::default());

    let handle = manager.process_handle();

    // start all processes
    let _ = tokio::spawn(async move {
        manager.process_start().await.expect("service start failed");
    });

    // Shutdown waits for all services to shutdown gracefully.
    handle.shutdown().await;
}

Dependencies

~3–11MB
~117K SLoC