Crates.io | adb-rust |
lib.rs | adb-rust |
version | 0.2.5 |
source | src |
created_at | 2024-04-02 09:04:46.24494 |
updated_at | 2024-09-02 07:39:43.692446 |
description | A common adb operation |
homepage | |
repository | |
max_upload_size | |
id | 1193353 |
size | 23,959 |
===========================
ADBCmd can execute commands synchronously or asynchronously using callback function closures.
Currently, this library is primarily used for invoking "cmd" commands in Rust, providing a variety of practical APIs.
Command
instance based on tokio::process::Command
, returning the instance of Command
.Command
output in real-time.std::process::Command
) to obtain the output of the current synchronous command, returning a Result<String, String>
.Result<String, String>
.[dependencies]
tokio = { version = "1.0", features = ["full"] }
adb-rust="0.2.1"
use adb_rust::cmd::{ADBCmd, ADBCmdResult};
pub fn push_xml_file() {
let file: &str = "./resources/file.xml";
let paths: String = ADBCmd::get_file_path(file).unwrap();
let args: Vec<String> = vec!["push".to_string(), paths, "/sdcard/".to_string()];
let res: Result<String, String> = ADBCmd::new("adb", true).run(&args);
...
...
}
pub mod tests {
use crate::cmd::{ADBCmd, ADBCmdTrait};
use super::*;
use tokio;
#[test]
fn test_adb_cmd() {
let path = ADBCmd::get_file_path("./resources/file.xml").unwrap();
let cleaned_path = path.replace("\\\\?\\", "");
let args = vec!["push".to_string(), cleaned_path, "/data/local/tmp/".to_string()];
let binding = ADBCmd::new("adb", false);
let result = binding.run(&args);
match result {
Ok(stdout) => println!("{}", stdout),
Err(stderr) => println!("{}", stderr),
}
}
#[tokio::test]
async fn test_run_async() {
let adb_cmd = ADBCmd::new("adb", false);
let args = vec!["devices".to_string()];
adb_cmd.run_async(args, |line| {
println!("{}", line);
line
}).await;
}
}