#management #safenode #service #command-line #applications #p2p-communication #operating

sn_service_management

A command-line application for installing, managing and operating safenode as a service

35 releases

new 0.4.3 Nov 12, 2024
0.4.1 Oct 29, 2024
0.3.9 Jul 29, 2024
0.2.1 Mar 28, 2024

#1533 in Network programming

Download history 369/week @ 2024-07-23 304/week @ 2024-07-30 216/week @ 2024-08-06 281/week @ 2024-08-13 190/week @ 2024-08-20 349/week @ 2024-08-27 256/week @ 2024-09-03 271/week @ 2024-09-10 204/week @ 2024-09-17 449/week @ 2024-09-24 602/week @ 2024-10-01 323/week @ 2024-10-08 242/week @ 2024-10-15 449/week @ 2024-10-22 439/week @ 2024-10-29 431/week @ 2024-11-05

1,611 downloads per month
Used in 5 crates

GPL-3.0 license

205KB
4K SLoC

Service Management

Provides utilities for dealing with services, which are mainly used by the node manager.

RPC Actions

The RpcActions trait defines the protocol that is currently available for interacting with safenode:

node_info: Returns information about the node, such as its peer ID and version.
network_info: Retrieves network-related information, such as the peers currently connected to the node.
record_addresses: Provides a list of the node's record addresses.
restart_node: Requests the node to restart.
stop_node: Requests the node to stop its operations.
update_node: Updates the node with provided parameters.

Users of the crate can program against the trait rather than the RpcClient implementation.

This can facilitate behaviour-based unit testing, like so:

use mockall::mock;
use mockall::predicate::*;

mock! {
    pub RpcClient {}
    #[async_trait]
    impl RpcClientInterface for RpcClient {
        async fn node_info(&self) -> RpcResult<NodeInfo>;
        async fn network_info(&self) -> RpcResult<NetworkInfo>;
        async fn record_addresses(&self) -> Result<Vec<RecordAddress>>;
        async fn gossipsub_subscribe(&self, topic: &str) -> Result<()>;
        async fn gossipsub_unsubscribe(&self, topic: &str) -> Result<()>;
        async fn gossipsub_publish(&self, topic: &str, message: &str) -> Result<()>;
        async fn node_restart(&self, delay_millis: u64) -> Result<()>;
        async fn node_stop(&self, delay_millis: u64) -> Result<()>;
        async fn node_update(&self, delay_millis: u64) -> Result<()>;
    }
}

Dependencies

~57–93MB
~2M SLoC