From 5ffd6bc0a415a53bebd10d288182dce990b8d7c0 Mon Sep 17 00:00:00 2001 From: CJ Pais Date: Mon, 5 May 2025 17:19:24 -0700 Subject: [PATCH] Revert "fix the paste issue + comment dead code" This reverts commit 99760ed712bd2c121e1cdf357d29b890d43a59c9. --- src-tauri/Cargo.lock | 46 --------------- src-tauri/Cargo.toml | 1 - src-tauri/src/lib.rs | 138 +++++++++++++++++++++++++++---------------- 3 files changed, 86 insertions(+), 99 deletions(-) diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index c2f9008..c6037cb 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -1649,25 +1649,6 @@ version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf" -[[package]] -name = "enigo" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0cf6f550bbbdd5fe66f39d429cb2604bcdacbf00dca0f5bbe2e9306a0009b7c6" -dependencies = [ - "core-foundation 0.10.0", - "core-graphics 0.24.0", - "foreign-types-shared 0.3.1", - "libc", - "log", - "objc2", - "objc2-app-kit", - "objc2-foundation", - "windows 0.58.0", - "xkbcommon", - "xkeysym", -] - [[package]] name = "enum-map" version = "2.7.3" @@ -2435,7 +2416,6 @@ version = "0.1.0" dependencies = [ "anyhow", "cpal", - "enigo", "env_logger", "log", "rdev", @@ -3446,15 +3426,6 @@ version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" -[[package]] -name = "memmap2" -version = "0.9.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f" -dependencies = [ - "libc", -] - [[package]] name = "memoffset" version = "0.6.5" @@ -7764,23 +7735,6 @@ dependencies = [ "windows-sys 0.59.0", ] -[[package]] -name = "xkbcommon" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d66ca9352cbd4eecbbc40871d8a11b4ac8107cfc528a6e14d7c19c69d0e1ac9" -dependencies = [ - "libc", - "memmap2", - "xkeysym", -] - -[[package]] -name = "xkeysym" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56" - [[package]] name = "yoke" version = "0.7.5" diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 2e0123d..363dd21 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -37,7 +37,6 @@ tokio = "1.43.0" vad-rs = "0.1.5" tauri-plugin-upload = "2" tauri-plugin-stronghold = "2" -enigo = "0.3.0" [target.'cfg(target_os = "macos")'.dependencies] whisper-rs = { version = "0.13.2", features = ["metal"] } diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index a137c13..26cb0ad 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -1,6 +1,5 @@ mod managers; -use enigo::{Enigo, Keyboard, Settings}; use log::info; use managers::audio::AudioRecordingManager; use managers::keybinding::KeyBindingManager; @@ -13,69 +12,104 @@ use tauri::Manager; use tauri_plugin_autostart::MacosLauncher; use tauri_plugin_clipboard_manager::ClipboardExt; -// fn send_copy() { -// // Determine the modifier key based on the OS -// #[cfg(target_os = "macos")] -// let modifier_key = Key::MetaLeft; // Command key on macOS -// #[cfg(not(target_os = "macos"))] -// let modifier_key = Key::ControlLeft; // Control key on other systems - -// // Press both keys -// send(EventType::KeyPress(modifier_key)); -// send(EventType::KeyPress(Key::KeyC)); - -// // Release both keys -// send(EventType::KeyRelease(Key::KeyC)); -// send(EventType::KeyRelease(modifier_key)); -// } - -fn paste(text: String) { - let mut enigo = Enigo::new(&Settings::default()).unwrap(); - enigo.text(&text).unwrap(); +fn try_send_event(event: &EventType) { + if let Err(SimulateError) = simulate(event) { + println!("We could not send {:?}", event); + } } -// fn get_highlighted_text(app_handle: tauri::AppHandle) -> String { -// let clipboard = app_handle.clipboard(); +fn send(event: EventType) { + try_send_event(&event); + thread::sleep(time::Duration::from_millis(60)); +} -// // save the clipboard content -// let clipboard_content = clipboard.read_text().unwrap_or_default(); +fn send_paste() { + // Determine the modifier key based on the OS + #[cfg(target_os = "macos")] + let modifier_key = Key::MetaLeft; // Command key on macOS + #[cfg(not(target_os = "macos"))] + let modifier_key = Key::ControlLeft; // Control key on other systems -// // empty the clipboard -// clipboard.write_text("").unwrap(); + // Press both keys + send(EventType::KeyPress(modifier_key)); + send(EventType::KeyPress(Key::KeyV)); -// // issue 'copy' -// send_copy(); + // Release both keys + send(EventType::KeyRelease(Key::KeyV)); + send(EventType::KeyRelease(modifier_key)); +} -// // get the highlighted text -// let highlighted_text = clipboard.read_text().unwrap_or_default(); +fn send_copy() { + // Determine the modifier key based on the OS + #[cfg(target_os = "macos")] + let modifier_key = Key::MetaLeft; // Command key on macOS + #[cfg(not(target_os = "macos"))] + let modifier_key = Key::ControlLeft; // Control key on other systems -// // restore the clipboard content -// clipboard.write_text(&clipboard_content).unwrap(); + // Press both keys + send(EventType::KeyPress(modifier_key)); + send(EventType::KeyPress(Key::KeyC)); -// highlighted_text -// } + // Release both keys + send(EventType::KeyRelease(Key::KeyC)); + send(EventType::KeyRelease(modifier_key)); +} -// const INSTRUCT_SYS: &str = r#" -// You are a helpful assistant. You will receive voice transcriptions -// from a user that may include both a command/question and some -// minimal context to help you respond appropriately. +fn paste(text: String, app_handle: tauri::AppHandle) { + let clipboard = app_handle.clipboard(); -// For example, the user might say: -// - A direct question with no context: "What is the capital of France?" -// - A command with context: "get commit message I fixed the bug in the login system" -// "#; + // get the current clipboard content + let clipboard_content = clipboard.read_text().unwrap_or_default(); -// const CODE_SYS: &str = r#" -// You are a code-only assistant. I will provide you with selected text or clipboard content along with instructions. If I request code, output only the exact code implementation. If I request a terminal command, provide only the valid command syntax. Never use markdown, explanations, or additional text. + clipboard.write_text(&text).unwrap(); + send_paste(); -// When I share selected text or clipboard content, use that as context for generating your response. The output should be ready to copy and paste directly, with no formatting or commentary. For terminal commands, ensure they are valid for the specified environment. Note for terminal commands, I typically use lowercase instead of uppercase. You may also be given them directly, but need to translate them into a way that can actually be executed in the terminal because the transcription you are given might be poor. + // restore the clipboard + clipboard.write_text(&clipboard_content).unwrap(); +} -// Output only: -// - Raw code implementation when code is requested -// - Terminal command syntax when a command is requested -// - No markdown, no backticks, no explanations -// - No additional text or descriptions -// "#; +fn get_highlighted_text(app_handle: tauri::AppHandle) -> String { + let clipboard = app_handle.clipboard(); + + // save the clipboard content + let clipboard_content = clipboard.read_text().unwrap_or_default(); + + // empty the clipboard + clipboard.write_text("").unwrap(); + + // issue 'copy' + send_copy(); + + // get the highlighted text + let highlighted_text = clipboard.read_text().unwrap_or_default(); + + // restore the clipboard content + clipboard.write_text(&clipboard_content).unwrap(); + + highlighted_text +} + +const INSTRUCT_SYS: &str = r#" +You are a helpful assistant. You will receive voice transcriptions +from a user that may include both a command/question and some +minimal context to help you respond appropriately. + +For example, the user might say: +- A direct question with no context: "What is the capital of France?" +- A command with context: "get commit message I fixed the bug in the login system" +"#; + +const CODE_SYS: &str = r#" +You are a code-only assistant. I will provide you with selected text or clipboard content along with instructions. If I request code, output only the exact code implementation. If I request a terminal command, provide only the valid command syntax. Never use markdown, explanations, or additional text. + + When I share selected text or clipboard content, use that as context for generating your response. The output should be ready to copy and paste directly, with no formatting or commentary. For terminal commands, ensure they are valid for the specified environment. Note for terminal commands, I typically use lowercase instead of uppercase. You may also be given them directly, but need to translate them into a way that can actually be executed in the terminal because the transcription you are given might be poor. + + Output only: + - Raw code implementation when code is requested + - Terminal command syntax when a command is requested + - No markdown, no backticks, no explanations + - No additional text or descriptions +"#; fn register_bindings(manager: &mut KeyBindingManager) { manager.register( @@ -94,7 +128,7 @@ fn register_bindings(manager: &mut KeyBindingManager) { match ctx.transcription_manager.transcribe(samples) { Ok(transcription) => { println!("Transcription: {}", transcription); - paste(transcription); + paste(transcription, ctx.app_handle.clone()); } Err(err) => println!("Transcription error: {}", err), }