system: rename SystemConfig to SystemConfigurator, add Clone to SystemConfigurator

This commit is contained in:
Luna Yao
2026-04-06 11:54:02 +02:00
parent 4ed9cbc4a1
commit 918c9b9174
4 changed files with 15 additions and 13 deletions
+4 -4
View File
@@ -6,13 +6,13 @@ use std::{
path::Path,
};
use super::{OSConfig, SystemConfig};
use super::{OSConfig, SystemConfigurator};
const MAC_RESOLVER_FILE_HEADER: &str = "# Added by easytier\n";
const ETC_RESOLVER: &str = "/etc/resolver";
const ETC_RESOLV_CONF: &str = "/etc/resolv.conf";
#[derive(Default)]
#[derive(Clone, Default)]
pub struct DarwinConfigurator {}
impl DarwinConfigurator {
pub fn new() -> Self {
@@ -104,12 +104,12 @@ impl DarwinConfigurator {
}
}
impl SystemConfig for DarwinConfigurator {
impl SystemConfigurator for DarwinConfigurator {
fn set_dns(&self, cfg: &OSConfig) -> io::Result<()> {
self.do_set_dns(cfg)
}
fn close(&self) -> io::Result<()> {
fn clean(&self) -> io::Result<()> {
self.do_close()
}
}
+2 -2
View File
@@ -14,7 +14,7 @@ pub struct OSConfig {
pub match_domains: Vec<String>,
}
pub trait SystemConfig: Send + Sync {
pub trait SystemConfigurator: Send + Sync + Clone {
fn set_dns(&self, cfg: &OSConfig) -> std::io::Result<()>;
fn close(&self) -> std::io::Result<()>;
fn clean(&self) -> std::io::Result<()>;
}
+5 -3
View File
@@ -6,7 +6,7 @@ use winreg::RegKey;
use crate::common::ifcfg::RegistryManager;
use super::{OSConfig, SystemConfig};
use super::{OSConfig, SystemConfigurator};
pub fn is_windows_10_or_better() -> io::Result<bool> {
let hklm = winreg::enums::HKEY_LOCAL_MACHINE;
@@ -19,6 +19,7 @@ pub fn is_windows_10_or_better() -> io::Result<bool> {
}
// 假设 interface_guid 是你的网络接口 GUID
#[derive(Clone)]
pub struct InterfaceControl {
interface_guid: String,
}
@@ -125,6 +126,7 @@ impl InterfaceControl {
}
}
#[derive(Clone)]
pub struct WindowsDNSManager {
tun_dev_name: String,
interface_control: InterfaceControl,
@@ -146,7 +148,7 @@ impl WindowsDNSManager {
}
}
impl SystemConfig for WindowsDNSManager {
impl SystemConfigurator for WindowsDNSManager {
fn set_dns(&self, cfg: &OSConfig) -> io::Result<()> {
self.set_primary_dns(
&cfg.nameservers
@@ -158,7 +160,7 @@ impl SystemConfig for WindowsDNSManager {
Ok(())
}
fn close(&self) -> io::Result<()> {
fn clean(&self) -> io::Result<()> {
Ok(())
}
}