95 lines
3.5 KiB
Rust
95 lines
3.5 KiB
Rust
|
// Copyright 2024 The Grim Developers
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License.
|
||
|
// You may obtain a copy of the License at
|
||
|
//
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
|
||
|
use std::sync::Arc;
|
||
|
use std::sync::atomic::{AtomicBool, Ordering};
|
||
|
use std::{fs, thread};
|
||
|
use parking_lot::RwLock;
|
||
|
|
||
|
use crate::gui::Colors;
|
||
|
use crate::gui::icons::FILE_ARROW_UP;
|
||
|
use crate::gui::platform::PlatformCallbacks;
|
||
|
use crate::gui::views::View;
|
||
|
|
||
|
/// Button to pick file and parse its data into text.
|
||
|
pub struct FilePickButton {
|
||
|
/// Flag to check if file is parsing.
|
||
|
pub file_parsing: Arc<AtomicBool>,
|
||
|
/// File parsing result.
|
||
|
pub file_parsing_result: Arc<RwLock<Option<String>>>
|
||
|
}
|
||
|
|
||
|
impl Default for FilePickButton {
|
||
|
fn default() -> Self {
|
||
|
Self {
|
||
|
file_parsing: Arc::new(AtomicBool::new(false)),
|
||
|
file_parsing_result: Arc::new(RwLock::new(None))
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl FilePickButton {
|
||
|
/// Draw button content.
|
||
|
pub fn ui(&mut self,
|
||
|
ui: &mut egui::Ui,
|
||
|
cb: &dyn PlatformCallbacks,
|
||
|
on_result: impl FnOnce(String)) {
|
||
|
if self.file_parsing.load(Ordering::Relaxed) {
|
||
|
// Draw loading spinner on file parsing.
|
||
|
View::small_loading_spinner(ui);
|
||
|
// Check file parsing result.
|
||
|
let has_result = {
|
||
|
let r_res = self.file_parsing_result.read();
|
||
|
r_res.is_some()
|
||
|
};
|
||
|
if has_result {
|
||
|
let text = {
|
||
|
let r_res = self.file_parsing_result.read();
|
||
|
r_res.clone().unwrap()
|
||
|
};
|
||
|
// Callback on result.
|
||
|
on_result(text);
|
||
|
// Clear result.
|
||
|
let mut w_res = self.file_parsing_result.write();
|
||
|
*w_res = None;
|
||
|
self.file_parsing.store(false, Ordering::Relaxed);
|
||
|
}
|
||
|
} else {
|
||
|
// Draw button to pick file.
|
||
|
let file_text = format!("{} {}", FILE_ARROW_UP, t!("choose_file"));
|
||
|
View::colored_text_button(ui, file_text, Colors::blue(), Colors::button(), || {
|
||
|
if let Some(path) = cb.pick_file() {
|
||
|
// Parse file at new thread.
|
||
|
self.file_parsing.store(true, Ordering::Relaxed);
|
||
|
let result = self.file_parsing_result.clone();
|
||
|
thread::spawn(move || {
|
||
|
if path.ends_with(".gif") {
|
||
|
//TODO: Detect QR codes on GIF file.
|
||
|
} else if path.ends_with(".jpeg") || path.ends_with(".jpg") ||
|
||
|
path.ends_with(".png") {
|
||
|
//TODO: Detect QR codes on image files.
|
||
|
} else {
|
||
|
// Parse file as plain text.
|
||
|
if let Ok(text) = fs::read_to_string(path) {
|
||
|
let mut w_res = result.write();
|
||
|
*w_res = Some(text);
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|