Files
codeql-action/lib/sarif-cache.js
T
Esben Sparre Andreasen 766aa7fda1 merge chris
2020-12-10 11:29:11 +01:00

82 lines
3.3 KiB
JavaScript
Generated

"use strict";
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.copySARIFResults = exports.restoreSARIFResults = exports.skipAnalysis = exports.saveSARIFResults = void 0;
const fs = __importStar(require("fs"));
const path = __importStar(require("path"));
const cache = __importStar(require("@actions/cache"));
const CACHE_KEY = "cheating-static-key"; // TODO
async function getSARIFCachePath() {
const runnerTemp = process.env.RUNNER_TEMP;
if (runnerTemp === undefined) {
return undefined;
}
return path.join(runnerTemp, "codeql-results-cache");
}
async function saveSARIFResults(outputPath) {
const sarifCachePath = await getSARIFCachePath();
if (sarifCachePath === undefined) {
return;
}
if (!await fs.existsSync(sarifCachePath)) {
await fs.promises.mkdir(sarifCachePath);
}
let outputSARIFNames = await fs.promises.readdir(outputPath);
for (let outputSARIFName of outputSARIFNames) {
let outputSARIFPath = path.join(outputPath, outputSARIFName);
let cachedSARIFPath = path.join(sarifCachePath, path.relative(outputPath, outputSARIFPath));
await fs.promises.copyFile(outputSARIFPath, cachedSARIFPath);
}
await cache.saveCache([sarifCachePath], CACHE_KEY);
}
exports.saveSARIFResults = saveSARIFResults;
async function skipAnalysis() {
const sarifCachePath = await getSARIFCachePath();
if (sarifCachePath === undefined) {
return false;
}
let cachedSARIFPaths = await fs.promises.readdir(sarifCachePath);
return cachedSARIFPaths.length > 0; // TODO
}
exports.skipAnalysis = skipAnalysis;
async function restoreSARIFResults() {
const sarifCachePath = await getSARIFCachePath();
if (sarifCachePath === undefined) {
return;
}
await fs.promises.mkdir(sarifCachePath);
await cache.restoreCache([sarifCachePath], CACHE_KEY);
}
exports.restoreSARIFResults = restoreSARIFResults;
async function copySARIFResults(outputPath) {
const sarifCachePath = await getSARIFCachePath();
if (sarifCachePath === undefined) {
return;
}
let cachedSARIFNames = await fs.promises.readdir(sarifCachePath);
for (let cachedSARIFName of cachedSARIFNames) {
let cachedSARIFPath = path.join(sarifCachePath, cachedSARIFName);
let outputSARIFPath = path.join(outputPath, path.relative(sarifCachePath, cachedSARIFPath));
await fs.promises.copyFile(cachedSARIFPath, outputSARIFPath);
}
}
exports.copySARIFResults = copySARIFResults;
//# sourceMappingURL=sarif-cache.js.map