rnacos 0.8.3

Nacos server re-implemented in Rust.
Documentation
use crate::naming::core::NamingActor;
use actix::prelude::*;

#[derive(Debug, Message)]
#[rtype(result = "anyhow::Result<NamingDebugResult>")]
pub enum NamingDebugCmd {
    SetLocalInstanceIllHealth,
    RandomSetLocalInstanceIllHealth,
    ClearLocalHttpInstance,
    ClearOtherGrpcInstance,
    ClearLocalGrpcInstance,
}

pub enum NamingDebugResult {
    None,
}

impl NamingActor {
    pub(crate) fn set_local_instance_ill_health(&mut self) {
        let mut keys = vec![];
        for (service_key, item) in self.service_map.iter() {
            for (short_key, instance) in item.instances.iter() {
                if !instance.from_grpc && instance.healthy {
                    keys.push((service_key.clone(), short_key.clone()));
                }
            }
        }
        self.disable_notify = true;
        for (service_key, short_key) in &keys {
            if let Some(service) = self.service_map.get_mut(service_key) {
                service.update_instance_healthy_invalid(&short_key);
            }
        }
        self.disable_notify = false;
    }

    pub(crate) fn clear_local_http_instance(&mut self) {
        let mut keys = vec![];
        for (service_key, item) in self.service_map.iter() {
            for (short_key, instance) in item.instances.iter() {
                if !instance.from_grpc {
                    keys.push((service_key.clone(), short_key.clone()));
                }
            }
        }
        self.disable_notify = true;
        for (service_key, short_key) in &keys {
            if let Some(service) = self.service_map.get_mut(service_key) {
                service.remove_instance(&short_key, None);
            }
        }
        self.disable_notify = false;
    }

    pub(crate) fn clear_other_node_grpc_instance(&mut self) {
        let mut keys = vec![];
        for (service_key, item) in self.service_map.iter() {
            for (short_key, instance) in item.instances.iter() {
                if instance.from_grpc && instance.from_cluster != 0 {
                    keys.push((service_key.clone(), short_key.clone()));
                }
            }
        }
        self.disable_notify = true;
        for (service_key, short_key) in &keys {
            self.remove_instance(service_key, short_key, None);
        }
        self.disable_notify = false;
    }

    pub(crate) fn clear_local_node_grpc_instance(&mut self) {
        let mut keys = vec![];
        for (service_key, item) in self.service_map.iter() {
            for (short_key, instance) in item.instances.iter() {
                if instance.from_grpc && instance.from_cluster == 0 {
                    keys.push((service_key.clone(), short_key.clone()));
                }
            }
        }
        self.disable_notify = true;
        for (service_key, short_key) in &keys {
            self.remove_instance(service_key, short_key, None);
        }
        self.disable_notify = false;
    }
}

impl Handler<NamingDebugCmd> for NamingActor {
    type Result = anyhow::Result<NamingDebugResult>;

    fn handle(&mut self, msg: NamingDebugCmd, _ctx: &mut Self::Context) -> Self::Result {
        match msg {
            NamingDebugCmd::SetLocalInstanceIllHealth => {
                self.set_local_instance_ill_health();
            }
            NamingDebugCmd::RandomSetLocalInstanceIllHealth => {}
            NamingDebugCmd::ClearLocalHttpInstance => {
                self.clear_local_http_instance();
            }
            NamingDebugCmd::ClearOtherGrpcInstance => {
                self.clear_other_node_grpc_instance();
            }
            NamingDebugCmd::ClearLocalGrpcInstance => {
                self.clear_local_node_grpc_instance();
            }
        }
        Ok(NamingDebugResult::None)
    }
}