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     // Profiles used to run tests. Used in JPRT and Mach 5.
 719     var testOnlyProfiles = {
 720         "run-test-jprt": {
 721             target_os: input.build_os,
 722             target_cpu: input.build_cpu,
 723             dependencies: [ "jtreg", "gnumake", "boot_jdk", "devkit", "jib" ],
 724             labels: "test",
 725             environment: {
 726                 "JT_JAVA": common.boot_jdk_home
 727             }
 728         },
 729 
 730         "run-test": {
 731             target_os: input.build_os,
 732             target_cpu: input.build_cpu,
 733             dependencies: [ "jtreg", "gnumake", "boot_jdk", "devkit", "jib" ],
 734             labels: "test",
 735             environment: {
 736                 "JT_JAVA": common.boot_jdk_home
 737             }
 738         }
 739     };
 740     profiles = concatObjects(profiles, testOnlyProfiles);
 741 
 742     // Profiles used to run tests using Jib for internal dependencies.
 743     var testedProfile = input.testedProfile;
 744     if (testedProfile == null) {
 745         testedProfile = input.build_os + "-" + input.build_cpu;
 746     }
 747     var testOnlyProfilesPrebuilt = {
 748         "run-test-prebuilt": {
 749             target_os: input.build_os,
 750             target_cpu: input.build_cpu,
 751             src: "src.conf",
 752             dependencies: [ "jtreg", "gnumake", "boot_jdk", "jib", testedProfile + ".jdk",
 753                 testedProfile + ".test", "src.full"
 754             ],
 755             work_dir: input.get("src.full", "install_path") + "/test",
 756             environment: {
 757                 "JT_JAVA": common.boot_jdk_home,
 758                 "PRODUCT_HOME": input.get(testedProfile + ".jdk", "home_path"),
 759                 "TEST_IMAGE_DIR": input.get(testedProfile + ".test", "home_path"),
 760                 "TEST_OUTPUT_DIR": input.src_top_dir
 761             },
 762             labels: "test"
 763         }
 764     };
 765 
 766     // If actually running the run-test-prebuilt profile, verify that the input
 767     // variable is valid and if so, add the appropriate target_* values from
 768     // the tested profile.
 769     if (input.profile == "run-test-prebuilt") {
 770         if (profiles[testedProfile] == null) {
 771             error("testedProfile is not defined: " + testedProfile);
 772         }
 773     }
 774     if (profiles[testedProfile] != null) {
 775         testOnlyProfilesPrebuilt["run-test-prebuilt"]["target_os"]
 776             = profiles[testedProfile]["target_os"];
 777         testOnlyProfilesPrebuilt["run-test-prebuilt"]["target_cpu"]
 778             = profiles[testedProfile]["target_cpu"];
 779     }
 780     profiles = concatObjects(profiles, testOnlyProfilesPrebuilt);
 781 
 782     // On macosx add the devkit bin dir to the path in all the run-test profiles.
 783     // This gives us a guaranteed working version of lldb for the jtreg failure handler.
 784     if (input.build_os == "macosx") {
 785         macosxRunTestExtra = {
 786             dependencies: [ "devkit" ],
 787             environment_path: input.get("devkit", "install_path")
 788                 + "/Xcode.app/Contents/Developer/usr/bin"
 789         };
 790         profiles["run-test"] = concatObjects(profiles["run-test"], macosxRunTestExtra);
 791         profiles["run-test-jprt"] = concatObjects(profiles["run-test-jprt"], macosxRunTestExtra);
 792         profiles["run-test-prebuilt"] = concatObjects(profiles["run-test-prebuilt"], macosxRunTestExtra);
 793     }
 794     // On windows we want the debug symbols available at test time
 795     if (input.build_os == "windows") {
 796         windowsRunTestPrebuiltExtra = {
 797             dependencies: [ testedProfile + ".jdk_symbols" ],
 798             environment: {
 799                 "PRODUCT_SYMBOLS_HOME": input.get(testedProfile + ".jdk_symbols", "home_path"),
 800             }
 801         };
 802         profiles["run-test-prebuilt"] = concatObjects(profiles["run-test-prebuilt"],
 803             windowsRunTestPrebuiltExtra);
 804     }
 805 
 806     // Generate the missing platform attributes
 807     profiles = generatePlatformAttributes(profiles);
 808     profiles = generateDefaultMakeTargetsConfigureArg(common, profiles);
 809     return profiles;
 810 };
 811 
 812 /**
 813  * Generate the dependencies part of the configuration
 814  *
 815  * @param input External data to use for generating the configuration
 816  * @param common The common values
 817  * @returns {{}} Dependencies part of configuration
 818  */
 819 var getJibProfilesDependencies = function (input, common) {
 820 
 821     var devkit_platform_revisions = {
 822         linux_x64: "gcc7.3.0-OEL6.4+1.0",
 823         macosx_x64: "Xcode6.3-MacOSX10.9+1.0",
 824         solaris_x64: "SS12u4-Solaris11u1+1.0",
 825         solaris_sparcv9: "SS12u4-Solaris11u1+1.1",
 826         windows_x64: "VS2017-15.5.5+1.0",
 827         linux_aarch64: (input.profile != null && input.profile.indexOf("arm64") >= 0
 828                     ? "gcc-linaro-aarch64-linux-gnu-4.8-2013.11_linux+1.0"
 829                     : "gcc7.3.0-Fedora27+1.0"),
 830         linux_arm: (input.profile != null && input.profile.indexOf("hflt") >= 0
 831                     ? "gcc-linaro-arm-linux-gnueabihf-raspbian-2012.09-20120921_linux+1.0"
 832                     : "arm-linaro-4.7+1.0")
 833     };
 834 
 835     var devkit_platform = (input.target_cpu == "x86"
 836         ? input.target_os + "_x64"
 837         : input.target_platform);
 838 
 839     var boot_jdk_platform = (input.build_os == "macosx" ? "osx" : input.build_os)
 840         + "-" + input.build_cpu;
 841 
 842     var makeBinDir = (input.build_os == "windows"
 843         ? input.get("gnumake", "install_path") + "/cygwin/bin"
 844         : input.get("gnumake", "install_path") + "/bin");
 845 
 846     var dependencies = {
 847 
 848         boot_jdk: {
 849             server: "jpg",
 850             product: "jdk",
 851             version: common.boot_jdk_version,
 852             build_number: "46",
 853             file: "bundles/" + boot_jdk_platform + "/jdk-" + common.boot_jdk_version + "_"
 854                 + boot_jdk_platform + "_bin.tar.gz",
 855             configure_args: "--with-boot-jdk=" + common.boot_jdk_home,
 856             environment_path: common.boot_jdk_home + "/bin"
 857         },
 858 
 859         devkit: {
 860             organization: common.organization,
 861             ext: "tar.gz",
 862             module: "devkit-" + devkit_platform,
 863             revision: devkit_platform_revisions[devkit_platform]
 864         },
 865 
 866         build_devkit: {
 867             organization: common.organization,
 868             ext: "tar.gz",
 869             module: "devkit-" + input.build_platform,
 870             revision: devkit_platform_revisions[input.build_platform]
 871         },
 872 
 873         cups: {
 874             organization: common.organization,
 875             ext: "tar.gz",
 876             revision: "1.0118+1.0"
 877         },
 878 
 879         jtreg: {
 880             server: "javare",
 881             revision: "4.2",
 882             build_number: "b12",
 883             checksum_file: "MD5_VALUES",
 884             file: "jtreg_bin-4.2.zip",
 885             environment_name: "JT_HOME",
 886             environment_path: input.get("jtreg", "install_path") + "/jtreg/bin"
 887         },
 888 
 889         gnumake: {
 890             organization: common.organization,
 891             ext: "tar.gz",
 892             revision: "4.0+1.0",
 893 
 894             module: (input.build_os == "windows"
 895                 ? "gnumake-" + input.build_osenv_platform
 896                 : "gnumake-" + input.build_platform),
 897 
 898             configure_args: "MAKE=" + makeBinDir + "/make",
 899 
 900             environment: {
 901                 "MAKE": makeBinDir + "/make"
 902             },
 903 
 904             environment_path: makeBinDir
 905         },
 906 
 907         autoconf: {
 908             organization: common.organization,
 909             ext: "tar.gz",
 910             revision: "2.69+1.0.1",
 911             module: (input.build_os == "windows"
 912                 ? "autoconf-" + input.build_osenv_platform
 913                 : "autoconf-" + input.build_platform),
 914             configure_args: "",
 915             environment_path: input.get("autoconf", "install_path")
 916         },
 917 
 918         graphviz: {
 919             organization: common.organization,
 920             ext: "tar.gz",
 921             revision: "2.38.0-1+1.1",
 922             module: "graphviz-" + input.target_platform,
 923             configure_args: "DOT=" + input.get("graphviz", "install_path") + "/dot",
 924             environment_path: input.get("graphviz", "install_path")
 925         },
 926 
 927         pandoc: {
 928             organization: common.organization,
 929             ext: "tar.gz",
 930             revision: "1.17.2+1.0",
 931             module: "pandoc-" + input.target_platform,
 932             configure_args: "PANDOC=" + input.get("pandoc", "install_path") + "/pandoc/pandoc",
 933             environment_path: input.get("pandoc", "install_path") + "/pandoc"
 934         },
 935 
 936         // This adds java jib as a dependency for the test artifacts resolver
 937         jib: {
 938             organization: "com.oracle.java.jib",
 939             ext: "zip",
 940             classifier: "distribution",
 941             revision: "3.0-SNAPSHOT",
 942             environment_name: "JIB_JAR",
 943             environment_value: input.get("jib", "install_path")
 944                 + "/jib-3.0-SNAPSHOT-distribution/lib/jib-3.0-SNAPSHOT.jar"
 945         },
 946 
 947         ant: {
 948             organization: common.organization,
 949             ext: "zip",
 950             revision: "1.7.1+1.0",
 951             configure_args: "",
 952         },
 953 
 954     };
 955 
 956     // Need to add a value for the Visual Studio tools variable to make
 957     // jaot be able to pick up the Visual Studio linker in testing.
 958     if (input.target_os == "windows") {
 959         dependencies.devkit.environment = {
 960             VS120COMNTOOLS: input.get("devkit", "install_path") + "/Common7/Tools"
 961         };
 962     }
 963 
 964     return dependencies;
 965 };
 966 
 967 /**
 968  * Generate the missing platform attributes for profiles
 969  *
 970  * @param profiles Profiles map to generate attributes on
 971  * @returns {{}} New profiles map with platform attributes fully filled in
 972  */
 973 var generatePlatformAttributes = function (profiles) {
 974     var ret = concatObjects(profiles, {});
 975     for (var profile in profiles) {
 976         if (ret[profile].build_os == null) {
 977             ret[profile].build_os = ret[profile].target_os;
 978         }
 979         if (ret[profile].build_cpu == null) {
 980             ret[profile].build_cpu = ret[profile].target_cpu;
 981         }
 982         ret[profile].target_platform = ret[profile].target_os + "_" + ret[profile].target_cpu;
 983         ret[profile].build_platform = ret[profile].build_os + "_" + ret[profile].build_cpu;
 984     }
 985     return ret;
 986 };
 987 
 988 /**
 989  * The default_make_targets attribute on a profile is not a real Jib attribute.
 990  * This function rewrites that attribute into the corresponding configure arg.
 991  * Calling this function multiple times on the same profiles object is safe.
 992  *
 993  * @param common Common values
 994  * @param profiles Profiles map to rewrite profiles for
 995  * @returns {{}} New map of profiles with the make targets converted
 996  */
 997 var generateDefaultMakeTargetsConfigureArg = function (common, profiles) {
 998     var ret = concatObjects(profiles, {});
 999     for (var profile in ret) {
1000         if (ret[profile]["default_make_targets"] != null) {
1001             var targetsString = concat(ret[profile].default_make_targets).join(" ");
1002             // Iterate over all configure args and see if --with-default-make-target
1003             // is already there and change it, otherwise add it.
1004             var found = false;
1005             for (var i in ret[profile].configure_args) {
1006                 var arg = ret[profile].configure_args[i];
1007                 if (arg != null && arg.startsWith("--with-default-make-target=")) {
1008                     found = true;
1009                     ret[profile].configure_args[i]
1010                         = "--with-default-make-target=" + targetsString;
1011                 }
1012             }
1013             if (!found) {
1014                 ret[profile].configure_args = concat(
1015                     ret[profile].configure_args,
1016                     "--with-default-make-target=" + targetsString);
1017             }
1018         }
1019     }
1020     return ret;
1021 }
1022 
1023 var getBuildId = function (input) {
1024     if (input.build_id != null) {
1025         return input.build_id;
1026     } else {
1027         var topdir = new java.io.File(__DIR__, "../..").getCanonicalFile().getName();
1028         var userName = java.lang.System.getProperty("user.name");
1029         return userName + "." + topdir;
1030     }
1031 }
1032 
1033 /**
1034  * Deep clones an object tree.
1035  *
1036  * @param o Object to clone
1037  * @returns {{}} Clone of o
1038  */
1039 var clone = function (o) {
1040     return JSON.parse(JSON.stringify(o));
1041 };
1042 
1043 /**
1044  * Concatenates all arguments into a new array
1045  *
1046  * @returns {Array.<T>} New array containing all arguments
1047  */
1048 var concat = function () {
1049     return Array.prototype.concat.apply([], arguments);
1050 };
1051 
1052 /**
1053  * Takes a String or Array of Strings and does a replace operation on each
1054  * of them.
1055  *
1056  * @param pattern Pattern to look for
1057  * @param replacement Replacement text to insert
1058  * @param a String or Array of Strings to replace
1059  * @returns {Array} Either a new array or a new string depending on the input
1060  */
1061 var replaceAll = function (pattern, replacement, a) {
1062     // If a is an array
1063     if (Array === a.constructor) {
1064     var newA = [];
1065     for (var i in a) {
1066             newA.push(a[i].replace(pattern, replacement));
1067         }
1068         return newA;
1069         } else {
1070         return a.replace(pattern, replacement);
1071     }
1072 };
1073 
1074 /**
1075  * Deep concatenation of two objects. For each node encountered, merge
1076  * the contents with the corresponding node in the other object tree,
1077  * treating all strings as array elements.
1078  *
1079  * @param o1 Object to concatenate
1080  * @param o2 Object to concatenate
1081  * @returns {{}} New object tree containing the concatenation of o1 and o2
1082  */
1083 var concatObjects = function (o1, o2) {
1084     if (o1 == null) {
1085         return clone(o2);
1086     }
1087     if (o2 == null) {
1088         return clone(o1);
1089     }
1090     var ret = {};
1091     for (var a in o1) {
1092         if (o2[a] == null) {
1093             ret[a] = clone(o1[a]);
1094         }
1095     }
1096     for (var a in o2) {
1097         if (o1[a] == null) {
1098             ret[a] = clone(o2[a]);
1099         } else {
1100             if (typeof o1[a] == 'string') {
1101                 ret[a] = clone([o1[a]].concat(o2[a]));
1102             } else if (Array.isArray(o1[a])) {
1103                 ret[a] = clone(o1[a].concat(o2[a]));
1104             } else if (typeof o1[a] == 'object') {
1105                 ret[a] = concatObjects(o1[a], o2[a]);
1106             }
1107         }
1108     }
1109     return ret;
1110 };
1111 
1112 /**
1113  * Constructs the numeric version string from reading the
1114  * make/autoconf/version-numbers file and removing all trailing ".0".
1115  *
1116  * @param feature Override feature version
1117  * @param interim Override interim version
1118  * @param update Override update version
1119  * @param patch Override patch version
1120  * @returns {String} The numeric version string
1121  */
1122 var getVersion = function (feature, interim, update, patch) {
1123     var version_numbers = getVersionNumbers();
1124     var version = (feature != null ? feature : version_numbers.get("DEFAULT_VERSION_FEATURE"))
1125         + "." + (interim != null ? interim : version_numbers.get("DEFAULT_VERSION_INTERIM"))
1126         + "." + (update != null ? update :  version_numbers.get("DEFAULT_VERSION_UPDATE"))
1127         + "." + (patch != null ? patch : version_numbers.get("DEFAULT_VERSION_PATCH"));
1128     while (version.match(".*\\.0$")) {
1129         version = version.substring(0, version.length - 2);
1130     }
1131     return version;
1132 };
1133 
1134 /**
1135  * Constructs the common version configure args based on build type and
1136  * other version inputs
1137  */
1138 var versionArgs = function(input, common) {
1139     var args = ["--with-version-build=" + common.build_number];
1140     if (input.build_type == "promoted") {
1141         args = concat(args,
1142                       // This needs to be changed when we start building release candidates
1143                       // with-version-pre must be set to ea for 'ea' and empty for fcs build
1144                       "--with-version-pre=ea",
1145                       "--without-version-opt");
1146     } else {
1147         args = concat(args, "--with-version-opt=" + common.build_id);
1148     }
1149     return args;
1150 }
1151 
1152 // Properties representation of the make/autoconf/version-numbers file. Lazily
1153 // initiated by the function below.
1154 var version_numbers;
1155 
1156 /**
1157  * Read the make/autoconf/version-numbers file into a Properties object.
1158  *
1159  * @returns {java.utilProperties}
1160  */
1161 var getVersionNumbers = function () {
1162     // Read version information from make/autoconf/version-numbers
1163     if (version_numbers == null) {
1164         version_numbers = new java.util.Properties();
1165         var stream = new java.io.FileInputStream(__DIR__ + "/../autoconf/version-numbers");
1166         version_numbers.load(stream);
1167         stream.close();
1168     }
1169     return version_numbers;
1170 }