mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-30 17:23:29 -05:00
* Fix initial build breaks from 1.67 merge (#2514) * Update yarn lock files * Update build scripts * Fix tsconfig * Build breaks * WIP * Update yarn lock files * Misc breaks * Updates to package.json * Breaks * Update yarn * Fix breaks * Breaks * Build breaks * Breaks * Breaks * Breaks * Breaks * Breaks * Missing file * Breaks * Breaks * Breaks * Breaks * Breaks * Fix several runtime breaks (#2515) * Missing files * Runtime breaks * Fix proxy ordering issue * Remove commented code * Fix breaks with opening query editor * Fix post merge break * Updates related to setup build and other breaks (#2516) * Fix bundle build issues * Update distro * Fix distro merge and update build JS files * Disable pipeline steps * Remove stats call * Update license name * Make new RPM dependencies a warning * Fix extension manager version checks * Update JS file * Fix a few runtime breaks * Fixes * Fix runtime issues * Fix build breaks * Update notebook tests (part 1) * Fix broken tests * Linting errors * Fix hygiene * Disable lint rules * Bump distro * Turn off smoke tests * Disable integration tests * Remove failing "activate" test * Remove failed test assertion * Disable other broken test * Disable query history tests * Disable extension unit tests * Disable failing tasks
72 lines
2.4 KiB
TypeScript
72 lines
2.4 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 { createConnection, Connection, Disposable } from 'vscode-languageserver/node';
|
|
import { formatError } from '../utils/runner';
|
|
import { RequestService, RuntimeEnvironment, startServer } from '../jsonServer';
|
|
|
|
import { xhr, XHRResponse, configure as configureHttpRequests, getErrorStatusDescription } from 'request-light';
|
|
import { URI as Uri } from 'vscode-uri';
|
|
import * as fs from 'fs';
|
|
|
|
// Create a connection for the server.
|
|
const connection: Connection = createConnection();
|
|
|
|
console.log = connection.console.log.bind(connection.console);
|
|
console.error = connection.console.error.bind(connection.console);
|
|
|
|
process.on('unhandledRejection', (e: any) => {
|
|
connection.console.error(formatError(`Unhandled exception`, e));
|
|
});
|
|
|
|
function getHTTPRequestService(): RequestService {
|
|
return {
|
|
getContent(uri: string, _encoding?: string) {
|
|
const headers = { 'Accept-Encoding': 'gzip, deflate' };
|
|
return xhr({ url: uri, followRedirects: 5, headers }).then(response => {
|
|
return response.responseText;
|
|
}, (error: XHRResponse) => {
|
|
return Promise.reject(error.responseText || getErrorStatusDescription(error.status) || error.toString());
|
|
});
|
|
}
|
|
};
|
|
}
|
|
|
|
function getFileRequestService(): RequestService {
|
|
return {
|
|
getContent(location: string, encoding?: BufferEncoding) {
|
|
return new Promise((c, e) => {
|
|
const uri = Uri.parse(location);
|
|
fs.readFile(uri.fsPath, encoding, (err, buf) => {
|
|
if (err) {
|
|
return e(err);
|
|
}
|
|
c(buf.toString());
|
|
});
|
|
});
|
|
}
|
|
};
|
|
}
|
|
|
|
const runtime: RuntimeEnvironment = {
|
|
timer: {
|
|
setImmediate(callback: (...args: any[]) => void, ...args: any[]): Disposable {
|
|
const handle = setImmediate(callback, ...args);
|
|
return { dispose: () => clearImmediate(handle) };
|
|
},
|
|
setTimeout(callback: (...args: any[]) => void, ms: number, ...args: any[]): Disposable {
|
|
const handle = setTimeout(callback, ms, ...args);
|
|
return { dispose: () => clearTimeout(handle) };
|
|
}
|
|
},
|
|
file: getFileRequestService(),
|
|
http: getHTTPRequestService(),
|
|
configureHttpRequests
|
|
};
|
|
|
|
|
|
|
|
startServer(connection, runtime);
|