-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathv3.ts
271 lines (247 loc) · 8.26 KB
/
v3.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
import type { FormatRequest, Formatter, GlobalConfiguration, Host, PluginInfo } from "./common.ts";
const decoder = new TextDecoder();
const encoder = new TextEncoder();
/**
* Creates host for host formatting.
*/
export function createHost(): Host {
let instance: WebAssembly.Instance;
let hostFormatter: ((request: FormatRequest) => string) | undefined = undefined;
let overrideConfig = {};
let filePath = "";
let formattedText = "";
let errorText = "";
return {
setInstance(wasmInstance: WebAssembly.Instance) {
instance = wasmInstance;
},
setHostFormatter(formatWithHost) {
hostFormatter = formatWithHost;
},
createImportObject(): WebAssembly.Imports {
let sharedBuffer = new Uint8Array(0);
let sharedBufferIndex = 0;
const resetSharedBuffer = (length: number) => {
sharedBuffer = new Uint8Array(length);
sharedBufferIndex = 0;
};
return {
dprint: {
"host_clear_bytes": (length: number) => {
resetSharedBuffer(length);
},
"host_read_buffer": (pointer: number, length: number) => {
sharedBuffer.set(getWasmBufferAtPointer(instance, pointer, length), sharedBufferIndex);
sharedBufferIndex += length;
},
"host_write_buffer": (pointer: number, index: number, length: number) => {
getWasmBufferAtPointer(instance, pointer, length).set(sharedBuffer.slice(index, index + length));
},
"host_take_file_path": () => {
filePath = decoder.decode(sharedBuffer);
resetSharedBuffer(0);
},
"host_take_override_config": () => {
overrideConfig = JSON.parse(decoder.decode(sharedBuffer));
resetSharedBuffer(0);
},
"host_format": () => {
const fileText = decoder.decode(sharedBuffer);
try {
formattedText = hostFormatter?.({
filePath,
fileText,
overrideConfig,
}) ?? fileText;
return fileText === formattedText ? 0 : 1;
} catch (error) {
errorText = String(error);
return 2;
}
},
"host_get_formatted_text": () => {
sharedBuffer = encoder.encode(formattedText);
sharedBufferIndex = 0;
return sharedBuffer.length;
},
"host_get_error_text": () => {
sharedBuffer = encoder.encode(errorText);
sharedBufferIndex = 0;
return sharedBuffer.length;
},
},
};
},
};
}
export function createFromInstance(
wasmInstance: WebAssembly.Instance,
host: Host,
): Formatter {
host.setInstance(wasmInstance);
// deno-lint-ignore no-explicit-any
const wasmExports = wasmInstance.exports as any;
const {
get_plugin_schema_version,
set_file_path,
set_override_config,
get_formatted_text,
format,
get_error_text,
get_plugin_info,
get_resolved_config,
get_config_diagnostics,
set_global_config,
set_plugin_config,
get_license_text,
reset_config,
} = wasmExports;
const pluginSchemaVersion = get_plugin_schema_version();
const expectedPluginSchemaVersion = 3;
if (
pluginSchemaVersion !== 2
&& pluginSchemaVersion !== expectedPluginSchemaVersion
) {
throw new Error(
`Not compatible plugin. `
+ `Expected schema ${expectedPluginSchemaVersion}, `
+ `but plugin had ${pluginSchemaVersion}.`,
);
}
let configSet = false;
return {
setConfig(globalConfig, pluginConfig) {
setConfig(globalConfig, pluginConfig);
},
getConfigDiagnostics() {
setConfigIfNotSet();
const length = get_config_diagnostics();
return JSON.parse(receiveString(wasmInstance, length));
},
getResolvedConfig() {
setConfigIfNotSet();
const length = get_resolved_config();
return JSON.parse(receiveString(wasmInstance, length));
},
getFileMatchingInfo() {
const length = get_plugin_info();
const pluginInfo = JSON.parse(receiveString(wasmInstance, length)) as PluginInfo;
return {
// deno-lint-ignore no-explicit-any
fileExtensions: (pluginInfo as any).fileExtensions ?? [],
// deno-lint-ignore no-explicit-any
fileNames: (pluginInfo as any).fileNames ?? [],
};
},
getPluginInfo() {
const length = get_plugin_info();
const pluginInfo = JSON.parse(
receiveString(wasmInstance, length),
) as PluginInfo;
// deno-lint-ignore no-explicit-any
delete (pluginInfo as any).fileNames;
// deno-lint-ignore no-explicit-any
delete (pluginInfo as any).fileExtensions;
return pluginInfo;
},
getLicenseText() {
const length = get_license_text();
return receiveString(wasmInstance, length);
},
formatText(request, formatWithHost) {
if (request.bytesRange != null) {
// not supported for v3
return request.fileText;
}
host.setHostFormatter(formatWithHost);
setConfigIfNotSet();
if (request.overrideConfig != null) {
if (pluginSchemaVersion === 2) {
throw new Error(
"Cannot set the override configuration for this old plugin.",
);
}
sendString(wasmInstance, JSON.stringify(request.overrideConfig));
set_override_config();
}
sendString(wasmInstance, request.filePath);
set_file_path();
sendString(wasmInstance, request.fileText);
const responseCode = format();
switch (responseCode) {
case 0: // no change
return request.fileText;
case 1: // change
return receiveString(wasmInstance, get_formatted_text());
case 2: // error
throw new Error(receiveString(wasmInstance, get_error_text()));
default:
throw new Error(`Unexpected response code: ${responseCode}`);
}
},
};
function setConfigIfNotSet() {
if (!configSet) {
setConfig({}, {});
}
}
function setConfig(
globalConfig: GlobalConfiguration,
pluginConfig: Record<string, unknown>,
) {
if (reset_config != null) {
reset_config();
}
sendString(wasmInstance, JSON.stringify(globalConfig));
set_global_config();
sendString(wasmInstance, JSON.stringify(pluginConfig));
set_plugin_config();
configSet = true;
}
}
function sendString(wasmInstance: WebAssembly.Instance, text: string) {
// deno-lint-ignore no-explicit-any
const exports = wasmInstance.exports as any;
const encodedText = encoder.encode(text);
const length = encodedText.length;
const memoryBufferSize = exports.get_wasm_memory_buffer_size();
const memoryBufferPointer = getWasmMemoryBufferPointer(wasmInstance);
exports.clear_shared_bytes(length);
let index = 0;
while (index < length) {
const writeCount = Math.min(length - index, memoryBufferSize);
const wasmBuffer = getWasmBufferAtPointer(wasmInstance, memoryBufferPointer, writeCount);
wasmBuffer.set(encodedText.slice(index, index + writeCount));
exports.add_to_shared_bytes_from_buffer(writeCount);
index += writeCount;
}
return length;
}
function receiveString(wasmInstance: WebAssembly.Instance, length: number) {
// deno-lint-ignore no-explicit-any
const exports = wasmInstance.exports as any;
const memoryBufferSize = exports.get_wasm_memory_buffer_size();
const memoryBufferPointer = getWasmMemoryBufferPointer(wasmInstance);
const buffer = new Uint8Array(length);
let index = 0;
while (index < length) {
const readCount = Math.min(length - index, memoryBufferSize);
exports.set_buffer_with_shared_bytes(index, readCount);
const wasmBuffer = getWasmBufferAtPointer(wasmInstance, memoryBufferPointer, readCount);
buffer.set(wasmBuffer, index);
index += readCount;
}
return decoder.decode(buffer);
}
function getWasmMemoryBufferPointer(wasmInstance: WebAssembly.Instance): number {
// deno-lint-ignore no-explicit-any
return (wasmInstance.exports as any).get_wasm_memory_buffer();
}
function getWasmBufferAtPointer(wasmInstance: WebAssembly.Instance, pointer: number, length: number) {
return new Uint8Array(
// deno-lint-ignore no-explicit-any
(wasmInstance.exports.memory as any).buffer,
pointer,
length,
);
}