如何在gradle中使用exec()输出

时间:2012-06-19 01:23:24

标签: gradle

我正在尝试实现一个gradle任务,从一系列环境变量值和shell执行中动态创建buildsignature.properties文件。我有它主要工作,但我似乎无法获得shell命令的输出。这是我的任务......

task generateBuildSignature << {
    ext.whoami = exec() {
        executable = "whoami"
    }
    ext.hostname = exec() {
         executable = "hostname"
    }
    ext.buildTag = System.env.BUILD_TAG ?: "dev"

    ant.propertyfile(
        file: "${buildDir}/buildsignature.properties",
        comment: "This file is automatically generated - DO NOT EDIT!" ) {
        entry( key: "version", value: "${project.version}" )
        entry( key: "buildTimestamp", value: "${new Date().format('yyyy-MM-dd HH:mm:ss z')}" )
        entry( key: "buildUser", value: "${ext.whoami}" )
        entry( key: "buildSystem", value: "${ext.hostname}" )
        entry( key: "buildTag", value: "$ext.buildTag" )
    }
}

但是生成的属性字段无法获得buildUser和buildSystem的预期结果。

#This file is automatically generated - DO NOT EDIT!
#Mon, 18 Jun 2012 18:14:14 -0700
version=1.1.0
buildTimestamp=2012-06-18 18\:14\:14 PDT
buildUser=org.gradle.process.internal.DefaultExecHandle$ExecResultImpl@2e6a54f9
buildSystem=org.gradle.process.internal.DefaultExecHandle$ExecResultImpl@46f0bf3d
buildTag=dev

如何让buildUser和buildSystem匹配相应exec的输出而不是默认的ExecResultImpl toString?这真的不是那么难,可以吗?

5 个答案:

答案 0 :(得分:59)

这是我从exec获取stdout的首选语法:

def stdout = new ByteArrayOutputStream()
exec{
    commandLine "whoami"
    standardOutput = stdout;
}
println "Output:\n$stdout";

在此处找到:http://gradle.1045684.n5.nabble.com/external-process-execution-td1431883.html (注意页面有拼写错误,并提到ByteArrayInputStream而不是ByteArrayOutputStream)

答案 1 :(得分:39)

post描述了如何解析Exec调用的输出。您将在下面找到两个运行命令的任务。

task setWhoamiProperty {
    doLast {
        new ByteArrayOutputStream().withStream { os ->
            def result = exec {
                executable = 'whoami'
                standardOutput = os
            }
            ext.whoami = os.toString()
        }
    }
}

task setHostnameProperty {
    doLast {
        new ByteArrayOutputStream().withStream { os ->
            def result = exec {
                executable = 'hostname'
                standardOutput = os
            }
            ext.hostname = os.toString()
        }
    }
}

task printBuildInfo {
    dependsOn setWhoamiProperty, setHostnameProperty
    doLast {
         println whoami
         println hostname
    }
}

实际上有一种更简单的方法来获取此信息,而无需调用shell命令。

目前已登录用户:System.getProperty('user.name')

主机名:InetAddress.getLocalHost().getHostName()

答案 2 :(得分:5)

使用kotlin-dsl

import java.io.ByteArrayOutputStream

val outputText: String = ByteArrayOutputStream().use { outputStream ->
  project.exec {
    commandLine("whoami")
    standardOutput = outputStream
  }
  outputStream.toString()
}

答案 3 :(得分:4)

Gradle docs for Exec

转述
task execSomething {
  doFirst {
    exec {
      workingDir '/some/dir'
      commandLine '/some/command', 'arg'

      ...
      //store the output instead of printing to the console:
      standardOutput = new ByteArrayOutputStream()

      //extension method execSomething.output() can be used to obtain the output:
      ext.output = {
        return standardOutput.toString()
      }
    }
  }
}

答案 4 :(得分:1)

在许多情况下,Groovy允许更简单的实现。因此,如果您使用的是基于Groovy的构建脚本,则只需执行以下操作即可:

def cmdOutput = "command line".execute().text