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