You've already forked AstralRinth
forked from didirus/AstralRinth
* initial migration * barebones profiles * Finish profiles * Add back file watcher * UI support progress * Finish most of cache * Fix options page * Fix forge, finish modrinth auth * Accounts, process cache * Run SQLX prepare * Finish * Run lint + actions * Fix version to be compat with windows * fix lint * actually fix lint * actually fix lint again
86 lines
2.3 KiB
Rust
86 lines
2.3 KiB
Rust
use crate::api::Result;
|
|
use theseus::logs::LogType;
|
|
use theseus::logs::{self, CensoredString, LatestLogCursor, Logs};
|
|
|
|
/*
|
|
A log is a struct containing the filename string, stdout, and stderr, as follows:
|
|
|
|
pub struct Logs {
|
|
pub filename: String,
|
|
pub stdout: String,
|
|
pub stderr: String,
|
|
}
|
|
*/
|
|
|
|
pub fn init<R: tauri::Runtime>() -> tauri::plugin::TauriPlugin<R> {
|
|
tauri::plugin::Builder::new("logs")
|
|
.invoke_handler(tauri::generate_handler![
|
|
logs_get_logs,
|
|
logs_get_logs_by_filename,
|
|
logs_get_output_by_filename,
|
|
logs_delete_logs,
|
|
logs_delete_logs_by_filename,
|
|
logs_get_latest_log_cursor,
|
|
])
|
|
.build()
|
|
}
|
|
|
|
/// Get all Logs for a profile, sorted by filename
|
|
#[tauri::command]
|
|
pub async fn logs_get_logs(
|
|
profile_path: &str,
|
|
clear_contents: Option<bool>,
|
|
) -> Result<Vec<Logs>> {
|
|
let val = logs::get_logs(profile_path, clear_contents).await?;
|
|
|
|
Ok(val)
|
|
}
|
|
|
|
/// Get a Log struct for a profile by profile id and filename string
|
|
#[tauri::command]
|
|
pub async fn logs_get_logs_by_filename(
|
|
profile_path: &str,
|
|
log_type: LogType,
|
|
filename: String,
|
|
) -> Result<Logs> {
|
|
Ok(logs::get_logs_by_filename(profile_path, log_type, filename).await?)
|
|
}
|
|
|
|
/// Get the stdout for a profile by profile id and filename string
|
|
#[tauri::command]
|
|
pub async fn logs_get_output_by_filename(
|
|
profile_path: &str,
|
|
log_type: LogType,
|
|
filename: String,
|
|
) -> Result<CensoredString> {
|
|
Ok(logs::get_output_by_filename(profile_path, log_type, &filename).await?)
|
|
}
|
|
|
|
/// Delete all logs for a profile by profile id
|
|
#[tauri::command]
|
|
pub async fn logs_delete_logs(profile_path: &str) -> Result<()> {
|
|
Ok(logs::delete_logs(profile_path).await?)
|
|
}
|
|
|
|
/// Delete a log for a profile by profile id and filename string
|
|
#[tauri::command]
|
|
pub async fn logs_delete_logs_by_filename(
|
|
profile_path: &str,
|
|
log_type: LogType,
|
|
filename: String,
|
|
) -> Result<()> {
|
|
Ok(
|
|
logs::delete_logs_by_filename(profile_path, log_type, &filename)
|
|
.await?,
|
|
)
|
|
}
|
|
|
|
/// Get live log from a cursor
|
|
#[tauri::command]
|
|
pub async fn logs_get_latest_log_cursor(
|
|
profile_path: &str,
|
|
cursor: u64, // 0 to start at beginning of file
|
|
) -> Result<LatestLogCursor> {
|
|
Ok(logs::get_latest_log_cursor(profile_path, cursor).await?)
|
|
}
|