init Tauri
This commit is contained in:
0
src-tauri/src/app_state.rs
Normal file
0
src-tauri/src/app_state.rs
Normal file
0
src-tauri/src/countdown/commands.rs
Normal file
0
src-tauri/src/countdown/commands.rs
Normal file
0
src-tauri/src/countdown/dto.rs
Normal file
0
src-tauri/src/countdown/dto.rs
Normal file
0
src-tauri/src/countdown/mod.rs
Normal file
0
src-tauri/src/countdown/mod.rs
Normal file
80
src-tauri/src/countdown/model.rs
Normal file
80
src-tauri/src/countdown/model.rs
Normal file
@@ -0,0 +1,80 @@
|
||||
use std::time::{Instant, Duration}
|
||||
|
||||
enum CountdownState{
|
||||
Idle,
|
||||
Running,
|
||||
Paused,
|
||||
Finished
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
struct Countdown {
|
||||
id: uint,
|
||||
label: &str,
|
||||
initial_duration: Duration,
|
||||
remaining_duration_stored: Option<Duration>,
|
||||
state: CountdownState,
|
||||
start_timestamp: Option<Instant>,
|
||||
target_timestamp: Option<Instant>,
|
||||
}
|
||||
|
||||
impl Countdown{
|
||||
|
||||
fn create(&self, id: uint, label: &str, duration: Duration) -> Option<Countdown>{
|
||||
self.id = id;
|
||||
self.label = label;
|
||||
self.initial_duration = duration;
|
||||
self.state = CountdownState::Idle;
|
||||
self.remaining_duration_stored = None;
|
||||
self.start_timestamp = None;
|
||||
self.target_timestamp = None;
|
||||
}
|
||||
|
||||
fn remaining_at(&self, timestamp: Instant) -> Duration{
|
||||
timestamp.saturating_duration_since(target_timestamp)
|
||||
}
|
||||
|
||||
fn remaining(&self) -> Duration{
|
||||
self.remaining_at(Instant::Now())
|
||||
}
|
||||
|
||||
fn is_finished(&self) -> bool {
|
||||
self.state == CountdownState::Finished
|
||||
}
|
||||
|
||||
fn start(&self) -> Result {
|
||||
match self.state{
|
||||
CountdownState::Idle => {
|
||||
start_timestamp = Instant::Now();
|
||||
target_timestamp = start.timestamp.checked_add(self.initial_duration).unwrap();
|
||||
},
|
||||
CountdownState::Paused => {
|
||||
target_timestamp = Instant::Now().checked_add(self.remaining_duration_stored).unwrap();
|
||||
},
|
||||
_ => Err("not startable")
|
||||
}
|
||||
self.remaining_duration_stored = None;
|
||||
self.State = Running;
|
||||
Ok()
|
||||
}
|
||||
|
||||
fn pause(&self) -> Result {
|
||||
match self.state {
|
||||
CountdownState::Running => {
|
||||
self.remaining_duration_stored = Instant::Now().saturating_duration_since(self.target_timestamp);
|
||||
self.state = CountdownState::Paused;
|
||||
Ok()
|
||||
},
|
||||
_ => Err("not pausable")
|
||||
}
|
||||
}
|
||||
|
||||
fn reset(&self) -> Result{
|
||||
self.state = CountdownState::Idle;
|
||||
self.remaining_duration_stored = None;
|
||||
self.start_timestamp = None;
|
||||
self.target_timestamp = None;
|
||||
Ok()
|
||||
}
|
||||
|
||||
}
|
||||
0
src-tauri/src/countdown/service.rs
Normal file
0
src-tauri/src/countdown/service.rs
Normal file
14
src-tauri/src/lib.rs
Normal file
14
src-tauri/src/lib.rs
Normal file
@@ -0,0 +1,14 @@
|
||||
// Learn more about Tauri commands at https://tauri.app/develop/calling-rust/
|
||||
#[tauri::command]
|
||||
fn greet(name: &str) -> String {
|
||||
format!("Hello, {}! You've been greeted from Rust!", name)
|
||||
}
|
||||
|
||||
#[cfg_attr(mobile, tauri::mobile_entry_point)]
|
||||
pub fn run() {
|
||||
tauri::Builder::default()
|
||||
.plugin(tauri_plugin_opener::init())
|
||||
.invoke_handler(tauri::generate_handler![greet])
|
||||
.run(tauri::generate_context!())
|
||||
.expect("error while running tauri application");
|
||||
}
|
||||
6
src-tauri/src/main.rs
Normal file
6
src-tauri/src/main.rs
Normal file
@@ -0,0 +1,6 @@
|
||||
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
|
||||
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
||||
|
||||
fn main() {
|
||||
owlerlay_lib::run()
|
||||
}
|
||||
0
src-tauri/src/server/mod.rs
Normal file
0
src-tauri/src/server/mod.rs
Normal file
0
src-tauri/src/server/routes.rs
Normal file
0
src-tauri/src/server/routes.rs
Normal file
0
src-tauri/src/server/sse.rs
Normal file
0
src-tauri/src/server/sse.rs
Normal file
Reference in New Issue
Block a user