icalingua-python-bot/ica-rs/src/main.rs

73 lines
1.7 KiB
Rust
Raw Normal View History

2024-02-18 21:25:42 +08:00
use std::time::Duration;
mod config;
2024-03-13 01:17:50 +08:00
mod data_struct;
#[cfg(feature = "ica")]
mod ica;
2024-03-13 01:17:50 +08:00
#[cfg(feature = "matrix")]
2024-03-12 00:16:12 +08:00
mod matrix;
mod py;
2024-03-13 01:17:50 +08:00
use config::{BotConfig, IcaConfig};
use tracing::info;
2024-02-20 14:47:53 +08:00
#[allow(non_upper_case_globals)]
2024-03-13 01:17:50 +08:00
pub static mut ClientStatus_Global: ica::client::BotStatus = ica::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-13 01:17:50 +08:00
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
// 从命令行获取配置文件路径
2024-03-13 01:17:50 +08:00
let bot_config = BotConfig::new_from_cli();
ica::client::BotStatus::update_config(bot_config.clone());
2024-03-12 00:16:12 +08:00
py::init_py(&bot_config);
// 准备一个用于停止 socket 的变量
let (send, recv) = tokio::sync::oneshot::channel::<()>();
2024-03-13 01:17:50 +08:00
if bot_config.check_ica() {
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
send.send(()).ok();
2024-03-13 01:17:50 +08:00
2024-02-18 23:17:43 +08:00
info!("Disconnected");
}