1 /*
   2  * Copyright (c) 2015, 2018, 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  *
  80  *
  81  * The output data generated by this configuration file has the following
  82  * format:
  83  *
  84  * data: {
  85  *   // Identifies the version of this format to the tool reading it
  86  *   format_version: "1.0",
  87  *
  88  *   // Name of base outputdir. JIB assumes the actual output dir is formed
  89  *   // by adding the configuration name: <output_basedir>/<config-name>
  90  *   output_basedir: "build",
  91  *   // Configure argument to use to specify configuration name
  92  *   configuration_configure_arg:
  93  *   // Make argument to use to specify configuration name
  94  *   configuration_make_arg:
  95  *
  96  *   profiles: {
  97  *     <profile-name>: {
  98  *       // Name of os the profile is built to run on
  99  *       target_os; <string>
 100  *       // Name of cpu the profile is built to run on
 101  *       target_cpu; <string>
 102  *       // Combination of target_os and target_cpu for convenience
 103  *       target_platform; <string>
 104  *       // Name of os the profile is built on
 105  *       build_os; <string>
 106  *       // Name of cpu the profile is built on
 107  *       build_cpu; <string>
 108  *       // Combination of build_os and build_cpu for convenience
 109  *       build_platform; <string>
 110  *
 111  *       // List of dependencies needed to build this profile
 112  *       dependencies: <Array of strings>
 113  *
 114  *       // List of configure args to use for this profile
 115  *       configure_args: <Array of strings>
 116  *
 117  *       // List of free form labels describing aspects of this profile
 118  *       labels: <Array of strings>
 119  *     }
 120  *   }
 121  *
 122  *   // Dependencies use a Maven like deployment structure
 123  *   dependencies: {
 124  *     <dependency-name>: {
 125  *       // Organization part of path defining this dependency
 126  *       organization: <string>
 127  *       // File extension for this dependency
 128  *       ext: <string>
 129  *       // Module part of path for defining this dependency,
 130  *       // defaults to <dependency-name>
 131  *       module: <string>
 132  *       // Revision part of path for defining this dependency
 133  *       revision: <string>
 134  *
 135  *       // List of configure args to add when using this dependency,
 136  *       // defaults to
 137  *       // "--with-<dependency-name>=input.get("<dependency-name", "install_path")"
 138  *       configure_args: <array of strings>
 139  *
 140  *       // Name of environment variable to set when using this dependency
 141  *       // when running make
 142  *       environment_name: <string>
 143  *       // Value of environment variable to set when using this dependency
 144  *       // when running make
 145  *       environment_value: <string>
 146  *
 147  *       // Value to add to the PATH variable when using this dependency,
 148  *       // applies to both make and configure
 149  *       environment_path: <string>
 150  *     }
 151  *
 152  *     <dependency-name>: {
 153  *       // For certain dependencies where a legacy distribution mechanism is
 154  *       // already in place, the "javare" server layout is also supported
 155  *       // Indicate that an alternate server source and layout should be used
 156  *       server: "javare"
 157  *
 158  *       // For "javare", a combination of module, revision,
 159  *       // build number (optional), files and checksum file is possible for
 160  *       // artifacts following the standard layout.
 161  *       module: <string>
 162  *       revision: <string>
 163  *       build_number: <string>
 164  *       checksum_file: <string>
 165  *       file: <string>
 166  *
 167  *       // For other files, use checksum path and path instead
 168  *       checksum_path: <string>
 169  *       path: <string>
 170  *     }
 171  *   }
 172  * }
 173  */
 174 
 175 /**
 176  * Main entry to generate the profile configuration
 177  *
 178  * @param input External data to use for generating the configuration
 179  * @returns {{}} Profile configuration
 180  */
 181 var getJibProfiles = function (input) {
 182 
 183     var data = {};
 184 
 185     // Identifies the version of this format to the tool reading it.
 186     // 1.1 signifies that the publish, publish-src and get-src features are usable.
 187     // 1.2 signifies that artifact uploads should fail on missing artifacts by default.
 188     data.format_version = "1.2";
 189 
 190     // Organization, product and version are used when uploading/publishing build results
 191     data.organization = "";
 192     data.product = "jdk";
 193     data.version = getVersion();
 194 
 195     // The base directory for the build output. JIB will assume that the
 196     // actual build directory will be <output_basedir>/<configuration>
 197     data.output_basedir = "build";
 198     // The configure argument to use to specify the name of the configuration
 199     data.configuration_configure_arg = "--with-conf-name=";
 200     // The make argument to use to specify the name of the configuration
 201     data.configuration_make_arg = "CONF_NAME=";
 202 
 203     // Exclude list to use when Jib creates a source bundle
 204     data.src_bundle_excludes = [
 205         "build", "{,**/}webrev*", "{,**/}.hg", "{,**/}JTwork", "{,**/}JTreport",
 206         "{,**/}.git"
 207     ];
 208     // Include list to use when creating a minimal jib source bundle which
 209     // contains just the jib configuration files.
 210     data.conf_bundle_includes = [
 211         "make/autoconf/version-numbers",
 212     ];
 213 
 214     // Define some common values
 215     var common = getJibProfilesCommon(input, data);
 216     // Generate the profiles part of the configuration
 217     data.profiles = getJibProfilesProfiles(input, common, data);
 218     // Generate the dependencies part of the configuration
 219     data.dependencies = getJibProfilesDependencies(input, common, data);
 220 
 221     return data;
 222 };
 223 
 224 /**
 225  * Generates some common values
 226  *
 227  * @param input External data to use for generating the configuration
 228  * @returns Common values
 229  */
 230 var getJibProfilesCommon = function (input, data) {
 231     var common = {};
 232 
 233     common.organization = "jpg.infra.builddeps";
 234     common.build_id = getBuildId(input);
 235     common.build_number = input.build_number != null ? input.build_number : "0";
 236 
 237     // List of the main profile names used for iteration
 238     common.main_profile_names = [
 239         "linux-x64", "linux-x86", "macosx-x64", "solaris-x64",
 240         "solaris-sparcv9", "windows-x64", "windows-x86",
 241         "linux-aarch64", "linux-arm32"
 242     ];
 243 
 244     // These are the base setttings for all the main build profiles.
 245     common.main_profile_base = {
 246         dependencies: ["boot_jdk", "gnumake", "jtreg", "jib", "autoconf"],
 247         default_make_targets: ["product-bundles", "test-bundles"],
 248         configure_args: concat(["--enable-jtreg-failure-handler"],
 249             "--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",
 250             "--disable-manpages",
 251             versionArgs(input, common))
 252     };
 253     // Extra settings for debug profiles
 254     common.debug_suffix = "-debug";
 255     common.debug_profile_base = {
 256         configure_args: ["--enable-debug"],
 257         labels: "debug"
 258     };
 259     // Extra settings for slowdebug profiles
 260     common.slowdebug_suffix = "-slowdebug";
 261     common.slowdebug_profile_base = {
 262         configure_args: ["--with-debug-level=slowdebug"],
 263         labels: "slowdebug"
 264     };
 265     // Extra settings for openjdk only profiles
 266     common.open_suffix = "-open";
 267     common.open_profile_base = {
 268         configure_args: ["--enable-openjdk-only"],
 269         labels: "open"
 270     };
 271 
 272     common.configure_args_64bit = ["--with-target-bits=64"];
 273     common.configure_args_32bit = ["--with-target-bits=32"];
 274 
 275     /**
 276      * Define common artifacts template for all main profiles
 277      * @param o - Object containing data for artifacts
 278      */
 279     common.main_profile_artifacts = function (o) {
 280         var jdk_subdir = (o.jdk_subdir != null ? o.jdk_subdir : "jdk-" + data.version);
 281         var jdk_suffix = (o.jdk_suffix != null ? o.jdk_suffix : "tar.gz");
 282         var pf = o.platform
 283         return {
 284             artifacts: {
 285                 jdk: {
 286                     local: "bundles/\\(jdk.*bin." + jdk_suffix + "\\)",
 287                     remote: [
 288                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin." + jdk_suffix,
 289                         "bundles/" + pf + "/\\1"
 290                     ],
 291                     subdir: jdk_subdir,
 292                     exploded: "images/jdk"
 293                 },
 294                 test: {
 295                     local: "bundles/\\(jdk.*bin-tests.tar.gz\\)",
 296                     remote: [
 297                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-tests.tar.gz",
 298                         "bundles/" + pf + "/\\1"
 299                     ],
 300                     exploded: "images/test"
 301                 },
 302                 test_demos: {
 303                     local: "bundles/\\(jdk.*bin-tests-demos.tar.gz\\)",
 304                     remote: [
 305                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-tests-demos.tar.gz",
 306                         "bundles/" + pf + "/\\1"
 307                     ],
 308                     exploded: "images/test"
 309                 },
 310                 jdk_symbols: {
 311                     local: "bundles/\\(jdk.*bin-symbols.tar.gz\\)",
 312                     remote: [
 313                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-symbols.tar.gz",
 314                         "bundles/" + pf + "/\\1"
 315                     ],
 316                     subdir: jdk_subdir,
 317                     exploded: "images/jdk"
 318                 },
 319             }
 320         };
 321     };
 322 
 323 
 324     /**
 325      * Define common artifacts template for all debug profiles
 326      * @param o - Object containing data for artifacts
 327      */
 328     common.debug_profile_artifacts = function (o) {
 329         var jdk_subdir = "jdk-" + data.version + "/fastdebug";
 330         var jdk_suffix = (o.jdk_suffix != null ? o.jdk_suffix : "tar.gz");
 331         var pf = o.platform
 332         return {
 333             artifacts: {
 334                 jdk: {
 335                     local: "bundles/\\(jdk.*bin-debug." + jdk_suffix + "\\)",
 336                     remote: [
 337                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-debug." + jdk_suffix,
 338                         "bundles/" + pf + "/\\1"
 339                     ],
 340                     subdir: jdk_subdir,
 341                     exploded: "images/jdk"
 342                 },
 343                 test: {
 344                     local: "bundles/\\(jdk.*bin-tests-debug.tar.gz\\)",
 345                     remote: [
 346                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-tests-debug.tar.gz",
 347                         "bundles/" + pf + "/\\1"
 348                     ],
 349                     exploded: "images/test"
 350                 },
 351                 jdk_symbols: {
 352                     local: "bundles/\\(jdk.*bin-debug-symbols.tar.gz\\)",
 353                     remote: [
 354                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-debug-symbols.tar.gz",
 355                         "bundles/" + pf + "/\\1"
 356                     ],
 357                     subdir: jdk_subdir,
 358                     exploded: "images/jdk"
 359                 },
 360             }
 361         };
 362     };
 363 
 364     common.boot_jdk_version = "10";
 365     common.boot_jdk_home = input.get("boot_jdk", "home_path") + "/jdk-"
 366         + common.boot_jdk_version
 367         + (input.build_os == "macosx" ? ".jdk/Contents/Home" : "");
 368 
 369     return common;
 370 };
 371 
 372 /**
 373  * Generates the profiles part of the configuration.
 374  *
 375  * @param input External data to use for generating the configuration
 376  * @param common The common values
 377  * @returns {{}} Profiles part of the configuration
 378  */
 379 var getJibProfilesProfiles = function (input, common, data) {
 380     // Main SE profiles
 381     var profiles = {
 382 
 383         "linux-x64": {
 384             target_os: "linux",
 385             target_cpu: "x64",
 386             dependencies: ["devkit", "graphviz", "pandoc", "graalunit_lib"],
 387             configure_args: concat(common.configure_args_64bit,
 388                 "--enable-full-docs", "--with-zlib=system"),
 389             default_make_targets: ["docs-bundles"],
 390         },
 391 
 392         "linux-x86": {
 393             target_os: "linux",
 394             target_cpu: "x86",
 395             build_cpu: "x64",
 396             dependencies: ["devkit"],
 397             configure_args: concat(common.configure_args_32bit,
 398                 "--with-jvm-variants=minimal,server", "--with-zlib=system"),
 399         },
 400 
 401         "macosx-x64": {
 402             target_os: "macosx",
 403             target_cpu: "x64",
 404             dependencies: ["devkit", "graalunit_lib"],
 405             configure_args: concat(common.configure_args_64bit, "--with-zlib=system",
 406                 "--with-macosx-version-max=10.9.0"),
 407         },
 408 
 409         "solaris-x64": {
 410             target_os: "solaris",
 411             target_cpu: "x64",
 412             dependencies: ["devkit", "cups"],
 413             configure_args: concat(common.configure_args_64bit,
 414                 "--with-zlib=system", "--enable-dtrace"),
 415         },
 416 
 417         "solaris-sparcv9": {
 418             target_os: "solaris",
 419             target_cpu: "sparcv9",
 420             dependencies: ["devkit", "cups"],
 421             configure_args: concat(common.configure_args_64bit,
 422                 "--with-zlib=system", "--enable-dtrace"),
 423         },
 424 
 425         "windows-x64": {
 426             target_os: "windows",
 427             target_cpu: "x64",
 428             dependencies: ["devkit", "graalunit_lib"],
 429             configure_args: concat(common.configure_args_64bit),
 430         },
 431 
 432         "windows-x86": {
 433             target_os: "windows",
 434             target_cpu: "x86",
 435             build_cpu: "x64",
 436             dependencies: ["devkit"],
 437             configure_args: concat(common.configure_args_32bit),
 438         },
 439 
 440         "linux-aarch64": {
 441             target_os: "linux",
 442             target_cpu: "aarch64",
 443             build_cpu: "x64",
 444             dependencies: ["devkit", "build_devkit", "cups"],
 445             configure_args: [
 446                 "--openjdk-target=aarch64-linux-gnu", "--with-freetype=bundled",
 447                 "--disable-warnings-as-errors"
 448             ],
 449         },
 450 
 451         "linux-arm32": {
 452             target_os: "linux",
 453             target_cpu: "arm",
 454             build_cpu: "x64",
 455             dependencies: ["devkit", "build_devkit", "cups"],
 456             configure_args: [
 457                 "--openjdk-target=arm-linux-gnueabihf", "--with-freetype=bundled",
 458                 "--with-abi-profile=arm-vfp-hflt", "--disable-warnings-as-errors"
 459             ],
 460         },
 461     };
 462 
 463     // Add the base settings to all the main profiles
 464     common.main_profile_names.forEach(function (name) {
 465         profiles[name] = concatObjects(common.main_profile_base, profiles[name]);
 466     });
 467 
 468     // Generate debug versions of all the main profiles
 469     common.main_profile_names.forEach(function (name) {
 470         var debugName = name + common.debug_suffix;
 471         profiles[debugName] = concatObjects(profiles[name],
 472                                             common.debug_profile_base);
 473     });
 474     // Generate slowdebug versions of all the main profiles
 475     common.main_profile_names.forEach(function (name) {
 476         var debugName = name + common.slowdebug_suffix;
 477         profiles[debugName] = concatObjects(profiles[name],
 478                                             common.slowdebug_profile_base);
 479     });
 480     // Generate testmake profiles for the main profile of each build host
 481     // platform. This profile only runs the makefile tests.
 482     // Ant is needed to run the idea project generator test.
 483     var testmakeBase = {
 484         dependencies: [ "ant" ],
 485         environment: {
 486             "ANT_HOME": input.get("ant", "install_path") + "/apache-ant-1.7.1"
 487         }
 488     };
 489     [ "linux-x64", "macosx-x64", "solaris-sparcv9", "solaris-x64", "windows-x64"]
 490         .forEach(function (name) {
 491             var maketestName = name + "-testmake";
 492             profiles[maketestName] = concatObjects(profiles[name], testmakeBase);
 493             profiles[maketestName].default_make_targets = [ "test-make", "test-compile-commands" ];
 494         });
 495 
 496     // Profiles for building the zero jvm variant. These are used for verification.
 497     var zeroProfiles = {
 498         "linux-x64-zero": {
 499             target_os: "linux",
 500             target_cpu: "x64",
 501             dependencies: ["devkit"],
 502             configure_args: concat(common.configure_args_64bit, [
 503                 "--with-zlib=system",
 504                 "--with-jvm-variants=zero",
 505                 "--enable-libffi-bundling"
 506             ])
 507         },
 508 
 509         "linux-x86-zero": {
 510             target_os: "linux",
 511             target_cpu: "x86",
 512             build_cpu: "x64",
 513             dependencies: ["devkit"],
 514             configure_args:  concat(common.configure_args_32bit, [
 515                 "--with-zlib=system",
 516                 "--with-jvm-variants=zero",
 517                 "--enable-libffi-bundling"
 518             ])
 519         }
 520     }
 521     profiles = concatObjects(profiles, zeroProfiles);
 522 
 523     // Add the base settings to the zero profiles and generate debug profiles
 524     Object.keys(zeroProfiles).forEach(function (name) {
 525         var debugName = name + common.debug_suffix;
 526         profiles[name] = concatObjects(common.main_profile_base, profiles[name]);
 527         profiles[debugName] = concatObjects(profiles[name], common.debug_profile_base);
 528     });
 529 
 530     // Bootcycle profiles runs the build with itself as the boot jdk. This can
 531     // be done in two ways. Either using the builtin bootcycle target in the
 532     // build system. Or by supplying the main jdk build as bootjdk to configure.
 533     [ "linux-x64", "macosx-x64", "solaris-sparcv9", "windows-x64"]
 534         .forEach(function (name) {
 535             var bootcycleName = name + "-bootcycle";
 536             var bootcyclePrebuiltName = name + "-bootcycle-prebuilt";
 537             // The base bootcycle profile just changes the default target
 538             // compared to the base profile
 539             profiles[bootcycleName] = clone(profiles[name]);
 540             profiles[bootcycleName].default_make_targets = [ "bootcycle-images" ];
 541             // The prebuilt bootcycle variant modifies the boot jdk argument
 542             var bootcyclePrebuiltBase = {
 543                 dependencies: [ name + ".jdk" ],
 544                 configure_args: "--with-boot-jdk=" + input.get(name + ".jdk", "home_path"),
 545             }
 546             profiles[bootcyclePrebuiltName] = concatObjects(profiles[name],
 547                 bootcyclePrebuiltBase);
 548             var bootJdkIndex = profiles[bootcyclePrebuiltName].dependencies.indexOf("boot_jdk");
 549             delete profiles[bootcyclePrebuiltName].dependencies[bootJdkIndex];
 550             profiles[bootcyclePrebuiltName].default_make_targets = [ "product-images" ];
 551         });
 552 
 553     //
 554     // Define artifacts for profiles
 555     //
 556     // Macosx bundles are named osx
 557     // tar.gz.
 558     var artifactData = {
 559         "linux-x64": {
 560             platform: "linux-x64",
 561         },
 562         "linux-x86": {
 563             platform: "linux-x86",
 564         },
 565         "macosx-x64": {
 566             platform: "osx-x64",
 567             jdk_subdir: "jdk-" + data.version +  ".jdk/Contents/Home",
 568         },
 569         "solaris-x64": {
 570             platform: "solaris-x64",
 571         },
 572         "solaris-sparcv9": {
 573             platform: "solaris-sparcv9",
 574         },
 575         "windows-x64": {
 576             platform: "windows-x64",
 577             jdk_suffix: "zip",
 578         },
 579         "windows-x86": {
 580             platform: "windows-x86",
 581             jdk_suffix: "zip",
 582         },
 583        "linux-aarch64": {
 584             platform: "linux-aarch64",
 585         },
 586        "linux-arm32": {
 587             platform: "linux-arm32",
 588         }
 589     }
 590     // Generate common artifacts for all main profiles
 591     Object.keys(artifactData).forEach(function (name) {
 592         profiles[name] = concatObjects(profiles[name],
 593             common.main_profile_artifacts(artifactData[name]));
 594     });
 595 
 596     // Generate common artifacts for all debug profiles
 597     Object.keys(artifactData).forEach(function (name) {
 598         var debugName = name + common.debug_suffix;
 599         profiles[debugName] = concatObjects(profiles[debugName],
 600             common.debug_profile_artifacts(artifactData[name]));
 601     });
 602 
 603     profilesArtifacts = {
 604         "linux-x64": {
 605             artifacts: {
 606                 doc_api_spec: {
 607                     local: "bundles/\\(jdk.*doc-api-spec.tar.gz\\)",
 608                     remote: [
 609                         "bundles/common/jdk-" + data.version + "_doc-api-spec.tar.gz",
 610                         "bundles/linux-x64/\\1"
 611                     ],
 612                 },
 613             }
 614         }
 615     };
 616     profiles = concatObjects(profiles, profilesArtifacts);
 617 
 618     // Generate open only profiles for all the main and debug profiles.
 619     // Rewrite artifact remote paths by adding "openjdk/GPL".
 620     common.main_profile_names.forEach(function (name) {
 621         var openName = name + common.open_suffix;
 622         profiles[openName] = concatObjects(profiles[name],
 623             common.open_profile_base);
 624         for (artifactName in profiles[openName].artifacts) {
 625             var artifact = profiles[openName].artifacts[artifactName];
 626             artifact.remote = replaceAll(
 627                 "bundles\/", "bundles/openjdk/GPL/",
 628                 (artifact.remote != null ? artifact.remote : artifact.local));
 629         }
 630         var debugName = name + common.debug_suffix;
 631         var openDebugName = name + common.open_suffix + common.debug_suffix;
 632         profiles[openDebugName] = concatObjects(profiles[debugName],
 633             common.open_profile_base);
 634         for (artifactName in profiles[openDebugName].artifacts) {
 635             var artifact = profiles[openDebugName].artifacts[artifactName];
 636             artifact.remote = replaceAll(
 637                 "bundles\/", "bundles/openjdk/GPL/",
 638                 (artifact.remote != null ? artifact.remote : artifact.local));
 639         }
 640     });
 641 
 642     // Define the reference implementation profiles. These are basically the same
 643     // as the open profiles, but upload artifacts to a different location.
 644     common.main_profile_names.forEach(function (name) {
 645         var riName = name + "-ri";
 646         var riDebugName = riName + common.debug_suffix;
 647         var openName = name + common.open_suffix;
 648         var openDebugName = openName + common.debug_suffix;
 649         profiles[riName] = clone(profiles[openName]);
 650         profiles[riDebugName] = clone(profiles[openDebugName]);
 651         // Rewrite all remote dirs to "bundles/openjdk/BCL/..."
 652         for (artifactName in profiles[riName].artifacts) {
 653             var artifact = profiles[riName].artifacts[artifactName];
 654             artifact.remote = replaceAll(
 655                 "\/GPL\/", "/BCL/",
 656                 (artifact.remote != null ? artifact.remote : artifact.local));
 657         }
 658     });
 659 
 660     // For open profiles, the non-debug jdk bundles, need an "open" prefix on the
 661     // remote bundle names, forming the word "openjdk". See JDK-8188789.
 662     common.main_profile_names.forEach(function (name) {
 663         var openName = name + common.open_suffix;
 664         profiles[openName].artifacts["jdk"].remote = replaceAll(
 665             "\/jdk-", "/openjdk-",
 666             replaceAll("\/\\1", "/open\\1",
 667                        profiles[openName].artifacts["jdk"].remote));
 668     });
 669 
 670     // Enable ZGC in linux-x64-open builds
 671     [ "linux-x64-open" ].forEach(function (name) {
 672         var configureArgs = { configure_args: [ "--with-jvm-features=zgc" ] };
 673         var debugName = name + common.debug_suffix;
 674         profiles[name] = concatObjects(profiles[name], configureArgs);
 675         profiles[debugName] = concatObjects(profiles[debugName], configureArgs);
 676     });
 677 
 678     // Generate cmp-baseline profiles for each main profile and their
 679     // corresponding debug profile. This profile does a compare build run with no
 680     // changes to verify that the compare script has a clean baseline
 681     common.main_profile_names.forEach(function (name) {
 682         [ "", common.open_suffix ].forEach(function (suffix) {
 683             var cmpBaselineName = name + suffix + "-cmp-baseline";
 684             profiles[cmpBaselineName] = clone(profiles[name + suffix]);
 685             // Only compare the images target. This should pressumably be expanded
 686             // to include more build targets when possible.
 687             profiles[cmpBaselineName].default_make_targets = [ "images" ];
 688             profiles[cmpBaselineName].make_args = [ "COMPARE_BUILD=CONF=" ];
 689             // Do not inherit artifact definitions from base profile
 690             delete profiles[cmpBaselineName].artifacts;
 691         });
 692     });
 693 
 694     // Profiles used to run tests.
 695     var testOnlyProfiles = {
 696         "run-test": {
 697             target_os: input.build_os,
 698             target_cpu: input.build_cpu,
 699             dependencies: [ "jtreg", "gnumake", "boot_jdk", "devkit", "jib" ],
 700             labels: "test",
 701             environment: {
 702                 "JT_JAVA": common.boot_jdk_home
 703             }
 704         }
 705     };
 706     profiles = concatObjects(profiles, testOnlyProfiles);
 707 
 708     // Profiles used to run tests using Jib for internal dependencies.
 709     var testedProfile = input.testedProfile;
 710     if (testedProfile == null) {
 711         testedProfile = input.build_os + "-" + input.build_cpu;
 712     }
 713     var testOnlyProfilesPrebuilt = {
 714         "run-test-prebuilt": {
 715             target_os: input.build_os,
 716             target_cpu: input.build_cpu,
 717             dependencies: [ "jtreg", "gnumake", "boot_jdk", "jib", testedProfile + ".jdk",
 718                 testedProfile + ".test"
 719             ],
 720             src: "src.conf",
 721             make_args: [ "run-test-prebuilt", "LOG_CMDLINES=true", "JTREG_VERBOSE=fail,error,time" ],
 722             environment: {
 723                 "BOOT_JDK": common.boot_jdk_home,
 724                 "JDK_IMAGE_DIR": input.get(testedProfile + ".jdk", "home_path"),
 725                 "TEST_IMAGE_DIR": input.get(testedProfile + ".test", "home_path")
 726             },
 727             labels: "test"
 728         }
 729     };
 730 
 731     // If actually running the run-test-prebuilt profile, verify that the input
 732     // variable is valid and if so, add the appropriate target_* values from
 733     // the tested profile.
 734     if (input.profile == "run-test-prebuilt") {
 735         if (profiles[testedProfile] == null) {
 736             error("testedProfile is not defined: " + testedProfile);
 737         }
 738     }
 739     if (profiles[testedProfile] != null) {
 740         testOnlyProfilesPrebuilt["run-test-prebuilt"]["target_os"]
 741             = profiles[testedProfile]["target_os"];
 742         testOnlyProfilesPrebuilt["run-test-prebuilt"]["target_cpu"]
 743             = profiles[testedProfile]["target_cpu"];
 744     }
 745     profiles = concatObjects(profiles, testOnlyProfilesPrebuilt);
 746 
 747     // On macosx add the devkit bin dir to the path in all the run-test profiles.
 748     // This gives us a guaranteed working version of lldb for the jtreg failure handler.
 749     if (input.build_os == "macosx") {
 750         macosxRunTestExtra = {
 751             dependencies: [ "devkit" ],
 752             environment_path: input.get("devkit", "install_path")
 753                 + "/Xcode.app/Contents/Developer/usr/bin"
 754         };
 755         profiles["run-test"] = concatObjects(profiles["run-test"], macosxRunTestExtra);
 756         profiles["run-test-prebuilt"] = concatObjects(profiles["run-test-prebuilt"], macosxRunTestExtra);
 757     }
 758     // On windows we want the debug symbols available at test time
 759     if (input.build_os == "windows") {
 760         windowsRunTestPrebuiltExtra = {
 761             dependencies: [ testedProfile + ".jdk_symbols" ],
 762             environment: {
 763                 "SYMBOLS_IMAGE_DIR": input.get(testedProfile + ".jdk_symbols", "home_path"),
 764             }
 765         };
 766         profiles["run-test-prebuilt"] = concatObjects(profiles["run-test-prebuilt"],
 767             windowsRunTestPrebuiltExtra);
 768     }
 769 
 770     // The profile run-test-prebuilt defines src.conf as the src bundle. When
 771     // running in Mach 5, this reduces the time it takes to populate the
 772     // considerably. But with just src.conf, we cannot actually run any tests,
 773     // so if running from a workspace with just src.conf in it, we need to also
 774     // get src.full as a dependency, and define the work_dir (where make gets
 775     // run) to be in the src.full install path. By running in the install path,
 776     // the same cached installation of the full src can be reused for multiple
 777     // test tasks. Care must however be taken not to polute that work dir by
 778     // setting the appropriate make variables to control output directories.
 779     //
 780     // Use the existance of the top level README as indication of if this is
 781     // the full source or just src.conf.
 782     if (!new java.io.File(__DIR__, "../../README").exists()) {
 783         var runTestPrebuiltSrcFullExtra = {
 784             dependencies: "src.full",
 785             work_dir: input.get("src.full", "install_path"),
 786         }
 787         profiles["run-test-prebuilt"] = concatObjects(profiles["run-test-prebuilt"],
 788             runTestPrebuiltSrcFullExtra);
 789     }
 790 
 791     // Generate the missing platform attributes
 792     profiles = generatePlatformAttributes(profiles);
 793     profiles = generateDefaultMakeTargetsConfigureArg(common, profiles);
 794     return profiles;
 795 };
 796 
 797 /**
 798  * Generate the dependencies part of the configuration
 799  *
 800  * @param input External data to use for generating the configuration
 801  * @param common The common values
 802  * @returns {{}} Dependencies part of configuration
 803  */
 804 var getJibProfilesDependencies = function (input, common) {
 805 
 806     var devkit_platform_revisions = {
 807         linux_x64: "gcc7.3.0-OEL6.4+1.1",
 808         macosx_x64: "Xcode9.4-MacOSX10.13+1.0",
 809         solaris_x64: "SS12u4-Solaris11u1+1.0",
 810         solaris_sparcv9: "SS12u6-Solaris11u3+1.0",
 811         windows_x64: "VS2017-15.5.5+1.0",
 812         linux_aarch64: "gcc7.3.0-Fedora27+1.0",
 813         linux_arm: "gcc7.3.0-Fedora27+1.0"
 814     };
 815 
 816     var devkit_platform = (input.target_cpu == "x86"
 817         ? input.target_os + "_x64"
 818         : input.target_platform);
 819 
 820     var boot_jdk_platform = (input.build_os == "macosx" ? "osx" : input.build_os)
 821         + "-" + input.build_cpu;
 822 
 823     var makeBinDir = (input.build_os == "windows"
 824         ? input.get("gnumake", "install_path") + "/cygwin/bin"
 825         : input.get("gnumake", "install_path") + "/bin");
 826 
 827     var dependencies = {
 828 
 829         boot_jdk: {
 830             server: "jpg",
 831             product: "jdk",
 832             version: common.boot_jdk_version,
 833             build_number: "46",
 834             file: "bundles/" + boot_jdk_platform + "/jdk-" + common.boot_jdk_version + "_"
 835                 + boot_jdk_platform + "_bin.tar.gz",
 836             configure_args: "--with-boot-jdk=" + common.boot_jdk_home,
 837             environment_path: common.boot_jdk_home + "/bin"
 838         },
 839 
 840         devkit: {
 841             organization: common.organization,
 842             ext: "tar.gz",
 843             module: "devkit-" + devkit_platform,
 844             revision: devkit_platform_revisions[devkit_platform]
 845         },
 846 
 847         build_devkit: {
 848             organization: common.organization,
 849             ext: "tar.gz",
 850             module: "devkit-" + input.build_platform,
 851             revision: devkit_platform_revisions[input.build_platform]
 852         },
 853 
 854         cups: {
 855             organization: common.organization,
 856             ext: "tar.gz",
 857             revision: "1.0118+1.0"
 858         },
 859 
 860         jtreg: {
 861             server: "javare",
 862             revision: "4.2",
 863             build_number: "b13",
 864             checksum_file: "MD5_VALUES",
 865             file: "jtreg_bin-4.2.zip",
 866             environment_name: "JT_HOME",
 867             environment_path: input.get("jtreg", "install_path") + "/jtreg/bin"
 868         },
 869 
 870         gnumake: {
 871             organization: common.organization,
 872             ext: "tar.gz",
 873             revision: "4.0+1.0",
 874 
 875             module: (input.build_os == "windows"
 876                 ? "gnumake-" + input.build_osenv_platform
 877                 : "gnumake-" + input.build_platform),
 878 
 879             configure_args: "MAKE=" + makeBinDir + "/make",
 880 
 881             environment: {
 882                 "MAKE": makeBinDir + "/make"
 883             },
 884 
 885             environment_path: makeBinDir
 886         },
 887 
 888         autoconf: {
 889             organization: common.organization,
 890             ext: "tar.gz",
 891             revision: "2.69+1.0.1",
 892             module: (input.build_os == "windows"
 893                 ? "autoconf-" + input.build_osenv_platform
 894                 : "autoconf-" + input.build_platform),
 895             configure_args: "",
 896             environment_path: input.get("autoconf", "install_path")
 897         },
 898 
 899         graphviz: {
 900             organization: common.organization,
 901             ext: "tar.gz",
 902             revision: "2.38.0-1+1.1",
 903             module: "graphviz-" + input.target_platform,
 904             configure_args: "DOT=" + input.get("graphviz", "install_path") + "/dot",
 905             environment_path: input.get("graphviz", "install_path")
 906         },
 907 
 908         pandoc: {
 909             organization: common.organization,
 910             ext: "tar.gz",
 911             revision: "1.17.2+1.0",
 912             module: "pandoc-" + input.target_platform,
 913             configure_args: "PANDOC=" + input.get("pandoc", "install_path") + "/pandoc/pandoc",
 914             environment_path: input.get("pandoc", "install_path") + "/pandoc"
 915         },
 916 
 917         // This adds java jib as a dependency for the test artifacts resolver
 918         jib: {
 919             organization: "com.oracle.java.jib",
 920             ext: "zip",
 921             classifier: "distribution",
 922             revision: "3.0-SNAPSHOT",
 923             environment_name: "JIB_HOME",
 924             environment_value: input.get("jib", "install_path")
 925                 + "/jib-3.0-SNAPSHOT-distribution"
 926         },
 927 
 928         ant: {
 929             organization: common.organization,
 930             ext: "zip",
 931             revision: "1.7.1+1.0",
 932             configure_args: "",
 933         },
 934 
 935         graalunit_lib: {
 936             organization: common.organization,
 937             ext: "zip",
 938             revision: "619_Apr_12_2018",
 939             module: "graalunit-lib",
 940             configure_args: "--with-graalunit-lib=" + input.get("graalunit_lib", "install_path"),
 941             environment_name: "GRAALUNIT_LIB"
 942         },
 943     };
 944 
 945     // Need to add a value for the Visual Studio tools variable to make
 946     // jaot be able to pick up the Visual Studio linker in testing.
 947     if (input.target_os == "windows") {
 948         dependencies.devkit.environment = {
 949             VS120COMNTOOLS: input.get("devkit", "install_path") + "/Common7/Tools"
 950         };
 951     }
 952 
 953     return dependencies;
 954 };
 955 
 956 /**
 957  * Generate the missing platform attributes for profiles
 958  *
 959  * @param profiles Profiles map to generate attributes on
 960  * @returns {{}} New profiles map with platform attributes fully filled in
 961  */
 962 var generatePlatformAttributes = function (profiles) {
 963     var ret = concatObjects(profiles, {});
 964     for (var profile in profiles) {
 965         if (ret[profile].build_os == null) {
 966             ret[profile].build_os = ret[profile].target_os;
 967         }
 968         if (ret[profile].build_cpu == null) {
 969             ret[profile].build_cpu = ret[profile].target_cpu;
 970         }
 971         ret[profile].target_platform = ret[profile].target_os + "_" + ret[profile].target_cpu;
 972         ret[profile].build_platform = ret[profile].build_os + "_" + ret[profile].build_cpu;
 973     }
 974     return ret;
 975 };
 976 
 977 /**
 978  * The default_make_targets attribute on a profile is not a real Jib attribute.
 979  * This function rewrites that attribute into the corresponding configure arg.
 980  * Calling this function multiple times on the same profiles object is safe.
 981  *
 982  * @param common Common values
 983  * @param profiles Profiles map to rewrite profiles for
 984  * @returns {{}} New map of profiles with the make targets converted
 985  */
 986 var generateDefaultMakeTargetsConfigureArg = function (common, profiles) {
 987     var ret = concatObjects(profiles, {});
 988     for (var profile in ret) {
 989         if (ret[profile]["default_make_targets"] != null) {
 990             var targetsString = concat(ret[profile].default_make_targets).join(" ");
 991             // Iterate over all configure args and see if --with-default-make-target
 992             // is already there and change it, otherwise add it.
 993             var found = false;
 994             for (var i in ret[profile].configure_args) {
 995                 var arg = ret[profile].configure_args[i];
 996                 if (arg != null && arg.startsWith("--with-default-make-target=")) {
 997                     found = true;
 998                     ret[profile].configure_args[i]
 999                         = "--with-default-make-target=" + targetsString;
1000                 }
1001             }
1002             if (!found) {
1003                 ret[profile].configure_args = concat(
1004                     ret[profile].configure_args,
1005                     "--with-default-make-target=" + targetsString);
1006             }
1007         }
1008     }
1009     return ret;
1010 }
1011 
1012 var getBuildId = function (input) {
1013     if (input.build_id != null) {
1014         return input.build_id;
1015     } else {
1016         var topdir = new java.io.File(__DIR__, "../..").getCanonicalFile().getName();
1017         var userName = java.lang.System.getProperty("user.name");
1018         return userName + "." + topdir;
1019     }
1020 }
1021 
1022 /**
1023  * Deep clones an object tree.
1024  *
1025  * @param o Object to clone
1026  * @returns {{}} Clone of o
1027  */
1028 var clone = function (o) {
1029     return JSON.parse(JSON.stringify(o));
1030 };
1031 
1032 /**
1033  * Concatenates all arguments into a new array
1034  *
1035  * @returns {Array.<T>} New array containing all arguments
1036  */
1037 var concat = function () {
1038     return Array.prototype.concat.apply([], arguments);
1039 };
1040 
1041 /**
1042  * Takes a String or Array of Strings and does a replace operation on each
1043  * of them.
1044  *
1045  * @param pattern Pattern to look for
1046  * @param replacement Replacement text to insert
1047  * @param a String or Array of Strings to replace
1048  * @returns {Array} Either a new array or a new string depending on the input
1049  */
1050 var replaceAll = function (pattern, replacement, a) {
1051     // If a is an array
1052     if (Array === a.constructor) {
1053     var newA = [];
1054     for (var i in a) {
1055             newA.push(a[i].replace(pattern, replacement));
1056         }
1057         return newA;
1058         } else {
1059         return a.replace(pattern, replacement);
1060     }
1061 };
1062 
1063 /**
1064  * Deep concatenation of two objects. For each node encountered, merge
1065  * the contents with the corresponding node in the other object tree,
1066  * treating all strings as array elements.
1067  *
1068  * @param o1 Object to concatenate
1069  * @param o2 Object to concatenate
1070  * @returns {{}} New object tree containing the concatenation of o1 and o2
1071  */
1072 var concatObjects = function (o1, o2) {
1073     if (o1 == null) {
1074         return clone(o2);
1075     }
1076     if (o2 == null) {
1077         return clone(o1);
1078     }
1079     var ret = {};
1080     for (var a in o1) {
1081         if (o2[a] == null) {
1082             ret[a] = clone(o1[a]);
1083         }
1084     }
1085     for (var a in o2) {
1086         if (o1[a] == null) {
1087             ret[a] = clone(o2[a]);
1088         } else {
1089             if (typeof o1[a] == 'string') {
1090                 ret[a] = clone([o1[a]].concat(o2[a]));
1091             } else if (Array.isArray(o1[a])) {
1092                 ret[a] = clone(o1[a].concat(o2[a]));
1093             } else if (typeof o1[a] == 'object') {
1094                 ret[a] = concatObjects(o1[a], o2[a]);
1095             }
1096         }
1097     }
1098     return ret;
1099 };
1100 
1101 /**
1102  * Constructs the numeric version string from reading the
1103  * make/autoconf/version-numbers file and removing all trailing ".0".
1104  *
1105  * @param feature Override feature version
1106  * @param interim Override interim version
1107  * @param update Override update version
1108  * @param patch Override patch version
1109  * @returns {String} The numeric version string
1110  */
1111 var getVersion = function (feature, interim, update, patch) {
1112     var version_numbers = getVersionNumbers();
1113     var version = (feature != null ? feature : version_numbers.get("DEFAULT_VERSION_FEATURE"))
1114         + "." + (interim != null ? interim : version_numbers.get("DEFAULT_VERSION_INTERIM"))
1115         + "." + (update != null ? update :  version_numbers.get("DEFAULT_VERSION_UPDATE"))
1116         + "." + (patch != null ? patch : version_numbers.get("DEFAULT_VERSION_PATCH"));
1117     while (version.match(".*\\.0$")) {
1118         version = version.substring(0, version.length - 2);
1119     }
1120     return version;
1121 };
1122 
1123 /**
1124  * Constructs the common version configure args based on build type and
1125  * other version inputs
1126  */
1127 var versionArgs = function(input, common) {
1128     var args = ["--with-version-build=" + common.build_number];
1129     if (input.build_type == "promoted") {
1130         args = concat(args,
1131                       // This needs to be changed when we start building release candidates
1132                       // with-version-pre must be set to ea for 'ea' and empty for fcs build
1133                       "--with-version-pre=ea",
1134                       "--without-version-opt");
1135     } else {
1136         args = concat(args, "--with-version-opt=" + common.build_id);
1137     }
1138     return args;
1139 }
1140 
1141 // Properties representation of the make/autoconf/version-numbers file. Lazily
1142 // initiated by the function below.
1143 var version_numbers;
1144 
1145 /**
1146  * Read the make/autoconf/version-numbers file into a Properties object.
1147  *
1148  * @returns {java.utilProperties}
1149  */
1150 var getVersionNumbers = function () {
1151     // Read version information from make/autoconf/version-numbers
1152     if (version_numbers == null) {
1153         version_numbers = new java.util.Properties();
1154         var stream = new java.io.FileInputStream(__DIR__ + "/../autoconf/version-numbers");
1155         version_numbers.load(stream);
1156         stream.close();
1157     }
1158     return version_numbers;
1159 }