TypeScript/src/services/shims.ts

867 lines
36 KiB
TypeScript
Raw Normal View History

2014-07-19 01:55:11 +02:00
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
2014-07-13 01:04:16 +02:00
2014-07-25 00:33:59 +02:00
/// <reference path='services.ts' />
/// <reference path='compiler\pathUtils.ts' />
/// <reference path='compiler\precompile.ts' />
2014-07-25 20:21:17 +02:00
var debugObjectHost = (<any>this);
2014-07-25 02:36:06 +02:00
module ts {
export interface ScriptSnapshotShim {
2014-07-13 01:04:16 +02:00
// Get's a portion of the script snapshot specified by [start, end).
getText(start: number, end: number): string;
// Get's the length of this script snapshot.
getLength(): number;
// This call returns the JSON encoded array of the type:
// number[]
getLineStartPositions(): string;
// Returns a JSON encoded value of the type:
// { span: { start: number; length: number }; newLength: number }
//
// Or null value if there was no change.
getChangeRange(oldSnapshot: ScriptSnapshotShim): string;
2014-07-19 01:55:11 +02:00
}
//
// Public interface of the host of a language service shim instance.
//
2014-07-25 01:01:51 +02:00
export interface LanguageServiceShimHost extends Logger {
2014-07-19 01:55:11 +02:00
getCompilationSettings(): string;
// Returns a JSON encoded value of the type:
// string[]
getScriptFileNames(): string;
getScriptVersion(fileName: string): string;
2014-07-19 01:55:11 +02:00
getScriptIsOpen(fileName: string): boolean;
getScriptSnapshot(fileName: string): ScriptSnapshotShim;
2014-07-19 01:55:11 +02:00
getLocalizedDiagnosticMessages(): string;
2014-07-25 21:18:12 +02:00
getCancellationToken(): CancellationToken;
getDefaultLibFilename(): string;
getCurrentDirectory(): string;
2014-07-19 01:55:11 +02:00
}
//
// Public interface of of a language service instance shim.
//
export interface ShimFactory {
registerShim(shim: Shim): void;
unregisterShim(shim: Shim): void;
2014-07-19 01:55:11 +02:00
}
export interface Shim {
2014-07-19 01:55:11 +02:00
dispose(dummy: any): void;
}
export interface LanguageServiceShim extends Shim {
2014-07-24 20:57:18 +02:00
languageService: LanguageService;
2014-07-19 01:55:11 +02:00
dispose(dummy: any): void;
refresh(throwOnError: boolean): void;
cleanupSemanticCache(): void;
getSyntacticDiagnostics(fileName: string): string;
getSemanticDiagnostics(fileName: string): string;
getCompilerOptionsDiagnostics(): string;
getCompletionsAtPosition(fileName: string, position: number, isMemberCompletion: boolean): string;
getCompletionEntryDetails(fileName: string, position: number, entryName: string): string;
getTypeAtPosition(fileName: string, position: number): string;
getNameOrDottedNameSpan(fileName: string, startPos: number, endPos: number): string;
getBreakpointStatementAtPosition(fileName: string, position: number): string;
getSignatureHelpItems(fileName: string, position: number): string;
getSignatureHelpCurrentArgumentState(fileName: string, position: number, applicableSpanStart: number): string;
// Returns a JSON encoded value of the type:
// { canRename: boolean, localizedErrorMessage: string, displayName: string, fullDisplayName: string, kind: string, kindModifiers: string, triggerSpan: { start; length } }
getRenameInfo(fileName: string, position: number): string;
2014-07-19 01:55:11 +02:00
// Returns a JSON encoded value of the type:
// { fileName: string; textSpan: { start: number; length: number}; kind: string; name: string; containerKind: string; containerName: string }
2014-07-19 01:55:11 +02:00
//
// Or null value if no definition can be found.
getDefinitionAtPosition(fileName: string, position: number): string;
// Returns a JSON encoded value of the type:
// { fileName: string; textSpan: { start: number; length: number}; isWriteAccess: boolean }[]
2014-07-19 01:55:11 +02:00
getReferencesAtPosition(fileName: string, position: number): string;
// Returns a JSON encoded value of the type:
// { fileName: string; textSpan: { start: number; length: number}; isWriteAccess: boolean }[]
2014-07-19 01:55:11 +02:00
getOccurrencesAtPosition(fileName: string, position: number): string;
// Returns a JSON encoded value of the type:
// { fileName: string; textSpan: { start: number; length: number}; isWriteAccess: boolean }[]
2014-07-19 01:55:11 +02:00
getImplementorsAtPosition(fileName: string, position: number): string;
// Returns a JSON encoded value of the type:
// { name: string; kind: string; kindModifiers: string; containerName: string; containerKind: string; matchKind: string; fileName: string; textSpan: { start: number; length: number}; } [] = [];
2014-07-19 01:55:11 +02:00
getNavigateToItems(searchValue: string): string;
// Returns a JSON encoded value of the type:
// { text: string; kind: string; kindModifiers: string; bolded: boolean; grayed: boolean; indent: number; spans: { start: number; length: number; }[]; childItems: <recursive use of this type>[] } [] = [];
getNavigationBarItems(fileName: string): string;
2014-07-19 01:55:11 +02:00
// Returns a JSON encoded value of the type:
// { textSpan: { start: number, length: number }; hintSpan: { start: number, length: number }; bannerText: string; autoCollapse: boolean } [] = [];
getOutliningSpans(fileName: string): string;
getTodoComments(fileName: string, todoCommentDescriptors: string): string;
2014-07-19 01:55:11 +02:00
getBraceMatchingAtPosition(fileName: string, position: number): string;
getIndentationAtPosition(fileName: string, position: number, options: string/*Services.EditorOptions*/): string;
getFormattingEditsForRange(fileName: string, start: number, end: number, options: string/*Services.FormatCodeOptions*/): string;
getFormattingEditsForDocument(fileName: string, options: string/*Services.FormatCodeOptions*/): string;
2014-07-19 01:55:11 +02:00
getFormattingEditsAfterKeystroke(fileName: string, position: number, key: string, options: string/*Services.FormatCodeOptions*/): string;
getEmitOutput(fileName: string): string;
2014-07-13 01:04:16 +02:00
}
export interface ClassifierShim extends Shim {
2014-07-24 20:57:18 +02:00
getClassificationsForLine(text: string, lexState: EndOfLineState): string;
}
2014-07-19 01:55:11 +02:00
export interface CoreServicesShim extends Shim {
2014-07-24 20:57:18 +02:00
getPreProcessedFileInfo(fileName: string, sourceText: TypeScript.IScriptSnapshot): string;
getDefaultCompilationSettings(): string;
}
/// TODO: delete this, it is only needed untill the VS interface is updated
2014-07-19 01:55:11 +02:00
enum LanguageVersion {
EcmaScript3 = 0,
EcmaScript5 = 1,
}
enum ModuleGenTarget {
Unspecified = 0,
Synchronous = 1,
Asynchronous = 2,
}
export interface CompilationSettings {
2014-07-19 01:55:11 +02:00
propagateEnumConstants?: boolean;
removeComments?: boolean;
watch?: boolean;
noResolve?: boolean;
allowAutomaticSemicolonInsertion?: boolean;
noImplicitAny?: boolean;
noLib?: boolean;
codeGenTarget?: LanguageVersion;
moduleGenTarget?: ModuleGenTarget;
outFileOption?: string;
outDirOption?: string;
mapSourceFiles?: boolean;
mapRoot?: string;
sourceRoot?: string;
generateDeclarationFiles?: boolean;
useCaseSensitiveFileResolution?: boolean;
gatherDiagnostics?: boolean;
codepage?: number;
2014-08-06 23:24:47 +02:00
emitBOM?: boolean;
// Declare indexer signature
[index: string]: any;
2014-07-19 01:55:11 +02:00
}
2014-07-25 21:18:12 +02:00
function languageVersionToScriptTarget(languageVersion: LanguageVersion): ScriptTarget {
2014-07-29 19:37:01 +02:00
if (typeof languageVersion === "undefined") return undefined;
2014-07-19 01:55:11 +02:00
switch (languageVersion) {
2014-07-25 21:18:12 +02:00
case LanguageVersion.EcmaScript3: return ScriptTarget.ES3;
case LanguageVersion.EcmaScript5: return ScriptTarget.ES5;
2014-07-19 01:55:11 +02:00
default: throw Error("unsuported LanguageVersion value: " + languageVersion);
}
}
2014-07-25 21:18:12 +02:00
function moduleGenTargetToModuleKind(moduleGenTarget: ModuleGenTarget): ModuleKind {
2014-07-29 19:37:01 +02:00
if (typeof moduleGenTarget === "undefined") return undefined;
2014-07-19 01:55:11 +02:00
switch (moduleGenTarget) {
2014-07-25 21:18:12 +02:00
case ModuleGenTarget.Asynchronous: return ModuleKind.AMD;
case ModuleGenTarget.Synchronous: return ModuleKind.CommonJS;
case ModuleGenTarget.Unspecified: return ModuleKind.None;
2014-07-19 01:55:11 +02:00
default: throw Error("unsuported ModuleGenTarget value: " + moduleGenTarget);
}
}
2014-07-25 21:18:12 +02:00
function scriptTargetTolanguageVersion(scriptTarget: ScriptTarget): LanguageVersion {
2014-07-29 19:37:01 +02:00
if (typeof scriptTarget === "undefined") return undefined;
2014-07-19 01:55:11 +02:00
switch (scriptTarget) {
2014-07-25 21:18:12 +02:00
case ScriptTarget.ES3: return LanguageVersion.EcmaScript3;
case ScriptTarget.ES5: return LanguageVersion.EcmaScript5;
2014-07-19 01:55:11 +02:00
default: throw Error("unsuported ScriptTarget value: " + scriptTarget);
}
}
2014-07-25 21:18:12 +02:00
function moduleKindToModuleGenTarget(moduleKind: ModuleKind): ModuleGenTarget {
2014-07-29 19:37:01 +02:00
if (typeof moduleKind === "undefined") return undefined;
2014-07-19 01:55:11 +02:00
switch (moduleKind) {
2014-07-25 21:18:12 +02:00
case ModuleKind.AMD: return ModuleGenTarget.Asynchronous;
case ModuleKind.CommonJS: return ModuleGenTarget.Synchronous;
case ModuleKind.None: return ModuleGenTarget.Unspecified;
2014-07-19 01:55:11 +02:00
default: throw Error("unsuported ModuleKind value: " + moduleKind);
}
}
2014-07-25 21:18:12 +02:00
function compilationSettingsToCompilerOptions(settings: CompilationSettings): CompilerOptions {
2014-07-19 01:55:11 +02:00
// TODO: we should not be converting, but use options all the way
2014-07-25 21:18:12 +02:00
var options: CompilerOptions = {};
2014-07-19 01:55:11 +02:00
//options.propagateEnumConstants = settings.propagateEnumConstants;
options.removeComments = settings.removeComments;
options.noResolve = settings.noResolve;
options.noImplicitAny = settings.noImplicitAny;
options.noLib = settings.noLib;
options.target = languageVersionToScriptTarget(settings.codeGenTarget);
options.module = moduleGenTargetToModuleKind(settings.moduleGenTarget);
options.out = settings.outFileOption;
options.outDir = settings.outDirOption;
options.sourceMap = settings.mapSourceFiles;
options.mapRoot = settings.mapRoot;
options.sourceRoot = settings.sourceRoot;
options.declaration = settings.generateDeclarationFiles;
//options.useCaseSensitiveFileResolution = settings.useCaseSensitiveFileResolution;
options.codepage = settings.codepage;
2014-08-06 23:24:47 +02:00
options.emitBOM = settings.emitBOM;
2014-07-19 01:55:11 +02:00
return options;
}
2014-07-25 21:18:12 +02:00
function compilerOptionsToCompilationSettings(options: CompilerOptions): CompilationSettings {
2014-07-19 01:55:11 +02:00
var settings: CompilationSettings = {};
//options.propagateEnumConstants = settings.propagateEnumConstants;
settings.removeComments = options.removeComments;
settings.noResolve = options.noResolve;
settings.noImplicitAny = options.noImplicitAny;
settings.noLib = options.noLib;
settings.codeGenTarget = scriptTargetTolanguageVersion(options.target);
settings.moduleGenTarget = moduleKindToModuleGenTarget(options.module);
settings.outFileOption = options.out;
settings.outDirOption = options.outDir;
settings.mapSourceFiles = options.sourceMap;
settings.mapRoot = options.mapRoot;
settings.sourceRoot = options.sourceRoot;
settings.generateDeclarationFiles = options.declaration;
// settings.useCaseSensitiveFileResolution = options.useCaseSensitiveFileResolution;
settings.codepage = options.codepage;
2014-08-06 23:24:47 +02:00
settings.emitBOM = options.emitBOM;
2014-07-19 01:55:11 +02:00
return settings;
}
2014-07-25 01:01:51 +02:00
function logInternalError(logger: Logger, err: Error) {
logger.log("*INTERNAL ERROR* - Exception in typescript services: " + err.message);
}
2014-07-19 01:55:11 +02:00
class ScriptSnapshotShimAdapter implements TypeScript.IScriptSnapshot {
2014-07-13 01:04:16 +02:00
private lineStartPositions: number[] = null;
constructor(private scriptSnapshotShim: ScriptSnapshotShim) {
2014-07-13 01:04:16 +02:00
}
public getText(start: number, end: number): string {
return this.scriptSnapshotShim.getText(start, end);
}
public getLength(): number {
return this.scriptSnapshotShim.getLength();
}
public getLineStartPositions(): number[] {
2014-07-13 01:04:16 +02:00
if (this.lineStartPositions == null) {
this.lineStartPositions = JSON.parse(this.scriptSnapshotShim.getLineStartPositions());
}
return this.lineStartPositions;
}
public getChangeRange(oldSnapshot: TypeScript.IScriptSnapshot): TypeScript.TextChangeRange {
var oldSnapshotShim = <ScriptSnapshotShimAdapter>oldSnapshot;
var encoded = this.scriptSnapshotShim.getChangeRange(oldSnapshotShim.scriptSnapshotShim);
2014-07-13 01:04:16 +02:00
if (encoded == null) {
return null;
}
var decoded: { span: { start: number; length: number; }; newLength: number; } = JSON.parse(encoded);
2014-07-19 01:55:11 +02:00
return new TypeScript.TextChangeRange(
new TypeScript.TextSpan(decoded.span.start, decoded.span.length), decoded.newLength);
2014-07-13 01:04:16 +02:00
}
}
export class LanguageServiceShimHostAdapter implements LanguageServiceHost {
constructor(private shimHost: LanguageServiceShimHost) {
2014-07-19 01:55:11 +02:00
}
2014-07-13 01:04:16 +02:00
public log(s: string): void {
this.shimHost.log(s);
}
2014-07-25 21:18:12 +02:00
public getCompilationSettings(): CompilerOptions {
2014-07-13 01:04:16 +02:00
var settingsJson = this.shimHost.getCompilationSettings();
if (settingsJson == null || settingsJson == "") {
2014-07-19 01:55:11 +02:00
throw Error("LanguageServiceShimHostAdapter.getCompilationSettings: empty compilationSettings");
return null;
2014-07-13 01:04:16 +02:00
}
2014-07-25 21:18:12 +02:00
var options = compilationSettingsToCompilerOptions(<CompilerOptions>JSON.parse(<any>settingsJson));
2014-07-19 20:30:10 +02:00
/// TODO: this should be pushed into VS.
/// We can not ask the LS instance to resolve, as this will lead to asking the host about files it does not know about,
/// something it is not desinged to handle. for now make sure we never get a "noresolve == false".
2014-07-19 20:30:10 +02:00
/// This value should not matter, as the host runs resolution logic independentlly
options.noResolve = true;
return options;
2014-07-13 01:04:16 +02:00
}
public getScriptFileNames(): string[] {
var encoded = this.shimHost.getScriptFileNames();
return JSON.parse(encoded);
}
2014-07-19 01:55:11 +02:00
public getScriptSnapshot(fileName: string): TypeScript.IScriptSnapshot {
2014-07-13 01:04:16 +02:00
return new ScriptSnapshotShimAdapter(this.shimHost.getScriptSnapshot(fileName));
}
public getScriptVersion(fileName: string): string {
2014-07-13 01:04:16 +02:00
return this.shimHost.getScriptVersion(fileName);
}
public getScriptIsOpen(fileName: string): boolean {
return this.shimHost.getScriptIsOpen(fileName);
}
public getLocalizedDiagnosticMessages(): any {
var diagnosticMessagesJson = this.shimHost.getLocalizedDiagnosticMessages();
if (diagnosticMessagesJson == null || diagnosticMessagesJson == "") {
return null;
}
try {
return JSON.parse(diagnosticMessagesJson);
}
catch (e) {
this.log(e.description || "diagnosticMessages.generated.json has invalid JSON format");
return null;
}
}
2014-07-25 21:18:12 +02:00
public getCancellationToken(): CancellationToken {
2014-07-19 01:55:11 +02:00
return this.shimHost.getCancellationToken();
}
getDefaultLibFilename(): string {
return this.shimHost.getDefaultLibFilename();
}
2014-09-05 00:08:50 +02:00
getCurrentDirectory(): string {
return this.shimHost.getCurrentDirectory();
}
2014-07-19 01:55:11 +02:00
}
2014-07-25 01:01:51 +02:00
function simpleForwardCall(logger: Logger, actionDescription: string, action: () => any): any {
2014-07-19 01:55:11 +02:00
logger.log(actionDescription);
var start = Date.now();
var result = action();
var end = Date.now();
logger.log(actionDescription + " completed in " + (end - start) + " msec");
if (typeof (result) === "string") {
var str = <string>result;
if (str.length > 128) {
str = str.substring(0, 128) + "...";
}
logger.log(" result.length=" + str.length + ", result='" + JSON.stringify(str) + "'");
}
return result;
}
2014-07-25 01:01:51 +02:00
function forwardJSONCall(logger: Logger, actionDescription: string, action: () => any): string {
2014-07-19 01:55:11 +02:00
try {
var result = simpleForwardCall(logger, actionDescription, action);
return JSON.stringify({ result: result });
}
catch (err) {
if (err instanceof OperationCanceledException) {
return JSON.stringify({ canceled: true });
}
2014-07-24 20:57:18 +02:00
logInternalError(logger, err);
2014-07-19 01:55:11 +02:00
err.description = actionDescription;
return JSON.stringify({ error: err });
}
}
class ShimBase implements Shim {
constructor(private factory: ShimFactory) {
2014-07-24 20:57:18 +02:00
factory.registerShim(this);
}
public dispose(dummy: any): void {
this.factory.unregisterShim(this);
}
}
class LanguageServiceShimObject extends ShimBase implements LanguageServiceShim {
2014-07-25 01:01:51 +02:00
private logger: Logger;
2014-07-19 01:55:11 +02:00
constructor(factory: ShimFactory,
private host: LanguageServiceShimHost,
2014-07-24 20:57:18 +02:00
public languageService: LanguageService) {
2014-07-19 01:55:11 +02:00
super(factory);
this.logger = this.host;
}
public forwardJSONCall(actionDescription: string, action: () => any): string {
2014-07-24 20:57:18 +02:00
return forwardJSONCall(this.logger, actionDescription, action);
2014-07-19 01:55:11 +02:00
}
// DISPOSE
// Ensure (almost) determinstic release of internal Javascript resources when
// some external native objects holds onto us (e.g. Com/Interop).
public dispose(dummy: any): void {
this.logger.log("dispose()");
this.languageService.dispose();
this.languageService = null;
// force a GC
if (debugObjectHost && debugObjectHost.CollectGarbage) {
debugObjectHost.CollectGarbage();
this.logger.log("CollectGarbage()");
}
this.logger = null;
super.dispose(dummy);
}
// REFRESH
// Update the list of scripts known to the compiler
public refresh(throwOnError: boolean): void {
this.forwardJSONCall(
"refresh(" + throwOnError + ")",
() => {
return <any>null;
});
}
public cleanupSemanticCache(): void {
this.forwardJSONCall(
"cleanupSemanticCache()",
() => {
this.languageService.cleanupSemanticCache();
return <any>null;
});
}
2014-07-25 21:18:12 +02:00
private static realizeDiagnostic(diagnostic: Diagnostic): { message: string; start: number; length: number; category: string; } {
2014-07-19 01:55:11 +02:00
return {
message: diagnostic.messageText,
start: diagnostic.start,
length: diagnostic.length,
/// TODO: no need for the tolowerCase call
2014-07-25 21:18:12 +02:00
category: DiagnosticCategory[diagnostic.category].toLowerCase()
2014-07-19 01:55:11 +02:00
};
}
2014-07-25 21:18:12 +02:00
private realizeDiagnosticWithFileName(diagnostic: Diagnostic): { fileName: string; message: string; start: number; length: number; category: string; } {
2014-07-19 01:55:11 +02:00
return {
fileName: diagnostic.file.filename,
2014-07-19 01:55:11 +02:00
message: diagnostic.messageText,
start: diagnostic.start,
length: diagnostic.length,
/// TODO: no need for the tolowerCase call
2014-07-25 21:18:12 +02:00
category: DiagnosticCategory[diagnostic.category].toLowerCase()
2014-07-19 01:55:11 +02:00
};
}
2014-07-13 01:04:16 +02:00
2014-07-19 01:55:11 +02:00
public getSyntacticDiagnostics(fileName: string): string {
return this.forwardJSONCall(
"getSyntacticDiagnostics('" + fileName + "')",
2014-07-19 01:55:11 +02:00
() => {
var errors = this.languageService.getSyntacticDiagnostics(fileName);
return errors.map(LanguageServiceShimObject.realizeDiagnostic);
2014-07-19 01:55:11 +02:00
});
}
public getSemanticDiagnostics(fileName: string): string {
return this.forwardJSONCall(
"getSemanticDiagnostics('" + fileName + "')",
2014-07-19 01:55:11 +02:00
() => {
var errors = this.languageService.getSemanticDiagnostics(fileName);
return errors.map(LanguageServiceShimObject.realizeDiagnostic);
2014-07-19 01:55:11 +02:00
});
}
public getCompilerOptionsDiagnostics(): string {
return this.forwardJSONCall(
"getCompilerOptionsDiagnostics()",
() => {
var errors = this.languageService.getCompilerOptionsDiagnostics();
return errors.map(d => this.realizeDiagnosticWithFileName(d))
});
}
/// QUICKINFO
/// Computes a string representation of the type at the requested position
/// in the active file.
public getTypeAtPosition(fileName: string, position: number): string {
return this.forwardJSONCall(
"getTypeAtPosition('" + fileName + "', " + position + ")",
2014-07-19 01:55:11 +02:00
() => {
var typeInfo = this.languageService.getTypeAtPosition(fileName, position);
return typeInfo;
});
}
/// NAMEORDOTTEDNAMESPAN
/// Computes span information of the name or dotted name at the requested position
// in the active file.
public getNameOrDottedNameSpan(fileName: string, startPos: number, endPos: number): string {
return this.forwardJSONCall(
"getNameOrDottedNameSpan('" + fileName + "', " + startPos + ", " + endPos + ")",
2014-07-19 01:55:11 +02:00
() => {
var spanInfo = this.languageService.getNameOrDottedNameSpan(fileName, startPos, endPos);
return spanInfo;
});
}
/// STATEMENTSPAN
/// Computes span information of statement at the requested position in the active file.
public getBreakpointStatementAtPosition(fileName: string, position: number): string {
return this.forwardJSONCall(
"getBreakpointStatementAtPosition('" + fileName + "', " + position + ")",
2014-07-19 01:55:11 +02:00
() => {
var spanInfo = this.languageService.getBreakpointStatementAtPosition(fileName, position);
return spanInfo;
});
}
/// SIGNATUREHELP
public getSignatureHelpItems(fileName: string, position: number): string {
2014-07-19 01:55:11 +02:00
return this.forwardJSONCall(
"getSignatureHelpItems('" + fileName + "', " + position + ")",
2014-07-19 01:55:11 +02:00
() => {
var signatureInfo = this.languageService.getSignatureHelpItems(fileName, position);
2014-07-19 01:55:11 +02:00
return signatureInfo;
});
}
public getSignatureHelpCurrentArgumentState(fileName: string, position: number, applicableSpanStart: number): string {
return this.forwardJSONCall(
"getSignatureHelpCurrentArgumentState('" + fileName + "', " + position + ", " + applicableSpanStart + ")",
() => {
var signatureInfo = this.languageService.getSignatureHelpItems(fileName, position);
return signatureInfo;
});
}
2014-07-19 01:55:11 +02:00
/// GOTO DEFINITION
/// Computes the definition location and file for the symbol
/// at the requested position.
public getDefinitionAtPosition(fileName: string, position: number): string {
return this.forwardJSONCall(
"getDefinitionAtPosition('" + fileName + "', " + position + ")",
2014-07-19 01:55:11 +02:00
() => {
return this.languageService.getDefinitionAtPosition(fileName, position);
});
}
public getRenameInfo(fileName: string, position: number): string {
return this.forwardJSONCall(
"getRenameInfo('" + fileName + "', " + position + ")",
() => {
return this.languageService.getRenameInfo(fileName, position);
});
}
2014-07-19 01:55:11 +02:00
/// GET BRACE MATCHING
public getBraceMatchingAtPosition(fileName: string, position: number): string {
return this.forwardJSONCall(
"getBraceMatchingAtPosition('" + fileName + "', " + position + ")",
2014-07-19 01:55:11 +02:00
() => {
var textRanges = this.languageService.getBraceMatchingAtPosition(fileName, position);
return textRanges;
});
}
/// GET SMART INDENT
public getIndentationAtPosition(fileName: string, position: number, options: string /*Services.EditorOptions*/): string {
return this.forwardJSONCall(
"getIndentationAtPosition('" + fileName + "', " + position + ")",
2014-07-19 01:55:11 +02:00
() => {
2014-07-24 20:57:18 +02:00
var localOptions: EditorOptions = JSON.parse(options);
return this.languageService.getIndentationAtPosition(fileName, position, localOptions);
2014-07-19 01:55:11 +02:00
});
}
/// GET REFERENCES
/// Return references to a symbol at the requested position.
/// References are separated by "\n".
/// Each reference is a "fileindex min lim" sub-string.
public getReferencesAtPosition(fileName: string, position: number): string {
return this.forwardJSONCall(
"getReferencesAtPosition('" + fileName + "', " + position + ")",
2014-07-19 01:55:11 +02:00
() => {
return this.languageService.getReferencesAtPosition(fileName, position);
});
}
2014-07-13 01:04:16 +02:00
2014-07-19 01:55:11 +02:00
public getOccurrencesAtPosition(fileName: string, position: number): string {
return this.forwardJSONCall(
"getOccurrencesAtPosition('" + fileName + "', " + position + ")",
2014-07-19 01:55:11 +02:00
() => {
return this.languageService.getOccurrencesAtPosition(fileName, position);
});
}
/// GET IMPLEMENTORS
public getImplementorsAtPosition(fileName: string, position: number): string {
return this.forwardJSONCall(
"getImplementorsAtPosition('" + fileName + "', " + position + ")",
2014-07-19 01:55:11 +02:00
() => {
return this.languageService.getImplementorsAtPosition(fileName, position);
});
}
/// COMPLETION LISTS
/// Get a string based representation of the completions
/// to provide at the given source position and providing a member completion
/// list if requested.
public getCompletionsAtPosition(fileName: string, position: number, isMemberCompletion: boolean) {
return this.forwardJSONCall(
"getCompletionsAtPosition('" + fileName + "', " + position + ", " + isMemberCompletion + ")",
2014-07-19 01:55:11 +02:00
() => {
var completion = this.languageService.getCompletionsAtPosition(fileName, position, isMemberCompletion);
return completion;
});
}
/// Get a string based representation of a completion list entry details
public getCompletionEntryDetails(fileName: string, position: number, entryName: string) {
return this.forwardJSONCall(
"getCompletionEntryDetails('" + fileName + "', " + position + ", " + entryName + ")",
2014-07-19 01:55:11 +02:00
() => {
var details = this.languageService.getCompletionEntryDetails(fileName, position, entryName);
return details;
});
}
public getFormattingEditsForRange(fileName: string, start: number, end: number, options: string/*Services.FormatCodeOptions*/): string {
2014-07-19 01:55:11 +02:00
return this.forwardJSONCall(
"getFormattingEditsForRange('" + fileName + "', " + start + ", " + end + ")",
2014-07-19 01:55:11 +02:00
() => {
var localOptions: ts.FormatCodeOptions = JSON.parse(options);
var edits = this.languageService.getFormattingEditsForRange(fileName, start, end, localOptions);
2014-07-19 01:55:11 +02:00
return edits;
});
}
public getFormattingEditsForDocument(fileName: string, options: string/*Services.FormatCodeOptions*/): string {
2014-07-19 01:55:11 +02:00
return this.forwardJSONCall(
"getFormattingEditsForDocument('" + fileName + "')",
2014-07-19 01:55:11 +02:00
() => {
var localOptions: ts.FormatCodeOptions = JSON.parse(options);
var edits = this.languageService.getFormattingEditsForDocument(fileName, localOptions);
2014-07-19 01:55:11 +02:00
return edits;
});
}
public getFormattingEditsAfterKeystroke(fileName: string, position: number, key: string, options: string/*Services.FormatCodeOptions*/): string {
return this.forwardJSONCall(
"getFormattingEditsAfterKeystroke('" + fileName + "', " + position + ", '" + key + "')",
2014-07-19 01:55:11 +02:00
() => {
var localOptions: ts.FormatCodeOptions = JSON.parse(options);
2014-07-19 01:55:11 +02:00
var edits = this.languageService.getFormattingEditsAfterKeystroke(fileName, position, key, localOptions);
return edits;
});
}
/// NAVIGATE TO
/// Return a list of symbols that are interesting to navigate to
public getNavigateToItems(searchValue: string): string {
return this.forwardJSONCall(
"getNavigateToItems('" + searchValue + "')",
2014-07-19 01:55:11 +02:00
() => {
var items = this.languageService.getNavigateToItems(searchValue);
return items;
2014-07-19 01:55:11 +02:00
});
}
public getNavigationBarItems(fileName: string): string {
2014-07-19 01:55:11 +02:00
return this.forwardJSONCall(
"getNavigationBarItems('" + fileName + "')",
2014-07-19 01:55:11 +02:00
() => {
var items = this.languageService.getNavigationBarItems(fileName);
return items;
2014-07-19 01:55:11 +02:00
});
}
public getOutliningSpans(fileName: string): string {
2014-07-19 01:55:11 +02:00
return this.forwardJSONCall(
"getOutliningSpans('" + fileName + "')",
2014-07-19 01:55:11 +02:00
() => {
var items = this.languageService.getOutliningSpans(fileName);
return items;
});
}
public getTodoComments(fileName: string, descriptors: string): string {
return this.forwardJSONCall(
"getTodoComments('" + fileName + "')",
() => {
var items = this.languageService.getTodoComments(fileName, JSON.parse(descriptors));
return items;
2014-07-19 01:55:11 +02:00
});
}
/// Emit
public getEmitOutput(fileName: string): string {
return this.forwardJSONCall(
"getEmitOutput('" + fileName + "')",
2014-07-19 01:55:11 +02:00
() => {
var output = this.languageService.getEmitOutput(fileName);
return output;
});
}
}
class ClassifierShimObject extends ShimBase implements ClassifierShim {
2014-07-24 20:57:18 +02:00
public classifier: Classifier;
2014-07-19 01:55:11 +02:00
2014-08-17 04:03:07 +02:00
constructor(factory: ShimFactory, public logger: Logger) {
2014-07-19 01:55:11 +02:00
super(factory);
2014-08-17 04:03:07 +02:00
this.classifier = createClassifier(this.logger);
2014-07-19 01:55:11 +02:00
}
/// COLORIZATION
public getClassificationsForLine(text: string, lexState: EndOfLineState): string {
var classification = this.classifier.getClassificationsForLine(text, lexState);
var items = classification.entries;
var result = "";
for (var i = 0; i < items.length; i++) {
result += items[i].length + "\n";
result += items[i].classification + "\n";
}
result += classification.finalLexState;
return result;
}
}
class CoreServicesShimObject extends ShimBase implements CoreServicesShim {
2014-08-17 04:03:07 +02:00
constructor(factory: ShimFactory, public logger: Logger) {
2014-07-19 01:55:11 +02:00
super(factory);
}
private forwardJSONCall(actionDescription: string, action: () => any): any {
2014-08-17 04:03:07 +02:00
return forwardJSONCall(this.logger, actionDescription, action);
2014-07-19 01:55:11 +02:00
}
///
/// getPreProcessedFileInfo
///
public getPreProcessedFileInfo(fileName: string, sourceText: TypeScript.IScriptSnapshot): string {
return this.forwardJSONCall(
"getPreProcessedFileInfo('" + fileName + "')",
2014-07-19 01:55:11 +02:00
() => {
2014-07-24 23:36:23 +02:00
var result = TypeScript.preProcessFile(fileName, sourceText);
2014-07-19 01:55:11 +02:00
return result;
});
}
///
/// getDefaultCompilationSettings
///
public getDefaultCompilationSettings(): string {
return this.forwardJSONCall(
"getDefaultCompilationSettings()",
() => {
2014-07-24 23:36:23 +02:00
return compilerOptionsToCompilationSettings(getDefaultCompilerOptions());
2014-07-19 01:55:11 +02:00
});
}
2014-07-13 01:04:16 +02:00
}
export class TypeScriptServicesFactory implements ShimFactory {
private _shims: Shim[] = [];
2014-07-25 20:21:17 +02:00
private documentRegistry: DocumentRegistry = createDocumentRegistry();
public createLanguageServiceShim(host: LanguageServiceShimHost): LanguageServiceShim {
try {
var hostAdapter = new LanguageServiceShimHostAdapter(host);
2014-08-08 08:32:43 +02:00
var languageService = createLanguageService(hostAdapter, this.documentRegistry);
return new LanguageServiceShimObject(this, host, languageService);
}
catch (err) {
2014-07-24 20:57:18 +02:00
logInternalError(host, err);
throw err;
}
}
2014-08-17 04:03:07 +02:00
public createClassifierShim(logger: Logger): ClassifierShim {
try {
2014-08-17 04:20:40 +02:00
return new ClassifierShimObject(this, logger);
}
catch (err) {
2014-08-17 04:03:07 +02:00
logInternalError(logger, err);
throw err;
}
}
2014-08-17 04:03:07 +02:00
public createCoreServicesShim(logger: Logger): CoreServicesShim {
try {
2014-08-17 04:20:40 +02:00
return new CoreServicesShimObject(this, logger);
}
catch (err) {
2014-08-17 04:03:07 +02:00
logInternalError(logger, err);
throw err;
}
}
public close(): void {
// Forget all the registered shims
this._shims = [];
2014-07-25 20:21:17 +02:00
this.documentRegistry = createDocumentRegistry();
}
public registerShim(shim: Shim): void {
this._shims.push(shim);
}
public unregisterShim(shim: Shim): void {
for (var i = 0, n = this._shims.length; i < n; i++) {
if (this._shims[i] === shim) {
delete this._shims[i];
return;
}
}
throw TypeScript.Errors.invalidOperation();
}
}
2014-07-19 01:55:11 +02:00
}
/// TODO: this is used by VS, clean this up on both sides of the interfrace
2014-07-25 02:36:06 +02:00
module TypeScript.Services {
export var TypeScriptServicesFactory = ts.TypeScriptServicesFactory;
}