aboutsummaryrefslogtreecommitdiff
path: root/node_modules/nexe/lib/steps/artifacts.js
blob: d152178747999c356f63b559d78f0d72ab0f9b97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
    function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
    return new (P || (P = Promise))(function (resolve, reject) {
        function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
        function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
        function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
        step((generator = generator.apply(thisArg, _arguments || [])).next());
    });
};
Object.defineProperty(exports, "__esModule", { value: true });
const path_1 = require("path");
const fs = require("fs");
const util_1 = require("util");
const util_2 = require("../util");
const mkdirpAsync = require("mkdirp");
const unlinkAsync = util_1.promisify(fs.unlink), readdirAsync = util_1.promisify(fs.readdir);
function readDirAsync(dir) {
    return readdirAsync(dir).then((paths) => {
        return Promise.all(paths.map((file) => {
            const path = path_1.join(dir, file);
            return util_2.isDirectoryAsync(path).then((x) => (x ? readDirAsync(path) : path));
        })).then((result) => {
            return [].concat(...result);
        });
    });
}
function maybeReadFileContentsAsync(file) {
    return util_2.readFileAsync(file, 'utf-8').catch((e) => {
        if (e.code === 'ENOENT') {
            return '';
        }
        throw e;
    });
}
/**
 * The artifacts step is where source patches are committed, or written as "artifacts"
 * Steps:
 *  - A temporary directory is created in the downloaded source
 *  - On start, any files in that directory are restored into the source tree
 *  - After the patch functions have run, the temporary directory is emptied
 *  - Original versions of sources to be patched are written to the temporary directory
 *  - Finally, The patched files are written into source.
 */
function artifacts(compiler, next) {
    return __awaiter(this, void 0, void 0, function* () {
        const { src } = compiler;
        const temp = path_1.join(src, 'nexe');
        yield mkdirpAsync(temp);
        const tmpFiles = yield readDirAsync(temp);
        yield Promise.all(tmpFiles.map((path) => __awaiter(this, void 0, void 0, function* () {
            return compiler.writeFileAsync(path.replace(temp, ''), yield util_2.readFileAsync(path, 'utf-8'));
        })));
        yield next();
        yield Promise.all(tmpFiles.map((x) => unlinkAsync(x)));
        return Promise.all(compiler.files.map((file) => __awaiter(this, void 0, void 0, function* () {
            const sourceFile = path_1.join(src, file.filename);
            const tempFile = path_1.join(temp, file.filename);
            const fileContents = yield maybeReadFileContentsAsync(sourceFile);
            yield mkdirpAsync(path_1.dirname(tempFile));
            yield util_2.writeFileAsync(tempFile, fileContents);
            yield compiler.writeFileAsync(file.filename, file.contents);
        })));
    });
}
exports.default = artifacts;