]> saetta.ns0.it Git - rust/devrevproxy/commitdiff
Run command 'go build' and show stdout/stderr. master
authorAndrea Zagli <azagli@libero.it>
Tue, 1 Nov 2022 16:13:38 +0000 (17:13 +0100)
committerAndrea Zagli <azagli@libero.it>
Tue, 1 Nov 2022 16:13:38 +0000 (17:13 +0100)
src/main.rs

index 069e978f4ad5c8def23f82c1cbbdd421e51c6f3d..e250e29ffb15e8a2a859d4cf7529afee3057acd2 100644 (file)
@@ -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<Body>) -> Result<Response<Body>, Infallible> {
        let client = Client::new();
 
@@ -53,6 +79,8 @@ async fn hello(req: Request<Body>) -> Result<Response<Body>, Infallible> {
 
        list_dir();
 
+       run_cmd();
+
        Ok(Response::new(Body::from("Hello World!")))
        //Ok(Response::new(response.unwrap().into_body()))
 }