From: Andrea Zagli Date: Tue, 1 Nov 2022 16:13:38 +0000 (+0100) Subject: Run command 'go build' and show stdout/stderr. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;p=rust%2Fdevrevproxy Run command 'go build' and show stdout/stderr. --- diff --git a/src/main.rs b/src/main.rs index 069e978..e250e29 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,6 +5,9 @@ use std::time::SystemTime; use chrono::{DateTime, Local}; +use std::io::Read; +use std::process::{Command, Stdio}; + use std::convert::Infallible; use hyper::service::{make_service_fn, service_fn}; @@ -30,6 +33,29 @@ fn list_dir() -> () { } } +fn run_cmd() -> () { + let child = Command::new("go") + .args(["build", "-v", "-o", "bandirs", "."]) + .current_dir("/home/tux/Documenti/sviluppo/bandi_fe_go/") + .stdout(Stdio::piped()) + .stderr(Stdio::piped()) + .spawn() + .expect("Process failed."); + + let mut sstdout = String::new(); + let mut stdout = child.stdout.unwrap(); + stdout.read_to_string(&mut sstdout).expect("cannot read stdout"); + + let mut sstderr = String::new(); + let mut stderr = child.stderr.unwrap(); + stderr.read_to_string(&mut sstderr).expect("cannot read stderr"); + + println!("{:?}", stdout); + println!("{}", sstdout); + println!("{:?}", stderr); + println!("{}", sstderr); +} + async fn hello(req: Request) -> Result, Infallible> { let client = Client::new(); @@ -53,6 +79,8 @@ async fn hello(req: Request) -> Result, Infallible> { list_dir(); + run_cmd(); + Ok(Response::new(Body::from("Hello World!"))) //Ok(Response::new(response.unwrap().into_body())) }