Files
toolkit/packages/cache/src/cache.ts
T

271 lines
7.9 KiB
TypeScript
Raw Normal View History

import * as core from '@actions/core'
2020-05-06 17:53:22 -04:00
import * as path from 'path'
import * as utils from './internal/cacheUtils'
import * as cacheHttpClient from './internal/cacheHttpClient'
2020-11-26 01:56:57 +03:00
import {createTar, extractTar, listTar} from './internal/tar'
import {DownloadOptions, UploadOptions} from './options'
import {CompressionMethod} from './internal/constants'
import {ArtifactCacheEntry} from './internal/contracts'
2020-05-12 14:47:31 -04:00
export class ValidationError extends Error {
constructor(message: string) {
super(message)
this.name = 'ValidationError'
2020-05-15 12:18:50 -04:00
Object.setPrototypeOf(this, ValidationError.prototype)
2020-05-12 14:47:31 -04:00
}
}
export class ReserveCacheError extends Error {
constructor(message: string) {
super(message)
this.name = 'ReserveCacheError'
2020-05-15 12:18:50 -04:00
Object.setPrototypeOf(this, ReserveCacheError.prototype)
2020-05-12 14:47:31 -04:00
}
}
2020-05-06 17:53:22 -04:00
function checkPaths(paths: string[]): void {
if (!paths || paths.length === 0) {
2020-05-12 14:47:31 -04:00
throw new ValidationError(
2020-05-06 17:53:22 -04:00
`Path Validation Error: At least one directory or file path is required`
)
}
}
function checkKey(key: string): void {
if (key.length > 512) {
2020-05-12 14:47:31 -04:00
throw new ValidationError(
2020-05-06 17:53:22 -04:00
`Key Validation Error: ${key} cannot be larger than 512 characters.`
)
}
const regex = /^[^,]*$/
if (!regex.test(key)) {
2020-05-12 14:47:31 -04:00
throw new ValidationError(
`Key Validation Error: ${key} cannot contain commas.`
)
2020-05-06 17:53:22 -04:00
}
}
2022-03-29 22:19:10 +00:00
/**
* isFeatureAvailable to check the presence of Actions cache service
*
* @returns boolean return true if Actions cache service feature is available, otherwise false
*/
2022-03-29 22:20:22 +00:00
export function isFeatureAvailable(): boolean {
2022-03-29 22:19:10 +00:00
return !!process.env['ACTIONS_CACHE_URL']
}
/**
* Restores cache from keys
*
2020-05-06 17:53:22 -04:00
* @param paths a list of file paths to restore from the cache
* @param primaryKey an explicit key for restoring the cache
* @param restoreKeys an optional ordered list of keys to use for restoring the cache if no cache hit occurred for key
* @param downloadOptions cache download options
2020-05-15 12:18:50 -04:00
* @returns string returns the key for the cache hit, otherwise returns undefined
*/
export async function restoreCache(
2020-05-06 17:53:22 -04:00
paths: string[],
primaryKey: string,
restoreKeys?: string[],
options?: DownloadOptions
): Promise<string | undefined> {
2020-05-06 17:53:22 -04:00
checkPaths(paths)
2020-05-06 17:53:22 -04:00
restoreKeys = restoreKeys || []
const keys = [primaryKey, ...restoreKeys]
2020-05-06 17:53:22 -04:00
core.debug('Resolved Keys:')
core.debug(JSON.stringify(keys))
2020-05-06 17:53:22 -04:00
if (keys.length > 10) {
2020-05-12 14:47:31 -04:00
throw new ValidationError(
2020-05-06 17:53:22 -04:00
`Key Validation Error: Keys are limited to a maximum of 10.`
)
}
for (const key of keys) {
checkKey(key)
}
let cacheEntry: ArtifactCacheEntry | null
let compressionMethod = await utils.getCompressionMethod()
let archivePath = ''
try {
2022-12-09 09:33:59 +00:00
// path are needed to compute version
cacheEntry = await cacheHttpClient.getCacheEntry(keys, paths, {
compressionMethod
})
if (!cacheEntry?.archiveLocation) {
2022-12-12 10:58:58 +00:00
// This is to support the old cache entry created by gzip on windows.
2022-12-07 08:41:56 +00:00
if (
process.platform === 'win32' &&
compressionMethod !== CompressionMethod.Gzip
) {
compressionMethod = CompressionMethod.Gzip
cacheEntry = await cacheHttpClient.getCacheEntry(keys, paths, {
compressionMethod
})
if (!cacheEntry?.archiveLocation) {
2022-12-09 09:33:59 +00:00
return undefined
2022-12-07 08:41:56 +00:00
}
2022-12-09 11:06:42 +00:00
2022-12-21 10:53:00 +00:00
core.info(
2022-12-12 10:58:58 +00:00
"Couldn't find cache entry with zstd compression, falling back to gzip compression."
2022-12-09 11:06:42 +00:00
)
2022-12-07 08:41:56 +00:00
} else {
2022-12-09 09:33:59 +00:00
// Cache not found
return undefined
2022-12-07 08:41:56 +00:00
}
}
2020-05-06 17:53:22 -04:00
archivePath = path.join(
await utils.createTempDirectory(),
utils.getCacheFileName(compressionMethod)
)
core.debug(`Archive Path: ${archivePath}`)
2020-05-06 17:53:22 -04:00
// Download the cache from the cache entry
await cacheHttpClient.downloadCache(
cacheEntry.archiveLocation,
archivePath,
options
)
2020-05-06 17:53:22 -04:00
2020-11-26 01:56:57 +03:00
if (core.isDebug()) {
await listTar(archivePath, compressionMethod)
}
2021-05-03 18:09:44 +03:00
const archiveFileSize = utils.getArchiveFileSizeInBytes(archivePath)
2020-05-06 17:53:22 -04:00
core.info(
`Cache Size: ~${Math.round(
archiveFileSize / (1024 * 1024)
)} MB (${archiveFileSize} B)`
)
2020-05-06 17:53:22 -04:00
await extractTar(archivePath, compressionMethod)
2020-11-26 01:56:57 +03:00
core.info('Cache restored successfully')
return cacheEntry.cacheKey
} catch (error) {
const typedError = error as Error
if (typedError.name === ValidationError.name) {
throw error
} else {
// Supress all non-validation cache related errors because caching should be optional
core.warning(`Failed to restore: ${(error as Error).message}`)
}
2020-05-06 17:53:22 -04:00
} finally {
// Try to delete the archive to save space
try {
2020-05-06 17:53:22 -04:00
await utils.unlinkFile(archivePath)
} catch (error) {
2020-05-06 17:53:22 -04:00
core.debug(`Failed to delete archive: ${error}`)
}
}
2020-05-06 17:53:22 -04:00
return undefined
}
/**
2020-05-06 17:53:22 -04:00
* Saves a list of files with the specified key
*
2020-05-06 17:53:22 -04:00
* @param paths a list of file paths to be cached
* @param key an explicit key for restoring the cache
* @param options cache upload options
2020-05-15 12:18:50 -04:00
* @returns number returns cacheId if the cache was saved successfully and throws an error if save fails
*/
export async function saveCache(
paths: string[],
key: string,
options?: UploadOptions
): Promise<number> {
2020-05-06 17:53:22 -04:00
checkPaths(paths)
checkKey(key)
2022-12-09 09:33:59 +00:00
const compressionMethod = await utils.getCompressionMethod()
let cacheId = -1
2020-05-06 17:53:22 -04:00
2020-05-12 14:47:31 -04:00
const cachePaths = await utils.resolvePaths(paths)
2020-05-06 17:53:22 -04:00
core.debug('Cache Paths:')
core.debug(`${JSON.stringify(cachePaths)}`)
2022-05-23 05:59:56 +00:00
if (cachePaths.length === 0) {
throw new Error(
`Path Validation Error: Path(s) specified in the action for caching do(es) not exist, hence no cache is being saved.`
2022-05-23 05:59:56 +00:00
)
2022-05-22 10:09:13 +00:00
}
2020-05-06 17:53:22 -04:00
const archiveFolder = await utils.createTempDirectory()
const archivePath = path.join(
archiveFolder,
utils.getCacheFileName(compressionMethod)
)
core.debug(`Archive Path: ${archivePath}`)
try {
await createTar(archiveFolder, cachePaths, compressionMethod)
if (core.isDebug()) {
await listTar(archivePath, compressionMethod)
}
2022-04-01 01:41:12 +05:30
const fileSizeLimit = 10 * 1024 * 1024 * 1024 // 10GB per repo limit
const archiveFileSize = utils.getArchiveFileSizeInBytes(archivePath)
core.debug(`File Size: ${archiveFileSize}`)
// For GHES, this check will take place in ReserveCache API with enterprise file size limit
if (archiveFileSize > fileSizeLimit && !utils.isGhes()) {
2022-04-01 01:41:12 +05:30
throw new Error(
`Cache size of ~${Math.round(
archiveFileSize / (1024 * 1024)
)} MB (${archiveFileSize} B) is over the 10GB limit, not saving cache.`
)
}
core.debug('Reserving Cache')
const reserveCacheResponse = await cacheHttpClient.reserveCache(
key,
paths,
{
compressionMethod,
cacheSize: archiveFileSize
}
)
if (reserveCacheResponse?.result?.cacheId) {
cacheId = reserveCacheResponse?.result?.cacheId
} else if (reserveCacheResponse?.statusCode === 400) {
throw new Error(
reserveCacheResponse?.error?.message ??
`Cache size of ~${Math.round(
archiveFileSize / (1024 * 1024)
)} MB (${archiveFileSize} B) is over the data cap limit, not saving cache.`
)
} else {
throw new ReserveCacheError(
`Unable to reserve cache with key ${key}, another job may be creating this cache. More details: ${reserveCacheResponse?.error?.message}`
)
}
core.debug(`Saving Cache (ID: ${cacheId})`)
await cacheHttpClient.saveCache(cacheId, archivePath, options)
} catch (error) {
const typedError = error as Error
if (typedError.name === ValidationError.name) {
throw error
} else if (typedError.name === ReserveCacheError.name) {
core.info(`Failed to save: ${typedError.message}`)
} else {
core.warning(`Failed to save: ${typedError.message}`)
}
} finally {
// Try to delete the archive to save space
try {
await utils.unlinkFile(archivePath)
} catch (error) {
core.debug(`Failed to delete archive: ${error}`)
}
}
2020-05-06 17:53:22 -04:00
return cacheId
}