2021-10-30 13:15:20 +00:00
|
|
|
import * as core from '@actions/core'
|
2021-12-29 23:07:33 +00:00
|
|
|
import * as exec from '@actions/exec'
|
2021-12-07 23:52:53 +00:00
|
|
|
import path from 'path'
|
|
|
|
import fs from 'fs'
|
2021-12-07 19:29:37 +00:00
|
|
|
import {CacheListener} from './cache-reporting'
|
2022-05-28 17:23:31 +00:00
|
|
|
import {saveCache, restoreCache, cacheDebug, isCacheDebuggingEnabled, tryDelete, generateCacheKey} from './cache-utils'
|
2021-12-29 23:07:33 +00:00
|
|
|
import {ConfigurationCacheEntryExtractor, GradleHomeEntryExtractor} from './cache-extract-entries'
|
2021-10-30 13:15:20 +00:00
|
|
|
|
2022-01-20 16:36:57 +00:00
|
|
|
const RESTORED_CACHE_KEY_KEY = 'restored-cache-key'
|
2021-12-07 23:52:53 +00:00
|
|
|
|
|
|
|
export const META_FILE_DIR = '.gradle-build-action'
|
|
|
|
export const PROJECT_ROOTS_FILE = 'project-roots.txt'
|
2021-12-29 23:07:33 +00:00
|
|
|
const INCLUDE_PATHS_PARAMETER = 'gradle-home-cache-includes'
|
|
|
|
const EXCLUDE_PATHS_PARAMETER = 'gradle-home-cache-excludes'
|
2021-10-30 13:15:20 +00:00
|
|
|
|
2021-12-29 23:07:33 +00:00
|
|
|
export class GradleStateCache {
|
2021-10-30 13:15:20 +00:00
|
|
|
private cacheName: string
|
|
|
|
private cacheDescription: string
|
|
|
|
|
2021-12-07 23:52:53 +00:00
|
|
|
protected readonly gradleUserHome: string
|
2021-10-30 13:15:20 +00:00
|
|
|
|
2021-12-29 23:07:33 +00:00
|
|
|
constructor(gradleUserHome: string) {
|
2021-12-07 23:52:53 +00:00
|
|
|
this.gradleUserHome = gradleUserHome
|
2021-12-29 23:07:33 +00:00
|
|
|
this.cacheName = 'gradle'
|
|
|
|
this.cacheDescription = 'Gradle User Home'
|
2021-10-30 13:15:20 +00:00
|
|
|
}
|
|
|
|
|
2021-12-07 23:52:53 +00:00
|
|
|
init(): void {
|
|
|
|
const actionCacheDir = path.resolve(this.gradleUserHome, '.gradle-build-action')
|
|
|
|
fs.mkdirSync(actionCacheDir, {recursive: true})
|
|
|
|
|
|
|
|
const initScriptsDir = path.resolve(this.gradleUserHome, 'init.d')
|
|
|
|
fs.mkdirSync(initScriptsDir, {recursive: true})
|
|
|
|
|
|
|
|
this.initializeGradleUserHome(this.gradleUserHome, initScriptsDir)
|
|
|
|
}
|
|
|
|
|
2022-01-17 19:38:14 +00:00
|
|
|
cacheOutputExists(): boolean {
|
2022-02-03 16:46:37 +00:00
|
|
|
const cachesDir = path.resolve(this.gradleUserHome, 'caches')
|
|
|
|
if (fs.existsSync(cachesDir)) {
|
|
|
|
cacheDebug(`Cache output exists at ${cachesDir}`)
|
|
|
|
return true
|
2022-01-17 21:06:56 +00:00
|
|
|
}
|
|
|
|
return false
|
2022-01-17 19:38:14 +00:00
|
|
|
}
|
|
|
|
|
2021-11-28 17:19:56 +00:00
|
|
|
/**
|
|
|
|
* Restores the cache entry, finding the closest match to the currently running job.
|
|
|
|
*/
|
2021-10-30 13:21:27 +00:00
|
|
|
async restore(listener: CacheListener): Promise<void> {
|
2021-11-28 17:19:56 +00:00
|
|
|
const entryListener = listener.entry(this.cacheDescription)
|
2021-10-30 13:15:20 +00:00
|
|
|
|
2021-12-29 23:07:33 +00:00
|
|
|
const cacheKey = generateCacheKey(this.cacheName)
|
2021-10-30 13:15:20 +00:00
|
|
|
|
2021-12-29 23:07:33 +00:00
|
|
|
cacheDebug(
|
2021-10-30 13:15:20 +00:00
|
|
|
`Requesting ${this.cacheDescription} with
|
2021-12-07 19:56:36 +00:00
|
|
|
key:${cacheKey.key}
|
|
|
|
restoreKeys:[${cacheKey.restoreKeys}]`
|
2021-10-30 13:15:20 +00:00
|
|
|
)
|
|
|
|
|
2022-01-19 19:11:51 +00:00
|
|
|
const cacheResult = await restoreCache(this.getCachePath(), cacheKey.key, cacheKey.restoreKeys, entryListener)
|
2021-10-30 13:15:20 +00:00
|
|
|
if (!cacheResult) {
|
2021-11-27 23:07:07 +00:00
|
|
|
core.info(`${this.cacheDescription} cache not found. Will initialize empty.`)
|
2021-10-30 13:15:20 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-01-20 16:36:57 +00:00
|
|
|
core.saveState(RESTORED_CACHE_KEY_KEY, cacheResult.key)
|
2021-11-28 17:19:56 +00:00
|
|
|
|
2021-11-01 02:35:28 +00:00
|
|
|
core.info(`Restored ${this.cacheDescription} from cache key: ${cacheResult.key}`)
|
2021-10-30 13:15:20 +00:00
|
|
|
|
|
|
|
try {
|
2021-10-30 13:21:27 +00:00
|
|
|
await this.afterRestore(listener)
|
2021-10-30 13:15:20 +00:00
|
|
|
} catch (error) {
|
|
|
|
core.warning(`Restore ${this.cacheDescription} failed in 'afterRestore': ${error}`)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-29 23:07:33 +00:00
|
|
|
/**
|
|
|
|
* Restore any extracted cache entries after the main Gradle User Home entry is restored.
|
|
|
|
*/
|
|
|
|
async afterRestore(listener: CacheListener): Promise<void> {
|
|
|
|
await this.debugReportGradleUserHomeSize('as restored from cache')
|
|
|
|
await new GradleHomeEntryExtractor(this.gradleUserHome).restore(listener)
|
|
|
|
await new ConfigurationCacheEntryExtractor(this.gradleUserHome).restore(listener)
|
|
|
|
await this.debugReportGradleUserHomeSize('after restoring common artifacts')
|
2021-10-30 13:15:20 +00:00
|
|
|
}
|
|
|
|
|
2021-11-28 17:19:56 +00:00
|
|
|
/**
|
2021-12-07 19:56:36 +00:00
|
|
|
* Saves the cache entry based on the current cache key unless the cache was restored with the exact key,
|
|
|
|
* in which case we cannot overwrite it.
|
2021-11-28 17:19:56 +00:00
|
|
|
*
|
|
|
|
* If the cache entry was restored with a partial match on a restore key, then
|
|
|
|
* it is saved with the exact key.
|
|
|
|
*/
|
2021-10-30 13:21:27 +00:00
|
|
|
async save(listener: CacheListener): Promise<void> {
|
2022-01-20 16:36:57 +00:00
|
|
|
const cacheKey = generateCacheKey(this.cacheName).key
|
|
|
|
const restoredCacheKey = core.getState(RESTORED_CACHE_KEY_KEY)
|
2021-10-30 13:15:20 +00:00
|
|
|
|
2022-01-20 16:36:57 +00:00
|
|
|
if (restoredCacheKey && cacheKey === restoredCacheKey) {
|
|
|
|
core.info(`Cache hit occurred on the cache key ${cacheKey}, not saving cache.`)
|
2021-10-30 13:15:20 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2021-10-30 13:21:27 +00:00
|
|
|
await this.beforeSave(listener)
|
2021-10-30 13:15:20 +00:00
|
|
|
} catch (error) {
|
|
|
|
core.warning(`Save ${this.cacheDescription} failed in 'beforeSave': ${error}`)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-01-20 16:36:57 +00:00
|
|
|
core.info(`Caching ${this.cacheDescription} with cache key: ${cacheKey}`)
|
2021-10-30 13:15:20 +00:00
|
|
|
const cachePath = this.getCachePath()
|
2022-01-19 19:11:51 +00:00
|
|
|
const entryListener = listener.entry(this.cacheDescription)
|
2022-01-20 16:36:57 +00:00
|
|
|
await saveCache(cachePath, cacheKey, entryListener)
|
2021-10-30 13:15:20 +00:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-12-29 23:07:33 +00:00
|
|
|
/**
|
|
|
|
* Extract and save any defined extracted cache entries prior to the main Gradle User Home entry being saved.
|
|
|
|
*/
|
|
|
|
async beforeSave(listener: CacheListener): Promise<void> {
|
|
|
|
await this.debugReportGradleUserHomeSize('before saving common artifacts')
|
|
|
|
this.deleteExcludedPaths()
|
|
|
|
await Promise.all([
|
|
|
|
new GradleHomeEntryExtractor(this.gradleUserHome).extract(listener),
|
|
|
|
new ConfigurationCacheEntryExtractor(this.gradleUserHome).extract(listener)
|
|
|
|
])
|
|
|
|
await this.debugReportGradleUserHomeSize(
|
|
|
|
"after extracting common artifacts (only 'caches' and 'notifications' will be stored)"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete any file paths that are excluded by the `gradle-home-cache-excludes` parameter.
|
|
|
|
*/
|
|
|
|
private deleteExcludedPaths(): void {
|
|
|
|
const rawPaths: string[] = core.getMultilineInput(EXCLUDE_PATHS_PARAMETER)
|
|
|
|
const resolvedPaths = rawPaths.map(x => path.resolve(this.gradleUserHome, x))
|
2021-10-30 13:15:20 +00:00
|
|
|
|
2021-12-29 23:07:33 +00:00
|
|
|
for (const p of resolvedPaths) {
|
|
|
|
cacheDebug(`Deleting excluded path: ${p}`)
|
|
|
|
tryDelete(p)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Determines the paths within Gradle User Home to cache.
|
|
|
|
* By default, this is the 'caches' and 'notifications' directories,
|
|
|
|
* but this can be overridden by the `gradle-home-cache-includes` parameter.
|
|
|
|
*/
|
|
|
|
protected getCachePath(): string[] {
|
|
|
|
const rawPaths: string[] = core.getMultilineInput(INCLUDE_PATHS_PARAMETER)
|
|
|
|
rawPaths.push(META_FILE_DIR)
|
|
|
|
const resolvedPaths = rawPaths.map(x => this.resolveCachePath(x))
|
|
|
|
cacheDebug(`Using cache paths: ${resolvedPaths}`)
|
|
|
|
return resolvedPaths
|
|
|
|
}
|
|
|
|
|
|
|
|
private resolveCachePath(rawPath: string): string {
|
|
|
|
if (rawPath.startsWith('!')) {
|
|
|
|
const resolved = this.resolveCachePath(rawPath.substring(1))
|
|
|
|
return `!${resolved}`
|
|
|
|
}
|
|
|
|
return path.resolve(this.gradleUserHome, rawPath)
|
|
|
|
}
|
|
|
|
|
|
|
|
private initializeGradleUserHome(gradleUserHome: string, initScriptsDir: string): void {
|
|
|
|
const propertiesFile = path.resolve(gradleUserHome, 'gradle.properties')
|
2022-01-24 22:18:11 +00:00
|
|
|
fs.appendFileSync(propertiesFile, 'org.gradle.daemon=false')
|
2021-12-29 23:07:33 +00:00
|
|
|
|
2022-06-02 17:53:33 +00:00
|
|
|
const initScriptFilenames = ['build-result-capture.init.gradle', 'project-root-capture.init.gradle']
|
|
|
|
for (const initScriptFilename of initScriptFilenames) {
|
|
|
|
const initScriptContent = this.readResourceAsString(initScriptFilename)
|
|
|
|
const initScriptPath = path.resolve(initScriptsDir, initScriptFilename)
|
|
|
|
fs.writeFileSync(initScriptPath, initScriptContent)
|
2021-12-29 23:07:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-02 17:53:33 +00:00
|
|
|
private readResourceAsString(resource: string): string {
|
|
|
|
// Resolving relative to __dirname will force the compiler to inline the content in the distribution
|
|
|
|
const absolutePath = path.resolve(__dirname, '..', '..', 'src', 'resources', resource)
|
|
|
|
return fs.readFileSync(absolutePath, 'utf8')
|
2021-12-29 23:07:33 +00:00
|
|
|
}
|
2021-10-30 13:15:20 +00:00
|
|
|
|
2021-12-29 23:07:33 +00:00
|
|
|
/**
|
|
|
|
* When cache debugging is enabled, this method will give a detailed report
|
|
|
|
* of the Gradle User Home contents.
|
|
|
|
*/
|
|
|
|
private async debugReportGradleUserHomeSize(label: string): Promise<void> {
|
|
|
|
if (!isCacheDebuggingEnabled()) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if (!fs.existsSync(this.gradleUserHome)) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
const result = await exec.getExecOutput('du', ['-h', '-c', '-t', '5M'], {
|
|
|
|
cwd: this.gradleUserHome,
|
|
|
|
silent: true,
|
|
|
|
ignoreReturnCode: true
|
|
|
|
})
|
|
|
|
|
|
|
|
core.info(`Gradle User Home (directories >5M): ${label}`)
|
|
|
|
|
|
|
|
core.info(
|
|
|
|
result.stdout
|
|
|
|
.trimEnd()
|
|
|
|
.replace(/\t/g, ' ')
|
|
|
|
.split('\n')
|
|
|
|
.map(it => {
|
|
|
|
return ` ${it}`
|
|
|
|
})
|
|
|
|
.join('\n')
|
|
|
|
)
|
|
|
|
|
|
|
|
core.info('-----------------------')
|
|
|
|
}
|
2021-10-30 13:15:20 +00:00
|
|
|
}
|