2021-08-23 02:14:47 +00:00
|
|
|
import path from 'path'
|
|
|
|
import fs from 'fs'
|
|
|
|
import os from 'os'
|
2021-09-11 15:10:44 +00:00
|
|
|
import * as core from '@actions/core'
|
|
|
|
import * as glob from '@actions/glob'
|
2021-09-11 18:08:18 +00:00
|
|
|
import * as exec from '@actions/exec'
|
2021-08-23 02:14:47 +00:00
|
|
|
|
2021-10-29 16:19:35 +00:00
|
|
|
import {
|
|
|
|
AbstractCache,
|
|
|
|
CacheEntryReport,
|
|
|
|
CachingReport,
|
|
|
|
getCacheKeyPrefix,
|
|
|
|
hashFileNames,
|
|
|
|
tryDelete
|
|
|
|
} from './cache-utils'
|
2021-09-12 16:08:34 +00:00
|
|
|
|
2021-10-21 17:11:55 +00:00
|
|
|
const META_FILE_DIR = '.gradle-build-action'
|
|
|
|
|
2021-10-27 22:05:07 +00:00
|
|
|
const INCLUDE_PATHS_PARAMETER = 'gradle-home-cache-includes'
|
|
|
|
const EXCLUDE_PATHS_PARAMETER = 'gradle-home-cache-excludes'
|
|
|
|
const ARTIFACT_BUNDLES_PARAMETER = 'gradle-home-cache-artifact-bundles'
|
|
|
|
|
2021-09-06 17:16:08 +00:00
|
|
|
export class GradleUserHomeCache extends AbstractCache {
|
2021-09-28 02:57:47 +00:00
|
|
|
private gradleUserHome: string
|
|
|
|
|
|
|
|
constructor(rootDir: string) {
|
2021-09-06 17:16:08 +00:00
|
|
|
super('gradle', 'Gradle User Home')
|
2021-09-28 02:57:47 +00:00
|
|
|
this.gradleUserHome = this.determineGradleUserHome(rootDir)
|
2021-08-23 02:14:47 +00:00
|
|
|
}
|
|
|
|
|
2021-10-29 14:44:08 +00:00
|
|
|
async afterRestore(report: CachingReport): Promise<void> {
|
2021-10-15 17:11:05 +00:00
|
|
|
await this.reportGradleUserHomeSize('as restored from cache')
|
2021-10-29 16:19:35 +00:00
|
|
|
await this.restoreArtifactBundles(report)
|
2021-10-15 17:11:05 +00:00
|
|
|
await this.reportGradleUserHomeSize('after restoring common artifacts')
|
2021-09-11 18:08:18 +00:00
|
|
|
}
|
2021-09-11 15:10:44 +00:00
|
|
|
|
2021-10-29 16:19:35 +00:00
|
|
|
private async restoreArtifactBundles(report: CachingReport): Promise<void> {
|
|
|
|
const processes: Promise<void>[] = []
|
|
|
|
|
|
|
|
// This is special logic that allows the tests to simulate a "not restored" state by configuring an empty set of bundles
|
|
|
|
// This is similar to how the primary implementation should work:
|
|
|
|
// - Iterate over bundle meta-files as the basis for restoring content.
|
|
|
|
// - Leave bundle meta-files for successful restore.
|
|
|
|
// - Remove bundle meta-files that are not restored.
|
|
|
|
if (this.getArtifactBundles().size === 0) {
|
|
|
|
const bundleMetaFiles = await this.getBundleMetaFiles()
|
|
|
|
|
|
|
|
for (const bundleMetaFile of bundleMetaFiles) {
|
|
|
|
const bundle = path.basename(bundleMetaFile, '.cache')
|
|
|
|
|
|
|
|
core.info(`Found bundle metafile for ${bundle} but no such bundle configured`)
|
|
|
|
report.addEntryReport(bundleMetaFile).markRequested('BUNDLE_NOT_CONFIGURED')
|
|
|
|
tryDelete(bundleMetaFile)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-15 18:34:38 +00:00
|
|
|
for (const [bundle, pattern] of this.getArtifactBundles()) {
|
2021-10-29 16:19:35 +00:00
|
|
|
const bundleEntryReport = report.addEntryReport(bundle)
|
|
|
|
const p = this.restoreArtifactBundle(bundle, pattern, bundleEntryReport)
|
2021-09-12 20:08:22 +00:00
|
|
|
// Run sequentially when debugging enabled
|
|
|
|
if (this.cacheDebuggingEnabled) {
|
|
|
|
await p
|
|
|
|
}
|
2021-09-12 02:56:40 +00:00
|
|
|
processes.push(p)
|
|
|
|
}
|
2021-09-12 20:08:22 +00:00
|
|
|
|
2021-10-29 16:19:35 +00:00
|
|
|
await Promise.all(processes)
|
2021-09-12 02:56:40 +00:00
|
|
|
}
|
|
|
|
|
2021-10-29 16:19:35 +00:00
|
|
|
private async restoreArtifactBundle(bundle: string, artifactPath: string, report: CacheEntryReport): Promise<void> {
|
2021-10-15 18:34:38 +00:00
|
|
|
const bundleMetaFile = this.getBundleMetaFile(bundle)
|
|
|
|
if (fs.existsSync(bundleMetaFile)) {
|
|
|
|
const cacheKey = fs.readFileSync(bundleMetaFile, 'utf-8').trim()
|
2021-10-29 16:19:35 +00:00
|
|
|
report.markRequested(cacheKey)
|
|
|
|
|
|
|
|
const restoredKey = await this.restoreCache([artifactPath], cacheKey)
|
|
|
|
if (restoredKey) {
|
2021-10-29 13:34:44 +00:00
|
|
|
core.info(`Restored ${bundle} with key ${cacheKey} to ${artifactPath}`)
|
2021-10-29 16:19:35 +00:00
|
|
|
report.markRestored(restoredKey)
|
2021-09-14 19:30:23 +00:00
|
|
|
} else {
|
2021-10-29 16:19:35 +00:00
|
|
|
core.info(`Did not restore ${bundle} with key ${cacheKey} to ${artifactPath}`)
|
|
|
|
// TODO Remove the .cache file here?
|
2021-09-11 18:08:18 +00:00
|
|
|
}
|
2021-09-12 02:56:40 +00:00
|
|
|
} else {
|
2021-10-29 13:34:44 +00:00
|
|
|
this.debug(`No metafile found to restore ${bundle}: ${bundleMetaFile}`)
|
2021-09-11 18:08:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-15 18:34:38 +00:00
|
|
|
private getBundleMetaFile(name: string): string {
|
2021-10-21 17:11:55 +00:00
|
|
|
return path.resolve(this.gradleUserHome, META_FILE_DIR, `${name}.cache`)
|
2021-09-15 12:36:54 +00:00
|
|
|
}
|
|
|
|
|
2021-10-29 16:19:35 +00:00
|
|
|
private async getBundleMetaFiles(): Promise<string[]> {
|
|
|
|
const metaFiles = path.resolve(this.gradleUserHome, META_FILE_DIR, '*.cache')
|
|
|
|
const globber = await glob.create(metaFiles)
|
|
|
|
const bundleFiles = await globber.glob()
|
|
|
|
return bundleFiles
|
|
|
|
}
|
|
|
|
|
2021-09-15 17:20:33 +00:00
|
|
|
async beforeSave(): Promise<void> {
|
2021-10-15 17:11:05 +00:00
|
|
|
await this.reportGradleUserHomeSize('before saving common artifacts')
|
2021-10-20 21:01:36 +00:00
|
|
|
this.removeExcludedPaths()
|
2021-10-15 18:34:38 +00:00
|
|
|
await this.saveArtifactBundles()
|
2021-10-16 16:15:40 +00:00
|
|
|
await this.reportGradleUserHomeSize(
|
2021-10-20 21:01:36 +00:00
|
|
|
"after saving common artifacts (only 'caches' and 'notifications' will be stored)"
|
2021-10-16 16:15:40 +00:00
|
|
|
)
|
2021-09-11 18:08:18 +00:00
|
|
|
}
|
|
|
|
|
2021-10-20 21:01:36 +00:00
|
|
|
private removeExcludedPaths(): void {
|
2021-10-29 13:34:44 +00:00
|
|
|
const rawPaths: string[] = core.getMultilineInput(EXCLUDE_PATHS_PARAMETER)
|
|
|
|
const resolvedPaths = rawPaths.map(x => path.resolve(this.gradleUserHome, x))
|
2021-10-20 21:01:36 +00:00
|
|
|
|
|
|
|
for (const p of resolvedPaths) {
|
|
|
|
this.debug(`Deleting excluded path: ${p}`)
|
|
|
|
tryDelete(p)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-15 18:34:38 +00:00
|
|
|
private async saveArtifactBundles(): Promise<void> {
|
2021-09-12 02:56:40 +00:00
|
|
|
const processes: Promise<void>[] = []
|
2021-10-15 18:34:38 +00:00
|
|
|
for (const [bundle, pattern] of this.getArtifactBundles()) {
|
|
|
|
const p = this.saveArtifactBundle(bundle, pattern)
|
2021-09-12 20:08:22 +00:00
|
|
|
// Run sequentially when debugging enabled
|
|
|
|
if (this.cacheDebuggingEnabled) {
|
|
|
|
await p
|
|
|
|
}
|
2021-09-12 02:56:40 +00:00
|
|
|
processes.push(p)
|
|
|
|
}
|
2021-09-12 20:08:22 +00:00
|
|
|
|
2021-09-12 02:56:40 +00:00
|
|
|
await Promise.all(processes)
|
|
|
|
}
|
2021-09-11 15:10:44 +00:00
|
|
|
|
2021-10-29 13:34:44 +00:00
|
|
|
private async saveArtifactBundle(bundle: string, artifactPath: string): Promise<void> {
|
2021-10-15 18:34:38 +00:00
|
|
|
const bundleMetaFile = this.getBundleMetaFile(bundle)
|
2021-09-12 02:56:40 +00:00
|
|
|
|
2021-10-16 15:46:17 +00:00
|
|
|
const globber = await glob.create(artifactPath, {
|
|
|
|
implicitDescendants: false,
|
|
|
|
followSymbolicLinks: false
|
|
|
|
})
|
2021-10-15 18:34:38 +00:00
|
|
|
const bundleFiles = await globber.glob()
|
2021-09-12 20:08:22 +00:00
|
|
|
|
2021-09-15 12:36:54 +00:00
|
|
|
// Handle no matching files
|
2021-10-15 18:34:38 +00:00
|
|
|
if (bundleFiles.length === 0) {
|
2021-09-15 12:36:54 +00:00
|
|
|
this.debug(`No files found to cache for ${bundle}`)
|
2021-10-15 18:34:38 +00:00
|
|
|
if (fs.existsSync(bundleMetaFile)) {
|
|
|
|
tryDelete(bundleMetaFile)
|
2021-09-15 12:36:54 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2021-09-11 18:08:18 +00:00
|
|
|
|
2021-10-15 18:34:38 +00:00
|
|
|
const previouslyRestoredKey = fs.existsSync(bundleMetaFile)
|
|
|
|
? fs.readFileSync(bundleMetaFile, 'utf-8').trim()
|
2021-09-15 12:36:54 +00:00
|
|
|
: ''
|
2021-10-15 18:34:38 +00:00
|
|
|
const cacheKey = this.createCacheKey(bundle, bundleFiles)
|
2021-09-15 12:36:54 +00:00
|
|
|
|
|
|
|
if (previouslyRestoredKey === cacheKey) {
|
2021-10-29 13:34:44 +00:00
|
|
|
this.debug(`No change to previously restored ${bundle}. Not caching.`)
|
2021-09-15 12:36:54 +00:00
|
|
|
} else {
|
2021-09-15 21:48:55 +00:00
|
|
|
core.info(`Caching ${bundle} with cache key: ${cacheKey}`)
|
2021-09-28 02:57:47 +00:00
|
|
|
await this.saveCache([artifactPath], cacheKey)
|
2021-10-21 17:11:55 +00:00
|
|
|
this.writeBundleMetaFile(bundleMetaFile, cacheKey)
|
2021-09-11 18:08:18 +00:00
|
|
|
}
|
2021-09-12 02:56:40 +00:00
|
|
|
|
2021-10-15 18:34:38 +00:00
|
|
|
for (const file of bundleFiles) {
|
2021-10-04 21:59:08 +00:00
|
|
|
tryDelete(file)
|
2021-09-15 12:36:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-28 03:05:17 +00:00
|
|
|
protected createCacheKey(bundle: string, files: string[]): string {
|
2021-10-16 15:44:35 +00:00
|
|
|
const cacheKeyPrefix = getCacheKeyPrefix()
|
2021-10-29 13:34:44 +00:00
|
|
|
const relativeFiles = files.map(x => path.relative(this.gradleUserHome, x))
|
2021-09-28 03:05:17 +00:00
|
|
|
const key = hashFileNames(relativeFiles)
|
|
|
|
|
2021-10-29 13:34:44 +00:00
|
|
|
this.debug(`Generating cache key for ${bundle} from files: ${relativeFiles}`)
|
2021-10-15 17:11:05 +00:00
|
|
|
|
2021-09-15 21:48:55 +00:00
|
|
|
return `${cacheKeyPrefix}${bundle}-${key}`
|
2021-09-12 16:08:34 +00:00
|
|
|
}
|
|
|
|
|
2021-10-21 17:11:55 +00:00
|
|
|
private writeBundleMetaFile(metaFile: string, cacheKey: string): void {
|
|
|
|
this.debug(`Writing bundle metafile: ${metaFile}`)
|
|
|
|
|
|
|
|
const dirName = path.dirname(metaFile)
|
|
|
|
if (!fs.existsSync(dirName)) {
|
|
|
|
fs.mkdirSync(dirName)
|
|
|
|
}
|
|
|
|
|
|
|
|
fs.writeFileSync(metaFile, cacheKey)
|
|
|
|
}
|
|
|
|
|
2021-09-28 02:57:47 +00:00
|
|
|
protected determineGradleUserHome(rootDir: string): string {
|
|
|
|
const customGradleUserHome = process.env['GRADLE_USER_HOME']
|
|
|
|
if (customGradleUserHome) {
|
|
|
|
return path.resolve(rootDir, customGradleUserHome)
|
|
|
|
}
|
|
|
|
|
2021-09-12 16:08:34 +00:00
|
|
|
return path.resolve(os.homedir(), '.gradle')
|
2021-09-11 15:10:44 +00:00
|
|
|
}
|
|
|
|
|
2021-09-06 17:16:08 +00:00
|
|
|
protected cacheOutputExists(): boolean {
|
|
|
|
// Need to check for 'caches' directory to avoid incorrect detection on MacOS agents
|
2021-09-28 02:57:47 +00:00
|
|
|
const dir = path.resolve(this.gradleUserHome, 'caches')
|
2021-09-06 17:16:08 +00:00
|
|
|
return fs.existsSync(dir)
|
2021-08-23 02:14:47 +00:00
|
|
|
}
|
|
|
|
|
2021-09-06 17:16:08 +00:00
|
|
|
protected getCachePath(): string[] {
|
2021-10-29 13:34:44 +00:00
|
|
|
const rawPaths: string[] = core.getMultilineInput(INCLUDE_PATHS_PARAMETER)
|
2021-10-20 15:52:04 +00:00
|
|
|
rawPaths.push(META_FILE_DIR)
|
|
|
|
const resolvedPaths = rawPaths.map(x => this.resolveCachePath(x))
|
|
|
|
this.debug(`Using cache paths: ${resolvedPaths}`)
|
|
|
|
return resolvedPaths
|
|
|
|
}
|
|
|
|
|
|
|
|
private resolveCachePath(rawPath: string): string {
|
|
|
|
if (rawPath.startsWith('!')) {
|
|
|
|
const resolved = this.resolveCachePath(rawPath.substring(1))
|
2021-10-20 21:01:36 +00:00
|
|
|
return `!${resolved}`
|
2021-10-20 15:52:04 +00:00
|
|
|
}
|
|
|
|
return path.resolve(this.gradleUserHome, rawPath)
|
2021-09-28 02:57:47 +00:00
|
|
|
}
|
|
|
|
|
2021-10-15 18:34:38 +00:00
|
|
|
private getArtifactBundles(): Map<string, string> {
|
2021-10-29 13:34:44 +00:00
|
|
|
const artifactBundleDefinition = core.getInput(ARTIFACT_BUNDLES_PARAMETER)
|
|
|
|
this.debug(`Using artifact bundle definition: ${artifactBundleDefinition}`)
|
2021-10-15 18:45:15 +00:00
|
|
|
const artifactBundles = JSON.parse(artifactBundleDefinition)
|
2021-10-29 13:34:44 +00:00
|
|
|
return new Map(Array.from(artifactBundles, ([key, value]) => [key, path.resolve(this.gradleUserHome, value)]))
|
2021-08-23 02:14:47 +00:00
|
|
|
}
|
2021-10-15 17:11:05 +00:00
|
|
|
|
|
|
|
private async reportGradleUserHomeSize(label: string): Promise<void> {
|
|
|
|
if (!this.cacheDebuggingEnabled) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if (!fs.existsSync(this.gradleUserHome)) {
|
|
|
|
return
|
|
|
|
}
|
2021-10-29 13:34:44 +00:00
|
|
|
const result = await exec.getExecOutput('du', ['-h', '-c', '-t', '5M'], {
|
|
|
|
cwd: this.gradleUserHome,
|
|
|
|
silent: true,
|
|
|
|
ignoreReturnCode: true
|
|
|
|
})
|
2021-10-15 17:11:05 +00:00
|
|
|
|
2021-10-16 16:15:40 +00:00
|
|
|
core.info(`Gradle User Home (directories >5M): ${label}`)
|
2021-10-15 17:11:05 +00:00
|
|
|
|
|
|
|
core.info(
|
|
|
|
result.stdout
|
|
|
|
.trimEnd()
|
|
|
|
.replace(/\t/g, ' ')
|
|
|
|
.split('\n')
|
|
|
|
.map(it => {
|
|
|
|
return ` ${it}`
|
|
|
|
})
|
|
|
|
.join('\n')
|
|
|
|
)
|
|
|
|
|
|
|
|
core.info('-----------------------')
|
|
|
|
}
|
2021-08-23 02:14:47 +00:00
|
|
|
}
|