Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

select apk from binary path, not cwd #392

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 6 additions & 12 deletions relay-rust/src/execution_error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
*/

use std::error;
use std::ffi::OsString;
use std::fmt;
use std::io;
#[cfg(unix)]
Expand Down Expand Up @@ -42,8 +43,8 @@ pub struct ProcessIoError {

#[derive(Debug)]
pub struct Cmd {
command: String,
args: Vec<String>,
command: OsString,
args: Vec<OsString>,
}

#[derive(Debug)]
Expand All @@ -67,20 +68,13 @@ impl Termination {

impl fmt::Display for Cmd {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{} {:?}", self.command, self.args)
write!(f, "{:?} {:?}", self.command, self.args)
}
}

impl Cmd {
pub fn new<S1, S2>(command: S1, args: Vec<S2>) -> Cmd
where
S1: Into<String>,
S2: Into<String>,
{
Self {
command: command.into(),
args: args.into_iter().map(Into::into).collect::<Vec<_>>(),
}
pub fn new(command: OsString, args: Vec<OsString>) -> Cmd {
Self { command, args }
}
}

Expand Down
24 changes: 14 additions & 10 deletions relay-rust/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ use crate::adb_monitor::AdbMonitor;
use crate::cli_args::CommandLineArguments;
use crate::execution_error::{Cmd, CommandExecutionError, ProcessIoError, ProcessStatusError};
use std::env;
use std::ffi::OsString;
use std::process::{self, exit};
use std::thread;
use std::time::Duration;
Expand All @@ -46,11 +47,14 @@ fn get_adb_path() -> String {
}

#[inline]
fn get_apk_path() -> String {
fn get_apk_path() -> Result<OsString, CommandExecutionError> {
if let Some(env_adb) = std::env::var_os("GNIREHTET_APK") {
env_adb.into_string().expect("invalid GNIREHTET_APK value")
Ok(env_adb)
} else {
"gnirehtet.apk".to_string()
let bin_path = env::current_exe().map_err(CommandExecutionError::Io)?;
let real_path = bin_path.read_link().unwrap_or(bin_path);
let apk_path = real_path.parent().unwrap().join("gnirehtet.apk");
Ok(apk_path.into_os_string())
}
}

Expand Down Expand Up @@ -343,7 +347,7 @@ impl Command for RelayCommand {

fn cmd_install(serial: Option<&str>) -> Result<(), CommandExecutionError> {
info!(target: TAG, "Installing gnirehtet client...");
exec_adb(serial, vec!["install".into(), "-r".into(), get_apk_path()])
exec_adb(serial, vec!["install".into(), "-r".into(), get_apk_path()?])
}

fn cmd_uninstall(serial: Option<&str>) -> Result<(), CommandExecutionError> {
Expand Down Expand Up @@ -499,24 +503,24 @@ fn async_start(serial: Option<&str>, dns_servers: Option<&str>, routes: Option<&
});
}

fn create_adb_args<S: Into<String>>(serial: Option<&str>, args: Vec<S>) -> Vec<String> {
let mut command = Vec::<String>::new();
fn create_adb_args<S: Into<OsString>>(serial: Option<&str>, args: Vec<S>) -> Vec<OsString> {
let mut command = Vec::new();
if let Some(serial) = serial {
command.push("-s".into());
command.push(serial.to_string());
command.push(serial.into());
}
for arg in args {
command.push(arg.into());
}
command
}

fn exec_adb<S: Into<String>>(
fn exec_adb<S: Into<OsString>>(
serial: Option<&str>,
args: Vec<S>,
) -> Result<(), CommandExecutionError> {
let adb_args = create_adb_args(serial, args);
let adb = get_adb_path();
let adb = get_adb_path().into();
debug!(target: TAG, "Execute: {:?} {:?}", adb, adb_args);
match process::Command::new(&adb).args(&adb_args[..]).status() {
Ok(exit_status) => {
Expand All @@ -540,7 +544,7 @@ fn must_install_client(serial: Option<&str>) -> Result<bool, CommandExecutionErr
serial,
vec!["shell", "dumpsys", "package", "com.genymobile.gnirehtet"],
);
let adb = get_adb_path();
let adb = get_adb_path().into();
debug!(target: TAG, "Execute: {:?} {:?}", adb, args);
match process::Command::new(&adb).args(&args[..]).output() {
Ok(output) => {
Expand Down