-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #153 from solaoi/feature_fugumt
翻訳パック(日本語:速度優先)を追加
- Loading branch information
Showing
16 changed files
with
921 additions
and
51 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
use tauri::{AppHandle, Manager}; | ||
|
||
use futures_util::StreamExt; | ||
use std::cmp::min; | ||
use std::fs::File; | ||
use std::io::Write; | ||
|
||
use crate::module::sqlite::Sqlite; | ||
|
||
#[derive(Debug, Clone, serde::Serialize)] | ||
pub struct Progress { | ||
pub model_type: String, | ||
pub rate: f64, | ||
pub is_progress: bool, | ||
} | ||
|
||
pub struct FugumtModelDownloader { | ||
app_handle: AppHandle, | ||
} | ||
impl FugumtModelDownloader { | ||
pub fn new(app_handle: AppHandle) -> Self { | ||
Self { app_handle } | ||
} | ||
|
||
#[tokio::main] | ||
pub async fn download(&self) { | ||
let model_type = "fugumt-en-ja"; | ||
let path: &str = &self | ||
.app_handle | ||
.path_resolver() | ||
.resolve_resource("resources/fugumt-en-ja.zip") | ||
.unwrap() | ||
.to_string_lossy() | ||
.to_string(); | ||
let url = "https://object-storage.tyo1.conoha.io/v1/nc_b22de95e3cf1434da07499038766e2b7/lycoris/fugumt-en-ja.zip"; | ||
let res = reqwest::get(url).await.unwrap(); | ||
let total_size = res | ||
.content_length() | ||
.ok_or(format!("Failed to get content length from '{}'", url)) | ||
.unwrap(); | ||
|
||
let _ = &self.app_handle.emit_all( | ||
"downloadFugumtProgress", | ||
Progress { | ||
model_type: model_type.to_string(), | ||
rate: 0.0, | ||
is_progress: true, | ||
}, | ||
); | ||
|
||
let mut file; | ||
let mut downloaded: u64 = 0; | ||
let mut stream = res.bytes_stream(); | ||
|
||
println!("Seeking in file."); | ||
if std::path::Path::new(&path).exists() { | ||
println!("File exists. Removig..."); | ||
let _ = std::fs::remove_file(&path); | ||
} | ||
file = File::create(&path) | ||
.or(Err(format!("Failed to create file '{}'", &path))) | ||
.unwrap(); | ||
|
||
println!("Commencing transfer"); | ||
let mut rate = 0.0; | ||
while let Some(item) = stream.next().await { | ||
let chunk = item | ||
.or(Err(format!("Error while downloading file"))) | ||
.unwrap(); | ||
file.write(&chunk) | ||
.or(Err(format!("Error while writing to file"))) | ||
.unwrap(); | ||
let new = min(downloaded + (chunk.len() as u64), total_size); | ||
downloaded = new; | ||
|
||
let current_rate = ((new as f64 * 100.0) / total_size as f64).round(); | ||
if rate != current_rate { | ||
let _ = &self.app_handle.emit_all( | ||
"downloadFugumtProgress", | ||
Progress { | ||
model_type: model_type.to_string(), | ||
rate: current_rate, | ||
is_progress: true, | ||
}, | ||
); | ||
rate = current_rate | ||
} | ||
} | ||
|
||
let dir: &str = &self | ||
.app_handle | ||
.path_resolver() | ||
.resolve_resource("resources") | ||
.unwrap() | ||
.to_string_lossy() | ||
.to_string(); | ||
let _ = std::process::Command::new("sh") | ||
.arg("-c") | ||
.arg(format!("unzip {} -d {}", path, dir)) | ||
.output() | ||
.expect("failed"); | ||
let _ = std::process::Command::new("sh") | ||
.arg("-c") | ||
.arg(format!("rm {}", path)) | ||
.output() | ||
.expect("failed"); | ||
|
||
let _ = Sqlite::new().update_model_is_downloaded(model_type.to_string(), 1); | ||
|
||
let _ = &self.app_handle.emit_all( | ||
"downloadFugumtProgress", | ||
Progress { | ||
model_type: model_type.to_string(), | ||
rate: 0.0, | ||
is_progress: false, | ||
}, | ||
); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
pub mod whisper; | ||
pub mod vosk; | ||
pub mod fugumt; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.