socket-bot/ica-rs/src/main.rs

69 lines
1.8 KiB
Rust
Raw Normal View History

2024-02-18 21:25:42 +08:00
use std::time::Duration;
2024-03-12 00:16:12 +08:00
use config::{BotConfig, IcaConfig};
2024-02-20 14:47:53 +08:00
use tracing::info;
2024-02-18 21:25:42 +08:00
mod client;
mod config;
mod ica;
2024-03-12 00:16:12 +08:00
mod matrix;
mod py;
2024-02-20 14:47:53 +08:00
#[allow(non_upper_case_globals)]
2024-03-12 00:16:12 +08:00
pub static mut ClientStatus_Global: client::BotStatus = client::BotStatus {
2024-02-20 14:47:53 +08:00
login: false,
2024-02-25 12:01:36 +08:00
current_loaded_messages_count: 0,
2024-02-20 14:47:53 +08:00
online_data: None,
rooms: None,
2024-02-20 17:47:45 +08:00
config: None,
2024-02-20 14:47:53 +08:00
};
2024-02-20 20:51:14 +08:00
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
#[macro_export]
2024-02-21 21:42:27 +08:00
macro_rules! wrap_callback {
($f:expr) => {
|payload: Payload, client: Client| $f(payload, client).boxed()
};
}
#[macro_export]
2024-02-21 21:42:27 +08:00
macro_rules! wrap_any_callback {
($f:expr) => {
|event: Event, payload: Payload, client: Client| $f(event, payload, client).boxed()
};
}
2024-03-12 00:16:12 +08:00
#[tokio::main]
async fn main() {
tracing_subscriber::fmt().with_max_level(tracing::Level::DEBUG).init();
info!("ica-async-rs v{}", VERSION);
// 从命令行获取 host 和 key
// 从命令行获取配置文件路径
let bot_config = config::BotConfig::new_from_cli();
client::BotStatus::update_config(bot_config.clone());
py::init_py(&bot_config);
// 准备一个用于停止 socket 的变量
let (send, recv) = tokio::sync::oneshot::channel::<()>();
if bot_config.enable_ica && bot_config.ica.is_some() {
2024-03-12 00:16:12 +08:00
info!("启动 ica");
let config = bot_config.ica();
tokio::spawn(async move {
ica::start_ica(&config, recv).await;
2024-03-12 00:16:12 +08:00
});
} else {
info!("未启用 ica");
}
2024-02-25 18:20:03 +08:00
tokio::time::sleep(Duration::from_secs(2)).await;
2024-02-18 23:17:43 +08:00
// 等待一个输入
info!("Press any key to exit");
let mut input = String::new();
std::io::stdin().read_line(&mut input).unwrap();
2024-02-21 21:42:27 +08:00
2024-03-12 00:16:12 +08:00
// socket.disconnect().await.expect("Disconnect failed");
send.send(()).ok();
2024-02-18 23:17:43 +08:00
info!("Disconnected");
}