commit 65f0aa78065720487dbf1342c4ffde17ed06d4ec Author: Jonathan Bernard Date: Sat Dec 17 22:49:40 2016 -0600 Initial commit. Utility methods to call out to the system shell. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3dc8b61 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.sw? +build/ +.gradle/ diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..43fe5fc --- /dev/null +++ b/build.gradle @@ -0,0 +1,10 @@ +apply plugin: 'groovy' +apply plugin: 'maven' + +group = 'com.jdbernard' + +version = '0.1.0' + +dependencies { + compile localGroovy() +} diff --git a/src/main/groovy/com/jdbernard/gradle/ShellUtil.groovy b/src/main/groovy/com/jdbernard/gradle/ShellUtil.groovy new file mode 100644 index 0000000..4a75b9e --- /dev/null +++ b/src/main/groovy/com/jdbernard/gradle/ShellUtil.groovy @@ -0,0 +1,35 @@ +package com.jdbernard.gradle + +// ## Utility methods for working with processes. +public class ShellUtil { + + public static void shell_(List cmd) { shell(cmd, null, false) } + public static void shell_(String... cmd) { shell(cmd, null, false) } + public static void shell(String... cmd) { shell(cmd, null, true) } + + public static void shell(List cmd, File workingDir, boolean checkExit) { + shell(cmd as String[], workingDir, checkExit) } + + public static void shell(String[] cmd, File workingDir, boolean checkExit) { + def pb = new ProcessBuilder(cmd) + if (workingDir) pb.directory(workingDir) + def process = pb.start() + process.waitForProcessOutput(System.out, System.err) + + if (process.exitValue() != 0) + println "Command $cmd exited with non-zero result code." + if (checkExit) assert process.exitValue() == 0 : "Not ignoring failed command." } + + public static void shell(List> cmds, File workingDir) { + cmds.each { + ProcessBuilder pb = new ProcessBuilder(it) + pb.directory(workingDir) + pb.start().waitForProcessOutput(System.out, System.err) } } + + public static void spawn(String... cmd) { spawn(cmd, null) } + public static void spawn(List cmd, File workingDir) { spawn(cmd as String[], workingDir) } + public static void spawn(String[] cmd, File workingDir) { + def pb = new ProcessBuilder(cmd) + if (workingDir) pb.directory(workingDir) + def process = pb.start() } +}