chromiumBinary = System.getProperty("user.home") + chromiumBinary.substring(1)
}
+ def stdout
+ def stderr
doFirst {
def exec = file(chromiumBinary)
if (!exec.exists()) {
throw new GradleException("Could not find chromium binary '${chromiumBinary}'. Cannot run task ${name}.")
}
+
+ stdout = new ByteArrayOutputStream()
+ stderr = new ByteArrayOutputStream()
+ if (jalviewjs_j2s_to_console.equals("true")) {
+ standardOutput = new org.apache.tools.ant.util.TeeOutputStream(
+ stdout,
+ System.out)
+ errorOutput = new org.apache.tools.ant.util.TeeOutputStream(
+ stderr,
+ System.err)
+ } else {
+ standardOutput = stdout
+ errorOutput = stderr
+ }
}
executable(chromiumBinary)
"--enable-logging=stderr",
jalviewjsStderrLaunchFilename
])
-
- /*
- standardOutput = new ByteArrayOutputStream()
- errorOutput = new ByteArrayOutputStream()
doLast {
- println("Chrome STDOUT: ")
- println(standardOutput.toString())
- println("Chrome STDERR: ")
- println(errorOutput.toString())
-
def found = false
- def stderr = errorOutput.toString()
- stderr.eachLine { line ->
+ stderr.toString().eachLine { line ->
if (line.contains(jalviewjs_desktop_init_string)) {
println("Found line '"+line+"'")
found = true
if (!found) {
throw new GradleException("Could not find evidence of Desktop launch in JalviewJS.")
}
- }
- */
+ }
}