import sbt._ import sbt.internal.util.ManagedLogger import scala.sys.process._ object BuildInfo { /** Writes build-time information to a Scala object that can be used by the * components. * * If the `ENSO_RELEASE_MODE` environment variable is set to `true`, will set * an `isRelease` flag to true. This flag can be used to disable * development-specific features. * * @param file location where to write the Scala code * @param log a logger instance for diagnostics * @param defaultDevEnsoVersion the default version used for dev builds * @param ensoVersion Enso version * @param scalacVersion Scala compiler version used in the project * @param graalVersion GraalVM version used in the project * @param currentEdition name of the edition associated with the Enso * version; this should be removed once #1831 is * implemented * @return sequence of modified files */ def writeBuildInfoFile( file: File, log: ManagedLogger, defaultDevEnsoVersion: String, ensoVersion: String, scalacVersion: String, graalVersion: String, currentEdition: String ): Seq[File] = { val gitInfo = getGitInformation(log).getOrElse(fallbackGitInformation) val isRelease = isReleaseMode val fileContents = s""" |package buildinfo | |object Info { | | // Versions | val defaultDevEnsoVersion = "$defaultDevEnsoVersion" | val ensoVersion = "$ensoVersion" | val scalacVersion = "$scalacVersion" | val graalVersion = "$graalVersion" | val currentEdition = "$currentEdition" | | // Git Info | val commit = "${gitInfo.commitHash}" | val ref = "${gitInfo.ref}" | val isDirty = ${gitInfo.isDirty} | val latestCommitDate = "${gitInfo.latestCommitDate}" | | // Release mode, set to true if the environment variable | // `ENSO_RELEASE_MODE` is set to `true` at build time. | val isRelease = $isRelease |} |""".stripMargin IO.write(file, fileContents) log.debug("Build info updated.") Seq(file) } def isReleaseMode: Boolean = sys.env.get("ENSO_RELEASE_MODE").contains("true") /** Information regarding the Git repository that was used in the build. * * @param ref if available, name of the branch that was checked out; if a * branch is not available, but the current commit is tagged, name * of that tag is used, otherwise falls back to `HEAD` * @param commitHash hash of the currently checked out commit * @param isDirty indicates if there are any uncommitted changes * @param latestCommitDate date of the current commit */ private case class GitInformation( ref: String, commitHash: String, isDirty: Boolean, latestCommitDate: String ) private def getGitInformation(log: ManagedLogger): Option[GitInformation] = try { val hash = "git rev-parse HEAD".!!.trim val ref = try { val branchCommand = "git symbolic-ref -q --short HEAD" val tagCommand = "git describe --tags --exact-match" val refCommand = branchCommand #|| tagCommand refCommand.!!.trim } catch { case e: Exception => log.warn( "Cannot get name of git branch/tag, defaulting to \"HEAD\". " + s"(Caused by: $e)" ) "HEAD" } val isDirty = "git status --porcelain".!!.trim.nonEmpty val latestCommitDate = "git log HEAD -1 --format=%cd".!!.trim Some( GitInformation( ref = ref, commitHash = hash, isDirty = isDirty, latestCommitDate = latestCommitDate ) ) } catch { case e: Exception => log.warn( "Could not get any git information. The build will proceed but it " + s"will not contain the git metadata. (Caused by: $e)" ) None } /** Fallback instance of [[GitInformation]] that can be used if the build is * outside of a repository or the git information cannot be obtained for * other reasons. */ private def fallbackGitInformation: GitInformation = GitInformation( "", "", isDirty = false, "" ) }