1 /*
   2  * Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 /*
  27  * This file defines build profiles for the JIB tool and others.
  28  *
  29  * A build profile defines a set of configuration options and external
  30  * dependencies that we for some reason or other care about specifically.
  31  * Typically, build profiles are defined for the build configurations we
  32  * build regularly.
  33  *
  34  * Contract against this file from the tools that use it, is to provide
  35  * a function on the form:
  36  *
  37  * getJibProfiles(input)
  38  *
  39  * which returns an object graph describing the profiles and their
  40  * dependencies. The name of the function is based on the name of this
  41  * file, minus the extension and the '-', camel cased and prefixed with
  42  * 'get'.
  43  *
  44  *
  45  * The parameter 'input' is an object that optionally contains  some data.
  46  * Optionally because a tool may read the configuration for different purposes.
  47  * To initially get a list of available profiles, the active profile may not
  48  * yet be known for instance.
  49  *
  50  * Data that may be set on the input object:
  51  *
  52  * input.profile = <name of active profile>
  53  *
  54  * If the active profile is set, the following data from it must also
  55  * be provided:
  56  *
  57  * input.profile
  58  * input.build_id
  59  * input.target_os
  60  * input.target_cpu
  61  * input.build_os
  62  * input.build_cpu
  63  * input.target_platform
  64  * input.build_platform
  65  * // The build_osenv_* variables describe the unix layer on Windows systems,
  66  * // i.e. Cygwin, which may also be 32 or 64 bit.
  67  * input.build_osenv
  68  * input.build_osenv_cpu
  69  * input.build_osenv_platform
  70  *
  71  * For more complex nested attributes, there is a method "get":
  72  *
  73  * input.get("<dependency>", "<attribute>")
  74  *
  75  * Valid attributes are:
  76  * install_path
  77  * download_path
  78  * download_dir
  79  * home_path
  80  *
  81  *
  82  * The output data generated by this configuration file has the following
  83  * format:
  84  *
  85  * data: {
  86  *   // Identifies the version of this format to the tool reading it
  87  *   format_version: "1.0",
  88  *
  89  *   // Name of base outputdir. JIB assumes the actual output dir is formed
  90  *   // by adding the configuration name: <output_basedir>/<config-name>
  91  *   output_basedir: "build",
  92  *   // Configure argument to use to specify configuration name
  93  *   configuration_configure_arg:
  94  *   // Make argument to use to specify configuration name
  95  *   configuration_make_arg:
  96  *
  97  *   profiles: {
  98  *     <profile-name>: {
  99  *       // Name of os the profile is built to run on
 100  *       target_os; <string>
 101  *       // Name of cpu the profile is built to run on
 102  *       target_cpu; <string>
 103  *       // Combination of target_os and target_cpu for convenience
 104  *       target_platform; <string>
 105  *       // Name of os the profile is built on
 106  *       build_os; <string>
 107  *       // Name of cpu the profile is built on
 108  *       build_cpu; <string>
 109  *       // Combination of build_os and build_cpu for convenience
 110  *       build_platform; <string>
 111  *
 112  *       // List of dependencies needed to build this profile
 113  *       dependencies: <Array of strings>
 114  *
 115  *       // List of configure args to use for this profile
 116  *       configure_args: <Array of strings>
 117  *
 118  *       // List of free form labels describing aspects of this profile
 119  *       labels: <Array of strings>
 120  *     }
 121  *   }
 122  *
 123  *   // Dependencies use a Maven like deployment structure
 124  *   dependencies: {
 125  *     <dependency-name>: {
 126  *       // Organization part of path defining this dependency
 127  *       organization: <string>
 128  *       // File extension for this dependency
 129  *       ext: <string>
 130  *       // Module part of path for defining this dependency,
 131  *       // defaults to <dependency-name>
 132  *       module: <string>
 133  *       // Revision part of path for defining this dependency
 134  *       revision: <string>
 135  *
 136  *       // List of configure args to add when using this dependency,
 137  *       // defaults to
 138  *       // "--with-<dependency-name>=input.get("<dependency-name", "install_path")"
 139  *       configure_args: <array of strings>
 140  *
 141  *       // Name of environment variable to set when using this dependency
 142  *       // when running make
 143  *       environment_name: <string>
 144  *       // Value of environment variable to set when using this dependency
 145  *       // when running make
 146  *       environment_value: <string>
 147  *
 148  *       // Value to add to the PATH variable when using this dependency,
 149  *       // applies to both make and configure
 150  *       environment_path: <string>
 151  *     }
 152  *
 153  *     <dependency-name>: {
 154  *       // For certain dependencies where a legacy distribution mechanism is
 155  *       // already in place, the "javare" server layout is also supported
 156  *       // Indicate that an alternate server source and layout should be used
 157  *       server: "javare"
 158  *
 159  *       // For "javare", a combination of module, revision,
 160  *       // build number (optional), files and checksum file is possible for
 161  *       // artifacts following the standard layout.
 162  *       module: <string>
 163  *       revision: <string>
 164  *       build_number: <string>
 165  *       checksum_file: <string>
 166  *       file: <string>
 167  *
 168  *       // For other files, use checksum path and path instead
 169  *       checksum_path: <string>
 170  *       path: <string>
 171  *     }
 172  *   }
 173  * }
 174  */
 175 
 176 /**
 177  * Main entry to generate the profile configuration
 178  *
 179  * @param input External data to use for generating the configuration
 180  * @returns {{}} Profile configuration
 181  */
 182 var getJibProfiles = function (input) {
 183 
 184     var data = {};
 185 
 186     // Identifies the version of this format to the tool reading it.
 187     // 1.1 signifies that the publish, publish-src and get-src features are usable.
 188     // 1.2 signifies that artifact uploads should fail on missing artifacts by default.
 189     // 1.3 input.get(<dep>, "home_path") automatically goes down into a single top
 190     //     dir just like default configure_args and environment_path variables.
 191     data.format_version = "1.3";
 192 
 193     // Organization, product and version are used when uploading/publishing build results
 194     data.organization = "";
 195     data.product = "jdk";
 196     data.version = getVersion();
 197 
 198     // The base directory for the build output. JIB will assume that the
 199     // actual build directory will be <output_basedir>/<configuration>
 200     data.output_basedir = "build";
 201     // The configure argument to use to specify the name of the configuration
 202     data.configuration_configure_arg = "--with-conf-name=";
 203     // The make argument to use to specify the name of the configuration
 204     data.configuration_make_arg = "CONF_NAME=";
 205 
 206     // Exclude list to use when Jib creates a source bundle
 207     data.src_bundle_excludes = [
 208         "build", "{,**/}webrev*", "{,**/}.hg", "{,**/}JTwork", "{,**/}JTreport",
 209         "{,**/}.git"
 210     ];
 211     // Include list to use when creating a minimal jib source bundle which
 212     // contains just the jib configuration files.
 213     data.conf_bundle_includes = [
 214         "make/autoconf/version-numbers",
 215     ];
 216 
 217     // Define some common values
 218     var common = getJibProfilesCommon(input, data);
 219     // Generate the profiles part of the configuration
 220     data.profiles = getJibProfilesProfiles(input, common, data);
 221     // Generate the dependencies part of the configuration
 222     data.dependencies = getJibProfilesDependencies(input, common, data);
 223 
 224     return data;
 225 };
 226 
 227 /**
 228  * Generates some common values
 229  *
 230  * @param input External data to use for generating the configuration
 231  * @returns Common values
 232  */
 233 var getJibProfilesCommon = function (input, data) {
 234     var common = {};
 235 
 236     common.organization = "jpg.infra.builddeps";
 237     common.build_id = getBuildId(input);
 238     common.build_number = input.build_number != null ? input.build_number : "0";
 239 
 240     // List of the main profile names used for iteration
 241     common.main_profile_names = [
 242         "linux-x64", "linux-x86", "macosx-x64", "solaris-x64",
 243         "solaris-sparcv9", "windows-x64", "windows-x86",
 244         "linux-aarch64", "linux-arm32", "linux-ppc64le", "linux-s390x"
 245     ];
 246 
 247     // These are the base setttings for all the main build profiles.
 248     common.main_profile_base = {
 249         dependencies: ["boot_jdk", "gnumake", "jtreg", "jib", "autoconf", "jmh", "jcov"],
 250         default_make_targets: ["product-bundles", "test-bundles"],
 251         configure_args: concat(["--enable-jtreg-failure-handler"],
 252             "--with-exclude-translations=de,es,fr,it,ko,pt_BR,sv,ca,tr,cs,sk,ja_JP_A,ja_JP_HA,ja_JP_HI,ja_JP_I,zh_TW,zh_HK",
 253             "--disable-manpages",
 254             "--with-jvm-features=-shenandoahgc",
 255             versionArgs(input, common))
 256     };
 257     // Extra settings for debug profiles
 258     common.debug_suffix = "-debug";
 259     common.debug_profile_base = {
 260         configure_args: ["--enable-debug"],
 261         labels: "debug"
 262     };
 263     // Extra settings for slowdebug profiles
 264     common.slowdebug_suffix = "-slowdebug";
 265     common.slowdebug_profile_base = {
 266         configure_args: ["--with-debug-level=slowdebug"],
 267         labels: "slowdebug"
 268     };
 269     // Extra settings for openjdk only profiles
 270     common.open_suffix = "-open";
 271     common.open_profile_base = {
 272         configure_args: ["--enable-openjdk-only"],
 273         labels: "open"
 274     };
 275 
 276     common.configure_args_64bit = ["--with-target-bits=64"];
 277     common.configure_args_32bit = ["--with-target-bits=32"];
 278 
 279     /**
 280      * Define common artifacts template for all main profiles
 281      * @param o - Object containing data for artifacts
 282      */
 283     common.main_profile_artifacts = function (o) {
 284         var jdk_subdir = (o.jdk_subdir != null ? o.jdk_subdir : "jdk-" + data.version);
 285         var jdk_suffix = (o.jdk_suffix != null ? o.jdk_suffix : "tar.gz");
 286         var pf = o.platform
 287         return {
 288             artifacts: {
 289                 jdk: {
 290                     local: "bundles/\\(jdk.*bin." + jdk_suffix + "\\)",
 291                     remote: [
 292                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin." + jdk_suffix,
 293                         "bundles/" + pf + "/\\1"
 294                     ],
 295                     subdir: jdk_subdir,
 296                     exploded: "images/jdk"
 297                 },
 298                 test: {
 299                     local: "bundles/\\(jdk.*bin-tests.tar.gz\\)",
 300                     remote: [
 301                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-tests.tar.gz",
 302                         "bundles/" + pf + "/\\1"
 303                     ],
 304                     exploded: "images/test"
 305                 },
 306                 test_demos: {
 307                     local: "bundles/\\(jdk.*bin-tests-demos.tar.gz\\)",
 308                     remote: [
 309                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-tests-demos.tar.gz",
 310                         "bundles/" + pf + "/\\1"
 311                     ],
 312                     exploded: "images/test"
 313                 },
 314                 jdk_symbols: {
 315                     local: "bundles/\\(jdk.*bin-symbols.tar.gz\\)",
 316                     remote: [
 317                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-symbols.tar.gz",
 318                         "bundles/" + pf + "/\\1"
 319                     ],
 320                     subdir: jdk_subdir,
 321                     exploded: "images/jdk"
 322                 },
 323             }
 324         };
 325     };
 326 
 327 
 328     /**
 329      * Define common artifacts template for all debug profiles
 330      * @param o - Object containing data for artifacts
 331      */
 332     common.debug_profile_artifacts = function (o) {
 333         var jdk_subdir = "jdk-" + data.version + "/fastdebug";
 334         var jdk_suffix = (o.jdk_suffix != null ? o.jdk_suffix : "tar.gz");
 335         var pf = o.platform
 336         return {
 337             artifacts: {
 338                 jdk: {
 339                     local: "bundles/\\(jdk.*bin-debug." + jdk_suffix + "\\)",
 340                     remote: [
 341                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-debug." + jdk_suffix,
 342                         "bundles/" + pf + "/\\1"
 343                     ],
 344                     subdir: jdk_subdir,
 345                     exploded: "images/jdk"
 346                 },
 347                 test: {
 348                     local: "bundles/\\(jdk.*bin-tests-debug.tar.gz\\)",
 349                     remote: [
 350                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-tests-debug.tar.gz",
 351                         "bundles/" + pf + "/\\1"
 352                     ],
 353                     exploded: "images/test"
 354                 },
 355                 jdk_symbols: {
 356                     local: "bundles/\\(jdk.*bin-debug-symbols.tar.gz\\)",
 357                     remote: [
 358                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-debug-symbols.tar.gz",
 359                         "bundles/" + pf + "/\\1"
 360                     ],
 361                     subdir: jdk_subdir,
 362                     exploded: "images/jdk"
 363                 },
 364             }
 365         };
 366     };
 367 
 368     common.boot_jdk_version = "11";
 369     common.boot_jdk_home = input.get("boot_jdk", "install_path") + "/jdk-"
 370         + common.boot_jdk_version
 371         + (input.build_os == "macosx" ? ".jdk/Contents/Home" : "");
 372 
 373     return common;
 374 };
 375 
 376 /**
 377  * Generates the profiles part of the configuration.
 378  *
 379  * @param input External data to use for generating the configuration
 380  * @param common The common values
 381  * @returns {{}} Profiles part of the configuration
 382  */
 383 var getJibProfilesProfiles = function (input, common, data) {
 384     // Main SE profiles
 385     var profiles = {
 386 
 387         "linux-x64": {
 388             target_os: "linux",
 389             target_cpu: "x64",
 390             dependencies: ["devkit", "graphviz", "pandoc", "graalunit_lib"],
 391             configure_args: concat(common.configure_args_64bit,
 392                 "--enable-full-docs", "--with-zlib=system",
 393                 (isWsl(input) ? [ "--host=x86_64-unknown-linux-gnu",
 394                     "--build=x86_64-unknown-linux-gnu" ] : [])),
 395             default_make_targets: ["docs-bundles"],
 396         },
 397 
 398         "linux-x86": {
 399             target_os: "linux",
 400             target_cpu: "x86",
 401             build_cpu: "x64",
 402             dependencies: ["devkit"],
 403             configure_args: concat(common.configure_args_32bit,
 404                 "--with-jvm-variants=minimal,server", "--with-zlib=system"),
 405         },
 406 
 407         "macosx-x64": {
 408             target_os: "macosx",
 409             target_cpu: "x64",
 410             dependencies: ["devkit", "pandoc", "graalunit_lib"],
 411             configure_args: concat(common.configure_args_64bit, "--with-zlib=system",
 412                 "--with-macosx-version-max=10.9.0"),
 413         },
 414 
 415         "solaris-x64": {
 416             target_os: "solaris",
 417             target_cpu: "x64",
 418             dependencies: ["devkit", "cups"],
 419             configure_args: concat(common.configure_args_64bit,
 420                 "--with-zlib=system", "--enable-dtrace"),
 421         },
 422 
 423         "solaris-sparcv9": {
 424             target_os: "solaris",
 425             target_cpu: "sparcv9",
 426             dependencies: ["devkit", "cups"],
 427             configure_args: concat(common.configure_args_64bit,
 428                 "--with-zlib=system", "--enable-dtrace"),
 429         },
 430 
 431         "windows-x64": {
 432             target_os: "windows",
 433             target_cpu: "x64",
 434             dependencies: ["devkit", "pandoc", "graalunit_lib"],
 435             configure_args: concat(common.configure_args_64bit),
 436         },
 437 
 438         "windows-x86": {
 439             target_os: "windows",
 440             target_cpu: "x86",
 441             build_cpu: "x64",
 442             dependencies: ["devkit"],
 443             configure_args: concat(common.configure_args_32bit),
 444         },
 445 
 446         "linux-aarch64": {
 447             target_os: "linux",
 448             target_cpu: "aarch64",
 449             build_cpu: "x64",
 450             dependencies: ["devkit", "build_devkit", "cups"],
 451             configure_args: [
 452                 "--openjdk-target=aarch64-linux-gnu", "--with-freetype=bundled",
 453                 "--disable-warnings-as-errors"
 454             ],
 455         },
 456 
 457         "linux-arm32": {
 458             target_os: "linux",
 459             target_cpu: "arm",
 460             build_cpu: "x64",
 461             dependencies: ["devkit", "build_devkit", "cups"],
 462             configure_args: [
 463                 "--openjdk-target=arm-linux-gnueabihf", "--with-freetype=bundled",
 464                 "--with-abi-profile=arm-vfp-hflt", "--disable-warnings-as-errors"
 465             ],
 466         },
 467 
 468         "linux-ppc64le": {
 469             target_os: "linux",
 470             target_cpu: "ppc64le",
 471             build_cpu: "x64",
 472             dependencies: ["devkit", "build_devkit", "cups"],
 473             configure_args: [
 474                 "--openjdk-target=ppc64le-linux-gnu", "--with-freetype=bundled",
 475                 "--disable-warnings-as-errors"
 476             ],
 477         },
 478 
 479         "linux-s390x": {
 480             target_os: "linux",
 481             target_cpu: "s390x",
 482             build_cpu: "x64",
 483             dependencies: ["devkit", "build_devkit", "cups"],
 484             configure_args: [
 485                 "--openjdk-target=s390x-linux-gnu", "--with-freetype=bundled",
 486                 "--disable-warnings-as-errors"
 487             ],
 488         },
 489     };
 490 
 491     // Add the base settings to all the main profiles
 492     common.main_profile_names.forEach(function (name) {
 493         profiles[name] = concatObjects(common.main_profile_base, profiles[name]);
 494     });
 495 
 496     // Generate debug versions of all the main profiles
 497     common.main_profile_names.forEach(function (name) {
 498         var debugName = name + common.debug_suffix;
 499         profiles[debugName] = concatObjects(profiles[name],
 500                                             common.debug_profile_base);
 501     });
 502     // Generate slowdebug versions of all the main profiles
 503     common.main_profile_names.forEach(function (name) {
 504         var debugName = name + common.slowdebug_suffix;
 505         profiles[debugName] = concatObjects(profiles[name],
 506                                             common.slowdebug_profile_base);
 507     });
 508     // Generate testmake profiles for the main profile of each build host
 509     // platform. This profile only runs the makefile tests.
 510     // Ant is needed to run the idea project generator test.
 511     var testmakeBase = {
 512         dependencies: [ "ant" ],
 513         environment: {
 514             "ANT_HOME": input.get("ant", "home_path")
 515         }
 516     };
 517     [ "linux-x64", "macosx-x64", "solaris-sparcv9", "solaris-x64", "windows-x64"]
 518         .forEach(function (name) {
 519             var maketestName = name + "-testmake";
 520             profiles[maketestName] = concatObjects(profiles[name], testmakeBase);
 521             profiles[maketestName].default_make_targets = [ "test-make" ];
 522         });
 523 
 524     // Generate -gcov profiles
 525     [ "linux-x64", "macosx-x64" ].forEach(function (name) {
 526         var gcovName = name + "-gcov";
 527         profiles[gcovName] = clone(profiles[name]);
 528         profiles[gcovName].configure_args = concat(profiles[gcovName].configure_args,
 529             ["--enable-native-coverage", "--disable-warnings-as-errors"]);
 530     });
 531 
 532     // Profiles for building the zero jvm variant. These are used for verification.
 533     var zeroProfiles = {
 534         "linux-x64-zero": {
 535             target_os: "linux",
 536             target_cpu: "x64",
 537             dependencies: ["devkit"],
 538             configure_args: concat(common.configure_args_64bit, [
 539                 "--with-zlib=system",
 540                 "--with-jvm-variants=zero",
 541                 "--enable-libffi-bundling"
 542             ])
 543         },
 544 
 545         "linux-x86-zero": {
 546             target_os: "linux",
 547             target_cpu: "x86",
 548             build_cpu: "x64",
 549             dependencies: ["devkit"],
 550             configure_args:  concat(common.configure_args_32bit, [
 551                 "--with-zlib=system",
 552                 "--with-jvm-variants=zero",
 553                 "--enable-libffi-bundling"
 554             ])
 555         }
 556     }
 557     profiles = concatObjects(profiles, zeroProfiles);
 558 
 559     // Add the base settings to the zero profiles and generate debug profiles
 560     Object.keys(zeroProfiles).forEach(function (name) {
 561         var debugName = name + common.debug_suffix;
 562         profiles[name] = concatObjects(common.main_profile_base, profiles[name]);
 563         profiles[debugName] = concatObjects(profiles[name], common.debug_profile_base);
 564     });
 565 
 566     // Define a profile with precompiled headers disabled. This is just used for
 567     // verfication of this build configuration.
 568     var noPchProfiles = {
 569         "linux-x64-debug-nopch": {
 570             target_os: "linux",
 571             target_cpu: "x64",
 572             dependencies: ["devkit"],
 573             configure_args: concat(common.configure_args_64bit,
 574                 "--with-zlib=system", "--disable-precompiled-headers"),
 575         },
 576     };
 577     profiles = concatObjects(profiles, noPchProfiles);
 578     // Add base settings to noPch profiles
 579     Object.keys(noPchProfiles).forEach(function (name) {
 580         profiles[name] = concatObjects(common.main_profile_base, profiles[name]);
 581         profiles[name] = concatObjects(common.debug_profile_base, profiles[name]);
 582         // Override default make target with hotspot as that's the only part of
 583         // the build using precompiled headers.
 584         profiles[name].default_make_targets = ["hotspot"];
 585     });
 586 
 587     // Bootcycle profiles runs the build with itself as the boot jdk. This can
 588     // be done in two ways. Either using the builtin bootcycle target in the
 589     // build system. Or by supplying the main jdk build as bootjdk to configure.
 590     [ "linux-x64", "macosx-x64", "solaris-sparcv9", "windows-x64"]
 591         .forEach(function (name) {
 592             var bootcycleName = name + "-bootcycle";
 593             var bootcyclePrebuiltName = name + "-bootcycle-prebuilt";
 594             // The base bootcycle profile just changes the default target
 595             // compared to the base profile
 596             profiles[bootcycleName] = clone(profiles[name]);
 597             profiles[bootcycleName].default_make_targets = [ "bootcycle-images" ];
 598             // The prebuilt bootcycle variant modifies the boot jdk argument
 599             var bootcyclePrebuiltBase = {
 600                 dependencies: [ name + ".jdk" ],
 601                 configure_args: "--with-boot-jdk=" + input.get(name + ".jdk", "home_path"),
 602             }
 603             profiles[bootcyclePrebuiltName] = concatObjects(profiles[name],
 604                 bootcyclePrebuiltBase);
 605             var bootJdkIndex = profiles[bootcyclePrebuiltName].dependencies.indexOf("boot_jdk");
 606             delete profiles[bootcyclePrebuiltName].dependencies[bootJdkIndex];
 607             profiles[bootcyclePrebuiltName].default_make_targets = [ "product-images" ];
 608         });
 609 
 610     // JCov profiles build JCov-instrumented JDK image based on images provided through dependencies.
 611     [ "linux-x64", "macosx-x64", "solaris-sparcv9", "windows-x64"]
 612         .forEach(function (name) {
 613             var jcovName = name + "-jcov";
 614             profiles[jcovName] = clone(common.main_profile_base);
 615             profiles[jcovName].target_os = profiles[name].target_os
 616             profiles[jcovName].target_cpu = profiles[name].target_cpu
 617             profiles[jcovName].default_make_targets = [ "jcov-bundles" ];
 618             profiles[jcovName].dependencies = concat(profiles[jcovName].dependencies,
 619                 [ name + ".jdk", "devkit" ]);
 620             profiles[jcovName].configure_args = concat(profiles[jcovName].configure_args,
 621                 ["--with-jcov-input-jdk=" + input.get(name + ".jdk", "home_path")]);
 622         });
 623 
 624     //
 625     // Define artifacts for profiles
 626     //
 627     // Macosx bundles are named osx
 628     // tar.gz.
 629     var artifactData = {
 630         "linux-x64": {
 631             platform: "linux-x64",
 632         },
 633         "linux-x86": {
 634             platform: "linux-x86",
 635         },
 636         "macosx-x64": {
 637             platform: "osx-x64",
 638             jdk_subdir: "jdk-" + data.version +  ".jdk/Contents/Home",
 639         },
 640         "solaris-x64": {
 641             platform: "solaris-x64",
 642         },
 643         "solaris-sparcv9": {
 644             platform: "solaris-sparcv9",
 645         },
 646         "windows-x64": {
 647             platform: "windows-x64",
 648             jdk_suffix: "zip",
 649         },
 650         "windows-x86": {
 651             platform: "windows-x86",
 652             jdk_suffix: "zip",
 653         },
 654        "linux-aarch64": {
 655             platform: "linux-aarch64",
 656         },
 657        "linux-arm32": {
 658             platform: "linux-arm32",
 659         },
 660        "linux-ppc64le": {
 661             platform: "linux-ppc64le",
 662         },
 663        "linux-s390x": {
 664             platform: "linux-s390x",
 665         }
 666     }
 667     // Generate common artifacts for all main profiles
 668     Object.keys(artifactData).forEach(function (name) {
 669         profiles[name] = concatObjects(profiles[name],
 670             common.main_profile_artifacts(artifactData[name]));
 671     });
 672 
 673     // Generate common artifacts for all debug profiles
 674     Object.keys(artifactData).forEach(function (name) {
 675         var debugName = name + common.debug_suffix;
 676         profiles[debugName] = concatObjects(profiles[debugName],
 677             common.debug_profile_artifacts(artifactData[name]));
 678     });
 679 
 680     profilesArtifacts = {
 681         "linux-x64": {
 682             artifacts: {
 683                 doc_api_spec: {
 684                     local: "bundles/\\(jdk.*doc-api-spec.tar.gz\\)",
 685                     remote: [
 686                         "bundles/common/jdk-" + data.version + "_doc-api-spec.tar.gz",
 687                         "bundles/linux-x64/\\1"
 688                     ],
 689                 },
 690             }
 691         }
 692     };
 693     profiles = concatObjects(profiles, profilesArtifacts);
 694 
 695     // Generate open only profiles for all the main and debug profiles.
 696     // Rewrite artifact remote paths by adding "openjdk/GPL".
 697     common.main_profile_names.forEach(function (name) {
 698         var openName = name + common.open_suffix;
 699         profiles[openName] = concatObjects(profiles[name],
 700             common.open_profile_base);
 701         for (artifactName in profiles[openName].artifacts) {
 702             var artifact = profiles[openName].artifacts[artifactName];
 703             artifact.remote = replaceAll(
 704                 "bundles\/", "bundles/openjdk/GPL/",
 705                 (artifact.remote != null ? artifact.remote : artifact.local));
 706         }
 707         var debugName = name + common.debug_suffix;
 708         var openDebugName = name + common.open_suffix + common.debug_suffix;
 709         profiles[openDebugName] = concatObjects(profiles[debugName],
 710             common.open_profile_base);
 711         for (artifactName in profiles[openDebugName].artifacts) {
 712             var artifact = profiles[openDebugName].artifacts[artifactName];
 713             artifact.remote = replaceAll(
 714                 "bundles\/", "bundles/openjdk/GPL/",
 715                 (artifact.remote != null ? artifact.remote : artifact.local));
 716         }
 717     });
 718 
 719     // Define the reference implementation profiles. These are basically the same
 720     // as the open profiles, but upload artifacts to a different location.
 721     common.main_profile_names.forEach(function (name) {
 722         var riName = name + "-ri";
 723         var riDebugName = riName + common.debug_suffix;
 724         var openName = name + common.open_suffix;
 725         var openDebugName = openName + common.debug_suffix;
 726         profiles[riName] = clone(profiles[openName]);
 727         profiles[riDebugName] = clone(profiles[openDebugName]);
 728         // Rewrite all remote dirs to "bundles/openjdk/BCL/..."
 729         for (artifactName in profiles[riName].artifacts) {
 730             var artifact = profiles[riName].artifacts[artifactName];
 731             artifact.remote = replaceAll(
 732                 "\/GPL\/", "/BCL/",
 733                 (artifact.remote != null ? artifact.remote : artifact.local));
 734         }
 735     });
 736 
 737     // For open profiles, the non-debug jdk bundles, need an "open" prefix on the
 738     // remote bundle names, forming the word "openjdk". See JDK-8188789.
 739     common.main_profile_names.forEach(function (name) {
 740         var openName = name + common.open_suffix;
 741         profiles[openName].artifacts["jdk"].remote = replaceAll(
 742             "\/jdk-", "/openjdk-",
 743             replaceAll("\/\\1", "/open\\1",
 744                        profiles[openName].artifacts["jdk"].remote));
 745     });
 746 
 747     // Generate cmp-baseline profiles for each main profile and their
 748     // corresponding debug profile. This profile does a compare build run with no
 749     // changes to verify that the compare script has a clean baseline
 750     common.main_profile_names.forEach(function (name) {
 751         [ "", common.open_suffix ].forEach(function (suffix) {
 752             var cmpBaselineName = name + suffix + "-cmp-baseline";
 753             profiles[cmpBaselineName] = clone(profiles[name + suffix]);
 754             // Only compare the images target. This should pressumably be expanded
 755             // to include more build targets when possible.
 756             profiles[cmpBaselineName].default_make_targets = [ "images" ];
 757             profiles[cmpBaselineName].make_args = [ "COMPARE_BUILD=CONF=" ];
 758             // Do not inherit artifact definitions from base profile
 759             delete profiles[cmpBaselineName].artifacts;
 760         });
 761     });
 762 
 763     // Artifacts of JCov profiles
 764     [ "linux-x64", "macosx-x64", "solaris-sparcv9", "windows-x64"]
 765         .forEach(function (name) {
 766             var o = artifactData[name]
 767             var jdk_subdir = (o.jdk_subdir != null ? o.jdk_subdir : "jdk-" + data.version);
 768             var jdk_suffix = (o.jdk_suffix != null ? o.jdk_suffix : "tar.gz");
 769             var pf = o.platform
 770             var jcovName = name + "-jcov";
 771             profiles[jcovName].artifacts = {
 772                 jdk: {
 773                     local: "bundles/\\(jdk-jcov.*bin." + jdk_suffix + "\\)",
 774                     remote: [
 775                         "bundles/" + pf + "/jdk-jcov-" + data.version + "_" + pf + "_bin." + jdk_suffix
 776                     ],
 777                     subdir: jdk_subdir,
 778                     exploded: "images/jdk-jcov"
 779                 }
 780             };
 781         });
 782 
 783     // Artifacts of gcov (native-code-coverage) profiles
 784     [ "linux-x64", "macosx-x64" ].forEach(function (name) {
 785         var o = artifactData[name]
 786         var pf = o.platform
 787         var jdk_subdir = (o.jdk_subdir != null ? o.jdk_subdir : "jdk-" + data.version);
 788         var jdk_suffix = (o.jdk_suffix != null ? o.jdk_suffix : "tar.gz");
 789         var gcovName = name + "-gcov";
 790         profiles[gcovName].artifacts = {
 791             jdk: {
 792                 local: "bundles/\\(jdk.*bin." + jdk_suffix + "\\)",
 793                 remote: [
 794                     "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-gcov." + jdk_suffix,
 795                     // "bundles/" + pf + "/\\1"
 796                 ],
 797                 subdir: jdk_subdir,
 798                 exploded: "images/jdk",
 799             },
 800             test: {
 801                     local: "bundles/\\(jdk.*bin-tests.tar.gz\\)",
 802                     remote: [
 803                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-gcov-tests.tar.gz",
 804                         // "bundles/" + pf + "/\\1"
 805                     ],
 806                     exploded: "images/test"
 807             },
 808             jdk_symbols: {
 809                     local: "bundles/\\(jdk.*bin-symbols.tar.gz\\)",
 810                     remote: [
 811                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-gcov-symbols.tar.gz",
 812                         // "bundles/" + pf + "/\\1"
 813                     ],
 814                     subdir: jdk_subdir,
 815                     exploded: "images/jdk"
 816                 },
 817             };
 818     });
 819 
 820     // Profiles used to run tests.
 821     var testOnlyProfiles = {
 822         "run-test": {
 823             target_os: input.build_os,
 824             target_cpu: input.build_cpu,
 825             dependencies: [ "jtreg", "gnumake", "boot_jdk", "devkit", "jib" ],
 826             labels: "test",
 827             environment: {
 828                 "JT_JAVA": common.boot_jdk_home
 829             }
 830         }
 831     };
 832     profiles = concatObjects(profiles, testOnlyProfiles);
 833 
 834     // Profiles used to run tests using Jib for internal dependencies.
 835     var testedProfile = input.testedProfile;
 836     if (testedProfile == null) {
 837         testedProfile = input.build_os + "-" + input.build_cpu;
 838     }
 839     var testedProfileJDK = testedProfile + ".jdk";
 840     var testedProfileTest = ""
 841     if (testedProfile.endsWith("-jcov")) {
 842         testedProfileTest = testedProfile.substring(0, testedProfile.length - "-jcov".length) + ".test";
 843     } else {
 844         testedProfileTest = testedProfile + ".test";
 845     }
 846     var testOnlyMake = [ "run-test-prebuilt", "LOG_CMDLINES=true", "JTREG_VERBOSE=fail,error,time" ];
 847     if (testedProfile.endsWith("-gcov")) {
 848         testOnlyMake = concat(testOnlyMake, "GCOV_ENABLED=true")
 849     }
 850     var testOnlyProfilesPrebuilt = {
 851         "run-test-prebuilt": {
 852             target_os: input.build_os,
 853             target_cpu: input.build_cpu,
 854             dependencies: [
 855                 "jtreg", "gnumake", "boot_jdk", "devkit", "jib", "jcov", testedProfileJDK,
 856                 testedProfileTest
 857             ],
 858             src: "src.conf",
 859             make_args: testOnlyMake,
 860             environment: {
 861                 "BOOT_JDK": common.boot_jdk_home,
 862                 "JDK_IMAGE_DIR": input.get(testedProfileJDK, "home_path"),
 863                 "TEST_IMAGE_DIR": input.get(testedProfileTest, "home_path")
 864             },
 865             labels: "test"
 866         }
 867     };
 868 
 869     // If actually running the run-test-prebuilt profile, verify that the input
 870     // variable is valid and if so, add the appropriate target_* values from
 871     // the tested profile.
 872     if (input.profile == "run-test-prebuilt") {
 873         if (profiles[testedProfile] == null) {
 874             error("testedProfile is not defined: " + testedProfile);
 875         }
 876     }
 877     if (profiles[testedProfile] != null) {
 878         testOnlyProfilesPrebuilt["run-test-prebuilt"]["target_os"]
 879             = profiles[testedProfile]["target_os"];
 880         testOnlyProfilesPrebuilt["run-test-prebuilt"]["target_cpu"]
 881             = profiles[testedProfile]["target_cpu"];
 882     }
 883     profiles = concatObjects(profiles, testOnlyProfilesPrebuilt);
 884 
 885     // On macosx add the devkit bin dir to the path in all the run-test profiles.
 886     // This gives us a guaranteed working version of lldb for the jtreg failure handler.
 887     if (input.build_os == "macosx") {
 888         macosxRunTestExtra = {
 889             environment_path: input.get("devkit", "install_path")
 890                 + "/Xcode.app/Contents/Developer/usr/bin"
 891         };
 892         profiles["run-test"] = concatObjects(profiles["run-test"], macosxRunTestExtra);
 893         profiles["run-test-prebuilt"] = concatObjects(profiles["run-test-prebuilt"], macosxRunTestExtra);
 894     }
 895     // On windows we want the debug symbols available at test time
 896     if (input.build_os == "windows") {
 897         windowsRunTestPrebuiltExtra = {
 898             dependencies: [ testedProfile + ".jdk_symbols" ],
 899             environment: {
 900                 "SYMBOLS_IMAGE_DIR": input.get(testedProfile + ".jdk_symbols", "home_path"),
 901             }
 902         };
 903         profiles["run-test-prebuilt"] = concatObjects(profiles["run-test-prebuilt"],
 904             windowsRunTestPrebuiltExtra);
 905     }
 906 
 907     // The profile run-test-prebuilt defines src.conf as the src bundle. When
 908     // running in Mach 5, this reduces the time it takes to populate the
 909     // considerably. But with just src.conf, we cannot actually run any tests,
 910     // so if running from a workspace with just src.conf in it, we need to also
 911     // get src.full as a dependency, and define the work_dir (where make gets
 912     // run) to be in the src.full install path. By running in the install path,
 913     // the same cached installation of the full src can be reused for multiple
 914     // test tasks. Care must however be taken not to polute that work dir by
 915     // setting the appropriate make variables to control output directories.
 916     //
 917     // Use the existance of the top level README as indication of if this is
 918     // the full source or just src.conf.
 919     if (!new java.io.File(__DIR__, "../../README").exists()) {
 920         var runTestPrebuiltSrcFullExtra = {
 921             dependencies: "src.full",
 922             work_dir: input.get("src.full", "install_path"),
 923         }
 924         profiles["run-test-prebuilt"] = concatObjects(profiles["run-test-prebuilt"],
 925             runTestPrebuiltSrcFullExtra);
 926     }
 927 
 928     // Generate the missing platform attributes
 929     profiles = generatePlatformAttributes(profiles);
 930     profiles = generateDefaultMakeTargetsConfigureArg(common, profiles);
 931     return profiles;
 932 };
 933 
 934 /**
 935  * Generate the dependencies part of the configuration
 936  *
 937  * @param input External data to use for generating the configuration
 938  * @param common The common values
 939  * @returns {{}} Dependencies part of configuration
 940  */
 941 var getJibProfilesDependencies = function (input, common) {
 942 
 943     var devkit_platform_revisions = {
 944         linux_x64: "gcc7.3.0-OEL6.4+1.2",
 945         macosx_x64: "Xcode9.4-MacOSX10.13+1.0",
 946         solaris_x64: "SS12u4-Solaris11u1+1.0",
 947         solaris_sparcv9: "SS12u6-Solaris11u3+1.0",
 948         windows_x64: "VS2017-15.5.5+1.0",
 949         linux_aarch64: "gcc7.3.0-Fedora27+1.2",
 950         linux_arm: "gcc7.3.0-Fedora27+1.2",
 951         linux_ppc64le: "gcc7.3.0-Fedora27+1.0",
 952         linux_s390x: "gcc7.3.0-Fedora27+1.0"
 953     };
 954 
 955     var devkit_platform = (input.target_cpu == "x86"
 956         ? input.target_os + "_x64"
 957         : input.target_platform);
 958 
 959     var boot_jdk_platform = (input.build_os == "macosx" ? "osx" : input.build_os)
 960         + "-" + input.build_cpu;
 961     var boot_jdk_ext = (input.build_os == "windows" ? ".zip" : ".tar.gz")
 962     // If running in WSL and building for Windows, it will look like Linux,
 963     // but we need a Windows boot JDK.
 964     if (isWsl(input) && input.target_os == "windows") {
 965         boot_jdk_platform = "windows-" + input.build_cpu;
 966         boot_jdk_ext = ".zip";
 967     }
 968 
 969     var makeBinDir = (input.build_os == "windows"
 970         ? input.get("gnumake", "install_path") + "/cygwin/bin"
 971         : input.get("gnumake", "install_path") + "/bin");
 972 
 973     var dependencies = {
 974 
 975         boot_jdk: {
 976             server: "jpg",
 977             product: "jdk",
 978             version: common.boot_jdk_version,
 979             build_number: "28",
 980             file: "bundles/" + boot_jdk_platform + "/jdk-" + common.boot_jdk_version + "_"
 981                 + boot_jdk_platform + "_bin" + boot_jdk_ext,
 982             configure_args: "--with-boot-jdk=" + common.boot_jdk_home,
 983             environment_path: common.boot_jdk_home + "/bin"
 984         },
 985 
 986         devkit: {
 987             organization: common.organization,
 988             ext: "tar.gz",
 989             module: "devkit-" + devkit_platform,
 990             revision: devkit_platform_revisions[devkit_platform],
 991             environment: {
 992                 "DEVKIT_HOME": input.get("devkit", "home_path"),
 993             }
 994         },
 995 
 996         build_devkit: {
 997             organization: common.organization,
 998             ext: "tar.gz",
 999             module: "devkit-" + input.build_platform,
1000             revision: devkit_platform_revisions[input.build_platform]
1001         },
1002 
1003         cups: {
1004             organization: common.organization,
1005             ext: "tar.gz",
1006             revision: "1.0118+1.0"
1007         },
1008 
1009         jtreg: {
1010             server: "javare",
1011             revision: "4.2",
1012             build_number: "b13",
1013             checksum_file: "MD5_VALUES",
1014             file: "jtreg_bin-4.2.zip",
1015             environment_name: "JT_HOME",
1016             environment_path: input.get("jtreg", "install_path") + "/jtreg/bin"
1017         },
1018 
1019         jmh: {
1020             organization: common.organization,
1021             ext: "tar.gz",
1022             revision: "1.21+1.0"
1023         },
1024 
1025         jcov: {
1026             // Until an official build of JCov is available, use custom
1027             // build to support classfile version 57.
1028             // See CODETOOLS-7902358 for more info.
1029             // server: "jpg",
1030             // product: "jcov",
1031             // version: "3.0",
1032             // build_number: "b07",
1033             // file: "bundles/jcov-3_0.zip",
1034             organization: common.organization,
1035             revision: "3.0-57-support+1.0",
1036             ext: "zip",
1037             environment_name: "JCOV_HOME",
1038         },
1039 
1040         gnumake: {
1041             organization: common.organization,
1042             ext: "tar.gz",
1043             revision: "4.0+1.0",
1044 
1045             module: (input.build_os == "windows"
1046                 ? "gnumake-" + input.build_osenv_platform
1047                 : "gnumake-" + input.build_platform),
1048 
1049             configure_args: "MAKE=" + makeBinDir + "/make",
1050 
1051             environment: {
1052                 "MAKE": makeBinDir + "/make"
1053             },
1054 
1055             environment_path: makeBinDir
1056         },
1057 
1058         autoconf: {
1059             organization: common.organization,
1060             ext: "tar.gz",
1061             revision: "2.69+1.0.1",
1062             module: (input.build_os == "windows"
1063                 ? "autoconf-" + input.build_osenv_platform
1064                 : "autoconf-" + input.build_platform),
1065             configure_args: "",
1066             environment_path: input.get("autoconf", "install_path")
1067         },
1068 
1069         graphviz: {
1070             organization: common.organization,
1071             ext: "tar.gz",
1072             revision: "2.38.0-1+1.1",
1073             module: "graphviz-" + input.target_platform,
1074             configure_args: "DOT=" + input.get("graphviz", "install_path") + "/dot",
1075             environment_path: input.get("graphviz", "install_path")
1076         },
1077 
1078         pandoc: {
1079             organization: common.organization,
1080             ext: "tar.gz",
1081             revision: "2.3.1+1.0",
1082             module: "pandoc-" + input.build_platform,
1083             configure_args: "PANDOC=" + input.get("pandoc", "install_path") + "/pandoc/pandoc",
1084             environment_path: input.get("pandoc", "install_path") + "/pandoc"
1085         },
1086 
1087         // This adds java jib as a dependency for the test artifacts resolver
1088         jib: {
1089             organization: "com.oracle.java.jib",
1090             ext: "zip",
1091             classifier: "distribution",
1092             revision: "3.0-SNAPSHOT",
1093             environment_name: "JIB_HOME",
1094             environment_value: input.get("jib", "home_path")
1095         },
1096 
1097         ant: {
1098             organization: common.organization,
1099             ext: "zip",
1100             revision: "1.7.1+1.0",
1101             configure_args: "",
1102         },
1103 
1104         graalunit_lib: {
1105             organization: common.organization,
1106             ext: "zip",
1107             revision: "619_Apr_12_2018",
1108             module: "graalunit-lib",
1109             configure_args: "--with-graalunit-lib=" + input.get("graalunit_lib", "install_path"),
1110             environment_name: "GRAALUNIT_LIB"
1111         },
1112     };
1113 
1114     return dependencies;
1115 };
1116 
1117 /**
1118  * Generate the missing platform attributes for profiles
1119  *
1120  * @param profiles Profiles map to generate attributes on
1121  * @returns {{}} New profiles map with platform attributes fully filled in
1122  */
1123 var generatePlatformAttributes = function (profiles) {
1124     var ret = concatObjects(profiles, {});
1125     for (var profile in profiles) {
1126         if (ret[profile].build_os == null) {
1127             ret[profile].build_os = ret[profile].target_os;
1128         }
1129         if (ret[profile].build_cpu == null) {
1130             ret[profile].build_cpu = ret[profile].target_cpu;
1131         }
1132         ret[profile].target_platform = ret[profile].target_os + "_" + ret[profile].target_cpu;
1133         ret[profile].build_platform = ret[profile].build_os + "_" + ret[profile].build_cpu;
1134     }
1135     return ret;
1136 };
1137 
1138 /**
1139  * The default_make_targets attribute on a profile is not a real Jib attribute.
1140  * This function rewrites that attribute into the corresponding configure arg.
1141  * Calling this function multiple times on the same profiles object is safe.
1142  *
1143  * @param common Common values
1144  * @param profiles Profiles map to rewrite profiles for
1145  * @returns {{}} New map of profiles with the make targets converted
1146  */
1147 var generateDefaultMakeTargetsConfigureArg = function (common, profiles) {
1148     var ret = concatObjects(profiles, {});
1149     for (var profile in ret) {
1150         if (ret[profile]["default_make_targets"] != null) {
1151             var targetsString = concat(ret[profile].default_make_targets).join(" ");
1152             // Iterate over all configure args and see if --with-default-make-target
1153             // is already there and change it, otherwise add it.
1154             var found = false;
1155             for (var i in ret[profile].configure_args) {
1156                 var arg = ret[profile].configure_args[i];
1157                 if (arg != null && arg.startsWith("--with-default-make-target=")) {
1158                     found = true;
1159                     ret[profile].configure_args[i]
1160                         = "--with-default-make-target=" + targetsString;
1161                 }
1162             }
1163             if (!found) {
1164                 ret[profile].configure_args = concat(
1165                     ret[profile].configure_args,
1166                     "--with-default-make-target=" + targetsString);
1167             }
1168         }
1169     }
1170     return ret;
1171 }
1172 
1173 var getBuildId = function (input) {
1174     if (input.build_id != null) {
1175         return input.build_id;
1176     } else {
1177         var topdir = new java.io.File(__DIR__, "../..").getCanonicalFile().getName();
1178         var userName = java.lang.System.getProperty("user.name");
1179         return userName + "." + topdir;
1180     }
1181 }
1182 
1183 /**
1184  * Deep clones an object tree.
1185  *
1186  * @param o Object to clone
1187  * @returns {{}} Clone of o
1188  */
1189 var clone = function (o) {
1190     return JSON.parse(JSON.stringify(o));
1191 };
1192 
1193 /**
1194  * Concatenates all arguments into a new array
1195  *
1196  * @returns {Array.<T>} New array containing all arguments
1197  */
1198 var concat = function () {
1199     return Array.prototype.concat.apply([], arguments);
1200 };
1201 
1202 /**
1203  * Takes a String or Array of Strings and does a replace operation on each
1204  * of them.
1205  *
1206  * @param pattern Pattern to look for
1207  * @param replacement Replacement text to insert
1208  * @param a String or Array of Strings to replace
1209  * @returns {Array} Either a new array or a new string depending on the input
1210  */
1211 var replaceAll = function (pattern, replacement, a) {
1212     // If a is an array
1213     if (Array === a.constructor) {
1214     var newA = [];
1215     for (var i in a) {
1216             newA.push(a[i].replace(pattern, replacement));
1217         }
1218         return newA;
1219         } else {
1220         return a.replace(pattern, replacement);
1221     }
1222 };
1223 
1224 /**
1225  * Deep concatenation of two objects. For each node encountered, merge
1226  * the contents with the corresponding node in the other object tree,
1227  * treating all strings as array elements.
1228  *
1229  * @param o1 Object to concatenate
1230  * @param o2 Object to concatenate
1231  * @returns {{}} New object tree containing the concatenation of o1 and o2
1232  */
1233 var concatObjects = function (o1, o2) {
1234     if (o1 == null) {
1235         return clone(o2);
1236     }
1237     if (o2 == null) {
1238         return clone(o1);
1239     }
1240     var ret = {};
1241     for (var a in o1) {
1242         if (o2[a] == null) {
1243             ret[a] = clone(o1[a]);
1244         }
1245     }
1246     for (var a in o2) {
1247         if (o1[a] == null) {
1248             ret[a] = clone(o2[a]);
1249         } else {
1250             if (typeof o1[a] == 'string') {
1251                 ret[a] = clone([o1[a]].concat(o2[a]));
1252             } else if (Array.isArray(o1[a])) {
1253                 ret[a] = clone(o1[a].concat(o2[a]));
1254             } else if (typeof o1[a] == 'object') {
1255                 ret[a] = concatObjects(o1[a], o2[a]);
1256             }
1257         }
1258     }
1259     return ret;
1260 };
1261 
1262 /**
1263  * Constructs the numeric version string from reading the
1264  * make/autoconf/version-numbers file and removing all trailing ".0".
1265  *
1266  * @param feature Override feature version
1267  * @param interim Override interim version
1268  * @param update Override update version
1269  * @param patch Override patch version
1270  * @returns {String} The numeric version string
1271  */
1272 var getVersion = function (feature, interim, update, patch) {
1273     var version_numbers = getVersionNumbers();
1274     var version = (feature != null ? feature : version_numbers.get("DEFAULT_VERSION_FEATURE"))
1275         + "." + (interim != null ? interim : version_numbers.get("DEFAULT_VERSION_INTERIM"))
1276         + "." + (update != null ? update :  version_numbers.get("DEFAULT_VERSION_UPDATE"))
1277         + "." + (patch != null ? patch : version_numbers.get("DEFAULT_VERSION_PATCH"));
1278     while (version.match(".*\\.0$")) {
1279         version = version.substring(0, version.length - 2);
1280     }
1281     return version;
1282 };
1283 
1284 /**
1285  * Constructs the common version configure args based on build type and
1286  * other version inputs
1287  */
1288 var versionArgs = function(input, common) {
1289     var args = ["--with-version-build=" + common.build_number];
1290     if (input.build_type == "promoted") {
1291         args = concat(args,
1292                       // This needs to be changed when we start building release candidates
1293                       // with-version-pre must be set to ea for 'ea' and empty for fcs build
1294                       "--with-version-pre=ea",
1295                       "--without-version-opt");
1296     } else {
1297         args = concat(args, "--with-version-opt=" + common.build_id);
1298     }
1299     return args;
1300 }
1301 
1302 // Properties representation of the make/autoconf/version-numbers file. Lazily
1303 // initiated by the function below.
1304 var version_numbers;
1305 
1306 /**
1307  * Read the make/autoconf/version-numbers file into a Properties object.
1308  *
1309  * @returns {java.utilProperties}
1310  */
1311 var getVersionNumbers = function () {
1312     // Read version information from make/autoconf/version-numbers
1313     if (version_numbers == null) {
1314         version_numbers = new java.util.Properties();
1315         var stream = new java.io.FileInputStream(__DIR__ + "/../autoconf/version-numbers");
1316         version_numbers.load(stream);
1317         stream.close();
1318     }
1319     return version_numbers;
1320 }
1321 
1322 /**
1323  * Returns true if running in Windows Subsystem for Linux. Jib does not yet
1324  * detect wsl as osenv, so fall back on linux with version containing Microsoft.
1325  */
1326 var isWsl = function (input) {
1327     return ( input.build_osenv == "wsl"
1328              || (input.build_os == "linux"
1329                  && java.lang.System.getProperty("os.version").contains("Microsoft")));
1330 }