mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
* Merge from vscode 37cb23d3dd4f9433d56d4ba5ea3203580719a0bd * fix issues with merges * bump node version in azpipe * replace license headers * remove duplicate launch task * fix build errors * fix build errors * fix tslint issues * working through package and linux build issues * more work * wip * fix packaged builds * working through linux build errors * wip * wip * wip * fix mac and linux file limits * iterate linux pipeline * disable editor typing * revert series to parallel * remove optimize vscode from linux * fix linting issues * revert testing change * add work round for new node * readd packaging for extensions * fix issue with angular not resolving decorator dependencies
112 lines
2.9 KiB
TypeScript
112 lines
2.9 KiB
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import * as https from 'https';
|
|
import * as fs from 'fs';
|
|
import * as path from 'path';
|
|
import * as cp from 'child_process';
|
|
|
|
function ensureDir(filepath: string) {
|
|
if (!fs.existsSync(filepath)) {
|
|
ensureDir(path.dirname(filepath));
|
|
fs.mkdirSync(filepath);
|
|
}
|
|
}
|
|
|
|
function download(options: https.RequestOptions, destination: string): Promise<void> {
|
|
ensureDir(path.dirname(destination));
|
|
|
|
return new Promise<void>((c, e) => {
|
|
const fd = fs.openSync(destination, 'w');
|
|
const req = https.get(options, (res) => {
|
|
res.on('data', (chunk) => {
|
|
fs.writeSync(fd, chunk);
|
|
});
|
|
res.on('end', () => {
|
|
fs.closeSync(fd);
|
|
c();
|
|
});
|
|
});
|
|
req.on('error', (reqErr) => {
|
|
console.error(`request to ${options.host}${options.path} failed.`);
|
|
console.error(reqErr);
|
|
e(reqErr);
|
|
});
|
|
});
|
|
}
|
|
|
|
const MARKER_ARGUMENT = `_download_fork_`;
|
|
|
|
function base64encode(str: string): string {
|
|
return Buffer.from(str, 'utf8').toString('base64');
|
|
}
|
|
|
|
function base64decode(str: string): string {
|
|
return Buffer.from(str, 'base64').toString('utf8');
|
|
}
|
|
|
|
export interface IDownloadRequestOptions {
|
|
host: string;
|
|
path: string;
|
|
}
|
|
|
|
export interface IDownloadOptions {
|
|
requestOptions: IDownloadRequestOptions;
|
|
destinationPath: string;
|
|
}
|
|
|
|
export function downloadInExternalProcess(options: IDownloadOptions): Promise<void> {
|
|
const url = `https://${options.requestOptions.host}${options.requestOptions.path}`;
|
|
console.log(`Downloading ${url}...`);
|
|
return new Promise<void>((c, e) => {
|
|
const child = cp.fork(
|
|
__filename,
|
|
[MARKER_ARGUMENT, base64encode(JSON.stringify(options))],
|
|
{
|
|
stdio: ['pipe', 'pipe', 'pipe', 'ipc']
|
|
}
|
|
);
|
|
let stderr: Buffer[] = [];
|
|
child.stderr.on('data', (chunk) => {
|
|
stderr.push(typeof chunk === 'string' ? Buffer.from(chunk) : chunk);
|
|
});
|
|
child.on('exit', (code) => {
|
|
if (code === 0) {
|
|
// normal termination
|
|
console.log(`Finished downloading ${url}.`);
|
|
c();
|
|
} else {
|
|
// abnormal termination
|
|
console.error(Buffer.concat(stderr).toString());
|
|
e(new Error(`Download of ${url} failed.`));
|
|
}
|
|
});
|
|
});
|
|
}
|
|
|
|
function _downloadInExternalProcess() {
|
|
let options: IDownloadOptions;
|
|
try {
|
|
options = JSON.parse(base64decode(process.argv[3]));
|
|
} catch (err) {
|
|
console.error(`Cannot read arguments`);
|
|
console.error(err);
|
|
process.exit(-1);
|
|
return;
|
|
}
|
|
|
|
download(options.requestOptions, options.destinationPath).then(() => {
|
|
process.exit(0);
|
|
}, (err) => {
|
|
console.error(err);
|
|
process.exit(-2);
|
|
});
|
|
}
|
|
|
|
if (process.argv.length >= 4 && process.argv[2] === MARKER_ARGUMENT) {
|
|
// running as forked download script
|
|
_downloadInExternalProcess();
|
|
}
|