2019-03-02 04:51:11 +07:00
|
|
|
/*---------------------------------------------------------------------------------------------
|
|
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
import * as nls from "vs/nls";
|
2019-03-22 02:04:09 +07:00
|
|
|
import * as vszip from "vszip";
|
2019-03-02 04:51:11 +07:00
|
|
|
import * as fs from "fs";
|
|
|
|
import * as path from "path";
|
|
|
|
import * as tarStream from "tar-stream";
|
|
|
|
import { promisify } from "util";
|
|
|
|
import { CancellationToken } from "vs/base/common/cancellation";
|
|
|
|
import { mkdirp } from "vs/base/node/pfs";
|
|
|
|
|
|
|
|
export interface IExtractOptions {
|
|
|
|
overwrite?: boolean;
|
|
|
|
|
|
|
|
/**
|
2019-03-22 02:04:09 +07:00
|
|
|
* Source path within the TAR/ZIP archive. Only the files
|
|
|
|
* contained in this path will be extracted.
|
2019-03-02 04:51:11 +07:00
|
|
|
*/
|
|
|
|
sourcePath?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IFile {
|
|
|
|
path: string;
|
|
|
|
contents?: Buffer | string;
|
|
|
|
localPath?: string;
|
|
|
|
}
|
|
|
|
|
2019-03-22 02:04:09 +07:00
|
|
|
/**
|
|
|
|
* Override the standard VS Code behavior for zipping
|
|
|
|
* extensions to use the TAR format instead of ZIP.
|
|
|
|
*/
|
|
|
|
export const zip = (tarPath: string, files: IFile[]): Promise<string> => {
|
|
|
|
return new Promise<string>((c, e): void => {
|
2019-03-02 04:51:11 +07:00
|
|
|
const pack = tarStream.pack();
|
|
|
|
const chunks: Buffer[] = [];
|
2019-03-22 02:04:09 +07:00
|
|
|
const ended = new Promise<Buffer>((res): void => {
|
2019-03-02 04:51:11 +07:00
|
|
|
pack.on("end", () => {
|
|
|
|
res(Buffer.concat(chunks));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
pack.on("data", (chunk) => {
|
|
|
|
chunks.push(chunk as Buffer);
|
|
|
|
});
|
|
|
|
for (let i = 0; i < files.length; i++) {
|
|
|
|
const file = files[i];
|
|
|
|
pack.entry({
|
|
|
|
name: file.path,
|
|
|
|
}, file.contents);
|
|
|
|
}
|
|
|
|
pack.finalize();
|
|
|
|
|
|
|
|
ended.then((buffer) => {
|
|
|
|
return promisify(fs.writeFile)(tarPath, buffer);
|
|
|
|
}).then(() => {
|
|
|
|
c(tarPath);
|
|
|
|
}).catch((ex) => {
|
|
|
|
e(ex);
|
|
|
|
});
|
|
|
|
});
|
2019-03-22 02:04:09 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Override the standard VS Code behavior for extracting
|
|
|
|
* archives, to first attempt to process the archive as a TAR
|
|
|
|
* and then fallback on the original implementation, for processing
|
|
|
|
* ZIPs.
|
|
|
|
*/
|
|
|
|
export const extract = (archivePath: string, extractPath: string, options: IExtractOptions = {}, token: CancellationToken): Promise<void> => {
|
|
|
|
return new Promise<void>((c, e): void => {
|
|
|
|
extractTar(archivePath, extractPath, options, token).then(c).catch((ex) => {
|
|
|
|
if (!ex.toString().includes("Invalid tar header")) {
|
|
|
|
e(ex);
|
2019-03-02 04:51:11 +07:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2019-03-22 02:04:09 +07:00
|
|
|
vszip.extract(archivePath, extractPath, options, token).then(c).catch(e);
|
2019-03-02 04:51:11 +07:00
|
|
|
});
|
|
|
|
});
|
2019-03-22 02:04:09 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Override the standard VS Code behavior for buffering
|
|
|
|
* archives, to first process the Buffer as a TAR and then
|
|
|
|
* fallback on the original implementation, for processing ZIPs.
|
|
|
|
*/
|
|
|
|
export const buffer = (targetPath: string, filePath: string): Promise<Buffer> => {
|
|
|
|
return new Promise<Buffer>((c, e): void => {
|
2019-03-02 04:51:11 +07:00
|
|
|
let done: boolean = false;
|
2019-03-22 02:04:09 +07:00
|
|
|
extractAssets(targetPath, new RegExp(filePath), (assetPath: string, data: Buffer) => {
|
|
|
|
if (path.normalize(assetPath) === path.normalize(filePath)) {
|
2019-03-02 04:51:11 +07:00
|
|
|
done = true;
|
|
|
|
c(data);
|
|
|
|
}
|
|
|
|
}).then(() => {
|
|
|
|
if (!done) {
|
2019-03-22 02:04:09 +07:00
|
|
|
e("couldn't find asset " + filePath);
|
2019-03-02 04:51:11 +07:00
|
|
|
}
|
|
|
|
}).catch((ex) => {
|
2019-03-22 02:04:09 +07:00
|
|
|
if (!ex.toString().includes("Invalid tar header")) {
|
|
|
|
e(ex);
|
2019-03-02 04:51:11 +07:00
|
|
|
|
2019-03-22 02:04:09 +07:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
vszip.buffer(targetPath, filePath).then(c).catch(e);
|
|
|
|
});
|
2019-03-02 04:51:11 +07:00
|
|
|
});
|
2019-03-22 02:04:09 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Override the standard VS Code behavior for extracting assets
|
|
|
|
* from archive Buffers to use the TAR format instead of ZIP.
|
|
|
|
*/
|
|
|
|
export const extractAssets = (tarPath: string, match: RegExp, callback: (path: string, data: Buffer) => void): Promise<void> => {
|
|
|
|
return new Promise<void>(async (c, e): Promise<void> => {
|
|
|
|
try {
|
|
|
|
const buffer = await promisify(fs.readFile)(tarPath);
|
|
|
|
const extractor = tarStream.extract();
|
|
|
|
extractor.once("error", e);
|
|
|
|
extractor.on("entry", (header, stream, next) => {
|
|
|
|
const name = header.name;
|
|
|
|
if (match.test(name)) {
|
|
|
|
extractData(stream).then((data) => {
|
|
|
|
callback(name, data);
|
|
|
|
next();
|
|
|
|
}).catch(e);
|
|
|
|
stream.resume();
|
|
|
|
} else {
|
|
|
|
stream.on("end", () => {
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
stream.resume();
|
|
|
|
}
|
2019-03-02 04:51:11 +07:00
|
|
|
});
|
2019-03-22 02:04:09 +07:00
|
|
|
extractor.on("finish", () => {
|
|
|
|
c();
|
2019-03-02 04:51:11 +07:00
|
|
|
});
|
2019-03-22 02:04:09 +07:00
|
|
|
extractor.write(buffer);
|
|
|
|
extractor.end();
|
|
|
|
} catch (ex) {
|
|
|
|
e(ex);
|
2019-03-02 04:51:11 +07:00
|
|
|
}
|
|
|
|
});
|
2019-03-22 02:04:09 +07:00
|
|
|
};
|
2019-03-02 04:51:11 +07:00
|
|
|
|
2019-03-22 02:04:09 +07:00
|
|
|
const extractData = (stream: NodeJS.ReadableStream): Promise<Buffer> => {
|
|
|
|
return new Promise<Buffer>((c, e): void => {
|
2019-03-02 04:51:11 +07:00
|
|
|
const fileData: Buffer[] = [];
|
2019-03-22 02:04:09 +07:00
|
|
|
stream.on("data", (data) => fileData.push(data));
|
|
|
|
stream.on("end", () => {
|
2019-03-02 04:51:11 +07:00
|
|
|
const fd = Buffer.concat(fileData);
|
2019-03-22 02:04:09 +07:00
|
|
|
c(fd);
|
2019-03-02 04:51:11 +07:00
|
|
|
});
|
2019-03-22 02:04:09 +07:00
|
|
|
stream.on("error", e);
|
2019-03-02 04:51:11 +07:00
|
|
|
});
|
2019-03-22 02:04:09 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
const extractTar = (tarPath: string, targetPath: string, options: IExtractOptions = {}, token: CancellationToken): Promise<void> => {
|
|
|
|
return new Promise<void>(async (c, e): Promise<void> => {
|
|
|
|
try {
|
|
|
|
const sourcePathRegex = new RegExp(options.sourcePath ? `^${options.sourcePath}` : "");
|
|
|
|
const buffer = await promisify(fs.readFile)(tarPath);
|
|
|
|
const extractor = tarStream.extract();
|
|
|
|
extractor.once("error", e);
|
|
|
|
extractor.on("entry", (header, stream, next) => {
|
|
|
|
const rawName = path.normalize(header.name);
|
|
|
|
|
|
|
|
const nextEntry = (): void => {
|
|
|
|
stream.resume();
|
|
|
|
next();
|
|
|
|
};
|
|
|
|
|
|
|
|
if (token.isCancellationRequested) {
|
|
|
|
return nextEntry();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!sourcePathRegex.test(rawName)) {
|
|
|
|
return nextEntry();
|
|
|
|
}
|
|
|
|
|
|
|
|
const fileName = rawName.replace(sourcePathRegex, "");
|
|
|
|
const targetFileName = path.join(targetPath, fileName);
|
|
|
|
if (/\/$/.test(fileName)) {
|
|
|
|
stream.resume();
|
|
|
|
mkdirp(targetFileName).then(() => {
|
|
|
|
next();
|
|
|
|
}, e);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const dirName = path.dirname(fileName);
|
|
|
|
const targetDirName = path.join(targetPath, dirName);
|
|
|
|
if (targetDirName.indexOf(targetPath) !== 0) {
|
|
|
|
e(nls.localize("invalid file", "Error extracting {0}. Invalid file.", fileName));
|
|
|
|
|
|
|
|
return nextEntry();
|
|
|
|
}
|
|
|
|
|
|
|
|
return mkdirp(targetDirName, undefined, token).then(() => {
|
|
|
|
const fstream = fs.createWriteStream(targetFileName, { mode: header.mode });
|
|
|
|
fstream.once("close", () => {
|
|
|
|
next();
|
|
|
|
});
|
|
|
|
fstream.once("error", e);
|
|
|
|
stream.pipe(fstream);
|
|
|
|
stream.resume();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
extractor.once("finish", c);
|
|
|
|
extractor.write(buffer);
|
|
|
|
extractor.end();
|
|
|
|
} catch (ex) {
|
|
|
|
e(ex);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|