2021-04-05 10:02:27 +00:00
|
|
|
import * as core from '@actions/core';
|
|
|
|
import * as tc from '@actions/tool-cache';
|
|
|
|
|
|
|
|
import fs from 'fs';
|
|
|
|
import path from 'path';
|
|
|
|
import semver from 'semver';
|
|
|
|
|
|
|
|
import { JavaBase } from '../base-installer';
|
|
|
|
import { IAdoptAvailableVersions } from './models';
|
2021-05-17 13:33:21 +00:00
|
|
|
import { JavaDownloadRelease, JavaInstallerOptions, JavaInstallerResults } from '../base-models';
|
2021-04-05 10:02:27 +00:00
|
|
|
import { extractJdkFile, getDownloadArchiveExtension, isVersionSatisfies } from '../../util';
|
|
|
|
|
2021-05-17 13:33:21 +00:00
|
|
|
export enum AdoptImplementation {
|
|
|
|
Hotspot = 'Hotspot',
|
|
|
|
OpenJ9 = 'OpenJ9'
|
|
|
|
}
|
|
|
|
|
2021-04-05 10:02:27 +00:00
|
|
|
export class AdoptDistribution extends JavaBase {
|
2021-05-17 13:33:21 +00:00
|
|
|
constructor(
|
|
|
|
installerOptions: JavaInstallerOptions,
|
|
|
|
private readonly jvmImpl: AdoptImplementation
|
|
|
|
) {
|
|
|
|
super(`Adopt-${jvmImpl}`, installerOptions);
|
2021-04-05 10:02:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected async findPackageForDownload(version: string): Promise<JavaDownloadRelease> {
|
|
|
|
const availableVersionsRaw = await this.getAvailableVersions();
|
|
|
|
const availableVersionsWithBinaries = availableVersionsRaw
|
|
|
|
.filter(item => item.binaries.length > 0)
|
|
|
|
.map(item => {
|
|
|
|
return {
|
|
|
|
version: item.version_data.semver,
|
|
|
|
url: item.binaries[0].package.link
|
|
|
|
} as JavaDownloadRelease;
|
|
|
|
});
|
|
|
|
|
|
|
|
const satisfiedVersions = availableVersionsWithBinaries
|
|
|
|
.filter(item => isVersionSatisfies(version, item.version))
|
|
|
|
.sort((a, b) => {
|
|
|
|
return -semver.compareBuild(a.version, b.version);
|
|
|
|
});
|
|
|
|
|
|
|
|
const resolvedFullVersion = satisfiedVersions.length > 0 ? satisfiedVersions[0] : null;
|
|
|
|
if (!resolvedFullVersion) {
|
|
|
|
const availableOptions = availableVersionsWithBinaries.map(item => item.version).join(', ');
|
|
|
|
const availableOptionsMessage = availableOptions
|
|
|
|
? `\nAvailable versions: ${availableOptions}`
|
|
|
|
: '';
|
|
|
|
throw new Error(
|
|
|
|
`Could not find satisfied version for SemVer '${version}'. ${availableOptionsMessage}`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return resolvedFullVersion;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected async downloadTool(javaRelease: JavaDownloadRelease): Promise<JavaInstallerResults> {
|
|
|
|
let javaPath: string;
|
|
|
|
let extractedJavaPath: string;
|
|
|
|
|
|
|
|
core.info(
|
|
|
|
`Downloading Java ${javaRelease.version} (${this.distribution}) from ${javaRelease.url} ...`
|
|
|
|
);
|
|
|
|
const javaArchivePath = await tc.downloadTool(javaRelease.url);
|
|
|
|
|
|
|
|
core.info(`Extracting Java archive...`);
|
|
|
|
let extension = getDownloadArchiveExtension();
|
|
|
|
|
|
|
|
extractedJavaPath = await extractJdkFile(javaArchivePath, extension);
|
|
|
|
|
|
|
|
const archiveName = fs.readdirSync(extractedJavaPath)[0];
|
|
|
|
const archivePath = path.join(extractedJavaPath, archiveName);
|
|
|
|
const version = this.getToolcacheVersionName(javaRelease.version);
|
|
|
|
|
|
|
|
javaPath = await tc.cacheDir(archivePath, this.toolcacheFolderName, version, this.architecture);
|
|
|
|
|
|
|
|
return { version: javaRelease.version, path: javaPath };
|
|
|
|
}
|
|
|
|
|
2021-05-17 13:33:21 +00:00
|
|
|
protected get toolcacheFolderName(): string {
|
|
|
|
if (this.jvmImpl === AdoptImplementation.Hotspot) {
|
|
|
|
// exclude Hotspot postfix from distribution name because Hosted runners have pre-cached Adopt OpenJDK under "Java_Adopt_jdk"
|
|
|
|
// for more information see: https://github.com/actions/setup-java/pull/155#discussion_r610451063
|
|
|
|
return `Java_Adopt_${this.packageType}`;
|
|
|
|
}
|
|
|
|
return super.toolcacheFolderName;
|
|
|
|
}
|
|
|
|
|
2021-04-05 10:02:27 +00:00
|
|
|
private async getAvailableVersions(): Promise<IAdoptAvailableVersions[]> {
|
|
|
|
const platform = this.getPlatformOption();
|
2022-10-10 23:47:17 +00:00
|
|
|
const arch = this.distributionArchitecture();
|
2021-04-05 10:02:27 +00:00
|
|
|
const imageType = this.packageType;
|
|
|
|
const versionRange = encodeURI('[1.0,100.0]'); // retrieve all available versions
|
|
|
|
const releaseType = this.stable ? 'ga' : 'ea';
|
|
|
|
|
2022-09-08 13:26:54 +00:00
|
|
|
if (core.isDebug()) {
|
|
|
|
console.time('adopt-retrieve-available-versions');
|
|
|
|
}
|
2021-04-05 10:02:27 +00:00
|
|
|
|
|
|
|
const baseRequestArguments = [
|
|
|
|
`project=jdk`,
|
|
|
|
'vendor=adoptopenjdk',
|
|
|
|
`heap_size=normal`,
|
|
|
|
'sort_method=DEFAULT',
|
|
|
|
'sort_order=DESC',
|
|
|
|
`os=${platform}`,
|
|
|
|
`architecture=${arch}`,
|
|
|
|
`image_type=${imageType}`,
|
2021-05-17 13:33:21 +00:00
|
|
|
`release_type=${releaseType}`,
|
|
|
|
`jvm_impl=${this.jvmImpl.toLowerCase()}`
|
2021-04-05 10:02:27 +00:00
|
|
|
].join('&');
|
|
|
|
|
|
|
|
// need to iterate through all pages to retrieve the list of all versions
|
|
|
|
// Adopt API doesn't provide way to retrieve the count of pages to iterate so infinity loop
|
|
|
|
let page_index = 0;
|
|
|
|
const availableVersions: IAdoptAvailableVersions[] = [];
|
|
|
|
while (true) {
|
|
|
|
const requestArguments = `${baseRequestArguments}&page_size=20&page=${page_index}`;
|
|
|
|
const availableVersionsUrl = `https://api.adoptopenjdk.net/v3/assets/version/${versionRange}?${requestArguments}`;
|
|
|
|
if (core.isDebug() && page_index === 0) {
|
|
|
|
// url is identical except page_index so print it once for debug
|
|
|
|
core.debug(`Gathering available versions from '${availableVersionsUrl}'`);
|
|
|
|
}
|
|
|
|
|
|
|
|
const paginationPage = (
|
|
|
|
await this.http.getJson<IAdoptAvailableVersions[]>(availableVersionsUrl)
|
|
|
|
).result;
|
|
|
|
if (paginationPage === null || paginationPage.length === 0) {
|
|
|
|
// break infinity loop because we have reached end of pagination
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
availableVersions.push(...paginationPage);
|
|
|
|
page_index++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (core.isDebug()) {
|
|
|
|
core.startGroup('Print information about available versions');
|
|
|
|
console.timeEnd('adopt-retrieve-available-versions');
|
|
|
|
console.log(`Available versions: [${availableVersions.length}]`);
|
|
|
|
console.log(availableVersions.map(item => item.version_data.semver).join(', '));
|
|
|
|
core.endGroup();
|
|
|
|
}
|
|
|
|
|
|
|
|
return availableVersions;
|
|
|
|
}
|
|
|
|
|
|
|
|
private getPlatformOption(): string {
|
|
|
|
// Adopt has own platform names so need to map them
|
|
|
|
switch (process.platform) {
|
|
|
|
case 'darwin':
|
|
|
|
return 'mac';
|
|
|
|
case 'win32':
|
|
|
|
return 'windows';
|
|
|
|
default:
|
|
|
|
return process.platform;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|