Skip to content

Commit d49995b

Browse files
committed
CodeMapper support
1 parent e2bf8b4 commit d49995b

File tree

9 files changed

+537
-0
lines changed

9 files changed

+537
-0
lines changed

src/harness/client.ts

+2
Original file line numberDiff line numberDiff line change
@@ -790,6 +790,8 @@ export class SessionClient implements LanguageService {
790790
});
791791
}
792792

793+
mapCode = notImplemented;
794+
793795
private createFileLocationOrRangeRequestArgs(positionOrRange: number | TextRange, fileName: string): protocol.FileLocationOrRangeRequestArgs {
794796
return typeof positionOrRange === "number"
795797
? this.createFileLocationRequestArgs(fileName, positionOrRange)

src/server/protocol.ts

+37
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,7 @@ export const enum CommandTypes {
174174
ProvideCallHierarchyOutgoingCalls = "provideCallHierarchyOutgoingCalls",
175175
ProvideInlayHints = "provideInlayHints",
176176
WatchChange = "watchChange",
177+
MapCode = "mapCode",
177178
}
178179

179180
/**
@@ -2700,6 +2701,42 @@ export interface InlayHintsResponse extends Response {
27002701
body?: InlayHintItem[];
27012702
}
27022703

2704+
export interface MapCodeRequestArgs {
2705+
/// The files and changes to try and apply/map.
2706+
mappings: MapCodeRequestDocumentMapping[];
2707+
2708+
/// Edits to apply to the current workspace before performing the mapping.
2709+
updates?: FileCodeEdits[];
2710+
}
2711+
2712+
export interface MapCodeRequestDocumentMapping {
2713+
/// The file for the request (absolute pathname required). Null/undefined
2714+
/// if specific file is unknown.
2715+
file?: string;
2716+
2717+
/// Optional name of project that contains file
2718+
projectFileName?: string;
2719+
2720+
/// The specific code to map/insert/replace in the file.
2721+
contents: string[];
2722+
2723+
/// Areas of "focus" to inform the code mapper with. For example, cursor
2724+
/// location, current selection, viewport, etc. Nested arrays denote
2725+
/// priority: toplevel arrays are more important than inner arrays, and
2726+
/// inner array priorities are based on items within that array. Items
2727+
/// earlier in the arrays have higher priority.
2728+
focusLocations?: FileSpan[][];
2729+
}
2730+
2731+
export interface MapCodeRequest extends Request {
2732+
command: CommandTypes.MapCode;
2733+
arguments: MapCodeRequestArgs;
2734+
}
2735+
2736+
export interface MapCodeResponse extends Response {
2737+
body: FileCodeEdits[];
2738+
}
2739+
27032740
/**
27042741
* Synchronous request for semantic diagnostics of one file.
27052742
*/

src/server/session.ts

+69
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ import {
8686
LineAndCharacter,
8787
LinkedEditingInfo,
8888
map,
89+
MapCodeDocumentMapping,
8990
mapDefined,
9091
mapDefinedIterator,
9192
mapIterator,
@@ -1905,6 +1906,71 @@ export class Session<TMessage = string> implements EventSender {
19051906
});
19061907
}
19071908

1909+
private mapCode(args: protocol.MapCodeRequestArgs): protocol.FileCodeEdits[] {
1910+
const formatOptions = this.getHostFormatOptions();
1911+
const preferences = this.getHostPreferences();
1912+
const projects = new Map<Project, MapCodeDocumentMapping[]>();
1913+
args.mappings.forEach(mapping => {
1914+
if (!mapping.file) {
1915+
return { contents: mapping.contents };
1916+
}
1917+
const { file, project } = this.getFileAndProjectWorker(mapping.file, mapping.projectFileName);
1918+
const scriptInfo = this.projectService.getScriptInfoForNormalizedPath(file)!;
1919+
const focusLocations = mapping.focusLocations?.map(spans => {
1920+
return spans.map(loc => {
1921+
const start = scriptInfo.lineOffsetToPosition(loc.start.line, loc.start.offset);
1922+
const end = scriptInfo.lineOffsetToPosition(loc.end.line, loc.end.offset);
1923+
return {
1924+
start,
1925+
length: end - start,
1926+
};
1927+
});
1928+
});
1929+
if (!projects.has(project)) {
1930+
projects.set(project, []);
1931+
}
1932+
projects.get(project)!.push({
1933+
contents: mapping.contents,
1934+
fileName: file,
1935+
focusLocations,
1936+
});
1937+
});
1938+
const updates = args.updates?.map(edit => {
1939+
const file = this.getFileAndProjectWorker(edit.fileName, /*projectFileName*/ undefined).file;
1940+
const scriptInfo = this.projectService.getScriptInfoForNormalizedPath(file)!;
1941+
return {
1942+
fileName: edit.fileName,
1943+
textChanges: edit.textChanges.map(({ start, end, newText }) => {
1944+
const newStart = scriptInfo.lineOffsetToPosition(start.line, start.offset);
1945+
const newEnd = scriptInfo.lineOffsetToPosition(end.line, end.offset);
1946+
return {
1947+
span: { start: newStart, length: newEnd - newStart },
1948+
newText,
1949+
};
1950+
}),
1951+
};
1952+
});
1953+
1954+
return [...projects.entries()].map(([project, mappings]) => {
1955+
return project.getLanguageService().mapCode(mappings, formatOptions, preferences, updates);
1956+
}).filter(x => x).flatMap(changes => {
1957+
return changes.map(change => {
1958+
const scriptInfo = this.projectService.getScriptInfoForNormalizedPath(toNormalizedPath(change.fileName))!;
1959+
return {
1960+
fileName: change.fileName,
1961+
textChanges: change.textChanges.map(({ span, newText }) => {
1962+
const newSpan = toProtocolTextSpan(span, scriptInfo);
1963+
return {
1964+
start: newSpan.start,
1965+
end: newSpan.end,
1966+
newText,
1967+
};
1968+
}),
1969+
};
1970+
});
1971+
});
1972+
}
1973+
19081974
private setCompilerOptionsForInferredProjects(args: protocol.SetCompilerOptionsForInferredProjectsArgs): void {
19091975
this.projectService.setCompilerOptionsForInferredProjects(args.options, args.projectRootPath);
19101976
}
@@ -3583,6 +3649,9 @@ export class Session<TMessage = string> implements EventSender {
35833649
[protocol.CommandTypes.ProvideInlayHints]: (request: protocol.InlayHintsRequest) => {
35843650
return this.requiredResponse(this.provideInlayHints(request.arguments));
35853651
},
3652+
[protocol.CommandTypes.MapCode]: (request: protocol.MapCodeRequest) => {
3653+
return this.requiredResponse(this.mapCode(request.arguments));
3654+
},
35863655
}));
35873656

35883657
public addProtocolHandler(command: string, handler: (request: protocol.Request) => HandlerResponse) {
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/* Generated file to emulate the ts.MapCode namespace. */
2+
3+
export * from "../mapCode";

src/services/_namespaces/ts.ts

+2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ import * as GoToDefinition from "./ts.GoToDefinition";
3232
export { GoToDefinition };
3333
import * as InlayHints from "./ts.InlayHints";
3434
export { InlayHints };
35+
import * as MapCode from "./ts.MapCode";
36+
export { MapCode };
3537
import * as JsDoc from "./ts.JsDoc";
3638
export { JsDoc };
3739
import * as NavigateTo from "./ts.NavigateTo";

0 commit comments

Comments
 (0)