@actions/cache 1.0.5 → 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,215 +1,216 @@
1
- "use strict";
2
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
- return new (P || (P = Promise))(function (resolve, reject) {
5
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
- step((generator = generator.apply(thisArg, _arguments || [])).next());
9
- });
10
- };
11
- var __importStar = (this && this.__importStar) || function (mod) {
12
- if (mod && mod.__esModule) return mod;
13
- var result = {};
14
- if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
15
- result["default"] = mod;
16
- return result;
17
- };
18
- Object.defineProperty(exports, "__esModule", { value: true });
19
- const core = __importStar(require("@actions/core"));
20
- const http_client_1 = require("@actions/http-client");
21
- const auth_1 = require("@actions/http-client/auth");
22
- const crypto = __importStar(require("crypto"));
23
- const fs = __importStar(require("fs"));
24
- const url_1 = require("url");
25
- const utils = __importStar(require("./cacheUtils"));
26
- const constants_1 = require("./constants");
27
- const downloadUtils_1 = require("./downloadUtils");
28
- const options_1 = require("../options");
29
- const requestUtils_1 = require("./requestUtils");
30
- const versionSalt = '1.0';
31
- function getCacheApiUrl(resource) {
32
- // Ideally we just use ACTIONS_CACHE_URL
33
- const baseUrl = (process.env['ACTIONS_CACHE_URL'] ||
34
- process.env['ACTIONS_RUNTIME_URL'] ||
35
- '').replace('pipelines', 'artifactcache');
36
- if (!baseUrl) {
37
- throw new Error('Cache Service Url not found, unable to restore cache.');
38
- }
39
- const url = `${baseUrl}_apis/artifactcache/${resource}`;
40
- core.debug(`Resource Url: ${url}`);
41
- return url;
42
- }
43
- function createAcceptHeader(type, apiVersion) {
44
- return `${type};api-version=${apiVersion}`;
45
- }
46
- function getRequestOptions() {
47
- const requestOptions = {
48
- headers: {
49
- Accept: createAcceptHeader('application/json', '6.0-preview.1')
50
- }
51
- };
52
- return requestOptions;
53
- }
54
- function createHttpClient() {
55
- const token = process.env['ACTIONS_RUNTIME_TOKEN'] || '';
56
- const bearerCredentialHandler = new auth_1.BearerCredentialHandler(token);
57
- return new http_client_1.HttpClient('actions/cache', [bearerCredentialHandler], getRequestOptions());
58
- }
59
- function getCacheVersion(paths, compressionMethod) {
60
- const components = paths.concat(!compressionMethod || compressionMethod === constants_1.CompressionMethod.Gzip
61
- ? []
62
- : [compressionMethod]);
63
- // Add salt to cache version to support breaking changes in cache entry
64
- components.push(versionSalt);
65
- return crypto
66
- .createHash('sha256')
67
- .update(components.join('|'))
68
- .digest('hex');
69
- }
70
- exports.getCacheVersion = getCacheVersion;
71
- function getCacheEntry(keys, paths, options) {
72
- return __awaiter(this, void 0, void 0, function* () {
73
- const httpClient = createHttpClient();
74
- const version = getCacheVersion(paths, options === null || options === void 0 ? void 0 : options.compressionMethod);
75
- const resource = `cache?keys=${encodeURIComponent(keys.join(','))}&version=${version}`;
76
- const response = yield requestUtils_1.retryTypedResponse('getCacheEntry', () => __awaiter(this, void 0, void 0, function* () { return httpClient.getJson(getCacheApiUrl(resource)); }));
77
- if (response.statusCode === 204) {
78
- return null;
79
- }
80
- if (!requestUtils_1.isSuccessStatusCode(response.statusCode)) {
81
- throw new Error(`Cache service responded with ${response.statusCode}`);
82
- }
83
- const cacheResult = response.result;
84
- const cacheDownloadUrl = cacheResult === null || cacheResult === void 0 ? void 0 : cacheResult.archiveLocation;
85
- if (!cacheDownloadUrl) {
86
- throw new Error('Cache not found.');
87
- }
88
- core.setSecret(cacheDownloadUrl);
89
- core.debug(`Cache Result:`);
90
- core.debug(JSON.stringify(cacheResult));
91
- return cacheResult;
92
- });
93
- }
94
- exports.getCacheEntry = getCacheEntry;
95
- function downloadCache(archiveLocation, archivePath, options) {
96
- return __awaiter(this, void 0, void 0, function* () {
97
- const archiveUrl = new url_1.URL(archiveLocation);
98
- const downloadOptions = options_1.getDownloadOptions(options);
99
- if (downloadOptions.useAzureSdk &&
100
- archiveUrl.hostname.endsWith('.blob.core.windows.net')) {
101
- // Use Azure storage SDK to download caches hosted on Azure to improve speed and reliability.
102
- yield downloadUtils_1.downloadCacheStorageSDK(archiveLocation, archivePath, downloadOptions);
103
- }
104
- else {
105
- // Otherwise, download using the Actions http-client.
106
- yield downloadUtils_1.downloadCacheHttpClient(archiveLocation, archivePath);
107
- }
108
- });
109
- }
110
- exports.downloadCache = downloadCache;
111
- // Reserve Cache
112
- function reserveCache(key, paths, options) {
113
- var _a, _b;
114
- return __awaiter(this, void 0, void 0, function* () {
115
- const httpClient = createHttpClient();
116
- const version = getCacheVersion(paths, options === null || options === void 0 ? void 0 : options.compressionMethod);
117
- const reserveCacheRequest = {
118
- key,
119
- version
120
- };
121
- const response = yield requestUtils_1.retryTypedResponse('reserveCache', () => __awaiter(this, void 0, void 0, function* () {
122
- return httpClient.postJson(getCacheApiUrl('caches'), reserveCacheRequest);
123
- }));
124
- return (_b = (_a = response === null || response === void 0 ? void 0 : response.result) === null || _a === void 0 ? void 0 : _a.cacheId) !== null && _b !== void 0 ? _b : -1;
125
- });
126
- }
127
- exports.reserveCache = reserveCache;
128
- function getContentRange(start, end) {
129
- // Format: `bytes start-end/filesize
130
- // start and end are inclusive
131
- // filesize can be *
132
- // For a 200 byte chunk starting at byte 0:
133
- // Content-Range: bytes 0-199/*
134
- return `bytes ${start}-${end}/*`;
135
- }
136
- function uploadChunk(httpClient, resourceUrl, openStream, start, end) {
137
- return __awaiter(this, void 0, void 0, function* () {
138
- core.debug(`Uploading chunk of size ${end -
139
- start +
140
- 1} bytes at offset ${start} with content range: ${getContentRange(start, end)}`);
141
- const additionalHeaders = {
142
- 'Content-Type': 'application/octet-stream',
143
- 'Content-Range': getContentRange(start, end)
144
- };
145
- const uploadChunkResponse = yield requestUtils_1.retryHttpClientResponse(`uploadChunk (start: ${start}, end: ${end})`, () => __awaiter(this, void 0, void 0, function* () {
146
- return httpClient.sendStream('PATCH', resourceUrl, openStream(), additionalHeaders);
147
- }));
148
- if (!requestUtils_1.isSuccessStatusCode(uploadChunkResponse.message.statusCode)) {
149
- throw new Error(`Cache service responded with ${uploadChunkResponse.message.statusCode} during upload chunk.`);
150
- }
151
- });
152
- }
153
- function uploadFile(httpClient, cacheId, archivePath, options) {
154
- return __awaiter(this, void 0, void 0, function* () {
155
- // Upload Chunks
156
- const fileSize = fs.statSync(archivePath).size;
157
- const resourceUrl = getCacheApiUrl(`caches/${cacheId.toString()}`);
158
- const fd = fs.openSync(archivePath, 'r');
159
- const uploadOptions = options_1.getUploadOptions(options);
160
- const concurrency = utils.assertDefined('uploadConcurrency', uploadOptions.uploadConcurrency);
161
- const maxChunkSize = utils.assertDefined('uploadChunkSize', uploadOptions.uploadChunkSize);
162
- const parallelUploads = [...new Array(concurrency).keys()];
163
- core.debug('Awaiting all uploads');
164
- let offset = 0;
165
- try {
166
- yield Promise.all(parallelUploads.map(() => __awaiter(this, void 0, void 0, function* () {
167
- while (offset < fileSize) {
168
- const chunkSize = Math.min(fileSize - offset, maxChunkSize);
169
- const start = offset;
170
- const end = offset + chunkSize - 1;
171
- offset += maxChunkSize;
172
- yield uploadChunk(httpClient, resourceUrl, () => fs
173
- .createReadStream(archivePath, {
174
- fd,
175
- start,
176
- end,
177
- autoClose: false
178
- })
179
- .on('error', error => {
180
- throw new Error(`Cache upload failed because file read failed with ${error.message}`);
181
- }), start, end);
182
- }
183
- })));
184
- }
185
- finally {
186
- fs.closeSync(fd);
187
- }
188
- return;
189
- });
190
- }
191
- function commitCache(httpClient, cacheId, filesize) {
192
- return __awaiter(this, void 0, void 0, function* () {
193
- const commitCacheRequest = { size: filesize };
194
- return yield requestUtils_1.retryTypedResponse('commitCache', () => __awaiter(this, void 0, void 0, function* () {
195
- return httpClient.postJson(getCacheApiUrl(`caches/${cacheId.toString()}`), commitCacheRequest);
196
- }));
197
- });
198
- }
199
- function saveCache(cacheId, archivePath, options) {
200
- return __awaiter(this, void 0, void 0, function* () {
201
- const httpClient = createHttpClient();
202
- core.debug('Upload cache');
203
- yield uploadFile(httpClient, cacheId, archivePath, options);
204
- // Commit Cache
205
- core.debug('Commiting cache');
206
- const cacheSize = utils.getArchiveFileSizeIsBytes(archivePath);
207
- const commitCacheResponse = yield commitCache(httpClient, cacheId, cacheSize);
208
- if (!requestUtils_1.isSuccessStatusCode(commitCacheResponse.statusCode)) {
209
- throw new Error(`Cache service responded with ${commitCacheResponse.statusCode} during commit cache.`);
210
- }
211
- core.info('Cache saved successfully');
212
- });
213
- }
214
- exports.saveCache = saveCache;
1
+ "use strict";
2
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
3
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
4
+ return new (P || (P = Promise))(function (resolve, reject) {
5
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
6
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
7
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
8
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
9
+ });
10
+ };
11
+ var __importStar = (this && this.__importStar) || function (mod) {
12
+ if (mod && mod.__esModule) return mod;
13
+ var result = {};
14
+ if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
15
+ result["default"] = mod;
16
+ return result;
17
+ };
18
+ Object.defineProperty(exports, "__esModule", { value: true });
19
+ const core = __importStar(require("@actions/core"));
20
+ const http_client_1 = require("@actions/http-client");
21
+ const auth_1 = require("@actions/http-client/auth");
22
+ const crypto = __importStar(require("crypto"));
23
+ const fs = __importStar(require("fs"));
24
+ const url_1 = require("url");
25
+ const utils = __importStar(require("./cacheUtils"));
26
+ const constants_1 = require("./constants");
27
+ const downloadUtils_1 = require("./downloadUtils");
28
+ const options_1 = require("../options");
29
+ const requestUtils_1 = require("./requestUtils");
30
+ const versionSalt = '1.0';
31
+ function getCacheApiUrl(resource) {
32
+ // Ideally we just use ACTIONS_CACHE_URL
33
+ const baseUrl = (process.env['ACTIONS_CACHE_URL'] ||
34
+ process.env['ACTIONS_RUNTIME_URL'] ||
35
+ '').replace('pipelines', 'artifactcache');
36
+ if (!baseUrl) {
37
+ throw new Error('Cache Service Url not found, unable to restore cache.');
38
+ }
39
+ const url = `${baseUrl}_apis/artifactcache/${resource}`;
40
+ core.debug(`Resource Url: ${url}`);
41
+ return url;
42
+ }
43
+ function createAcceptHeader(type, apiVersion) {
44
+ return `${type};api-version=${apiVersion}`;
45
+ }
46
+ function getRequestOptions() {
47
+ const requestOptions = {
48
+ headers: {
49
+ Accept: createAcceptHeader('application/json', '6.0-preview.1')
50
+ }
51
+ };
52
+ return requestOptions;
53
+ }
54
+ function createHttpClient() {
55
+ const token = process.env['ACTIONS_RUNTIME_TOKEN'] || '';
56
+ const bearerCredentialHandler = new auth_1.BearerCredentialHandler(token);
57
+ return new http_client_1.HttpClient('actions/cache', [bearerCredentialHandler], getRequestOptions());
58
+ }
59
+ function getCacheVersion(paths, compressionMethod) {
60
+ const components = paths.concat(!compressionMethod || compressionMethod === constants_1.CompressionMethod.Gzip
61
+ ? []
62
+ : [compressionMethod]);
63
+ // Add salt to cache version to support breaking changes in cache entry
64
+ components.push(versionSalt);
65
+ return crypto
66
+ .createHash('sha256')
67
+ .update(components.join('|'))
68
+ .digest('hex');
69
+ }
70
+ exports.getCacheVersion = getCacheVersion;
71
+ function getCacheEntry(keys, paths, options) {
72
+ return __awaiter(this, void 0, void 0, function* () {
73
+ const httpClient = createHttpClient();
74
+ const version = getCacheVersion(paths, options === null || options === void 0 ? void 0 : options.compressionMethod);
75
+ const resource = `cache?keys=${encodeURIComponent(keys.join(','))}&version=${version}`;
76
+ const response = yield requestUtils_1.retryTypedResponse('getCacheEntry', () => __awaiter(this, void 0, void 0, function* () { return httpClient.getJson(getCacheApiUrl(resource)); }));
77
+ if (response.statusCode === 204) {
78
+ return null;
79
+ }
80
+ if (!requestUtils_1.isSuccessStatusCode(response.statusCode)) {
81
+ throw new Error(`Cache service responded with ${response.statusCode}`);
82
+ }
83
+ const cacheResult = response.result;
84
+ const cacheDownloadUrl = cacheResult === null || cacheResult === void 0 ? void 0 : cacheResult.archiveLocation;
85
+ if (!cacheDownloadUrl) {
86
+ throw new Error('Cache not found.');
87
+ }
88
+ core.setSecret(cacheDownloadUrl);
89
+ core.debug(`Cache Result:`);
90
+ core.debug(JSON.stringify(cacheResult));
91
+ return cacheResult;
92
+ });
93
+ }
94
+ exports.getCacheEntry = getCacheEntry;
95
+ function downloadCache(archiveLocation, archivePath, options) {
96
+ return __awaiter(this, void 0, void 0, function* () {
97
+ const archiveUrl = new url_1.URL(archiveLocation);
98
+ const downloadOptions = options_1.getDownloadOptions(options);
99
+ if (downloadOptions.useAzureSdk &&
100
+ archiveUrl.hostname.endsWith('.blob.core.windows.net')) {
101
+ // Use Azure storage SDK to download caches hosted on Azure to improve speed and reliability.
102
+ yield downloadUtils_1.downloadCacheStorageSDK(archiveLocation, archivePath, downloadOptions);
103
+ }
104
+ else {
105
+ // Otherwise, download using the Actions http-client.
106
+ yield downloadUtils_1.downloadCacheHttpClient(archiveLocation, archivePath);
107
+ }
108
+ });
109
+ }
110
+ exports.downloadCache = downloadCache;
111
+ // Reserve Cache
112
+ function reserveCache(key, paths, options) {
113
+ var _a, _b;
114
+ return __awaiter(this, void 0, void 0, function* () {
115
+ const httpClient = createHttpClient();
116
+ const version = getCacheVersion(paths, options === null || options === void 0 ? void 0 : options.compressionMethod);
117
+ const reserveCacheRequest = {
118
+ key,
119
+ version
120
+ };
121
+ const response = yield requestUtils_1.retryTypedResponse('reserveCache', () => __awaiter(this, void 0, void 0, function* () {
122
+ return httpClient.postJson(getCacheApiUrl('caches'), reserveCacheRequest);
123
+ }));
124
+ return (_b = (_a = response === null || response === void 0 ? void 0 : response.result) === null || _a === void 0 ? void 0 : _a.cacheId) !== null && _b !== void 0 ? _b : -1;
125
+ });
126
+ }
127
+ exports.reserveCache = reserveCache;
128
+ function getContentRange(start, end) {
129
+ // Format: `bytes start-end/filesize
130
+ // start and end are inclusive
131
+ // filesize can be *
132
+ // For a 200 byte chunk starting at byte 0:
133
+ // Content-Range: bytes 0-199/*
134
+ return `bytes ${start}-${end}/*`;
135
+ }
136
+ function uploadChunk(httpClient, resourceUrl, openStream, start, end) {
137
+ return __awaiter(this, void 0, void 0, function* () {
138
+ core.debug(`Uploading chunk of size ${end -
139
+ start +
140
+ 1} bytes at offset ${start} with content range: ${getContentRange(start, end)}`);
141
+ const additionalHeaders = {
142
+ 'Content-Type': 'application/octet-stream',
143
+ 'Content-Range': getContentRange(start, end)
144
+ };
145
+ const uploadChunkResponse = yield requestUtils_1.retryHttpClientResponse(`uploadChunk (start: ${start}, end: ${end})`, () => __awaiter(this, void 0, void 0, function* () {
146
+ return httpClient.sendStream('PATCH', resourceUrl, openStream(), additionalHeaders);
147
+ }));
148
+ if (!requestUtils_1.isSuccessStatusCode(uploadChunkResponse.message.statusCode)) {
149
+ throw new Error(`Cache service responded with ${uploadChunkResponse.message.statusCode} during upload chunk.`);
150
+ }
151
+ });
152
+ }
153
+ function uploadFile(httpClient, cacheId, archivePath, options) {
154
+ return __awaiter(this, void 0, void 0, function* () {
155
+ // Upload Chunks
156
+ const fileSize = utils.getArchiveFileSizeInBytes(archivePath);
157
+ const resourceUrl = getCacheApiUrl(`caches/${cacheId.toString()}`);
158
+ const fd = fs.openSync(archivePath, 'r');
159
+ const uploadOptions = options_1.getUploadOptions(options);
160
+ const concurrency = utils.assertDefined('uploadConcurrency', uploadOptions.uploadConcurrency);
161
+ const maxChunkSize = utils.assertDefined('uploadChunkSize', uploadOptions.uploadChunkSize);
162
+ const parallelUploads = [...new Array(concurrency).keys()];
163
+ core.debug('Awaiting all uploads');
164
+ let offset = 0;
165
+ try {
166
+ yield Promise.all(parallelUploads.map(() => __awaiter(this, void 0, void 0, function* () {
167
+ while (offset < fileSize) {
168
+ const chunkSize = Math.min(fileSize - offset, maxChunkSize);
169
+ const start = offset;
170
+ const end = offset + chunkSize - 1;
171
+ offset += maxChunkSize;
172
+ yield uploadChunk(httpClient, resourceUrl, () => fs
173
+ .createReadStream(archivePath, {
174
+ fd,
175
+ start,
176
+ end,
177
+ autoClose: false
178
+ })
179
+ .on('error', error => {
180
+ throw new Error(`Cache upload failed because file read failed with ${error.message}`);
181
+ }), start, end);
182
+ }
183
+ })));
184
+ }
185
+ finally {
186
+ fs.closeSync(fd);
187
+ }
188
+ return;
189
+ });
190
+ }
191
+ function commitCache(httpClient, cacheId, filesize) {
192
+ return __awaiter(this, void 0, void 0, function* () {
193
+ const commitCacheRequest = { size: filesize };
194
+ return yield requestUtils_1.retryTypedResponse('commitCache', () => __awaiter(this, void 0, void 0, function* () {
195
+ return httpClient.postJson(getCacheApiUrl(`caches/${cacheId.toString()}`), commitCacheRequest);
196
+ }));
197
+ });
198
+ }
199
+ function saveCache(cacheId, archivePath, options) {
200
+ return __awaiter(this, void 0, void 0, function* () {
201
+ const httpClient = createHttpClient();
202
+ core.debug('Upload cache');
203
+ yield uploadFile(httpClient, cacheId, archivePath, options);
204
+ // Commit Cache
205
+ core.debug('Commiting cache');
206
+ const cacheSize = utils.getArchiveFileSizeInBytes(archivePath);
207
+ core.info(`Cache Size: ~${Math.round(cacheSize / (1024 * 1024))} MB (${cacheSize} B)`);
208
+ const commitCacheResponse = yield commitCache(httpClient, cacheId, cacheSize);
209
+ if (!requestUtils_1.isSuccessStatusCode(commitCacheResponse.statusCode)) {
210
+ throw new Error(`Cache service responded with ${commitCacheResponse.statusCode} during commit cache.`);
211
+ }
212
+ core.info('Cache saved successfully');
213
+ });
214
+ }
215
+ exports.saveCache = saveCache;
215
216
  //# sourceMappingURL=cacheHttpClient.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"cacheHttpClient.js","sourceRoot":"","sources":["../../src/internal/cacheHttpClient.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"cacheHttpClient.js","sourceRoot":"","sources":["../../src/internal/cacheHttpClient.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAAA,oDAAqC;AACrC,sDAA+C;AAC/C,oDAAiE;AAEjE,+CAAgC;AAChC,uCAAwB;AACxB,6BAAuB;AAEvB,oDAAqC;AACrC,2CAA6C;AAQ7C,mDAAgF;AAChF,wCAKmB;AACnB,iDAIuB;AAEvB,MAAM,WAAW,GAAG,KAAK,CAAA;AAEzB,SAAS,cAAc,CAAC,QAAgB;IACtC,wCAAwC;IACxC,MAAM,OAAO,GAAW,CACtB,OAAO,CAAC,GAAG,CAAC,mBAAmB,CAAC;QAChC,OAAO,CAAC,GAAG,CAAC,qBAAqB,CAAC;QAClC,EAAE,CACH,CAAC,OAAO,CAAC,WAAW,EAAE,eAAe,CAAC,CAAA;IACvC,IAAI,CAAC,OAAO,EAAE;QACZ,MAAM,IAAI,KAAK,CAAC,uDAAuD,CAAC,CAAA;KACzE;IAED,MAAM,GAAG,GAAG,GAAG,OAAO,uBAAuB,QAAQ,EAAE,CAAA;IACvD,IAAI,CAAC,KAAK,CAAC,iBAAiB,GAAG,EAAE,CAAC,CAAA;IAClC,OAAO,GAAG,CAAA;AACZ,CAAC;AAED,SAAS,kBAAkB,CAAC,IAAY,EAAE,UAAkB;IAC1D,OAAO,GAAG,IAAI,gBAAgB,UAAU,EAAE,CAAA;AAC5C,CAAC;AAED,SAAS,iBAAiB;IACxB,MAAM,cAAc,GAAoB;QACtC,OAAO,EAAE;YACP,MAAM,EAAE,kBAAkB,CAAC,kBAAkB,EAAE,eAAe,CAAC;SAChE;KACF,CAAA;IAED,OAAO,cAAc,CAAA;AACvB,CAAC;AAED,SAAS,gBAAgB;IACvB,MAAM,KAAK,GAAG,OAAO,CAAC,GAAG,CAAC,uBAAuB,CAAC,IAAI,EAAE,CAAA;IACxD,MAAM,uBAAuB,GAAG,IAAI,8BAAuB,CAAC,KAAK,CAAC,CAAA;IAElE,OAAO,IAAI,wBAAU,CACnB,eAAe,EACf,CAAC,uBAAuB,CAAC,EACzB,iBAAiB,EAAE,CACpB,CAAA;AACH,CAAC;AAED,SAAgB,eAAe,CAC7B,KAAe,EACf,iBAAqC;IAErC,MAAM,UAAU,GAAG,KAAK,CAAC,MAAM,CAC7B,CAAC,iBAAiB,IAAI,iBAAiB,KAAK,6BAAiB,CAAC,IAAI;QAChE,CAAC,CAAC,EAAE;QACJ,CAAC,CAAC,CAAC,iBAAiB,CAAC,CACxB,CAAA;IAED,uEAAuE;IACvE,UAAU,CAAC,IAAI,CAAC,WAAW,CAAC,CAAA;IAE5B,OAAO,MAAM;SACV,UAAU,CAAC,QAAQ,CAAC;SACpB,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;SAC5B,MAAM,CAAC,KAAK,CAAC,CAAA;AAClB,CAAC;AAjBD,0CAiBC;AAED,SAAsB,aAAa,CACjC,IAAc,EACd,KAAe,EACf,OAA8B;;QAE9B,MAAM,UAAU,GAAG,gBAAgB,EAAE,CAAA;QACrC,MAAM,OAAO,GAAG,eAAe,CAAC,KAAK,EAAE,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,iBAAiB,CAAC,CAAA;QAClE,MAAM,QAAQ,GAAG,cAAc,kBAAkB,CAC/C,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CACf,YAAY,OAAO,EAAE,CAAA;QAEtB,MAAM,QAAQ,GAAG,MAAM,iCAAkB,CAAC,eAAe,EAAE,GAAS,EAAE,gDACpE,OAAA,UAAU,CAAC,OAAO,CAAqB,cAAc,CAAC,QAAQ,CAAC,CAAC,CAAA,GAAA,CACjE,CAAA;QACD,IAAI,QAAQ,CAAC,UAAU,KAAK,GAAG,EAAE;YAC/B,OAAO,IAAI,CAAA;SACZ;QACD,IAAI,CAAC,kCAAmB,CAAC,QAAQ,CAAC,UAAU,CAAC,EAAE;YAC7C,MAAM,IAAI,KAAK,CAAC,gCAAgC,QAAQ,CAAC,UAAU,EAAE,CAAC,CAAA;SACvE;QAED,MAAM,WAAW,GAAG,QAAQ,CAAC,MAAM,CAAA;QACnC,MAAM,gBAAgB,GAAG,WAAW,aAAX,WAAW,uBAAX,WAAW,CAAE,eAAe,CAAA;QACrD,IAAI,CAAC,gBAAgB,EAAE;YACrB,MAAM,IAAI,KAAK,CAAC,kBAAkB,CAAC,CAAA;SACpC;QACD,IAAI,CAAC,SAAS,CAAC,gBAAgB,CAAC,CAAA;QAChC,IAAI,CAAC,KAAK,CAAC,eAAe,CAAC,CAAA;QAC3B,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,WAAW,CAAC,CAAC,CAAA;QAEvC,OAAO,WAAW,CAAA;IACpB,CAAC;CAAA;AA/BD,sCA+BC;AAED,SAAsB,aAAa,CACjC,eAAuB,EACvB,WAAmB,EACnB,OAAyB;;QAEzB,MAAM,UAAU,GAAG,IAAI,SAAG,CAAC,eAAe,CAAC,CAAA;QAC3C,MAAM,eAAe,GAAG,4BAAkB,CAAC,OAAO,CAAC,CAAA;QAEnD,IACE,eAAe,CAAC,WAAW;YAC3B,UAAU,CAAC,QAAQ,CAAC,QAAQ,CAAC,wBAAwB,CAAC,EACtD;YACA,6FAA6F;YAC7F,MAAM,uCAAuB,CAAC,eAAe,EAAE,WAAW,EAAE,eAAe,CAAC,CAAA;SAC7E;aAAM;YACL,qDAAqD;YACrD,MAAM,uCAAuB,CAAC,eAAe,EAAE,WAAW,CAAC,CAAA;SAC5D;IACH,CAAC;CAAA;AAlBD,sCAkBC;AAED,gBAAgB;AAChB,SAAsB,YAAY,CAChC,GAAW,EACX,KAAe,EACf,OAA8B;;;QAE9B,MAAM,UAAU,GAAG,gBAAgB,EAAE,CAAA;QACrC,MAAM,OAAO,GAAG,eAAe,CAAC,KAAK,EAAE,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,iBAAiB,CAAC,CAAA;QAElE,MAAM,mBAAmB,GAAwB;YAC/C,GAAG;YACH,OAAO;SACR,CAAA;QACD,MAAM,QAAQ,GAAG,MAAM,iCAAkB,CAAC,cAAc,EAAE,GAAS,EAAE;YACnE,OAAA,UAAU,CAAC,QAAQ,CACjB,cAAc,CAAC,QAAQ,CAAC,EACxB,mBAAmB,CACpB,CAAA;UAAA,CACF,CAAA;QACD,mBAAO,QAAQ,aAAR,QAAQ,uBAAR,QAAQ,CAAE,MAAM,0CAAE,OAAO,mCAAI,CAAC,CAAC,CAAA;;CACvC;AAnBD,oCAmBC;AAED,SAAS,eAAe,CAAC,KAAa,EAAE,GAAW;IACjD,oCAAoC;IACpC,8BAA8B;IAC9B,oBAAoB;IACpB,2CAA2C;IAC3C,+BAA+B;IAC/B,OAAO,SAAS,KAAK,IAAI,GAAG,IAAI,CAAA;AAClC,CAAC;AAED,SAAe,WAAW,CACxB,UAAsB,EACtB,WAAmB,EACnB,UAAuC,EACvC,KAAa,EACb,GAAW;;QAEX,IAAI,CAAC,KAAK,CACR,2BAA2B,GAAG;YAC5B,KAAK;YACL,CAAC,oBAAoB,KAAK,wBAAwB,eAAe,CACjE,KAAK,EACL,GAAG,CACJ,EAAE,CACJ,CAAA;QACD,MAAM,iBAAiB,GAAG;YACxB,cAAc,EAAE,0BAA0B;YAC1C,eAAe,EAAE,eAAe,CAAC,KAAK,EAAE,GAAG,CAAC;SAC7C,CAAA;QAED,MAAM,mBAAmB,GAAG,MAAM,sCAAuB,CACvD,uBAAuB,KAAK,UAAU,GAAG,GAAG,EAC5C,GAAS,EAAE;YACT,OAAA,UAAU,CAAC,UAAU,CACnB,OAAO,EACP,WAAW,EACX,UAAU,EAAE,EACZ,iBAAiB,CAClB,CAAA;UAAA,CACJ,CAAA;QAED,IAAI,CAAC,kCAAmB,CAAC,mBAAmB,CAAC,OAAO,CAAC,UAAU,CAAC,EAAE;YAChE,MAAM,IAAI,KAAK,CACb,gCAAgC,mBAAmB,CAAC,OAAO,CAAC,UAAU,uBAAuB,CAC9F,CAAA;SACF;IACH,CAAC;CAAA;AAED,SAAe,UAAU,CACvB,UAAsB,EACtB,OAAe,EACf,WAAmB,EACnB,OAAuB;;QAEvB,gBAAgB;QAChB,MAAM,QAAQ,GAAG,KAAK,CAAC,yBAAyB,CAAC,WAAW,CAAC,CAAA;QAC7D,MAAM,WAAW,GAAG,cAAc,CAAC,UAAU,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,CAAA;QAClE,MAAM,EAAE,GAAG,EAAE,CAAC,QAAQ,CAAC,WAAW,EAAE,GAAG,CAAC,CAAA;QACxC,MAAM,aAAa,GAAG,0BAAgB,CAAC,OAAO,CAAC,CAAA;QAE/C,MAAM,WAAW,GAAG,KAAK,CAAC,aAAa,CACrC,mBAAmB,EACnB,aAAa,CAAC,iBAAiB,CAChC,CAAA;QACD,MAAM,YAAY,GAAG,KAAK,CAAC,aAAa,CACtC,iBAAiB,EACjB,aAAa,CAAC,eAAe,CAC9B,CAAA;QAED,MAAM,eAAe,GAAG,CAAC,GAAG,IAAI,KAAK,CAAC,WAAW,CAAC,CAAC,IAAI,EAAE,CAAC,CAAA;QAC1D,IAAI,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAA;QAClC,IAAI,MAAM,GAAG,CAAC,CAAA;QAEd,IAAI;YACF,MAAM,OAAO,CAAC,GAAG,CACf,eAAe,CAAC,GAAG,CAAC,GAAS,EAAE;gBAC7B,OAAO,MAAM,GAAG,QAAQ,EAAE;oBACxB,MAAM,SAAS,GAAG,IAAI,CAAC,GAAG,CAAC,QAAQ,GAAG,MAAM,EAAE,YAAY,CAAC,CAAA;oBAC3D,MAAM,KAAK,GAAG,MAAM,CAAA;oBACpB,MAAM,GAAG,GAAG,MAAM,GAAG,SAAS,GAAG,CAAC,CAAA;oBAClC,MAAM,IAAI,YAAY,CAAA;oBAEtB,MAAM,WAAW,CACf,UAAU,EACV,WAAW,EACX,GAAG,EAAE,CACH,EAAE;yBACC,gBAAgB,CAAC,WAAW,EAAE;wBAC7B,EAAE;wBACF,KAAK;wBACL,GAAG;wBACH,SAAS,EAAE,KAAK;qBACjB,CAAC;yBACD,EAAE,CAAC,OAAO,EAAE,KAAK,CAAC,EAAE;wBACnB,MAAM,IAAI,KAAK,CACb,qDAAqD,KAAK,CAAC,OAAO,EAAE,CACrE,CAAA;oBACH,CAAC,CAAC,EACN,KAAK,EACL,GAAG,CACJ,CAAA;iBACF;YACH,CAAC,CAAA,CAAC,CACH,CAAA;SACF;gBAAS;YACR,EAAE,CAAC,SAAS,CAAC,EAAE,CAAC,CAAA;SACjB;QACD,OAAM;IACR,CAAC;CAAA;AAED,SAAe,WAAW,CACxB,UAAsB,EACtB,OAAe,EACf,QAAgB;;QAEhB,MAAM,kBAAkB,GAAuB,EAAC,IAAI,EAAE,QAAQ,EAAC,CAAA;QAC/D,OAAO,MAAM,iCAAkB,CAAC,aAAa,EAAE,GAAS,EAAE;YACxD,OAAA,UAAU,CAAC,QAAQ,CACjB,cAAc,CAAC,UAAU,OAAO,CAAC,QAAQ,EAAE,EAAE,CAAC,EAC9C,kBAAkB,CACnB,CAAA;UAAA,CACF,CAAA;IACH,CAAC;CAAA;AAED,SAAsB,SAAS,CAC7B,OAAe,EACf,WAAmB,EACnB,OAAuB;;QAEvB,MAAM,UAAU,GAAG,gBAAgB,EAAE,CAAA;QAErC,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,CAAA;QAC1B,MAAM,UAAU,CAAC,UAAU,EAAE,OAAO,EAAE,WAAW,EAAE,OAAO,CAAC,CAAA;QAE3D,eAAe;QACf,IAAI,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAA;QAC7B,MAAM,SAAS,GAAG,KAAK,CAAC,yBAAyB,CAAC,WAAW,CAAC,CAAA;QAC9D,IAAI,CAAC,IAAI,CACP,gBAAgB,IAAI,CAAC,KAAK,CAAC,SAAS,GAAG,CAAC,IAAI,GAAG,IAAI,CAAC,CAAC,QAAQ,SAAS,KAAK,CAC5E,CAAA;QAED,MAAM,mBAAmB,GAAG,MAAM,WAAW,CAAC,UAAU,EAAE,OAAO,EAAE,SAAS,CAAC,CAAA;QAC7E,IAAI,CAAC,kCAAmB,CAAC,mBAAmB,CAAC,UAAU,CAAC,EAAE;YACxD,MAAM,IAAI,KAAK,CACb,gCAAgC,mBAAmB,CAAC,UAAU,uBAAuB,CACtF,CAAA;SACF;QAED,IAAI,CAAC,IAAI,CAAC,0BAA0B,CAAC,CAAA;IACvC,CAAC;CAAA;AAzBD,8BAyBC"}
@@ -1,11 +1,11 @@
1
- /// <reference types="node" />
2
- import * as fs from 'fs';
3
- import { CompressionMethod } from './constants';
4
- export declare function createTempDirectory(): Promise<string>;
5
- export declare function getArchiveFileSizeIsBytes(filePath: string): number;
6
- export declare function resolvePaths(patterns: string[]): Promise<string[]>;
7
- export declare function unlinkFile(filePath: fs.PathLike): Promise<void>;
8
- export declare function getCompressionMethod(): Promise<CompressionMethod>;
9
- export declare function getCacheFileName(compressionMethod: CompressionMethod): string;
10
- export declare function isGnuTarInstalled(): Promise<boolean>;
11
- export declare function assertDefined<T>(name: string, value?: T): T;
1
+ /// <reference types="node" />
2
+ import * as fs from 'fs';
3
+ import { CompressionMethod } from './constants';
4
+ export declare function createTempDirectory(): Promise<string>;
5
+ export declare function getArchiveFileSizeInBytes(filePath: string): number;
6
+ export declare function resolvePaths(patterns: string[]): Promise<string[]>;
7
+ export declare function unlinkFile(filePath: fs.PathLike): Promise<void>;
8
+ export declare function getCompressionMethod(): Promise<CompressionMethod>;
9
+ export declare function getCacheFileName(compressionMethod: CompressionMethod): string;
10
+ export declare function isGnuTarInstalled(): Promise<boolean>;
11
+ export declare function assertDefined<T>(name: string, value?: T): T;