2020-07-10 15:09:32 +00:00
|
|
|
import * as core from '@actions/core'
|
|
|
|
import {HttpClient} from '@actions/http-client'
|
|
|
|
import {IHttpClientResponse} from '@actions/http-client/interfaces'
|
|
|
|
import {BlockBlobClient} from '@azure/storage-blob'
|
2020-06-20 21:53:27 +00:00
|
|
|
import {TransferProgressEvent} from '@azure/ms-rest-js'
|
2020-07-10 15:09:32 +00:00
|
|
|
import * as buffer from 'buffer'
|
|
|
|
import * as fs from 'fs'
|
|
|
|
import * as stream from 'stream'
|
|
|
|
import * as util from 'util'
|
|
|
|
|
|
|
|
import * as utils from './cacheUtils'
|
|
|
|
import {SocketTimeout} from './constants'
|
|
|
|
import {DownloadOptions} from '../options'
|
|
|
|
import {retryHttpClientResponse} from './requestUtils'
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pipes the body of a HTTP response to a stream
|
|
|
|
*
|
|
|
|
* @param response the HTTP response
|
|
|
|
* @param output the writable stream
|
|
|
|
*/
|
|
|
|
async function pipeResponseToStream(
|
|
|
|
response: IHttpClientResponse,
|
|
|
|
output: NodeJS.WritableStream
|
|
|
|
): Promise<void> {
|
|
|
|
const pipeline = util.promisify(stream.pipeline)
|
|
|
|
await pipeline(response.message, output)
|
|
|
|
}
|
|
|
|
|
2020-06-20 21:53:27 +00:00
|
|
|
/**
|
|
|
|
* Class for tracking the download state and displaying stats.
|
|
|
|
*/
|
|
|
|
export class DownloadProgress {
|
|
|
|
contentLength: number
|
|
|
|
segmentIndex: number
|
|
|
|
segmentSize: number
|
|
|
|
segmentOffset: number
|
|
|
|
receivedBytes: number
|
|
|
|
startTime: number
|
|
|
|
displayedComplete: boolean
|
|
|
|
timeoutHandle?: ReturnType<typeof setTimeout>
|
|
|
|
|
|
|
|
constructor(contentLength: number) {
|
|
|
|
this.contentLength = contentLength
|
|
|
|
this.segmentIndex = 0
|
|
|
|
this.segmentSize = 0
|
|
|
|
this.segmentOffset = 0
|
|
|
|
this.receivedBytes = 0
|
|
|
|
this.displayedComplete = false
|
|
|
|
this.startTime = Date.now()
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Progress to the next segment. Only call this method when the previous segment
|
|
|
|
* is complete.
|
|
|
|
*
|
|
|
|
* @param segmentSize the length of the next segment
|
|
|
|
*/
|
|
|
|
nextSegment(segmentSize: number): void {
|
|
|
|
this.segmentOffset = this.segmentOffset + this.segmentSize
|
|
|
|
this.segmentIndex = this.segmentIndex + 1
|
|
|
|
this.segmentSize = segmentSize
|
|
|
|
this.receivedBytes = 0
|
|
|
|
|
|
|
|
core.debug(
|
|
|
|
`Downloading segment at offset ${this.segmentOffset} with length ${this.segmentSize}...`
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the number of bytes received for the current segment.
|
|
|
|
*
|
|
|
|
* @param receivedBytes the number of bytes received
|
|
|
|
*/
|
|
|
|
setReceivedBytes(receivedBytes: number): void {
|
|
|
|
this.receivedBytes = receivedBytes
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the total number of bytes transferred.
|
|
|
|
*/
|
|
|
|
getTransferredBytes(): number {
|
|
|
|
return this.segmentOffset + this.receivedBytes
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns true if the download is complete.
|
|
|
|
*/
|
|
|
|
isDone(): boolean {
|
|
|
|
return this.getTransferredBytes() === this.contentLength
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prints the current download stats. Once the download completes, this will print one
|
|
|
|
* last line and then stop.
|
|
|
|
*/
|
|
|
|
display(): void {
|
|
|
|
if (this.displayedComplete) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
const transferredBytes = this.segmentOffset + this.receivedBytes
|
|
|
|
const percentage = (100 * (transferredBytes / this.contentLength)).toFixed(
|
|
|
|
1
|
|
|
|
)
|
|
|
|
const elapsedTime = Date.now() - this.startTime
|
|
|
|
const downloadSpeed = (
|
|
|
|
transferredBytes /
|
|
|
|
(1024 * 1024) /
|
|
|
|
(elapsedTime / 1000)
|
|
|
|
).toFixed(1)
|
|
|
|
|
|
|
|
core.info(
|
|
|
|
`Received ${transferredBytes} of ${this.contentLength} (${percentage}%), ${downloadSpeed} MBs/sec`
|
|
|
|
)
|
|
|
|
|
|
|
|
if (this.isDone()) {
|
|
|
|
this.displayedComplete = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-07-13 21:07:58 +00:00
|
|
|
* Returns a function used to handle TransferProgressEvents.
|
2020-06-20 21:53:27 +00:00
|
|
|
*/
|
2020-07-13 21:07:58 +00:00
|
|
|
onProgress(): (progress: TransferProgressEvent) => void {
|
|
|
|
return (progress: TransferProgressEvent) => {
|
|
|
|
this.setReceivedBytes(progress.loadedBytes)
|
|
|
|
}
|
2020-06-20 21:53:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Starts the timer that displays the stats.
|
|
|
|
*
|
|
|
|
* @param delayInMs the delay between each write
|
|
|
|
*/
|
|
|
|
startDisplayTimer(delayInMs: number = 1000): void {
|
|
|
|
const displayCallback = (): void => {
|
|
|
|
this.display()
|
|
|
|
|
|
|
|
if (!this.isDone()) {
|
|
|
|
this.timeoutHandle = setTimeout(displayCallback, delayInMs)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
this.timeoutHandle = setTimeout(displayCallback, delayInMs)
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Stops the timer that displays the stats. As this typically indicates the download
|
|
|
|
* is complete, this will display one last line, unless the last line has already
|
|
|
|
* been written.
|
|
|
|
*/
|
|
|
|
stopDisplayTimer(): void {
|
|
|
|
if (this.timeoutHandle) {
|
|
|
|
clearTimeout(this.timeoutHandle)
|
|
|
|
this.timeoutHandle = undefined
|
|
|
|
}
|
|
|
|
|
|
|
|
this.display()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-10 15:09:32 +00:00
|
|
|
/**
|
|
|
|
* Download the cache using the Actions toolkit http-client
|
|
|
|
*
|
|
|
|
* @param archiveLocation the URL for the cache
|
|
|
|
* @param archivePath the local path where the cache is saved
|
|
|
|
*/
|
|
|
|
export async function downloadCacheHttpClient(
|
|
|
|
archiveLocation: string,
|
|
|
|
archivePath: string
|
|
|
|
): Promise<void> {
|
|
|
|
const writeStream = fs.createWriteStream(archivePath)
|
|
|
|
const httpClient = new HttpClient('actions/cache')
|
|
|
|
const downloadResponse = await retryHttpClientResponse(
|
|
|
|
'downloadCache',
|
|
|
|
async () => httpClient.get(archiveLocation)
|
|
|
|
)
|
|
|
|
|
|
|
|
// Abort download if no traffic received over the socket.
|
|
|
|
downloadResponse.message.socket.setTimeout(SocketTimeout, () => {
|
|
|
|
downloadResponse.message.destroy()
|
|
|
|
core.debug(`Aborting download, socket timed out after ${SocketTimeout} ms`)
|
|
|
|
})
|
|
|
|
|
|
|
|
await pipeResponseToStream(downloadResponse, writeStream)
|
|
|
|
|
|
|
|
// Validate download size.
|
|
|
|
const contentLengthHeader = downloadResponse.message.headers['content-length']
|
|
|
|
|
|
|
|
if (contentLengthHeader) {
|
|
|
|
const expectedLength = parseInt(contentLengthHeader)
|
2021-05-03 15:09:44 +00:00
|
|
|
const actualLength = utils.getArchiveFileSizeInBytes(archivePath)
|
2020-07-10 15:09:32 +00:00
|
|
|
|
|
|
|
if (actualLength !== expectedLength) {
|
|
|
|
throw new Error(
|
|
|
|
`Incomplete download. Expected file size: ${expectedLength}, actual file size: ${actualLength}`
|
|
|
|
)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
core.debug('Unable to validate download, no Content-Length header')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Download the cache using the Azure Storage SDK. Only call this method if the
|
|
|
|
* URL points to an Azure Storage endpoint.
|
|
|
|
*
|
|
|
|
* @param archiveLocation the URL for the cache
|
|
|
|
* @param archivePath the local path where the cache is saved
|
|
|
|
* @param options the download options with the defaults set
|
|
|
|
*/
|
|
|
|
export async function downloadCacheStorageSDK(
|
|
|
|
archiveLocation: string,
|
|
|
|
archivePath: string,
|
|
|
|
options: DownloadOptions
|
|
|
|
): Promise<void> {
|
|
|
|
const client = new BlockBlobClient(archiveLocation, undefined, {
|
|
|
|
retryOptions: {
|
|
|
|
// Override the timeout used when downloading each 4 MB chunk
|
|
|
|
// The default is 2 min / MB, which is way too slow
|
|
|
|
tryTimeoutInMs: options.timeoutInMs
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
const properties = await client.getProperties()
|
|
|
|
const contentLength = properties.contentLength ?? -1
|
|
|
|
|
|
|
|
if (contentLength < 0) {
|
|
|
|
// We should never hit this condition, but just in case fall back to downloading the
|
|
|
|
// file as one large stream
|
|
|
|
core.debug(
|
|
|
|
'Unable to determine content length, downloading file with http-client...'
|
|
|
|
)
|
|
|
|
|
|
|
|
await downloadCacheHttpClient(archiveLocation, archivePath)
|
|
|
|
} else {
|
|
|
|
// Use downloadToBuffer for faster downloads, since internally it splits the
|
|
|
|
// file into 4 MB chunks which can then be parallelized and retried independently
|
|
|
|
//
|
|
|
|
// If the file exceeds the buffer maximum length (~1 GB on 32-bit systems and ~2 GB
|
|
|
|
// on 64-bit systems), split the download into multiple segments
|
|
|
|
const maxSegmentSize = buffer.constants.MAX_LENGTH
|
2020-06-20 21:53:27 +00:00
|
|
|
const downloadProgress = new DownloadProgress(contentLength)
|
2020-07-10 15:09:32 +00:00
|
|
|
|
|
|
|
const fd = fs.openSync(archivePath, 'w')
|
|
|
|
|
|
|
|
try {
|
2020-06-20 21:53:27 +00:00
|
|
|
downloadProgress.startDisplayTimer()
|
|
|
|
|
|
|
|
while (!downloadProgress.isDone()) {
|
2020-07-20 20:19:26 +00:00
|
|
|
const segmentStart =
|
|
|
|
downloadProgress.segmentOffset + downloadProgress.segmentSize
|
|
|
|
|
2020-06-20 21:53:27 +00:00
|
|
|
const segmentSize = Math.min(
|
|
|
|
maxSegmentSize,
|
2020-07-20 20:19:26 +00:00
|
|
|
contentLength - segmentStart
|
2020-07-10 15:09:32 +00:00
|
|
|
)
|
|
|
|
|
2020-06-20 21:53:27 +00:00
|
|
|
downloadProgress.nextSegment(segmentSize)
|
2020-07-10 15:09:32 +00:00
|
|
|
|
2020-06-20 21:53:27 +00:00
|
|
|
const result = await client.downloadToBuffer(
|
2020-07-20 20:19:26 +00:00
|
|
|
segmentStart,
|
2020-06-20 21:53:27 +00:00
|
|
|
segmentSize,
|
|
|
|
{
|
|
|
|
concurrency: options.downloadConcurrency,
|
2020-07-13 21:07:58 +00:00
|
|
|
onProgress: downloadProgress.onProgress()
|
2020-06-20 21:53:27 +00:00
|
|
|
}
|
|
|
|
)
|
2020-07-10 15:09:32 +00:00
|
|
|
|
2020-06-20 21:53:27 +00:00
|
|
|
fs.writeFileSync(fd, result)
|
2020-07-10 15:09:32 +00:00
|
|
|
}
|
|
|
|
} finally {
|
2020-06-20 21:53:27 +00:00
|
|
|
downloadProgress.stopDisplayTimer()
|
2020-07-10 15:09:32 +00:00
|
|
|
fs.closeSync(fd)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|