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

75 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-14 01:12:08 +08:00
mod status;
2024-03-13 01:20:41 +08:00
use config::BotConfig;
use tracing::{event, info, Level};
2024-03-14 01:12:08 +08:00
pub static mut MAIN_STATUS: status::BotStatus = status::BotStatus {
2024-02-20 17:47:45 +08:00
config: None,
2024-03-14 01:12:08 +08:00
ica_status: None,
matrix_status: None,
2024-02-20 14:47:53 +08:00
};
2024-03-14 01:12:08 +08:00
pub type MainStatus = status::BotStatus;
2024-02-20 20:51:14 +08:00
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
2024-03-15 12:27:00 +08:00
pub const ICA_VERSION: &str = "1.4.0";
pub const MATRIX_VERSION: &str = "0.1.0";
2024-02-20 20:51:14 +08:00
#[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();
event!(Level::INFO, "shenbot-async-rs v{} main", VERSION);
2024-03-12 00:16:12 +08:00
2024-03-13 01:17:50 +08:00
let bot_config = BotConfig::new_from_cli();
MainStatus::static_init(bot_config);
let bot_config = MainStatus::global_config();
py::init_py();
2024-03-12 00:16:12 +08:00
// 准备一个用于停止 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");
}