Merge pull request #71 from federico-terzi/dev

Version 0.2.4
This commit is contained in:
Federico Terzi 2019-10-04 22:22:35 +02:00 committed by GitHub
commit 7d3a01784b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 72 additions and 49 deletions

2
Cargo.lock generated
View File

@ -329,7 +329,7 @@ dependencies = [
[[package]] [[package]]
name = "espanso" name = "espanso"
version = "0.2.3" version = "0.2.4"
dependencies = [ dependencies = [
"backtrace 0.3.37 (registry+https://github.com/rust-lang/crates.io-index)", "backtrace 0.3.37 (registry+https://github.com/rust-lang/crates.io-index)",
"chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "espanso" name = "espanso"
version = "0.2.3" version = "0.2.4"
authors = ["Federico Terzi <federicoterzi96@gmail.com>"] authors = ["Federico Terzi <federicoterzi96@gmail.com>"]
license = "GPL-3.0" license = "GPL-3.0"
description = "Cross-platform Text Expander written in Rust" description = "Cross-platform Text Expander written in Rust"

View File

@ -5,5 +5,6 @@ steps:
tar czf "espanso-linux.tar.gz" espanso tar czf "espanso-linux.tar.gz" espanso
cd ../.. cd ../..
cp target/release/espanso-*.gz . cp target/release/espanso-*.gz .
sha256sum espanso-*.gz | awk '{ print $1 }' > espanso-linux-sha256.txt
ls -la ls -la
displayName: "Cargo build and packaging for Linux" displayName: "Cargo build and packaging for Linux"

View File

@ -291,71 +291,81 @@ char *xwm_get_win_title(Display *disp, Window win)
} }
int32_t get_active_window_name(char * buffer, int32_t size) { int32_t get_active_window_name(char * buffer, int32_t size) {
Display *disp = XOpenDisplay(NULL); xdo_t * x = xdo_new(NULL);
if (!disp) { if (!x) {
return -1; return -1;
} }
// Get the active window // Get the active window
Window win; Window win;
int revert_to_return; int ret = xdo_get_active_window(x, &win);
XGetInputFocus(disp, &win, &revert_to_return); int result = 1;
if (ret) {
char * title = xwm_get_win_title(disp, win); fprintf(stderr, "xdo_get_active_window reported an error\n");
result = -2;
}else{
char * title = xwm_get_win_title(x->xdpy, win);
snprintf(buffer, size, "%s", title); snprintf(buffer, size, "%s", title);
XFree(title); XFree(title);
}
XCloseDisplay(disp); xdo_free(x);
return 1; return result;
} }
int32_t get_active_window_class(char * buffer, int32_t size) { int32_t get_active_window_class(char * buffer, int32_t size) {
Display *disp = XOpenDisplay(NULL); xdo_t * x = xdo_new(NULL);
if (!disp) { if (!x) {
return -1; return -1;
} }
// Get the active window // Get the active window
Window win; Window win;
int revert_to_return; int ret = xdo_get_active_window(x, &win);
XGetInputFocus(disp, &win, &revert_to_return); int result = 1;
if (ret) {
fprintf(stderr, "xdo_get_active_window reported an error\n");
result = -2;
}else{
XClassHint hint; XClassHint hint;
if (XGetClassHint(disp, win, &hint)) { if (XGetClassHint(x->xdpy, win, &hint)) {
snprintf(buffer, size, "%s", hint.res_class); snprintf(buffer, size, "%s", hint.res_class);
XFree(hint.res_name); XFree(hint.res_name);
XFree(hint.res_class); XFree(hint.res_class);
} }
}
XCloseDisplay(disp); xdo_free(x);
return 1; return result;
} }
int32_t get_active_window_executable(char *buffer, int32_t size) { int32_t get_active_window_executable(char *buffer, int32_t size) {
Display *disp = XOpenDisplay(NULL); xdo_t * x = xdo_new(NULL);
if (!disp) { if (!x) {
return -1; return -1;
} }
// Get the active window // Get the active window
Window win; Window win;
int revert_to_return; int ret = xdo_get_active_window(x, &win);
XGetInputFocus(disp, &win, &revert_to_return); int result = 1;
if (ret) {
fprintf(stderr, "xdo_get_active_window reported an error\n");
result = -2;
}else{
// Get the window process PID // Get the window process PID
char *pid_raw = (char*)get_property(disp,win, XA_CARDINAL, "_NET_WM_PID", NULL); char *pid_raw = (char*)get_property(x->xdpy,win, XA_CARDINAL, "_NET_WM_PID", NULL);
if (pid_raw == NULL) { if (pid_raw == NULL) {
return -2; result = -3;
} }else{
int pid = pid_raw[0] | pid_raw[1] << 8 | pid_raw[2] << 16 | pid_raw[3] << 24; int pid = pid_raw[0] | pid_raw[1] << 8 | pid_raw[2] << 16 | pid_raw[3] << 24;
// Get the executable path from it // Get the executable path from it
@ -365,9 +375,12 @@ int32_t get_active_window_executable(char *buffer, int32_t size) {
readlink(proc_path, buffer, size); readlink(proc_path, buffer, size);
XFree(pid_raw); XFree(pid_raw);
XCloseDisplay(disp); }
}
return 1; xdo_free(x);
return result;
} }
int32_t is_current_window_terminal() { int32_t is_current_window_terminal() {

View File

@ -72,6 +72,11 @@ fn main() {
.arg(Arg::with_name("package_name") .arg(Arg::with_name("package_name")
.help("Package name")); .help("Package name"));
let uninstall_subcommand = SubCommand::with_name("uninstall")
.about("Remove an installed package. Equivalent to 'espanso package uninstall'")
.arg(Arg::with_name("package_name")
.help("Package name"));
let mut clap_instance = App::new("espanso") let mut clap_instance = App::new("espanso")
.version(VERSION) .version(VERSION)
.author("Federico Terzi") .author("Federico Terzi")
@ -122,19 +127,18 @@ fn main() {
.subcommand(SubCommand::with_name("package") .subcommand(SubCommand::with_name("package")
.about("Espanso package manager commands") .about("Espanso package manager commands")
.subcommand(install_subcommand.clone()) .subcommand(install_subcommand.clone())
.subcommand(uninstall_subcommand.clone())
.subcommand(SubCommand::with_name("list") .subcommand(SubCommand::with_name("list")
.about("List all installed packages") .about("List all installed packages")
.arg(Arg::with_name("full") .arg(Arg::with_name("full")
.help("Print all package info") .help("Print all package info")
.long("full"))) .long("full")))
.subcommand(SubCommand::with_name("remove")
.about("Remove an installed package")
.arg(Arg::with_name("package_name")
.help("Package name")))
.subcommand(SubCommand::with_name("refresh") .subcommand(SubCommand::with_name("refresh")
.about("Update espanso package index")) .about("Update espanso package index"))
) )
.subcommand(install_subcommand); .subcommand(install_subcommand)
.subcommand(uninstall_subcommand);
let matches = clap_instance.clone().get_matches(); let matches = clap_instance.clone().get_matches();
@ -223,12 +227,17 @@ fn main() {
return; return;
} }
if let Some(matches) = matches.subcommand_matches("uninstall") {
remove_package_main(config_set, matches);
return;
}
if let Some(matches) = matches.subcommand_matches("package") { if let Some(matches) = matches.subcommand_matches("package") {
if let Some(matches) = matches.subcommand_matches("install") { if let Some(matches) = matches.subcommand_matches("install") {
install_main(config_set, matches); install_main(config_set, matches);
return; return;
} }
if let Some(matches) = matches.subcommand_matches("remove") { if let Some(matches) = matches.subcommand_matches("uninstall") {
remove_package_main(config_set, matches); remove_package_main(config_set, matches);
return; return;
} }