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