84 lines
No EOL
2.3 KiB
Rust
84 lines
No EOL
2.3 KiB
Rust
use std::path::PathBuf;
|
|
|
|
// include core
|
|
use jarvis_core::{
|
|
audio, commands, config, db, listener, recorder, stt,
|
|
APP_CONFIG_DIR, APP_LOG_DIR, COMMANDS_LIST, DB,
|
|
};
|
|
|
|
// include log
|
|
#[macro_use]
|
|
extern crate simple_log;
|
|
mod log;
|
|
|
|
// include app
|
|
mod app;
|
|
|
|
// include tray
|
|
// @TODO. macOS currently not supported for tray functionality.
|
|
#[cfg(not(target_os = "macos"))]
|
|
mod tray;
|
|
|
|
fn main() -> Result<(), String> {
|
|
// initialize directories
|
|
config::init_dirs()?;
|
|
|
|
// initialize logging
|
|
log::init_logging()?;
|
|
|
|
// log some base info
|
|
info!("Starting Jarvis v{} ...", config::APP_VERSION.unwrap());
|
|
info!("Config directory is: {}", APP_CONFIG_DIR.get().unwrap().display());
|
|
info!("Log directory is: {}", APP_LOG_DIR.get().unwrap().display());
|
|
|
|
// initialize database (settings)
|
|
let _ = DB.set(db::init_settings());
|
|
|
|
// initialize tray
|
|
// @TODO. macOS currently not supported for tray functionality,
|
|
// due to the separate thread in which tray processing works,
|
|
// but macOS requires it to be processed in the main thread only
|
|
// The solution may be to include wake-word detection etc. in the winit event loop. (only for MacOS, though?)
|
|
//#[cfg(not(target_os = "macos"))]
|
|
//tray::init();
|
|
|
|
// init recorder
|
|
if recorder::init().is_err() {
|
|
app::close(1);
|
|
}
|
|
|
|
// init stt engine
|
|
if stt::init().is_err() {
|
|
// @TODO. Allow continuing even without STT, if commands is using keywords or smthng?
|
|
app::close(1); // cannot continue without stt
|
|
}
|
|
|
|
// init tts engine
|
|
// none for now (Silero-rs coming)
|
|
|
|
// init commands
|
|
info!("Initializing commands.");
|
|
let cmds = commands::parse_commands().unwrap();
|
|
info!("Commands initialized. Count: {}, List: {:?}", cmds.len(), commands::list(&cmds));
|
|
COMMANDS_LIST.set(cmds).unwrap();
|
|
|
|
// init audio
|
|
if audio::init().is_err() {
|
|
// @TODO. Allow continuing even without audio?
|
|
app::close(1); // cannot continue without audio
|
|
}
|
|
|
|
// init wake-word engine
|
|
if listener::init().is_err() {
|
|
app::close(1); // cannot continue without wake-word engine
|
|
}
|
|
|
|
// start the app (in the background thread)
|
|
std::thread::spawn(|| {
|
|
let _ = app::start();
|
|
});
|
|
|
|
tray::init_blocking();
|
|
|
|
Ok(())
|
|
} |