-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from dottorblaster/implement-json-output
Implement JSON output for better interoperability
- Loading branch information
Showing
5 changed files
with
87 additions
and
25 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,77 @@ | ||
extern crate ansi_term; | ||
extern crate serde_json; | ||
|
||
use parse_config::Task; | ||
use task_output::SerializableOutput; | ||
use task_output; | ||
use std::sync::{Mutex, Arc}; | ||
use std::thread; | ||
use std::process::Command; | ||
use std::process::Output; | ||
|
||
use self::ansi_term::Colour::{Red, Green, Yellow, Black}; | ||
use self::ansi_term::ANSIString; | ||
|
||
fn task_success(task: Task, output: Output) { | ||
let stdout = ANSIString::from(String::from_utf8(output.stdout).unwrap()); | ||
println!( | ||
"{} {}\n{}\n", | ||
Black.bold().on(Green).paint(" SUCCESS "), | ||
Yellow.paint(format!("{}", task.name)), | ||
stdout | ||
); | ||
fn task_success(task: Task, output: Output, json: bool) { | ||
if json == false { | ||
let stdout = ANSIString::from(String::from_utf8(output.stdout).unwrap()); | ||
println!( | ||
"{} {}\n{}\n", | ||
Black.bold().on(Green).paint(" SUCCESS "), | ||
Yellow.paint(format!("{}", task.name)), | ||
stdout | ||
); | ||
} | ||
} | ||
|
||
fn task_failure(task: Task, output: Output) { | ||
let stderr = ANSIString::from(String::from_utf8(output.stderr).unwrap()); | ||
println!( | ||
"{} {}\n{}\n", | ||
Black.bold().on(Red).paint(" FAIL "), | ||
Yellow.paint(format!("{}", task.name)), | ||
stderr | ||
); | ||
fn task_failure(task: Task, output: Output, json: bool) { | ||
if json == false { | ||
let stderr = ANSIString::from(String::from_utf8(output.stderr).unwrap()); | ||
println!( | ||
"{} {}\n{}\n", | ||
Black.bold().on(Red).paint(" FAIL "), | ||
Yellow.paint(format!("{}", task.name)), | ||
stderr | ||
); | ||
} | ||
} | ||
|
||
fn print_json(outputs: Arc<Mutex<Vec<task_output::TaskOutput>>>, json: bool) { | ||
if json == true { | ||
let slice = &*outputs.lock().unwrap(); | ||
let serializable_output = SerializableOutput { tasks: slice.to_vec() }; | ||
println!("{}", serde_json::to_string(&serializable_output).unwrap()); | ||
} | ||
} | ||
|
||
pub fn run(tasks: Vec<Task>, cwd_path: String) -> bool { | ||
pub fn run(tasks: Vec<Task>, cwd_path: String, json_output: bool) -> bool { | ||
let outputs = Arc::new(Mutex::new(task_output::Tasks::with_capacity(tasks.len()))); | ||
let mut handles = Vec::with_capacity(tasks.len()); | ||
println!("\n"); | ||
for task in &tasks { | ||
let (data, path) = (task.clone(), cwd_path.clone()); | ||
let outputs = Arc::clone(&outputs); | ||
let child = thread::spawn(move || { | ||
let local_task = data.clone(); | ||
let task_data = data.clone(); | ||
let mut iter = local_task.command.split_whitespace(); | ||
let output = Command::new(iter.nth(0).unwrap()) | ||
let mut list = outputs.lock().unwrap(); | ||
let command_output = Command::new(iter.nth(0).unwrap()) | ||
.args(iter) | ||
.current_dir(path) | ||
.output() | ||
.expect("command failed"); | ||
match output.status.code() { | ||
Some(0) => task_success(data, output), | ||
Some(_) => task_failure(data, output), | ||
let cloned_output = command_output.clone(); | ||
list.push(task_output::build_task_output(cloned_output, task_data)); | ||
match command_output.status.code() { | ||
Some(0) => task_success(data, command_output, json_output), | ||
Some(_) => task_failure(data, command_output, json_output), | ||
None => println!("Process terminated by signal") | ||
} | ||
}); | ||
handles.push(child); | ||
} | ||
for handle in handles { handle.join().unwrap(); } | ||
print_json(outputs, json_output); | ||
true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
extern crate serde; | ||
extern crate serde_json; | ||
|
||
use parse_config::Task; | ||
use std::process::Output; | ||
|
||
#[derive(Serialize, Clone)] | ||
pub struct TaskOutput { | ||
pub outcome: String, | ||
pub code: String, | ||
pub name: String, | ||
pub description: String, | ||
pub command: String, | ||
} | ||
|
||
pub type Tasks = Vec<TaskOutput>; | ||
|
||
#[derive(Serialize, Clone)] | ||
pub struct SerializableOutput { | ||
pub tasks: Vec<TaskOutput>, | ||
} | ||
|
||
pub fn build_task_output(output: Output, task: Task) -> TaskOutput { | ||
TaskOutput { | ||
outcome: String::from_utf8(output.stdout).unwrap(), | ||
code: output.status.code().unwrap().to_string(), | ||
name: task.name, | ||
description: task.description, | ||
command: task.command, | ||
} | ||
} |