1 /*
   2  * Copyright (c) 2015, 2020, 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", "static-libs-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             "--disable-jvm-feature-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                 static_libs: {
 324                     local: "bundles/\\(jdk.*bin-static-libs.tar.gz\\)",
 325                     remote: [
 326                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-static-libs.tar.gz",
 327                         "bundles/" + pf + "/\\1"
 328                     ],
 329                     subdir: jdk_subdir,
 330                 },
 331             }
 332         };
 333     };
 334 
 335 
 336     /**
 337      * Define common artifacts template for all debug profiles
 338      * @param o - Object containing data for artifacts
 339      */
 340     common.debug_profile_artifacts = function (o) {
 341         var jdk_subdir = "jdk-" + data.version + "/fastdebug";
 342         var jdk_suffix = (o.jdk_suffix != null ? o.jdk_suffix : "tar.gz");
 343         var pf = o.platform
 344         return {
 345             artifacts: {
 346                 jdk: {
 347                     local: "bundles/\\(jdk.*bin-debug." + jdk_suffix + "\\)",
 348                     remote: [
 349                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-debug." + jdk_suffix,
 350                         "bundles/" + pf + "/\\1"
 351                     ],
 352                     subdir: jdk_subdir,
 353                     exploded: "images/jdk"
 354                 },
 355                 test: {
 356                     local: "bundles/\\(jdk.*bin-tests-debug.tar.gz\\)",
 357                     remote: [
 358                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-tests-debug.tar.gz",
 359                         "bundles/" + pf + "/\\1"
 360                     ],
 361                     exploded: "images/test"
 362                 },
 363                 jdk_symbols: {
 364                     local: "bundles/\\(jdk.*bin-debug-symbols.tar.gz\\)",
 365                     remote: [
 366                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-debug-symbols.tar.gz",
 367                         "bundles/" + pf + "/\\1"
 368                     ],
 369                     subdir: jdk_subdir,
 370                     exploded: "images/jdk"
 371                 },
 372                 static_libs: {
 373                     local: "bundles/\\(jdk.*bin-static-libs-debug.tar.gz\\)",
 374                     remote: [
 375                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-static-libs-debug.tar.gz",
 376                         "bundles/" + pf + "/\\1"
 377                     ],
 378                     subdir: jdk_subdir,
 379                 },
 380             }
 381         };
 382     };
 383 
 384     common.boot_jdk_version = "14";
 385     common.boot_jdk_build_number = "36";
 386     common.boot_jdk_home = input.get("boot_jdk", "install_path") + "/jdk-"
 387         + common.boot_jdk_version
 388         + (input.build_os == "macosx" ? ".jdk/Contents/Home" : "");
 389 
 390     return common;
 391 };
 392 
 393 /**
 394  * Generates the profiles part of the configuration.
 395  *
 396  * @param input External data to use for generating the configuration
 397  * @param common The common values
 398  * @returns {{}} Profiles part of the configuration
 399  */
 400 var getJibProfilesProfiles = function (input, common, data) {
 401     // Main SE profiles
 402     var profiles = {
 403 
 404         "linux-x64": {
 405             target_os: "linux",
 406             target_cpu: "x64",
 407             dependencies: ["devkit", "graphviz", "pandoc", "graalunit_lib"],
 408             configure_args: concat(common.configure_args_64bit,
 409                 "--enable-full-docs", "--with-zlib=system",
 410                 (isWsl(input) ? [ "--host=x86_64-unknown-linux-gnu",
 411                     "--build=x86_64-unknown-linux-gnu" ] : [])),
 412             default_make_targets: ["docs-bundles"],
 413         },
 414 
 415         "linux-x86": {
 416             target_os: "linux",
 417             target_cpu: "x86",
 418             build_cpu: "x64",
 419             dependencies: ["devkit"],
 420             configure_args: concat(common.configure_args_32bit,
 421                 "--with-jvm-variants=minimal,server", "--with-zlib=system"),
 422         },
 423 
 424         "macosx-x64": {
 425             target_os: "macosx",
 426             target_cpu: "x64",
 427             dependencies: ["devkit", "pandoc", "graalunit_lib"],
 428             configure_args: concat(common.configure_args_64bit, "--with-zlib=system",
 429                 "--with-macosx-version-max=10.9.0"),
 430         },
 431 
 432         "solaris-x64": {
 433             target_os: "solaris",
 434             target_cpu: "x64",
 435             dependencies: ["devkit", "cups"],
 436             configure_args: concat(common.configure_args_64bit,
 437                 "--with-zlib=system", "--enable-dtrace", "--enable-deprecated-ports=yes"),
 438         },
 439 
 440         "solaris-sparcv9": {
 441             target_os: "solaris",
 442             target_cpu: "sparcv9",
 443             dependencies: ["devkit", "cups"],
 444             configure_args: concat(common.configure_args_64bit,
 445                 "--with-zlib=system", "--enable-dtrace", "--enable-deprecated-ports=yes"),
 446         },
 447 
 448         "windows-x64": {
 449             target_os: "windows",
 450             target_cpu: "x64",
 451             dependencies: ["devkit", "pandoc", "graalunit_lib"],
 452             configure_args: concat(common.configure_args_64bit),
 453         },
 454 
 455         "windows-x86": {
 456             target_os: "windows",
 457             target_cpu: "x86",
 458             build_cpu: "x64",
 459             dependencies: ["devkit"],
 460             configure_args: concat(common.configure_args_32bit),
 461         },
 462 
 463         "linux-aarch64": {
 464             target_os: "linux",
 465             target_cpu: "aarch64",
 466             build_cpu: "x64",
 467             dependencies: ["devkit", "build_devkit", "pandoc"],
 468             configure_args: [
 469                 "--openjdk-target=aarch64-linux-gnu",
 470                 "--disable-jvm-feature-jvmci",
 471                 "--disable-jvm-feature-graal",
 472                 "--disable-jvm-feature-aot",
 473             ],
 474         },
 475 
 476         "linux-arm32": {
 477             target_os: "linux",
 478             target_cpu: "arm",
 479             build_cpu: "x64",
 480             dependencies: ["devkit", "build_devkit"],
 481             configure_args: [
 482                 "--openjdk-target=arm-linux-gnueabihf", "--with-freetype=bundled",
 483                 "--with-abi-profile=arm-vfp-hflt", "--disable-warnings-as-errors"
 484             ],
 485         },
 486 
 487         "linux-ppc64le": {
 488             target_os: "linux",
 489             target_cpu: "ppc64le",
 490             build_cpu: "x64",
 491             dependencies: ["devkit", "build_devkit"],
 492             configure_args: [
 493                 "--openjdk-target=ppc64le-linux-gnu", "--with-freetype=bundled",
 494                 "--disable-warnings-as-errors"
 495             ],
 496         },
 497 
 498         "linux-s390x": {
 499             target_os: "linux",
 500             target_cpu: "s390x",
 501             build_cpu: "x64",
 502             dependencies: ["devkit", "build_devkit"],
 503             configure_args: [
 504                 "--openjdk-target=s390x-linux-gnu", "--with-freetype=bundled",
 505                 "--disable-warnings-as-errors"
 506             ],
 507         },
 508     };
 509 
 510     // Add the base settings to all the main profiles
 511     common.main_profile_names.forEach(function (name) {
 512         profiles[name] = concatObjects(common.main_profile_base, profiles[name]);
 513     });
 514 
 515     // Generate debug versions of all the main profiles
 516     common.main_profile_names.forEach(function (name) {
 517         var debugName = name + common.debug_suffix;
 518         profiles[debugName] = concatObjects(profiles[name],
 519                                             common.debug_profile_base);
 520     });
 521     // Generate slowdebug versions of all the main profiles
 522     common.main_profile_names.forEach(function (name) {
 523         var debugName = name + common.slowdebug_suffix;
 524         profiles[debugName] = concatObjects(profiles[name],
 525                                             common.slowdebug_profile_base);
 526     });
 527     // Generate testmake profiles for the main profile of each build host
 528     // platform. This profile only runs the makefile tests.
 529     // Ant is needed to run the idea project generator test.
 530     var testmakeBase = {
 531         dependencies: [ "ant" ],
 532         environment: {
 533             "ANT_HOME": input.get("ant", "home_path")
 534         }
 535     };
 536     [ "linux-x64", "macosx-x64", "solaris-sparcv9", "solaris-x64", "windows-x64"]
 537         .forEach(function (name) {
 538             var maketestName = name + "-testmake";
 539             profiles[maketestName] = concatObjects(profiles[name], testmakeBase);
 540             profiles[maketestName].default_make_targets = [ "test-make" ];
 541         });
 542 
 543     // Generate -gcov profiles
 544     [ "linux-aarch64", "linux-x64", "macosx-x64" ].forEach(function (name) {
 545         var gcovName = name + "-gcov";
 546         profiles[gcovName] = clone(profiles[name]);
 547         profiles[gcovName].default_make_targets = ["product-bundles", "test-bundles"];
 548         profiles[gcovName].configure_args = concat(profiles[gcovName].configure_args,
 549             ["--enable-native-coverage", "--disable-warnings-as-errors"]);
 550     });
 551 
 552     // Profiles for building the zero jvm variant. These are used for verification.
 553     var zeroProfiles = {
 554         "linux-x64-zero": {
 555             target_os: "linux",
 556             target_cpu: "x64",
 557             dependencies: ["devkit"],
 558             configure_args: concat(common.configure_args_64bit, [
 559                 "--with-zlib=system",
 560                 "--with-jvm-variants=zero",
 561                 "--enable-libffi-bundling"
 562             ])
 563         },
 564 
 565         "linux-x86-zero": {
 566             target_os: "linux",
 567             target_cpu: "x86",
 568             build_cpu: "x64",
 569             dependencies: ["devkit"],
 570             configure_args:  concat(common.configure_args_32bit, [
 571                 "--with-zlib=system",
 572                 "--with-jvm-variants=zero",
 573                 "--enable-libffi-bundling"
 574             ])
 575         }
 576     }
 577     profiles = concatObjects(profiles, zeroProfiles);
 578 
 579     // Add the base settings to the zero profiles and generate debug profiles
 580     Object.keys(zeroProfiles).forEach(function (name) {
 581         var debugName = name + common.debug_suffix;
 582         profiles[name] = concatObjects(common.main_profile_base, profiles[name]);
 583         profiles[debugName] = concatObjects(profiles[name], common.debug_profile_base);
 584     });
 585 
 586     // Define a profile with precompiled headers disabled. This is just used for
 587     // verfication of this build configuration.
 588     var noPchProfiles = {
 589         "linux-x64-debug-nopch": {
 590             target_os: "linux",
 591             target_cpu: "x64",
 592             dependencies: ["devkit"],
 593             configure_args: concat(common.configure_args_64bit,
 594                 "--with-zlib=system", "--disable-precompiled-headers"),
 595         },
 596     };
 597     profiles = concatObjects(profiles, noPchProfiles);
 598     // Add base settings to noPch profiles
 599     Object.keys(noPchProfiles).forEach(function (name) {
 600         profiles[name] = concatObjects(common.main_profile_base, profiles[name]);
 601         profiles[name] = concatObjects(common.debug_profile_base, profiles[name]);
 602         // Override default make target with hotspot as that's the only part of
 603         // the build using precompiled headers.
 604         profiles[name].default_make_targets = ["hotspot"];
 605     });
 606 
 607     // Bootcycle profiles runs the build with itself as the boot jdk. This can
 608     // be done in two ways. Either using the builtin bootcycle target in the
 609     // build system. Or by supplying the main jdk build as bootjdk to configure.
 610     [ "linux-x64", "macosx-x64", "solaris-sparcv9", "windows-x64"]
 611         .forEach(function (name) {
 612             var bootcycleName = name + "-bootcycle";
 613             var bootcyclePrebuiltName = name + "-bootcycle-prebuilt";
 614             // The base bootcycle profile just changes the default target
 615             // compared to the base profile
 616             profiles[bootcycleName] = clone(profiles[name]);
 617             profiles[bootcycleName].default_make_targets = [ "bootcycle-images" ];
 618             // The prebuilt bootcycle variant modifies the boot jdk argument
 619             var bootcyclePrebuiltBase = {
 620                 dependencies: [ name + ".jdk" ],
 621                 configure_args: [
 622                     "--with-boot-jdk=" + input.get(name + ".jdk", "home_path"),
 623                     // Full docs do not currently work with bootcycle build
 624                     // since Nashorn was removed. This negates the
 625                     // --enable-full-docs from the main profile.
 626                     "--enable-full-docs=auto",
 627                 ]
 628             }
 629             profiles[bootcyclePrebuiltName] = concatObjects(profiles[name],
 630                 bootcyclePrebuiltBase);
 631             var bootJdkIndex = profiles[bootcyclePrebuiltName].dependencies.indexOf("boot_jdk");
 632             delete profiles[bootcyclePrebuiltName].dependencies[bootJdkIndex];
 633             profiles[bootcyclePrebuiltName].default_make_targets = [ "product-images" ];
 634         });
 635 
 636     // JCov profiles build JCov-instrumented JDK image based on images provided through dependencies.
 637     [ "linux-aarch64", "linux-x64", "macosx-x64", "solaris-sparcv9", "windows-x64"]
 638         .forEach(function (name) {
 639             var jcovName = name + "-jcov";
 640             profiles[jcovName] = clone(common.main_profile_base);
 641             profiles[jcovName].target_os = profiles[name].target_os
 642             profiles[jcovName].target_cpu = profiles[name].target_cpu
 643             profiles[jcovName].default_make_targets = [ "jcov-bundles" ];
 644             profiles[jcovName].dependencies = concat(profiles[jcovName].dependencies,
 645                 [ name + ".jdk", "devkit" ]);
 646             profiles[jcovName].configure_args = concat(profiles[jcovName].configure_args,
 647                 ["--with-jcov-input-jdk=" + input.get(name + ".jdk", "home_path")]);
 648         });
 649 
 650     //
 651     // Define artifacts for profiles
 652     //
 653     // Macosx bundles are named osx
 654     // tar.gz.
 655     var artifactData = {
 656         "linux-x64": {
 657             platform: "linux-x64",
 658         },
 659         "linux-x86": {
 660             platform: "linux-x86",
 661         },
 662         "macosx-x64": {
 663             platform: "osx-x64",
 664             jdk_subdir: "jdk-" + data.version +  ".jdk/Contents/Home",
 665         },
 666         "solaris-x64": {
 667             platform: "solaris-x64",
 668         },
 669         "solaris-sparcv9": {
 670             platform: "solaris-sparcv9",
 671         },
 672         "windows-x64": {
 673             platform: "windows-x64",
 674             jdk_suffix: "zip",
 675         },
 676         "windows-x86": {
 677             platform: "windows-x86",
 678             jdk_suffix: "zip",
 679         },
 680        "linux-aarch64": {
 681             platform: "linux-aarch64",
 682         },
 683        "linux-arm32": {
 684             platform: "linux-arm32",
 685         },
 686        "linux-ppc64le": {
 687             platform: "linux-ppc64le",
 688         },
 689        "linux-s390x": {
 690             platform: "linux-s390x",
 691         }
 692     }
 693     // Generate common artifacts for all main profiles
 694     Object.keys(artifactData).forEach(function (name) {
 695         profiles[name] = concatObjects(profiles[name],
 696             common.main_profile_artifacts(artifactData[name]));
 697     });
 698 
 699     // Generate common artifacts for all debug profiles
 700     Object.keys(artifactData).forEach(function (name) {
 701         var debugName = name + common.debug_suffix;
 702         profiles[debugName] = concatObjects(profiles[debugName],
 703             common.debug_profile_artifacts(artifactData[name]));
 704     });
 705 
 706     profilesArtifacts = {
 707         "linux-x64": {
 708             artifacts: {
 709                 doc_api_spec: {
 710                     local: "bundles/\\(jdk.*doc-api-spec.tar.gz\\)",
 711                     remote: [
 712                         "bundles/common/jdk-" + data.version + "_doc-api-spec.tar.gz",
 713                         "bundles/linux-x64/\\1"
 714                     ],
 715                 },
 716             }
 717         }
 718     };
 719     profiles = concatObjects(profiles, profilesArtifacts);
 720 
 721     // Generate open only profiles for all the main and debug profiles.
 722     // Rewrite artifact remote paths by adding "openjdk/GPL".
 723     common.main_profile_names.forEach(function (name) {
 724         var openName = name + common.open_suffix;
 725         profiles[openName] = concatObjects(profiles[name],
 726             common.open_profile_base);
 727         for (artifactName in profiles[openName].artifacts) {
 728             var artifact = profiles[openName].artifacts[artifactName];
 729             artifact.remote = replaceAll(
 730                 "bundles\/", "bundles/openjdk/GPL/",
 731                 (artifact.remote != null ? artifact.remote : artifact.local));
 732         }
 733         var debugName = name + common.debug_suffix;
 734         var openDebugName = name + common.open_suffix + common.debug_suffix;
 735         profiles[openDebugName] = concatObjects(profiles[debugName],
 736             common.open_profile_base);
 737         for (artifactName in profiles[openDebugName].artifacts) {
 738             var artifact = profiles[openDebugName].artifacts[artifactName];
 739             artifact.remote = replaceAll(
 740                 "bundles\/", "bundles/openjdk/GPL/",
 741                 (artifact.remote != null ? artifact.remote : artifact.local));
 742         }
 743     });
 744 
 745     // Define the reference implementation profiles. These are basically the same
 746     // as the open profiles, but upload artifacts to a different location.
 747     common.main_profile_names.forEach(function (name) {
 748         var riName = name + "-ri";
 749         var riDebugName = riName + common.debug_suffix;
 750         var openName = name + common.open_suffix;
 751         var openDebugName = openName + common.debug_suffix;
 752         profiles[riName] = clone(profiles[openName]);
 753         profiles[riDebugName] = clone(profiles[openDebugName]);
 754         // Rewrite all remote dirs to "bundles/openjdk/BCL/..."
 755         for (artifactName in profiles[riName].artifacts) {
 756             var artifact = profiles[riName].artifacts[artifactName];
 757             artifact.remote = replaceAll(
 758                 "\/GPL\/", "/BCL/",
 759                 (artifact.remote != null ? artifact.remote : artifact.local));
 760         }
 761     });
 762 
 763     // For open profiles, the non-debug jdk bundles, need an "open" prefix on the
 764     // remote bundle names, forming the word "openjdk". See JDK-8188789.
 765     common.main_profile_names.forEach(function (name) {
 766         var openName = name + common.open_suffix;
 767         profiles[openName].artifacts["jdk"].remote = replaceAll(
 768             "\/jdk-", "/openjdk-",
 769             replaceAll("\/\\1", "/open\\1",
 770                        profiles[openName].artifacts["jdk"].remote));
 771     });
 772 
 773     // Generate cmp-baseline profiles for each main profile and their
 774     // corresponding debug profile. This profile does a compare build run with no
 775     // changes to verify that the compare script has a clean baseline
 776     common.main_profile_names.forEach(function (name) {
 777         [ "", common.open_suffix ].forEach(function (suffix) {
 778             var cmpBaselineName = name + suffix + "-cmp-baseline";
 779             profiles[cmpBaselineName] = clone(profiles[name + suffix]);
 780             // Only compare the images target. This should pressumably be expanded
 781             // to include more build targets when possible.
 782             profiles[cmpBaselineName].default_make_targets = [ "images", "test-image" ];
 783             if (name == "linux-x64") {
 784                 profiles[cmpBaselineName].default_make_targets
 785                     = concat(profiles[cmpBaselineName].default_make_targets, "docs");
 786             }
 787             profiles[cmpBaselineName].make_args = [ "COMPARE_BUILD=CONF=" ];
 788             profiles[cmpBaselineName].configure_args = concat(
 789                 profiles[cmpBaselineName].configure_args,
 790                 "--with-hotspot-build-time=n/a", 
 791                 "--disable-precompiled-headers");
 792             // Do not inherit artifact definitions from base profile
 793             delete profiles[cmpBaselineName].artifacts;
 794         });
 795     });
 796 
 797     // Artifacts of JCov profiles
 798     [ "linux-aarch64", "linux-x64", "macosx-x64", "solaris-sparcv9", "windows-x64"]
 799         .forEach(function (name) {
 800             var o = artifactData[name]
 801             var jdk_subdir = (o.jdk_subdir != null ? o.jdk_subdir : "jdk-" + data.version);
 802             var jdk_suffix = (o.jdk_suffix != null ? o.jdk_suffix : "tar.gz");
 803             var pf = o.platform
 804             var jcovName = name + "-jcov";
 805             profiles[jcovName].artifacts = {
 806                 jdk: {
 807                     local: "bundles/\\(jdk-jcov.*bin." + jdk_suffix + "\\)",
 808                     remote: [
 809                         "bundles/" + pf + "/jdk-jcov-" + data.version + "_" + pf + "_bin." + jdk_suffix
 810                     ],
 811                     subdir: jdk_subdir,
 812                     exploded: "images/jdk-jcov"
 813                 }
 814             };
 815         });
 816 
 817     // Artifacts of gcov (native-code-coverage) profiles
 818     [ "linux-aarch64", "linux-x64", "macosx-x64" ].forEach(function (name) {
 819         var o = artifactData[name]
 820         var pf = o.platform
 821         var jdk_subdir = (o.jdk_subdir != null ? o.jdk_subdir : "jdk-" + data.version);
 822         var jdk_suffix = (o.jdk_suffix != null ? o.jdk_suffix : "tar.gz");
 823         var gcovName = name + "-gcov";
 824         profiles[gcovName].artifacts = {
 825             jdk: {
 826                 local: "bundles/\\(jdk.*bin." + jdk_suffix + "\\)",
 827                 remote: [
 828                     "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-gcov." + jdk_suffix,
 829                 ],
 830                 subdir: jdk_subdir,
 831                 exploded: "images/jdk",
 832             },
 833             test: {
 834                     local: "bundles/\\(jdk.*bin-tests.tar.gz\\)",
 835                     remote: [
 836                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-gcov-tests.tar.gz",
 837                     ],
 838                     exploded: "images/test"
 839             },
 840             jdk_symbols: {
 841                     local: "bundles/\\(jdk.*bin-symbols.tar.gz\\)",
 842                     remote: [
 843                         "bundles/" + pf + "/jdk-" + data.version + "_" + pf + "_bin-gcov-symbols.tar.gz",
 844                     ],
 845                     subdir: jdk_subdir,
 846                     exploded: "images/jdk"
 847                 },
 848             };
 849     });
 850 
 851     // Profiles used to run tests.
 852     var testOnlyProfiles = {
 853         "run-test": {
 854             target_os: input.build_os,
 855             target_cpu: input.build_cpu,
 856             dependencies: [ "jtreg", "gnumake", "boot_jdk", "devkit", "jib" ],
 857             labels: "test",
 858             environment: {
 859                 "JT_JAVA": common.boot_jdk_home
 860             }
 861         }
 862     };
 863     profiles = concatObjects(profiles, testOnlyProfiles);
 864 
 865     // Profiles used to run tests using Jib for internal dependencies.
 866     var testedProfile = input.testedProfile;
 867     if (testedProfile == null) {
 868         testedProfile = input.build_os + "-" + input.build_cpu;
 869     }
 870     var testedProfileJdk = testedProfile + ".jdk";
 871     // Make it possible to use the test image from a different profile
 872     var testImageProfile;
 873     if (input.testImageProfile != null) {
 874         testImageProfile = input.testImageProfile;
 875     } else if (testedProfile.endsWith("-jcov")) {
 876         testImageProfile = testedProfile.substring(0, testedProfile.length - "-jcov".length);
 877     } else {
 878         testImageProfile = testedProfile;
 879     }
 880     var testedProfileTest = testImageProfile + ".test"
 881     var testOnlyMake = [ "test-prebuilt", "LOG_CMDLINES=true", "JTREG_VERBOSE=fail,error,time" ];
 882     if (testedProfile.endsWith("-gcov")) {
 883         testOnlyMake = concat(testOnlyMake, "GCOV_ENABLED=true")
 884     }
 885     var testOnlyProfilesPrebuilt = {
 886         "run-test-prebuilt": {
 887             target_os: input.build_os,
 888             target_cpu: input.build_cpu,
 889             dependencies: [
 890                 "jtreg", "gnumake", "boot_jdk", "devkit", "jib", "jcov", testedProfileJdk,
 891                 testedProfileTest
 892             ],
 893             src: "src.conf",
 894             make_args: testOnlyMake,
 895             environment: {
 896                 "BOOT_JDK": common.boot_jdk_home,
 897                 "JT_HOME": input.get("jtreg", "home_path"),
 898                 "JDK_IMAGE_DIR": input.get(testedProfileJdk, "home_path"),
 899                 "TEST_IMAGE_DIR": input.get(testedProfileTest, "home_path")
 900             },
 901             labels: "test"
 902         }
 903     };
 904 
 905     // If actually running the run-test-prebuilt profile, verify that the input
 906     // variable is valid and if so, add the appropriate target_* values from
 907     // the tested profile. Use testImageProfile value as backup.
 908     if (input.profile == "run-test-prebuilt") {
 909         if (profiles[testedProfile] == null && profiles[testImageProfile] == null) {
 910             error("testedProfile is not defined: " + testedProfile + " " + testImageProfile);
 911         }
 912     }
 913     if (profiles[testedProfile] != null) {
 914         testOnlyProfilesPrebuilt["run-test-prebuilt"]["target_os"]
 915             = profiles[testedProfile]["target_os"];
 916         testOnlyProfilesPrebuilt["run-test-prebuilt"]["target_cpu"]
 917             = profiles[testedProfile]["target_cpu"];
 918     } else if (profiles[testImageProfile] != null) {
 919         testOnlyProfilesPrebuilt["run-test-prebuilt"]["target_os"]
 920             = profiles[testImageProfile]["target_os"];
 921         testOnlyProfilesPrebuilt["run-test-prebuilt"]["target_cpu"]
 922             = profiles[testImageProfile]["target_cpu"];
 923     }
 924     profiles = concatObjects(profiles, testOnlyProfilesPrebuilt);
 925 
 926     // On macosx add the devkit bin dir to the path in all the run-test profiles.
 927     // This gives us a guaranteed working version of lldb for the jtreg failure handler.
 928     if (input.build_os == "macosx") {
 929         macosxRunTestExtra = {
 930             environment_path: input.get("devkit", "install_path")
 931                 + "/Xcode.app/Contents/Developer/usr/bin"
 932         };
 933         profiles["run-test"] = concatObjects(profiles["run-test"], macosxRunTestExtra);
 934         profiles["run-test-prebuilt"] = concatObjects(profiles["run-test-prebuilt"], macosxRunTestExtra);
 935     }
 936     // On windows we want the debug symbols available at test time
 937     if (input.build_os == "windows") {
 938         windowsRunTestPrebuiltExtra = {
 939             dependencies: [ testedProfile + ".jdk_symbols" ],
 940             environment: {
 941                 "SYMBOLS_IMAGE_DIR": input.get(testedProfile + ".jdk_symbols", "home_path"),
 942             }
 943         };
 944         profiles["run-test-prebuilt"] = concatObjects(profiles["run-test-prebuilt"],
 945             windowsRunTestPrebuiltExtra);
 946     }
 947 
 948     // The profile run-test-prebuilt defines src.conf as the src bundle. When
 949     // running in Mach 5, this reduces the time it takes to populate the
 950     // considerably. But with just src.conf, we cannot actually run any tests,
 951     // so if running from a workspace with just src.conf in it, we need to also
 952     // get src.full as a dependency, and define the work_dir (where make gets
 953     // run) to be in the src.full install path. By running in the install path,
 954     // the same cached installation of the full src can be reused for multiple
 955     // test tasks. Care must however be taken not to polute that work dir by
 956     // setting the appropriate make variables to control output directories.
 957     //
 958     // Use the existance of the top level README as indication of if this is
 959     // the full source or just src.conf.
 960     if (!new java.io.File(__DIR__, "../../README").exists()) {
 961         var runTestPrebuiltSrcFullExtra = {
 962             dependencies: "src.full",
 963             work_dir: input.get("src.full", "install_path"),
 964         }
 965         profiles["run-test-prebuilt"] = concatObjects(profiles["run-test-prebuilt"],
 966             runTestPrebuiltSrcFullExtra);
 967     }
 968 
 969     // Generate the missing platform attributes
 970     profiles = generatePlatformAttributes(profiles);
 971     profiles = generateDefaultMakeTargetsConfigureArg(common, profiles);
 972     return profiles;
 973 };
 974 
 975 /**
 976  * Generate the dependencies part of the configuration
 977  *
 978  * @param input External data to use for generating the configuration
 979  * @param common The common values
 980  * @returns {{}} Dependencies part of configuration
 981  */
 982 var getJibProfilesDependencies = function (input, common) {
 983 
 984     var devkit_platform_revisions = {
 985         linux_x64: "gcc9.2.0-OL6.4+1.0",
 986         macosx_x64: "Xcode10.1-MacOSX10.14+1.0",
 987         solaris_x64: "SS12u4-Solaris11u1+1.0",
 988         solaris_sparcv9: "SS12u6-Solaris11u3+1.0",
 989         windows_x64: "VS2019-16.5.3+1.0",
 990         linux_aarch64: "gcc9.2.0-OL7.6+1.0",
 991         linux_arm: "gcc8.2.0-Fedora27+1.0",
 992         linux_ppc64le: "gcc8.2.0-Fedora27+1.0",
 993         linux_s390x: "gcc8.2.0-Fedora27+1.0"
 994     };
 995 
 996     var devkit_platform = (input.target_cpu == "x86"
 997         ? input.target_os + "_x64"
 998         : input.target_platform);
 999 
1000     var devkit_cross_prefix = "";
1001     if (!(input.target_os == "windows" && isWsl(input))) {
1002         if (input.build_platform != input.target_platform
1003            && input.build_platform != devkit_platform) {
1004             devkit_cross_prefix = input.build_platform + "-to-";
1005         }
1006     }
1007 
1008     var boot_jdk_platform = (input.build_os == "macosx" ? "osx" : input.build_os)
1009         + "-" + input.build_cpu;
1010     var boot_jdk_ext = (input.build_os == "windows" ? ".zip" : ".tar.gz")
1011     // If running in WSL and building for Windows, it will look like Linux,
1012     // but we need a Windows boot JDK.
1013     if (isWsl(input) && input.target_os == "windows") {
1014         boot_jdk_platform = "windows-" + input.build_cpu;
1015         boot_jdk_ext = ".zip";
1016     }
1017 
1018     var makeBinDir = (input.build_os == "windows"
1019         ? input.get("gnumake", "install_path") + "/cygwin/bin"
1020         : input.get("gnumake", "install_path") + "/bin");
1021 
1022     if (input.build_cpu == 'aarch64') {
1023         boot_jdk = {
1024             organization: common.organization,
1025             ext: "tar.gz",
1026             module: "jdk-linux_aarch64",
1027             revision: "14+1.0",
1028             configure_args: "--with-boot-jdk=" + common.boot_jdk_home,
1029             environment_path: common.boot_jdk_home + "/bin"
1030         }
1031     } else {
1032         boot_jdk = {
1033             server: "jpg",
1034             product: "jdk",
1035             version: common.boot_jdk_version,
1036             build_number: common.boot_jdk_build_number,
1037             file: "bundles/" + boot_jdk_platform + "/jdk-" + common.boot_jdk_version + "_"
1038                 + boot_jdk_platform + "_bin" + boot_jdk_ext,
1039             configure_args: "--with-boot-jdk=" + common.boot_jdk_home,
1040             environment_path: common.boot_jdk_home + "/bin"
1041         }
1042     }
1043     if (input.build_cpu == 'sparcv9') {
1044         boot_jdk.file = "bundles/openjdk/GPL/" + boot_jdk_platform
1045             + "/openjdk-" + common.boot_jdk_version + "_"
1046             + boot_jdk_platform + "_bin" + boot_jdk_ext;
1047     }
1048 
1049     var dependencies = {
1050         boot_jdk: boot_jdk,
1051 
1052         devkit: {
1053             organization: common.organization,
1054             ext: "tar.gz",
1055             module: "devkit-" + devkit_cross_prefix + devkit_platform,
1056             revision: devkit_platform_revisions[devkit_platform],
1057             environment: {
1058                 "DEVKIT_HOME": input.get("devkit", "home_path"),
1059             }
1060         },
1061 
1062         build_devkit: {
1063             organization: common.organization,
1064             ext: "tar.gz",
1065             module: "devkit-" + input.build_platform,
1066             revision: devkit_platform_revisions[input.build_platform]
1067         },
1068 
1069         cups: {
1070             organization: common.organization,
1071             ext: "tar.gz",
1072             revision: "1.0118+1.0"
1073         },
1074 
1075         jtreg: {
1076             server: "jpg",
1077             product: "jtreg",
1078             version: "5.0",
1079             build_number: "b01",
1080             checksum_file: "MD5_VALUES",
1081             file: "bundles/jtreg_bin-5.0.zip",
1082             environment_name: "JT_HOME",
1083             environment_path: input.get("jtreg", "home_path") + "/bin",
1084             configure_args: "--with-jtreg=" + input.get("jtreg", "home_path"),
1085         },
1086 
1087         jmh: {
1088             organization: common.organization,
1089             ext: "tar.gz",
1090             revision: "1.21+1.0"
1091         },
1092 
1093         jcov: {
1094             // Until an official build of JCov is available, use custom
1095             // build to support classfile version 57.
1096             // See CODETOOLS-7902358 for more info.
1097             // server: "jpg",
1098             // product: "jcov",
1099             // version: "3.0",
1100             // build_number: "b07",
1101             // file: "bundles/jcov-3_0.zip",
1102             organization: common.organization,
1103             revision: "3.0-59-support+1.0",
1104             ext: "zip",
1105             environment_name: "JCOV_HOME",
1106         },
1107 
1108         gnumake: {
1109             organization: common.organization,
1110             ext: "tar.gz",
1111             revision: "4.0+1.0",
1112 
1113             module: (input.build_os == "windows"
1114                 ? "gnumake-" + input.build_osenv_platform
1115                 : "gnumake-" + input.build_platform),
1116 
1117             configure_args: "MAKE=" + makeBinDir + "/make",
1118 
1119             environment: {
1120                 "MAKE": makeBinDir + "/make"
1121             },
1122 
1123             environment_path: makeBinDir
1124         },
1125 
1126         autoconf: {
1127             organization: common.organization,
1128             ext: "tar.gz",
1129             revision: "2.69+1.0.1",
1130             module: (input.build_os == "windows"
1131                 ? "autoconf-" + input.build_osenv_platform
1132                 : "autoconf-" + input.build_platform),
1133             configure_args: "",
1134             environment_path: input.get("autoconf", "install_path")
1135         },
1136 
1137         graphviz: {
1138             organization: common.organization,
1139             ext: "tar.gz",
1140             revision: "2.38.0-1+1.1",
1141             module: "graphviz-" + input.target_platform,
1142             configure_args: "DOT=" + input.get("graphviz", "install_path") + "/dot",
1143             environment_path: input.get("graphviz", "install_path")
1144         },
1145 
1146         pandoc: {
1147             organization: common.organization,
1148             ext: "tar.gz",
1149             revision: (input.build_cpu == 'aarch64' ? "2.5+1.0" : "2.3.1+1.0"),
1150             module: "pandoc-" + input.build_platform,
1151             configure_args: "PANDOC=" + input.get("pandoc", "install_path") + "/pandoc/pandoc",
1152             environment_path: input.get("pandoc", "install_path") + "/pandoc"
1153         },
1154 
1155         // This adds java jib as a dependency for the test artifacts resolver
1156         jib: {
1157             organization: "com.oracle.java.jib",
1158             ext: "zip",
1159             classifier: "distribution",
1160             revision: "3.0-SNAPSHOT",
1161             environment_name: "JIB_HOME",
1162             environment_value: input.get("jib", "home_path")
1163         },
1164 
1165         ant: {
1166             organization: common.organization,
1167             ext: "zip",
1168             revision: "1.7.1+1.0",
1169             configure_args: "",
1170         },
1171 
1172         graalunit_lib: {
1173             organization: common.organization,
1174             ext: "zip",
1175             revision: "619_Apr_12_2018",
1176             module: "graalunit-lib",
1177             configure_args: "--with-graalunit-lib=" + input.get("graalunit_lib", "install_path"),
1178             environment_name: "GRAALUNIT_LIB"
1179         },
1180     };
1181 
1182     return dependencies;
1183 };
1184 
1185 /**
1186  * Generate the missing platform attributes for profiles
1187  *
1188  * @param profiles Profiles map to generate attributes on
1189  * @returns {{}} New profiles map with platform attributes fully filled in
1190  */
1191 var generatePlatformAttributes = function (profiles) {
1192     var ret = concatObjects(profiles, {});
1193     for (var profile in profiles) {
1194         if (ret[profile].build_os == null) {
1195             ret[profile].build_os = ret[profile].target_os;
1196         }
1197         if (ret[profile].build_cpu == null) {
1198             ret[profile].build_cpu = ret[profile].target_cpu;
1199         }
1200         ret[profile].target_platform = ret[profile].target_os + "_" + ret[profile].target_cpu;
1201         ret[profile].build_platform = ret[profile].build_os + "_" + ret[profile].build_cpu;
1202     }
1203     return ret;
1204 };
1205 
1206 /**
1207  * The default_make_targets attribute on a profile is not a real Jib attribute.
1208  * This function rewrites that attribute into the corresponding configure arg.
1209  * Calling this function multiple times on the same profiles object is safe.
1210  *
1211  * @param common Common values
1212  * @param profiles Profiles map to rewrite profiles for
1213  * @returns {{}} New map of profiles with the make targets converted
1214  */
1215 var generateDefaultMakeTargetsConfigureArg = function (common, profiles) {
1216     var ret = concatObjects(profiles, {});
1217     for (var profile in ret) {
1218         if (ret[profile]["default_make_targets"] != null) {
1219             var targetsString = concat(ret[profile].default_make_targets).join(" ");
1220             // Iterate over all configure args and see if --with-default-make-target
1221             // is already there and change it, otherwise add it.
1222             var found = false;
1223             for (var i in ret[profile].configure_args) {
1224                 var arg = ret[profile].configure_args[i];
1225                 if (arg != null && arg.startsWith("--with-default-make-target=")) {
1226                     found = true;
1227                     ret[profile].configure_args[i]
1228                         = "--with-default-make-target=" + targetsString;
1229                 }
1230             }
1231             if (!found) {
1232                 ret[profile].configure_args = concat(
1233                     ret[profile].configure_args,
1234                     "--with-default-make-target=" + targetsString);
1235             }
1236         }
1237     }
1238     return ret;
1239 }
1240 
1241 var getBuildId = function (input) {
1242     if (input.build_id != null) {
1243         return input.build_id;
1244     } else {
1245         var topdir = new java.io.File(__DIR__, "../..").getCanonicalFile().getName();
1246         var userName = java.lang.System.getProperty("user.name");
1247         return userName + "." + topdir;
1248     }
1249 }
1250 
1251 /**
1252  * Deep clones an object tree.
1253  *
1254  * @param o Object to clone
1255  * @returns {{}} Clone of o
1256  */
1257 var clone = function (o) {
1258     return JSON.parse(JSON.stringify(o));
1259 };
1260 
1261 /**
1262  * Concatenates all arguments into a new array
1263  *
1264  * @returns {Array.<T>} New array containing all arguments
1265  */
1266 var concat = function () {
1267     return Array.prototype.concat.apply([], arguments);
1268 };
1269 
1270 /**
1271  * Takes a String or Array of Strings and does a replace operation on each
1272  * of them.
1273  *
1274  * @param pattern Pattern to look for
1275  * @param replacement Replacement text to insert
1276  * @param a String or Array of Strings to replace
1277  * @returns {Array} Either a new array or a new string depending on the input
1278  */
1279 var replaceAll = function (pattern, replacement, a) {
1280     // If a is an array
1281     if (Array === a.constructor) {
1282     var newA = [];
1283     for (var i in a) {
1284             newA.push(a[i].replace(pattern, replacement));
1285         }
1286         return newA;
1287         } else {
1288         return a.replace(pattern, replacement);
1289     }
1290 };
1291 
1292 /**
1293  * Deep concatenation of two objects. For each node encountered, merge
1294  * the contents with the corresponding node in the other object tree,
1295  * treating all strings as array elements.
1296  *
1297  * @param o1 Object to concatenate
1298  * @param o2 Object to concatenate
1299  * @returns {{}} New object tree containing the concatenation of o1 and o2
1300  */
1301 var concatObjects = function (o1, o2) {
1302     if (o1 == null) {
1303         return clone(o2);
1304     }
1305     if (o2 == null) {
1306         return clone(o1);
1307     }
1308     var ret = {};
1309     for (var a in o1) {
1310         if (o2[a] == null) {
1311             ret[a] = clone(o1[a]);
1312         }
1313     }
1314     for (var a in o2) {
1315         if (o1[a] == null) {
1316             ret[a] = clone(o2[a]);
1317         } else {
1318             if (typeof o1[a] == 'string') {
1319                 ret[a] = clone([o1[a]].concat(o2[a]));
1320             } else if (Array.isArray(o1[a])) {
1321                 ret[a] = clone(o1[a].concat(o2[a]));
1322             } else if (typeof o1[a] == 'object') {
1323                 ret[a] = concatObjects(o1[a], o2[a]);
1324             }
1325         }
1326     }
1327     return ret;
1328 };
1329 
1330 /**
1331  * Constructs the numeric version string from reading the
1332  * make/autoconf/version-numbers file and removing all trailing ".0".
1333  *
1334  * @param feature Override feature version
1335  * @param interim Override interim version
1336  * @param update Override update version
1337  * @param patch Override patch version
1338  * @returns {String} The numeric version string
1339  */
1340 var getVersion = function (feature, interim, update, patch) {
1341     var version_numbers = getVersionNumbers();
1342     var version = (feature != null ? feature : version_numbers.get("DEFAULT_VERSION_FEATURE"))
1343         + "." + (interim != null ? interim : version_numbers.get("DEFAULT_VERSION_INTERIM"))
1344         + "." + (update != null ? update :  version_numbers.get("DEFAULT_VERSION_UPDATE"))
1345         + "." + (patch != null ? patch : version_numbers.get("DEFAULT_VERSION_PATCH"))
1346         + "." + version_numbers.get("DEFAULT_VERSION_EXTRA1")
1347         + "." + version_numbers.get("DEFAULT_VERSION_EXTRA2")
1348         + "." + version_numbers.get("DEFAULT_VERSION_EXTRA3");
1349     while (version.match(".*\\.0$")) {
1350         version = version.substring(0, version.length - 2);
1351     }
1352     return version;
1353 };
1354 
1355 /**
1356  * Constructs the common version configure args based on build type and
1357  * other version inputs
1358  */
1359 var versionArgs = function(input, common) {
1360     var args = ["--with-version-build=" + common.build_number];
1361     if (input.build_type == "promoted") {
1362         args = concat(args,
1363                       "--with-version-pre=" + version_numbers.get("DEFAULT_PROMOTED_VERSION_PRE"),
1364                       "--without-version-opt");
1365     } else if (input.build_type == "ci") {
1366         var optString = input.build_id_data.ciBuildNumber;
1367         var preString = input.build_id_data.projectName;
1368         if (preString == "jdk") {
1369             preString = version_numbers.get("DEFAULT_PROMOTED_VERSION_PRE");
1370         }
1371         args = concat(args, "--with-version-pre=" + preString,
1372                      "--with-version-opt=" + optString);
1373     } else {
1374         args = concat(args, "--with-version-opt=" + common.build_id);
1375     }
1376     return args;
1377 }
1378 
1379 // Properties representation of the make/autoconf/version-numbers file. Lazily
1380 // initiated by the function below.
1381 var version_numbers;
1382 
1383 /**
1384  * Read the make/autoconf/version-numbers file into a Properties object.
1385  *
1386  * @returns {java.utilProperties}
1387  */
1388 var getVersionNumbers = function () {
1389     // Read version information from make/autoconf/version-numbers
1390     if (version_numbers == null) {
1391         version_numbers = new java.util.Properties();
1392         var stream = new java.io.FileInputStream(__DIR__ + "/../autoconf/version-numbers");
1393         version_numbers.load(stream);
1394         stream.close();
1395     }
1396     return version_numbers;
1397 }
1398 
1399 /**
1400  * Returns true if running in Windows Subsystem for Linux. Jib does not yet
1401  * detect wsl as osenv, so fall back on linux with version containing Microsoft.
1402  */
1403 var isWsl = function (input) {
1404     return ( input.build_osenv == "wsl"
1405              || (input.build_os == "linux"
1406                  && java.lang.System.getProperty("os.version").contains("Microsoft")));
1407 }
1408 
1409 var error = function (s) {
1410     java.lang.System.err.println("[ERROR] " + s);
1411     exit(1);
1412 };