extHostTypeConverters.ts 37.2 KB
Newer Older
E
Erich Gamma 已提交
1 2 3 4 5
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

6
import * as modes from 'vs/editor/common/modes';
7
import * as types from './extHostTypes';
8
import * as search from 'vs/workbench/contrib/search/common/search';
9
import { ITextEditorOptions } from 'vs/platform/editor/common/editor';
10
import { EditorViewColumn } from 'vs/workbench/api/shared/editor';
A
Alex Dima 已提交
11 12
import { IDecorationOptions, IThemeDecorationRenderOptions, IDecorationRenderOptions, IContentDecorationRenderOptions } from 'vs/editor/common/editorCommon';
import { EndOfLineSequence, TrackedRangeStickiness } from 'vs/editor/common/model';
J
Johannes Rieken 已提交
13
import * as vscode from 'vscode';
J
Johannes Rieken 已提交
14
import { URI, UriComponents } from 'vs/base/common/uri';
15
import { ProgressLocation as MainProgressLocation } from 'vs/platform/progress/common/progress';
16
import { SaveReason } from 'vs/workbench/services/textfile/common/textfiles';
17 18 19
import { IPosition } from 'vs/editor/common/core/position';
import { IRange } from 'vs/editor/common/core/range';
import { ISelection } from 'vs/editor/common/core/selection';
20
import * as htmlContent from 'vs/base/common/htmlContent';
21
import * as languageSelector from 'vs/editor/common/modes/languageSelector';
22
import { WorkspaceEditDto, ResourceTextEditDto, ResourceFileEditDto } from 'vs/workbench/api/node/extHost.protocol';
23
import { MarkerSeverity, IRelatedInformation, IMarkerData, MarkerTag } from 'vs/platform/markers/common/markers';
24
import { ACTIVE_GROUP, SIDE_GROUP } from 'vs/workbench/services/editor/common/editorService';
25
import { ExtHostDocumentsAndEditors } from 'vs/workbench/api/node/extHostDocumentsAndEditors';
S
Sandeep Somavarapu 已提交
26
import { isString, isNumber } from 'vs/base/common/types';
J
Johannes Rieken 已提交
27
import * as marked from 'vs/base/common/marked/marked';
J
Johannes Rieken 已提交
28 29
import { parse } from 'vs/base/common/marshalling';
import { cloneAndChange } from 'vs/base/common/objects';
30
import { LogLevel as _MainLogLevel } from 'vs/platform/log/common/log';
31
import { coalesce } from 'vs/base/common/arrays';
E
Erich Gamma 已提交
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46

export interface PositionLike {
	line: number;
	character: number;
}

export interface RangeLike {
	start: PositionLike;
	end: PositionLike;
}

export interface SelectionLike extends RangeLike {
	anchor: PositionLike;
	active: PositionLike;
}
47
export namespace Selection {
E
Erich Gamma 已提交
48

49
	export function to(selection: ISelection): types.Selection {
M
Matt Bierner 已提交
50 51 52
		const { selectionStartLineNumber, selectionStartColumn, positionLineNumber, positionColumn } = selection;
		const start = new types.Position(selectionStartLineNumber - 1, selectionStartColumn - 1);
		const end = new types.Position(positionLineNumber - 1, positionColumn - 1);
53 54
		return new types.Selection(start, end);
	}
E
Erich Gamma 已提交
55

56
	export function from(selection: SelectionLike): ISelection {
M
Matt Bierner 已提交
57
		const { anchor, active } = selection;
58 59 60 61 62 63 64
		return {
			selectionStartLineNumber: anchor.line + 1,
			selectionStartColumn: anchor.character + 1,
			positionLineNumber: active.line + 1,
			positionColumn: active.character + 1
		};
	}
E
Erich Gamma 已提交
65
}
66
export namespace Range {
E
Erich Gamma 已提交
67

68 69 70 71
	export function from(range: undefined): undefined;
	export function from(range: RangeLike): IRange;
	export function from(range: RangeLike | undefined): IRange | undefined;
	export function from(range: RangeLike | undefined): IRange | undefined {
72 73 74
		if (!range) {
			return undefined;
		}
M
Matt Bierner 已提交
75
		const { start, end } = range;
76 77 78 79 80 81
		return {
			startLineNumber: start.line + 1,
			startColumn: start.character + 1,
			endLineNumber: end.line + 1,
			endColumn: end.character + 1
		};
J
Johannes Rieken 已提交
82
	}
E
Erich Gamma 已提交
83

84 85 86 87
	export function to(range: undefined): types.Range;
	export function to(range: IRange): types.Range;
	export function to(range: IRange | undefined): types.Range | undefined;
	export function to(range: IRange | undefined): types.Range | undefined {
88 89 90
		if (!range) {
			return undefined;
		}
M
Matt Bierner 已提交
91
		const { startLineNumber, startColumn, endLineNumber, endColumn } = range;
92
		return new types.Range(startLineNumber - 1, startColumn - 1, endLineNumber - 1, endColumn - 1);
J
Johannes Rieken 已提交
93
	}
E
Erich Gamma 已提交
94 95
}

96 97 98 99 100 101 102
export namespace Position {
	export function to(position: IPosition): types.Position {
		return new types.Position(position.lineNumber - 1, position.column - 1);
	}
	export function from(position: types.Position): IPosition {
		return { lineNumber: position.line + 1, column: position.character + 1 };
	}
103 104
}

105
export namespace DiagnosticTag {
106
	export function from(value: vscode.DiagnosticTag): MarkerTag | undefined {
107 108 109 110 111 112 113 114
		switch (value) {
			case types.DiagnosticTag.Unnecessary:
				return MarkerTag.Unnecessary;
		}
		return undefined;
	}
}

115 116 117 118 119 120
export namespace Diagnostic {
	export function from(value: vscode.Diagnostic): IMarkerData {
		return {
			...Range.from(value.range),
			message: value.message,
			source: value.source,
R
Rob Lourens 已提交
121
			code: isString(value.code) || isNumber(value.code) ? String(value.code) : undefined,
122
			severity: DiagnosticSeverity.from(value.severity),
123
			relatedInformation: value.relatedInformation && value.relatedInformation.map(DiagnosticRelatedInformation.from),
124
			tags: Array.isArray(value.tags) ? coalesce(value.tags.map(DiagnosticTag.from)) : undefined,
125 126
		};
	}
127 128
}

129 130 131 132 133 134 135 136 137 138
export namespace DiagnosticRelatedInformation {
	export function from(value: types.DiagnosticRelatedInformation): IRelatedInformation {
		return {
			...Range.from(value.location.range),
			message: value.message,
			resource: value.location.uri
		};
	}
	export function to(value: IRelatedInformation): types.DiagnosticRelatedInformation {
		return new types.DiagnosticRelatedInformation(new types.Location(value.resource, Range.to(value)), value.message);
E
Erich Gamma 已提交
139 140
	}
}
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155
export namespace DiagnosticSeverity {

	export function from(value: number): MarkerSeverity {
		switch (value) {
			case types.DiagnosticSeverity.Error:
				return MarkerSeverity.Error;
			case types.DiagnosticSeverity.Warning:
				return MarkerSeverity.Warning;
			case types.DiagnosticSeverity.Information:
				return MarkerSeverity.Info;
			case types.DiagnosticSeverity.Hint:
				return MarkerSeverity.Hint;
		}
		return MarkerSeverity.Error;
	}
E
Erich Gamma 已提交
156

157 158 159 160 161 162 163 164 165 166 167 168
	export function to(value: MarkerSeverity): types.DiagnosticSeverity {
		switch (value) {
			case MarkerSeverity.Info:
				return types.DiagnosticSeverity.Information;
			case MarkerSeverity.Warning:
				return types.DiagnosticSeverity.Warning;
			case MarkerSeverity.Error:
				return types.DiagnosticSeverity.Error;
			case MarkerSeverity.Hint:
				return types.DiagnosticSeverity.Hint;
		}
		return types.DiagnosticSeverity.Error;
E
Erich Gamma 已提交
169 170 171
	}
}

172
export namespace ViewColumn {
173
	export function from(column?: vscode.ViewColumn): EditorViewColumn {
174 175
		if (typeof column === 'number' && column >= types.ViewColumn.One) {
			return column - 1; // adjust zero index (ViewColumn.ONE => 0)
176
		}
177 178 179 180 181 182

		if (column === types.ViewColumn.Beside) {
			return SIDE_GROUP;
		}

		return ACTIVE_GROUP; // default is always the active group
E
Erich Gamma 已提交
183 184
	}

M
Matt Bierner 已提交
185
	export function to(position: EditorViewColumn): vscode.ViewColumn {
186 187
		if (typeof position === 'number' && position >= 0) {
			return position + 1; // adjust to index (ViewColumn.ONE => 1)
188
		}
189

M
Matt Bierner 已提交
190
		throw new Error(`invalid 'EditorViewColumn'`);
191 192
	}
}
E
Erich Gamma 已提交
193

M
Martin Aeschlimann 已提交
194
function isDecorationOptions(something: any): something is vscode.DecorationOptions {
195
	return (typeof something.range !== 'undefined');
E
Erich Gamma 已提交
196 197
}

198
export function isDecorationOptionsArr(something: vscode.Range[] | vscode.DecorationOptions[]): something is vscode.DecorationOptions[] {
E
Erich Gamma 已提交
199 200 201
	if (something.length === 0) {
		return true;
	}
M
Martin Aeschlimann 已提交
202
	return isDecorationOptions(something[0]) ? true : false;
E
Erich Gamma 已提交
203 204
}

205 206 207 208 209 210
export namespace MarkdownString {

	export function fromMany(markup: (vscode.MarkdownString | vscode.MarkedString)[]): htmlContent.IMarkdownString[] {
		return markup.map(MarkdownString.from);
	}

J
Johannes Rieken 已提交
211 212 213 214 215 216
	interface Codeblock {
		language: string;
		value: string;
	}

	function isCodeblock(thing: any): thing is Codeblock {
J
Johannes Rieken 已提交
217
		return thing && typeof thing === 'object'
J
Johannes Rieken 已提交
218 219 220 221
			&& typeof (<Codeblock>thing).language === 'string'
			&& typeof (<Codeblock>thing).value === 'string';
	}

222
	export function from(markup: vscode.MarkdownString | vscode.MarkedString): htmlContent.IMarkdownString {
223
		let res: htmlContent.IMarkdownString;
J
Johannes Rieken 已提交
224 225
		if (isCodeblock(markup)) {
			const { language, value } = markup;
226
			res = { value: '```' + language + '\n' + value + '\n```\n' };
J
Johannes Rieken 已提交
227
		} else if (htmlContent.isMarkdownString(markup)) {
228
			res = markup;
J
Johannes Rieken 已提交
229
		} else if (typeof markup === 'string') {
230
			res = { value: <string>markup };
231
		} else {
232
			res = { value: '' };
233
		}
J
Johannes Rieken 已提交
234

235
		// extract uris into a separate object
236 237 238
		const resUris: { [href: string]: UriComponents } = Object.create(null);
		res.uris = resUris;

J
Johannes Rieken 已提交
239 240 241
		let renderer = new marked.Renderer();
		renderer.image = renderer.link = (href: string): string => {
			try {
J
Johannes Rieken 已提交
242
				let uri = URI.parse(href, true);
243 244
				uri = uri.with({ query: _uriMassage(uri.query, resUris) });
				resUris[href] = uri;
J
Johannes Rieken 已提交
245 246 247 248 249
			} catch (e) {
				// ignore
			}
			return '';
		};
250 251 252
		marked(res.value, { renderer });

		return res;
J
Johannes Rieken 已提交
253 254
	}

J
Johannes Rieken 已提交
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
	function _uriMassage(part: string, bucket: { [n: string]: UriComponents }): string {
		if (!part) {
			return part;
		}
		let data: any;
		try {
			data = parse(decodeURIComponent(part));
		} catch (e) {
			// ignore
		}
		if (!data) {
			return part;
		}
		data = cloneAndChange(data, value => {
			if (value instanceof URI) {
				let key = `__uri_${Math.random().toString(16).slice(2, 8)}`;
				bucket[key] = value;
				return key;
			} else {
				return undefined;
			}
		});
		return encodeURIComponent(JSON.stringify(data));
	}

280 281 282 283
	export function to(value: htmlContent.IMarkdownString): vscode.MarkdownString {
		const ret = new htmlContent.MarkdownString(value.value);
		ret.isTrusted = value.isTrusted;
		return ret;
284
	}
285 286 287 288 289 290 291

	export function fromStrict(value: string | types.MarkdownString): undefined | string | htmlContent.IMarkdownString {
		if (!value) {
			return undefined;
		}
		return typeof value === 'string' ? value : MarkdownString.from(value);
	}
292 293
}

294
export function fromRangeOrRangeWithMessage(ranges: vscode.Range[] | vscode.DecorationOptions[]): IDecorationOptions[] {
M
Martin Aeschlimann 已提交
295
	if (isDecorationOptionsArr(ranges)) {
296
		return ranges.map((r): IDecorationOptions => {
E
Erich Gamma 已提交
297
			return {
298
				range: Range.from(r.range),
299 300 301
				hoverMessage: Array.isArray(r.hoverMessage)
					? MarkdownString.fromMany(r.hoverMessage)
					: (r.hoverMessage ? MarkdownString.from(r.hoverMessage) : undefined),
302
				renderOptions: <any> /* URI vs Uri */r.renderOptions
E
Erich Gamma 已提交
303 304 305
			};
		});
	} else {
M
Martin Aeschlimann 已提交
306
		return ranges.map((r): IDecorationOptions => {
E
Erich Gamma 已提交
307
			return {
308
				range: Range.from(r)
B
Benjamin Pasero 已提交
309
			};
E
Erich Gamma 已提交
310 311 312
		});
	}
}
313

A
Alex Dima 已提交
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
function pathOrURIToURI(value: string | URI): URI {
	if (typeof value === 'undefined') {
		return value;
	}
	if (typeof value === 'string') {
		return URI.file(value);
	} else {
		return value;
	}
}

export namespace ThemableDecorationAttachmentRenderOptions {
	export function from(options: vscode.ThemableDecorationAttachmentRenderOptions): IContentDecorationRenderOptions {
		if (typeof options === 'undefined') {
			return options;
		}
		return {
			contentText: options.contentText,
332
			contentIconPath: options.contentIconPath ? pathOrURIToURI(options.contentIconPath) : undefined,
A
Alex Dima 已提交
333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
			border: options.border,
			borderColor: <string | types.ThemeColor>options.borderColor,
			fontStyle: options.fontStyle,
			fontWeight: options.fontWeight,
			textDecoration: options.textDecoration,
			color: <string | types.ThemeColor>options.color,
			backgroundColor: <string | types.ThemeColor>options.backgroundColor,
			margin: options.margin,
			width: options.width,
			height: options.height,
		};
	}
}

export namespace ThemableDecorationRenderOptions {
	export function from(options: vscode.ThemableDecorationRenderOptions): IThemeDecorationRenderOptions {
		if (typeof options === 'undefined') {
			return options;
		}
		return {
			backgroundColor: <string | types.ThemeColor>options.backgroundColor,
			outline: options.outline,
			outlineColor: <string | types.ThemeColor>options.outlineColor,
			outlineStyle: options.outlineStyle,
			outlineWidth: options.outlineWidth,
			border: options.border,
			borderColor: <string | types.ThemeColor>options.borderColor,
			borderRadius: options.borderRadius,
			borderSpacing: options.borderSpacing,
			borderStyle: options.borderStyle,
			borderWidth: options.borderWidth,
			fontStyle: options.fontStyle,
			fontWeight: options.fontWeight,
			textDecoration: options.textDecoration,
			cursor: options.cursor,
			color: <string | types.ThemeColor>options.color,
			opacity: options.opacity,
			letterSpacing: options.letterSpacing,
371
			gutterIconPath: options.gutterIconPath ? pathOrURIToURI(options.gutterIconPath) : undefined,
A
Alex Dima 已提交
372 373
			gutterIconSize: options.gutterIconSize,
			overviewRulerColor: <string | types.ThemeColor>options.overviewRulerColor,
374 375
			before: options.before ? ThemableDecorationAttachmentRenderOptions.from(options.before) : undefined,
			after: options.after ? ThemableDecorationAttachmentRenderOptions.from(options.after) : undefined,
A
Alex Dima 已提交
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
		};
	}
}

export namespace DecorationRangeBehavior {
	export function from(value: types.DecorationRangeBehavior): TrackedRangeStickiness {
		if (typeof value === 'undefined') {
			return value;
		}
		switch (value) {
			case types.DecorationRangeBehavior.OpenOpen:
				return TrackedRangeStickiness.AlwaysGrowsWhenTypingAtEdges;
			case types.DecorationRangeBehavior.ClosedClosed:
				return TrackedRangeStickiness.NeverGrowsWhenTypingAtEdges;
			case types.DecorationRangeBehavior.OpenClosed:
				return TrackedRangeStickiness.GrowsOnlyWhenTypingBefore;
			case types.DecorationRangeBehavior.ClosedOpen:
				return TrackedRangeStickiness.GrowsOnlyWhenTypingAfter;
		}
	}
}

export namespace DecorationRenderOptions {
	export function from(options: vscode.DecorationRenderOptions): IDecorationRenderOptions {
		return {
			isWholeLine: options.isWholeLine,
402
			rangeBehavior: options.rangeBehavior ? DecorationRangeBehavior.from(options.rangeBehavior) : undefined,
A
Alex Dima 已提交
403
			overviewRulerLane: options.overviewRulerLane,
404 405
			light: options.light ? ThemableDecorationRenderOptions.from(options.light) : undefined,
			dark: options.dark ? ThemableDecorationRenderOptions.from(options.dark) : undefined,
A
Alex Dima 已提交
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424

			backgroundColor: <string | types.ThemeColor>options.backgroundColor,
			outline: options.outline,
			outlineColor: <string | types.ThemeColor>options.outlineColor,
			outlineStyle: options.outlineStyle,
			outlineWidth: options.outlineWidth,
			border: options.border,
			borderColor: <string | types.ThemeColor>options.borderColor,
			borderRadius: options.borderRadius,
			borderSpacing: options.borderSpacing,
			borderStyle: options.borderStyle,
			borderWidth: options.borderWidth,
			fontStyle: options.fontStyle,
			fontWeight: options.fontWeight,
			textDecoration: options.textDecoration,
			cursor: options.cursor,
			color: <string | types.ThemeColor>options.color,
			opacity: options.opacity,
			letterSpacing: options.letterSpacing,
425
			gutterIconPath: options.gutterIconPath ? pathOrURIToURI(options.gutterIconPath) : undefined,
A
Alex Dima 已提交
426 427
			gutterIconSize: options.gutterIconSize,
			overviewRulerColor: <string | types.ThemeColor>options.overviewRulerColor,
428 429
			before: options.before ? ThemableDecorationAttachmentRenderOptions.from(options.before) : undefined,
			after: options.after ? ThemableDecorationAttachmentRenderOptions.from(options.after) : undefined,
A
Alex Dima 已提交
430 431 432 433
		};
	}
}

M
Matt Bierner 已提交
434
export namespace TextEdit {
435

M
Matt Bierner 已提交
436
	export function from(edit: vscode.TextEdit): modes.TextEdit {
J
Johannes Rieken 已提交
437
		return <modes.TextEdit>{
438
			text: edit.newText,
J
Johannes Rieken 已提交
439
			eol: EndOfLine.from(edit.newEol),
440
			range: Range.from(edit.range)
B
Benjamin Pasero 已提交
441
		};
M
Matt Bierner 已提交
442 443 444
	}

	export function to(edit: modes.TextEdit): types.TextEdit {
M
Matt Bierner 已提交
445
		const result = new types.TextEdit(Range.to(edit.range), edit.text);
M
Matt Bierner 已提交
446
		result.newEol = (typeof edit.eol === 'undefined' ? undefined : EndOfLine.to(edit.eol))!;
J
Johannes Rieken 已提交
447
		return result;
448
	}
M
Matt Bierner 已提交
449
}
450

451
export namespace WorkspaceEdit {
452
	export function from(value: vscode.WorkspaceEdit, documents?: ExtHostDocumentsAndEditors): WorkspaceEditDto {
453
		const result: WorkspaceEditDto = {
454
			edits: []
455
		};
J
Johannes Rieken 已提交
456
		for (const entry of (value as types.WorkspaceEdit)._allEntries()) {
457 458 459
			const [uri, uriOrEdits] = entry;
			if (Array.isArray(uriOrEdits)) {
				// text edits
M
Matt Bierner 已提交
460
				const doc = documents && uri ? documents.getDocument(uri.toString()) : undefined;
461
				result.edits.push(<ResourceTextEditDto>{ resource: uri, modelVersionId: doc && doc.version, edits: uriOrEdits.map(TextEdit.from) });
462 463
			} else {
				// resource edits
464
				result.edits.push(<ResourceFileEditDto>{ oldUri: uri, newUri: uriOrEdits, options: entry[2] });
465 466 467 468 469
			}
		}
		return result;
	}

470
	export function to(value: WorkspaceEditDto) {
471 472
		const result = new types.WorkspaceEdit();
		for (const edit of value.edits) {
473 474 475 476 477
			if (Array.isArray((<ResourceTextEditDto>edit).edits)) {
				result.set(
					URI.revive((<ResourceTextEditDto>edit).resource),
					<types.TextEdit[]>(<ResourceTextEditDto>edit).edits.map(TextEdit.to)
				);
J
Johannes Rieken 已提交
478 479 480
			} else {
				result.renameFile(
					URI.revive((<ResourceFileEditDto>edit).oldUri),
481 482
					URI.revive((<ResourceFileEditDto>edit).newUri),
					(<ResourceFileEditDto>edit).options
J
Johannes Rieken 已提交
483
				);
484
			}
485 486 487
		}
		return result;
	}
488 489
}

490

491 492 493
export namespace SymbolKind {

	const _fromMapping: { [kind: number]: modes.SymbolKind } = Object.create(null);
494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516
	_fromMapping[types.SymbolKind.File] = modes.SymbolKind.File;
	_fromMapping[types.SymbolKind.Module] = modes.SymbolKind.Module;
	_fromMapping[types.SymbolKind.Namespace] = modes.SymbolKind.Namespace;
	_fromMapping[types.SymbolKind.Package] = modes.SymbolKind.Package;
	_fromMapping[types.SymbolKind.Class] = modes.SymbolKind.Class;
	_fromMapping[types.SymbolKind.Method] = modes.SymbolKind.Method;
	_fromMapping[types.SymbolKind.Property] = modes.SymbolKind.Property;
	_fromMapping[types.SymbolKind.Field] = modes.SymbolKind.Field;
	_fromMapping[types.SymbolKind.Constructor] = modes.SymbolKind.Constructor;
	_fromMapping[types.SymbolKind.Enum] = modes.SymbolKind.Enum;
	_fromMapping[types.SymbolKind.Interface] = modes.SymbolKind.Interface;
	_fromMapping[types.SymbolKind.Function] = modes.SymbolKind.Function;
	_fromMapping[types.SymbolKind.Variable] = modes.SymbolKind.Variable;
	_fromMapping[types.SymbolKind.Constant] = modes.SymbolKind.Constant;
	_fromMapping[types.SymbolKind.String] = modes.SymbolKind.String;
	_fromMapping[types.SymbolKind.Number] = modes.SymbolKind.Number;
	_fromMapping[types.SymbolKind.Boolean] = modes.SymbolKind.Boolean;
	_fromMapping[types.SymbolKind.Array] = modes.SymbolKind.Array;
	_fromMapping[types.SymbolKind.Object] = modes.SymbolKind.Object;
	_fromMapping[types.SymbolKind.Key] = modes.SymbolKind.Key;
	_fromMapping[types.SymbolKind.Null] = modes.SymbolKind.Null;
	_fromMapping[types.SymbolKind.EnumMember] = modes.SymbolKind.EnumMember;
	_fromMapping[types.SymbolKind.Struct] = modes.SymbolKind.Struct;
517 518
	_fromMapping[types.SymbolKind.Event] = modes.SymbolKind.Event;
	_fromMapping[types.SymbolKind.Operator] = modes.SymbolKind.Operator;
519
	_fromMapping[types.SymbolKind.TypeParameter] = modes.SymbolKind.TypeParameter;
520 521

	export function from(kind: vscode.SymbolKind): modes.SymbolKind {
J
Johannes Rieken 已提交
522
		return typeof _fromMapping[kind] === 'number' ? _fromMapping[kind] : modes.SymbolKind.Property;
523 524
	}

525
	export function to(kind: modes.SymbolKind): vscode.SymbolKind {
M
Matt Bierner 已提交
526
		for (const k in _fromMapping) {
527 528
			if (_fromMapping[k] === kind) {
				return Number(k);
529
			}
530 531
		}
		return types.SymbolKind.Property;
532 533 534
	}
}

535 536 537
export namespace WorkspaceSymbol {
	export function from(info: vscode.SymbolInformation): search.IWorkspaceSymbol {
		return <search.IWorkspaceSymbol>{
538 539 540 541 542 543
			name: info.name,
			kind: SymbolKind.from(info.kind),
			containerName: info.containerName,
			location: location.from(info.location)
		};
	}
544
	export function to(info: search.IWorkspaceSymbol): types.SymbolInformation {
545 546 547 548 549 550 551
		return new types.SymbolInformation(
			info.name,
			SymbolKind.to(info.kind),
			info.containerName,
			location.to(info.location)
		);
	}
552 553
}

554
export namespace DocumentSymbol {
555
	export function from(info: vscode.DocumentSymbol): modes.DocumentSymbol {
M
Matt Bierner 已提交
556
		const result: modes.DocumentSymbol = {
557
			name: info.name || '!!MISSING: name!!',
558
			detail: info.detail,
559 560
			range: Range.from(info.range),
			selectionRange: Range.from(info.selectionRange),
561
			kind: SymbolKind.from(info.kind)
562 563 564 565 566 567
		};
		if (info.children) {
			result.children = info.children.map(from);
		}
		return result;
	}
568
	export function to(info: modes.DocumentSymbol): vscode.DocumentSymbol {
M
Matt Bierner 已提交
569
		const result = new types.DocumentSymbol(
570
			info.name,
571
			info.detail,
J
Johannes Rieken 已提交
572
			SymbolKind.to(info.kind),
573 574
			Range.to(info.range),
			Range.to(info.selectionRange),
575
		);
576
		if (info.children) {
577
			result.children = info.children.map(to) as any;
578 579 580
		}
		return result;
	}
581 582
}

M
Matt Bierner 已提交
583 584
export namespace location {
	export function from(value: vscode.Location): modes.Location {
585
		return {
586
			range: value.range && Range.from(value.range),
J
Johannes Rieken 已提交
587
			uri: value.uri
J
Johannes Rieken 已提交
588
		};
M
Matt Bierner 已提交
589 590 591
	}

	export function to(value: modes.Location): types.Location {
592
		return new types.Location(value.uri, Range.to(value.range));
593
	}
M
Matt Bierner 已提交
594
}
595

M
Matt Bierner 已提交
596
export namespace DefinitionLink {
J
Johannes Rieken 已提交
597
	export function from(value: vscode.Location | vscode.DefinitionLink): modes.LocationLink {
M
Matt Bierner 已提交
598 599 600
		const definitionLink = <vscode.DefinitionLink>value;
		const location = <vscode.Location>value;
		return {
J
Johannes Rieken 已提交
601
			originSelectionRange: definitionLink.originSelectionRange
M
Matt Bierner 已提交
602 603 604 605
				? Range.from(definitionLink.originSelectionRange)
				: undefined,
			uri: definitionLink.targetUri ? definitionLink.targetUri : location.uri,
			range: Range.from(definitionLink.targetRange ? definitionLink.targetRange : location.range),
J
Johannes Rieken 已提交
606
			targetSelectionRange: definitionLink.targetSelectionRange
M
Matt Bierner 已提交
607 608 609 610 611 612
				? Range.from(definitionLink.targetSelectionRange)
				: undefined,
		};
	}
}

613 614 615 616 617 618 619
export namespace Hover {
	export function from(hover: vscode.Hover): modes.Hover {
		return <modes.Hover>{
			range: Range.from(hover.range),
			contents: MarkdownString.fromMany(hover.contents)
		};
	}
620

621 622 623
	export function to(info: modes.Hover): types.Hover {
		return new types.Hover(info.contents.map(MarkdownString.to), Range.to(info.range));
	}
624
}
625 626 627 628 629 630 631 632 633 634
export namespace DocumentHighlight {
	export function from(documentHighlight: vscode.DocumentHighlight): modes.DocumentHighlight {
		return {
			range: Range.from(documentHighlight.range),
			kind: documentHighlight.kind
		};
	}
	export function to(occurrence: modes.DocumentHighlight): types.DocumentHighlight {
		return new types.DocumentHighlight(Range.to(occurrence.range), occurrence.kind);
	}
635 636
}

M
Matt Bierner 已提交
637
export namespace CompletionTriggerKind {
638
	export function to(kind: modes.CompletionTriggerKind) {
M
Matt Bierner 已提交
639
		switch (kind) {
640
			case modes.CompletionTriggerKind.TriggerCharacter:
M
Matt Bierner 已提交
641
				return types.CompletionTriggerKind.TriggerCharacter;
642
			case modes.CompletionTriggerKind.TriggerForIncompleteCompletions:
643
				return types.CompletionTriggerKind.TriggerForIncompleteCompletions;
644
			case modes.CompletionTriggerKind.Invoke:
M
Matt Bierner 已提交
645 646 647 648 649 650 651
			default:
				return types.CompletionTriggerKind.Invoke;
		}
	}
}

export namespace CompletionContext {
652
	export function to(context: modes.CompletionContext): types.CompletionContext {
M
Matt Bierner 已提交
653
		return {
654
			triggerKind: CompletionTriggerKind.to(context.triggerKind),
M
Matt Bierner 已提交
655 656 657 658 659
			triggerCharacter: context.triggerCharacter
		};
	}
}

M
Matt Bierner 已提交
660
export namespace CompletionItemKind {
J
Johannes Rieken 已提交
661

662
	export function from(kind: types.CompletionItemKind | undefined): modes.CompletionItemKind {
J
Johannes Rieken 已提交
663
		switch (kind) {
664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688
			case types.CompletionItemKind.Method: return modes.CompletionItemKind.Method;
			case types.CompletionItemKind.Function: return modes.CompletionItemKind.Function;
			case types.CompletionItemKind.Constructor: return modes.CompletionItemKind.Constructor;
			case types.CompletionItemKind.Field: return modes.CompletionItemKind.Field;
			case types.CompletionItemKind.Variable: return modes.CompletionItemKind.Variable;
			case types.CompletionItemKind.Class: return modes.CompletionItemKind.Class;
			case types.CompletionItemKind.Interface: return modes.CompletionItemKind.Interface;
			case types.CompletionItemKind.Struct: return modes.CompletionItemKind.Struct;
			case types.CompletionItemKind.Module: return modes.CompletionItemKind.Module;
			case types.CompletionItemKind.Property: return modes.CompletionItemKind.Property;
			case types.CompletionItemKind.Unit: return modes.CompletionItemKind.Unit;
			case types.CompletionItemKind.Value: return modes.CompletionItemKind.Value;
			case types.CompletionItemKind.Constant: return modes.CompletionItemKind.Constant;
			case types.CompletionItemKind.Enum: return modes.CompletionItemKind.Enum;
			case types.CompletionItemKind.EnumMember: return modes.CompletionItemKind.EnumMember;
			case types.CompletionItemKind.Keyword: return modes.CompletionItemKind.Keyword;
			case types.CompletionItemKind.Snippet: return modes.CompletionItemKind.Snippet;
			case types.CompletionItemKind.Text: return modes.CompletionItemKind.Text;
			case types.CompletionItemKind.Color: return modes.CompletionItemKind.Color;
			case types.CompletionItemKind.File: return modes.CompletionItemKind.File;
			case types.CompletionItemKind.Reference: return modes.CompletionItemKind.Reference;
			case types.CompletionItemKind.Folder: return modes.CompletionItemKind.Folder;
			case types.CompletionItemKind.Event: return modes.CompletionItemKind.Event;
			case types.CompletionItemKind.Operator: return modes.CompletionItemKind.Operator;
			case types.CompletionItemKind.TypeParameter: return modes.CompletionItemKind.TypeParameter;
J
Johannes Rieken 已提交
689
		}
690
		return modes.CompletionItemKind.Property;
M
Matt Bierner 已提交
691
	}
J
Johannes Rieken 已提交
692

M
Matt Bierner 已提交
693
	export function to(kind: modes.CompletionItemKind): types.CompletionItemKind {
694
		switch (kind) {
695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719
			case modes.CompletionItemKind.Method: return types.CompletionItemKind.Method;
			case modes.CompletionItemKind.Function: return types.CompletionItemKind.Function;
			case modes.CompletionItemKind.Constructor: return types.CompletionItemKind.Constructor;
			case modes.CompletionItemKind.Field: return types.CompletionItemKind.Field;
			case modes.CompletionItemKind.Variable: return types.CompletionItemKind.Variable;
			case modes.CompletionItemKind.Class: return types.CompletionItemKind.Class;
			case modes.CompletionItemKind.Interface: return types.CompletionItemKind.Interface;
			case modes.CompletionItemKind.Struct: return types.CompletionItemKind.Struct;
			case modes.CompletionItemKind.Module: return types.CompletionItemKind.Module;
			case modes.CompletionItemKind.Property: return types.CompletionItemKind.Property;
			case modes.CompletionItemKind.Unit: return types.CompletionItemKind.Unit;
			case modes.CompletionItemKind.Value: return types.CompletionItemKind.Value;
			case modes.CompletionItemKind.Constant: return types.CompletionItemKind.Constant;
			case modes.CompletionItemKind.Enum: return types.CompletionItemKind.Enum;
			case modes.CompletionItemKind.EnumMember: return types.CompletionItemKind.EnumMember;
			case modes.CompletionItemKind.Keyword: return types.CompletionItemKind.Keyword;
			case modes.CompletionItemKind.Snippet: return types.CompletionItemKind.Snippet;
			case modes.CompletionItemKind.Text: return types.CompletionItemKind.Text;
			case modes.CompletionItemKind.Color: return types.CompletionItemKind.Color;
			case modes.CompletionItemKind.File: return types.CompletionItemKind.File;
			case modes.CompletionItemKind.Reference: return types.CompletionItemKind.Reference;
			case modes.CompletionItemKind.Folder: return types.CompletionItemKind.Folder;
			case modes.CompletionItemKind.Event: return types.CompletionItemKind.Event;
			case modes.CompletionItemKind.Operator: return types.CompletionItemKind.Operator;
			case modes.CompletionItemKind.TypeParameter: return types.CompletionItemKind.TypeParameter;
J
Johannes Rieken 已提交
720
		}
721
		return types.CompletionItemKind.Property;
J
Johannes Rieken 已提交
722
	}
M
Matt Bierner 已提交
723
}
J
Johannes Rieken 已提交
724

725
export namespace CompletionItem {
726

727
	export function to(suggestion: modes.CompletionItem): types.CompletionItem {
728
		const result = new types.CompletionItem(suggestion.label);
729
		result.insertText = suggestion.insertText;
730
		result.kind = CompletionItemKind.to(suggestion.kind);
731
		result.detail = suggestion.detail;
732
		result.documentation = htmlContent.isMarkdownString(suggestion.documentation) ? MarkdownString.to(suggestion.documentation) : suggestion.documentation;
733 734
		result.sortText = suggestion.sortText;
		result.filterText = suggestion.filterText;
J
Johannes Rieken 已提交
735
		result.preselect = suggestion.preselect;
J
Johannes Rieken 已提交
736
		result.commitCharacters = suggestion.commitCharacters;
737
		result.range = Range.to(suggestion.range);
738
		result.keepWhitespace = typeof suggestion.insertTextRules === 'undefined' ? false : Boolean(suggestion.insertTextRules & modes.CompletionItemInsertTextRule.KeepWhitespace);
739
		// 'inserText'-logic
740
		if (typeof suggestion.insertTextRules !== 'undefined' && suggestion.insertTextRules & modes.CompletionItemInsertTextRule.InsertAsSnippet) {
741 742 743 744 745 746
			result.insertText = new types.SnippetString(suggestion.insertText);
		} else {
			result.insertText = suggestion.insertText;
			result.textEdit = new types.TextEdit(result.range, result.insertText);
		}
		// TODO additionalEdits, command
747

748 749
		return result;
	}
750
}
751

752 753 754 755
export namespace ParameterInformation {
	export function from(info: types.ParameterInformation): modes.ParameterInformation {
		return {
			label: info.label,
756
			documentation: info.documentation ? MarkdownString.fromStrict(info.documentation) : undefined
757 758 759 760 761 762 763 764 765 766 767 768 769 770 771
		};
	}
	export function to(info: modes.ParameterInformation): types.ParameterInformation {
		return {
			label: info.label,
			documentation: htmlContent.isMarkdownString(info.documentation) ? MarkdownString.to(info.documentation) : info.documentation
		};
	}
}

export namespace SignatureInformation {

	export function from(info: types.SignatureInformation): modes.SignatureInformation {
		return {
			label: info.label,
772
			documentation: info.documentation ? MarkdownString.fromStrict(info.documentation) : undefined,
773 774 775 776 777 778 779 780 781 782 783 784
			parameters: info.parameters && info.parameters.map(ParameterInformation.from)
		};
	}

	export function to(info: modes.SignatureInformation): types.SignatureInformation {
		return {
			label: info.label,
			documentation: htmlContent.isMarkdownString(info.documentation) ? MarkdownString.to(info.documentation) : info.documentation,
			parameters: info.parameters && info.parameters.map(ParameterInformation.to)
		};
	}
}
785

786 787
export namespace SignatureHelp {

788 789 790 791 792 793
	export function from(help: types.SignatureHelp): modes.SignatureHelp {
		return {
			activeSignature: help.activeSignature,
			activeParameter: help.activeParameter,
			signatures: help.signatures && help.signatures.map(SignatureInformation.from)
		};
794 795
	}

796 797 798 799 800 801
	export function to(help: modes.SignatureHelp): types.SignatureHelp {
		return {
			activeSignature: help.activeSignature,
			activeParameter: help.activeParameter,
			signatures: help.signatures && help.signatures.map(SignatureInformation.to)
		};
802
	}
J
Johannes Rieken 已提交
803 804
}

J
Johannes Rieken 已提交
805 806
export namespace DocumentLink {

807
	export function from(link: vscode.DocumentLink): modes.ILink {
J
Johannes Rieken 已提交
808
		return {
809
			range: Range.from(link.range),
810
			url: link.target && link.target.toString()
J
Johannes Rieken 已提交
811 812 813
		};
	}

814
	export function to(link: modes.ILink): vscode.DocumentLink {
815
		return new types.DocumentLink(Range.to(link.range), link.url ? URI.parse(link.url) : undefined);
J
Johannes Rieken 已提交
816 817
	}
}
818

819
export namespace ColorPresentation {
820
	export function to(colorPresentation: modes.IColorPresentation): types.ColorPresentation {
M
Matt Bierner 已提交
821
		const cp = new types.ColorPresentation(colorPresentation.label);
822 823 824 825 826 827 828
		if (colorPresentation.textEdit) {
			cp.textEdit = TextEdit.to(colorPresentation.textEdit);
		}
		if (colorPresentation.additionalTextEdits) {
			cp.additionalTextEdits = colorPresentation.additionalTextEdits.map(value => TextEdit.to(value));
		}
		return cp;
829 830 831 832 833 834 835 836 837 838 839
	}

	export function from(colorPresentation: vscode.ColorPresentation): modes.IColorPresentation {
		return {
			label: colorPresentation.label,
			textEdit: colorPresentation.textEdit ? TextEdit.from(colorPresentation.textEdit) : undefined,
			additionalTextEdits: colorPresentation.additionalTextEdits ? colorPresentation.additionalTextEdits.map(value => TextEdit.from(value)) : undefined
		};
	}
}

840 841 842 843 844 845 846 847 848
export namespace Color {
	export function to(c: [number, number, number, number]): types.Color {
		return new types.Color(c[0], c[1], c[2], c[3]);
	}
	export function from(color: types.Color): [number, number, number, number] {
		return [color.red, color.green, color.blue, color.alpha];
	}
}

849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868
export namespace SelectionRangeKind {

	export function from(kind: vscode.SelectionRangeKind): string {
		return kind.value;
	}

	export function to(value: string): vscode.SelectionRangeKind {
		return new types.SelectionRangeKind(value);
	}
}

export namespace SelectionRange {
	export function from(obj: vscode.SelectionRange): modes.SelectionRange {
		return {
			kind: SelectionRangeKind.from(obj.kind),
			range: Range.from(obj.range)
		};
	}

	export function to(obj: modes.SelectionRange): vscode.SelectionRange {
869
		return new types.SelectionRange(Range.to(obj.range), SelectionRangeKind.to(obj.kind));
870 871 872
	}
}

873 874 875 876 877
export namespace TextDocumentSaveReason {

	export function to(reason: SaveReason): vscode.TextDocumentSaveReason {
		switch (reason) {
			case SaveReason.AUTO:
878
				return types.TextDocumentSaveReason.AfterDelay;
879
			case SaveReason.EXPLICIT:
880
				return types.TextDocumentSaveReason.Manual;
881 882 883 884 885
			case SaveReason.FOCUS_CHANGE:
			case SaveReason.WINDOW_CHANGE:
				return types.TextDocumentSaveReason.FocusOut;
		}
	}
886
}
887 888


889 890
export namespace EndOfLine {

891
	export function from(eol: vscode.EndOfLine): EndOfLineSequence | undefined {
892 893 894 895 896 897
		if (eol === types.EndOfLine.CRLF) {
			return EndOfLineSequence.CRLF;
		} else if (eol === types.EndOfLine.LF) {
			return EndOfLineSequence.LF;
		}
		return undefined;
898
	}
J
Johannes Rieken 已提交
899

900
	export function to(eol: EndOfLineSequence): vscode.EndOfLine | undefined {
J
Johannes Rieken 已提交
901 902 903 904 905 906 907
		if (eol === EndOfLineSequence.CRLF) {
			return types.EndOfLine.CRLF;
		} else if (eol === EndOfLineSequence.LF) {
			return types.EndOfLine.LF;
		}
		return undefined;
	}
908 909
}

J
Johannes Rieken 已提交
910
export namespace ProgressLocation {
M
Matt Bierner 已提交
911
	export function from(loc: vscode.ProgressLocation): MainProgressLocation {
J
Johannes Rieken 已提交
912
		switch (loc) {
913
			case types.ProgressLocation.SourceControl: return MainProgressLocation.Scm;
J
Johannes Rieken 已提交
914
			case types.ProgressLocation.Window: return MainProgressLocation.Window;
915
			case types.ProgressLocation.Notification: return MainProgressLocation.Notification;
J
Johannes Rieken 已提交
916
		}
M
Matt Bierner 已提交
917
		throw new Error(`Unknown 'ProgressLocation'`);
J
Johannes Rieken 已提交
918 919
	}
}
920

921
export namespace FoldingRange {
922
	export function from(r: vscode.FoldingRange): modes.FoldingRange {
M
Matt Bierner 已提交
923
		const range: modes.FoldingRange = { start: r.start + 1, end: r.end + 1 };
924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942
		if (r.kind) {
			range.kind = FoldingRangeKind.from(r.kind);
		}
		return range;
	}
}

export namespace FoldingRangeKind {
	export function from(kind: vscode.FoldingRangeKind | undefined): modes.FoldingRangeKind | undefined {
		if (kind) {
			switch (kind) {
				case types.FoldingRangeKind.Comment:
					return modes.FoldingRangeKind.Comment;
				case types.FoldingRangeKind.Imports:
					return modes.FoldingRangeKind.Imports;
				case types.FoldingRangeKind.Region:
					return modes.FoldingRangeKind.Region;
			}
		}
R
Rob Lourens 已提交
943
		return undefined;
944 945 946
	}
}

947
export namespace TextEditorOptions {
948

949
	export function from(options?: vscode.TextDocumentShowOptions): ITextEditorOptions | undefined {
950 951 952 953 954 955 956
		if (options) {
			return {
				pinned: typeof options.preview === 'boolean' ? !options.preview : undefined,
				preserveFocus: options.preserveFocus,
				selection: typeof options.selection === 'object' ? Range.from(options.selection) : undefined
			} as ITextEditorOptions;
		}
957

958
		return undefined;
959 960 961 962
	}

}

963
export namespace GlobPattern {
964

965 966 967 968 969
	export function from(pattern: vscode.GlobPattern): string | types.RelativePattern {
		if (pattern instanceof types.RelativePattern) {
			return pattern;
		}

970 971 972
		if (typeof pattern === 'string') {
			return pattern;
		}
973

974 975 976 977 978
		if (isRelativePattern(pattern)) {
			return new types.RelativePattern(pattern.base, pattern.pattern);
		}

		return pattern; // preserve `undefined` and `null`
979 980
	}

981 982 983 984
	function isRelativePattern(obj: any): obj is vscode.RelativePattern {
		const rp = obj as vscode.RelativePattern;
		return rp && typeof rp.base === 'string' && typeof rp.pattern === 'string';
	}
985 986
}

987
export namespace LanguageSelector {
988

M
Matt Bierner 已提交
989 990 991
	export function from(selector: undefined): undefined;
	export function from(selector: vscode.DocumentSelector): languageSelector.LanguageSelector;
	export function from(selector: vscode.DocumentSelector | undefined): languageSelector.LanguageSelector | undefined;
M
Matt Bierner 已提交
992
	export function from(selector: vscode.DocumentSelector | undefined): languageSelector.LanguageSelector | undefined {
993 994 995 996 997 998 999 1000 1001 1002
		if (!selector) {
			return undefined;
		} else if (Array.isArray(selector)) {
			return <languageSelector.LanguageSelector>selector.map(from);
		} else if (typeof selector === 'string') {
			return selector;
		} else {
			return <languageSelector.LanguageFilter>{
				language: selector.language,
				scheme: selector.scheme,
M
Matt Bierner 已提交
1003
				pattern: typeof selector.pattern === 'undefined' ? undefined : GlobPattern.from(selector.pattern),
1004 1005 1006
				exclusive: selector.exclusive
			};
		}
1007
	}
1008
}
1009 1010

export namespace LogLevel {
1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050
	export function from(extLevel: types.LogLevel): _MainLogLevel {
		switch (extLevel) {
			case types.LogLevel.Trace:
				return _MainLogLevel.Trace;
			case types.LogLevel.Debug:
				return _MainLogLevel.Debug;
			case types.LogLevel.Info:
				return _MainLogLevel.Info;
			case types.LogLevel.Warning:
				return _MainLogLevel.Warning;
			case types.LogLevel.Error:
				return _MainLogLevel.Error;
			case types.LogLevel.Critical:
				return _MainLogLevel.Critical;
			case types.LogLevel.Off:
				return _MainLogLevel.Off;
		}

		return _MainLogLevel.Info;
	}

	export function to(mainLevel: _MainLogLevel): types.LogLevel {
		switch (mainLevel) {
			case _MainLogLevel.Trace:
				return types.LogLevel.Trace;
			case _MainLogLevel.Debug:
				return types.LogLevel.Debug;
			case _MainLogLevel.Info:
				return types.LogLevel.Info;
			case _MainLogLevel.Warning:
				return types.LogLevel.Warning;
			case _MainLogLevel.Error:
				return types.LogLevel.Error;
			case _MainLogLevel.Critical:
				return types.LogLevel.Critical;
			case _MainLogLevel.Off:
				return types.LogLevel.Off;
		}

		return types.LogLevel.Info;
1051 1052
	}
}