@parcel/lsp 2.12.1-dev.3204 → 2.12.1-dev.3207
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/LspServer.js +78 -78
- package/package.json +4 -4
package/lib/LspServer.js
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
var $
|
2
|
-
var $
|
3
|
-
var $
|
4
|
-
var $
|
5
|
-
var $
|
6
|
-
var $
|
7
|
-
var $
|
8
|
-
var $
|
9
|
-
var $
|
10
|
-
var $
|
1
|
+
var $8aa0f$path = require("path");
|
2
|
+
var $8aa0f$fs = require("fs");
|
3
|
+
var $8aa0f$os = require("os");
|
4
|
+
var $8aa0f$vscodelanguageservernode = require("vscode-languageserver/node");
|
5
|
+
var $8aa0f$vscodejsonrpcnode = require("vscode-jsonrpc/node");
|
6
|
+
var $8aa0f$assert = require("assert");
|
7
|
+
var $8aa0f$url = require("url");
|
8
|
+
var $8aa0f$commonpathprefix = require("common-path-prefix");
|
9
|
+
var $8aa0f$parcelwatcher = require("@parcel/watcher");
|
10
|
+
var $8aa0f$parcellspprotocol = require("@parcel/lsp-protocol");
|
11
11
|
|
12
12
|
|
13
13
|
|
@@ -19,30 +19,30 @@ var $1AmcW$parcellspprotocol = require("@parcel/lsp-protocol");
|
|
19
19
|
|
20
20
|
|
21
21
|
|
22
|
-
const $
|
23
|
-
const $
|
24
|
-
const $
|
22
|
+
const $62a4a2dd07ff72f5$var$connection = (0, $8aa0f$vscodelanguageservernode.createConnection)((0, $8aa0f$vscodelanguageservernode.ProposedFeatures).all);
|
23
|
+
const $62a4a2dd07ff72f5$var$WORKSPACE_ROOT = process.cwd();
|
24
|
+
const $62a4a2dd07ff72f5$var$LSP_SENTINEL_FILENAME = "lsp-server";
|
25
25
|
// Create a simple text document manager.
|
26
26
|
// const documents: TextDocuments<TextDocument> = new TextDocuments(TextDocument);
|
27
|
-
let $
|
28
|
-
let $
|
27
|
+
let $62a4a2dd07ff72f5$var$hasConfigurationCapability = false;
|
28
|
+
let $62a4a2dd07ff72f5$var$hasWorkspaceFolderCapability = false;
|
29
29
|
// let hasDiagnosticRelatedInformationCapability = false;
|
30
|
-
let $
|
31
|
-
$
|
30
|
+
let $62a4a2dd07ff72f5$var$hasDiagnosticsRefreshSupport = false;
|
31
|
+
$62a4a2dd07ff72f5$var$connection.onInitialize((params)=>{
|
32
32
|
const capabilities = params.capabilities;
|
33
33
|
// Does the client support the `workspace/configuration` request?
|
34
34
|
// If not, we fall back using global settings.
|
35
|
-
$
|
36
|
-
$
|
35
|
+
$62a4a2dd07ff72f5$var$hasConfigurationCapability = !!(capabilities.workspace && !!capabilities.workspace.configuration);
|
36
|
+
$62a4a2dd07ff72f5$var$hasWorkspaceFolderCapability = !!(capabilities.workspace && !!capabilities.workspace.workspaceFolders);
|
37
37
|
// hasDiagnosticRelatedInformationCapability = !!(
|
38
38
|
// capabilities.textDocument &&
|
39
39
|
// capabilities.textDocument.publishDiagnostics &&
|
40
40
|
// capabilities.textDocument.publishDiagnostics.relatedInformation
|
41
41
|
// );
|
42
|
-
$
|
42
|
+
$62a4a2dd07ff72f5$var$hasDiagnosticsRefreshSupport = Boolean(capabilities.workspace?.diagnostics?.refreshSupport);
|
43
43
|
const result = {
|
44
44
|
capabilities: {
|
45
|
-
textDocumentSync: (0, $
|
45
|
+
textDocumentSync: (0, $8aa0f$vscodelanguageservernode.TextDocumentSyncKind).Incremental,
|
46
46
|
// Tell the client that this server supports code completion.
|
47
47
|
diagnosticProvider: {
|
48
48
|
workspaceDiagnostics: false,
|
@@ -50,31 +50,31 @@ $df200bfc51703102$var$connection.onInitialize((params)=>{
|
|
50
50
|
}
|
51
51
|
}
|
52
52
|
};
|
53
|
-
if ($
|
53
|
+
if ($62a4a2dd07ff72f5$var$hasWorkspaceFolderCapability) result.capabilities.workspace = {
|
54
54
|
workspaceFolders: {
|
55
55
|
supported: true
|
56
56
|
}
|
57
57
|
};
|
58
58
|
return result;
|
59
59
|
});
|
60
|
-
$
|
61
|
-
if ($
|
62
|
-
$
|
63
|
-
if ($
|
64
|
-
$
|
60
|
+
$62a4a2dd07ff72f5$var$connection.onInitialized(()=>{
|
61
|
+
if ($62a4a2dd07ff72f5$var$hasConfigurationCapability) // Register for all configuration changes.
|
62
|
+
$62a4a2dd07ff72f5$var$connection.client.register((0, $8aa0f$vscodelanguageservernode.DidChangeConfigurationNotification).type, undefined);
|
63
|
+
if ($62a4a2dd07ff72f5$var$hasWorkspaceFolderCapability) $62a4a2dd07ff72f5$var$connection.workspace.onDidChangeWorkspaceFolders(()=>{
|
64
|
+
$62a4a2dd07ff72f5$var$connection.console.log("Workspace folder change event received.");
|
65
65
|
});
|
66
66
|
});
|
67
67
|
// Proxy
|
68
|
-
$
|
69
|
-
let client = $
|
68
|
+
$62a4a2dd07ff72f5$var$connection.onRequest((0, $8aa0f$parcellspprotocol.RequestImporters), async (params)=>{
|
69
|
+
let client = $62a4a2dd07ff72f5$var$findClient(params);
|
70
70
|
if (client) {
|
71
|
-
let result = await client.connection.sendRequest((0, $
|
71
|
+
let result = await client.connection.sendRequest((0, $8aa0f$parcellspprotocol.RequestImporters), params);
|
72
72
|
return result;
|
73
73
|
}
|
74
74
|
return null;
|
75
75
|
});
|
76
|
-
$
|
77
|
-
let client = $
|
76
|
+
$62a4a2dd07ff72f5$var$connection.onRequest((0, $8aa0f$vscodelanguageservernode.DocumentDiagnosticRequest).type, async (params)=>{
|
77
|
+
let client = $62a4a2dd07ff72f5$var$findClient(params.textDocument.uri);
|
78
78
|
let result;
|
79
79
|
if (client) {
|
80
80
|
// console.log(
|
@@ -83,23 +83,23 @@ $df200bfc51703102$var$connection.onRequest((0, $1AmcW$vscodelanguageservernode.D
|
|
83
83
|
// params.previousResultId === client.lastBuild,
|
84
84
|
// );
|
85
85
|
if (params.previousResultId === client.lastBuild) return {
|
86
|
-
kind: (0, $
|
86
|
+
kind: (0, $8aa0f$vscodelanguageservernode.DocumentDiagnosticReportKind).Unchanged,
|
87
87
|
resultId: client.lastBuild
|
88
88
|
};
|
89
|
-
result = await client.connection.sendRequest((0, $
|
89
|
+
result = await client.connection.sendRequest((0, $8aa0f$parcellspprotocol.RequestDocumentDiagnostics), params.textDocument.uri);
|
90
90
|
if (result) client.uris.add(params.textDocument.uri);
|
91
91
|
}
|
92
92
|
return {
|
93
|
-
kind: (0, $
|
93
|
+
kind: (0, $8aa0f$vscodelanguageservernode.DocumentDiagnosticReportKind).Full,
|
94
94
|
resultId: client?.lastBuild,
|
95
95
|
items: result ?? []
|
96
96
|
};
|
97
97
|
});
|
98
|
-
$
|
99
|
-
class $
|
98
|
+
$62a4a2dd07ff72f5$var$connection.listen();
|
99
|
+
class $62a4a2dd07ff72f5$var$ProgressReporter {
|
100
100
|
begin() {
|
101
101
|
this.progressReporterPromise = (async ()=>{
|
102
|
-
let reporter = await $
|
102
|
+
let reporter = await $62a4a2dd07ff72f5$var$connection.window.createWorkDoneProgress();
|
103
103
|
reporter.begin("Parcel");
|
104
104
|
return reporter;
|
105
105
|
})();
|
@@ -109,7 +109,7 @@ class $df200bfc51703102$var$ProgressReporter {
|
|
109
109
|
}
|
110
110
|
async done() {
|
111
111
|
if (this.progressReporterPromise == null) this.begin();
|
112
|
-
$
|
112
|
+
$8aa0f$assert(this.progressReporterPromise != null);
|
113
113
|
(await this.progressReporterPromise).done();
|
114
114
|
this.progressReporterPromise = null;
|
115
115
|
}
|
@@ -123,17 +123,17 @@ class $df200bfc51703102$var$ProgressReporter {
|
|
123
123
|
}
|
124
124
|
}
|
125
125
|
}
|
126
|
-
function $
|
127
|
-
if ($
|
126
|
+
function $62a4a2dd07ff72f5$var$sendDiagnosticsRefresh() {
|
127
|
+
if ($62a4a2dd07ff72f5$var$hasDiagnosticsRefreshSupport) $62a4a2dd07ff72f5$var$connection.sendRequest((0, $8aa0f$vscodelanguageservernode.DiagnosticRefreshRequest).type);
|
128
128
|
}
|
129
|
-
let $
|
130
|
-
let $
|
131
|
-
function $
|
132
|
-
let filepath = $
|
129
|
+
let $62a4a2dd07ff72f5$var$progressReporter = new $62a4a2dd07ff72f5$var$ProgressReporter();
|
130
|
+
let $62a4a2dd07ff72f5$var$clients = new Map();
|
131
|
+
function $62a4a2dd07ff72f5$var$findClient(document) {
|
132
|
+
let filepath = $8aa0f$url.fileURLToPath(document);
|
133
133
|
let longestPrefix = 0;
|
134
134
|
let bestClient;
|
135
|
-
for (let [, client] of $
|
136
|
-
let prefix = $
|
135
|
+
for (let [, client] of $62a4a2dd07ff72f5$var$clients){
|
136
|
+
let prefix = $8aa0f$commonpathprefix([
|
137
137
|
client.projectRoot,
|
138
138
|
filepath
|
139
139
|
]).length;
|
@@ -144,14 +144,14 @@ function $df200bfc51703102$var$findClient(document) {
|
|
144
144
|
}
|
145
145
|
return bestClient;
|
146
146
|
}
|
147
|
-
function $
|
148
|
-
const file = $
|
147
|
+
function $62a4a2dd07ff72f5$var$loadMetafile(filepath) {
|
148
|
+
const file = $8aa0f$fs.readFileSync(filepath, "utf-8");
|
149
149
|
return JSON.parse(file);
|
150
150
|
}
|
151
|
-
function $
|
151
|
+
function $62a4a2dd07ff72f5$var$createClient(metafilepath, metafile) {
|
152
152
|
let socketfilepath = metafilepath.slice(0, -5);
|
153
|
-
let [reader, writer] = (0, $
|
154
|
-
let client = (0, $
|
153
|
+
let [reader, writer] = (0, $8aa0f$vscodejsonrpcnode.createServerPipeTransport)(socketfilepath);
|
154
|
+
let client = (0, $8aa0f$vscodejsonrpcnode.createMessageConnection)(reader, writer);
|
155
155
|
client.listen();
|
156
156
|
let uris = new Set();
|
157
157
|
let result = {
|
@@ -160,71 +160,71 @@ function $df200bfc51703102$var$createClient(metafilepath, metafile) {
|
|
160
160
|
projectRoot: metafile.projectRoot,
|
161
161
|
lastBuild: "0"
|
162
162
|
};
|
163
|
-
client.onNotification((0, $
|
163
|
+
client.onNotification((0, $8aa0f$parcellspprotocol.NotificationBuildStatus), (state, message)=>{
|
164
164
|
// console.log('got NotificationBuildStatus', state, message);
|
165
165
|
if (state === "start") {
|
166
|
-
$
|
167
|
-
for (let uri of uris)$
|
166
|
+
$62a4a2dd07ff72f5$var$progressReporter.begin();
|
167
|
+
for (let uri of uris)$62a4a2dd07ff72f5$var$connection.sendDiagnostics({
|
168
168
|
uri: uri,
|
169
169
|
diagnostics: []
|
170
170
|
});
|
171
|
-
} else if (state === "progress" && message != null) $
|
171
|
+
} else if (state === "progress" && message != null) $62a4a2dd07ff72f5$var$progressReporter.report(message);
|
172
172
|
else if (state === "end") {
|
173
173
|
result.lastBuild = String(Date.now());
|
174
|
-
$
|
175
|
-
$
|
176
|
-
$
|
174
|
+
$62a4a2dd07ff72f5$var$sendDiagnosticsRefresh();
|
175
|
+
$62a4a2dd07ff72f5$var$progressReporter.done();
|
176
|
+
$62a4a2dd07ff72f5$var$connection.sendNotification((0, $8aa0f$parcellspprotocol.NotificationBuild));
|
177
177
|
}
|
178
178
|
});
|
179
|
-
client.onNotification((0, $
|
179
|
+
client.onNotification((0, $8aa0f$parcellspprotocol.NotificationWorkspaceDiagnostics), (diagnostics)=>{
|
180
180
|
// console.log('got NotificationWorkspaceDiagnostics', diagnostics);
|
181
181
|
for (let d of diagnostics){
|
182
182
|
uris.add(d.uri);
|
183
|
-
$
|
183
|
+
$62a4a2dd07ff72f5$var$connection.sendDiagnostics(d);
|
184
184
|
}
|
185
185
|
});
|
186
186
|
client.onClose(()=>{
|
187
|
-
$
|
188
|
-
$
|
187
|
+
$62a4a2dd07ff72f5$var$clients.delete(JSON.stringify(metafile));
|
188
|
+
$62a4a2dd07ff72f5$var$sendDiagnosticsRefresh();
|
189
189
|
return Promise.all([
|
190
190
|
...uris
|
191
|
-
].map((uri)=>$
|
191
|
+
].map((uri)=>$62a4a2dd07ff72f5$var$connection.sendDiagnostics({
|
192
192
|
uri: uri,
|
193
193
|
diagnostics: []
|
194
194
|
})));
|
195
195
|
});
|
196
|
-
$
|
197
|
-
$
|
196
|
+
$62a4a2dd07ff72f5$var$sendDiagnosticsRefresh();
|
197
|
+
$62a4a2dd07ff72f5$var$clients.set(JSON.stringify(metafile), result);
|
198
198
|
}
|
199
199
|
// Take realpath because to have consistent cache keys on macOS (/var -> /private/var)
|
200
|
-
const $
|
201
|
-
$
|
200
|
+
const $62a4a2dd07ff72f5$var$BASEDIR = $8aa0f$path.join($8aa0f$fs.realpathSync($8aa0f$os.tmpdir()), "parcel-lsp");
|
201
|
+
$8aa0f$fs.mkdirSync($62a4a2dd07ff72f5$var$BASEDIR, {
|
202
202
|
recursive: true
|
203
203
|
});
|
204
|
-
$
|
204
|
+
$8aa0f$fs.writeFileSync($8aa0f$path.join($62a4a2dd07ff72f5$var$BASEDIR, $62a4a2dd07ff72f5$var$LSP_SENTINEL_FILENAME), "");
|
205
205
|
// Search for currently running Parcel processes in the parcel-lsp dir.
|
206
206
|
// Create an IPC client connection for each running process.
|
207
|
-
for (let filename of $
|
207
|
+
for (let filename of $8aa0f$fs.readdirSync($62a4a2dd07ff72f5$var$BASEDIR)){
|
208
208
|
if (!filename.endsWith(".json")) continue;
|
209
|
-
let filepath = $
|
210
|
-
const contents = $
|
209
|
+
let filepath = $8aa0f$path.join($62a4a2dd07ff72f5$var$BASEDIR, filename);
|
210
|
+
const contents = $62a4a2dd07ff72f5$var$loadMetafile(filepath);
|
211
211
|
const { projectRoot: projectRoot } = contents;
|
212
|
-
if ($
|
212
|
+
if ($62a4a2dd07ff72f5$var$WORKSPACE_ROOT === projectRoot) $62a4a2dd07ff72f5$var$createClient(filepath, contents);
|
213
213
|
}
|
214
214
|
// Watch for new Parcel processes in the parcel-lsp dir, and disconnect the
|
215
215
|
// client for each corresponding connection when a Parcel process ends
|
216
|
-
$
|
216
|
+
$8aa0f$parcelwatcher.subscribe($62a4a2dd07ff72f5$var$BASEDIR, async (err, events)=>{
|
217
217
|
if (err) throw err;
|
218
218
|
for (let event of events){
|
219
219
|
if (event.type === "create" && event.path.endsWith(".json")) {
|
220
|
-
const contents = $
|
220
|
+
const contents = $62a4a2dd07ff72f5$var$loadMetafile(event.path);
|
221
221
|
const { projectRoot: projectRoot } = contents;
|
222
|
-
if ($
|
222
|
+
if ($62a4a2dd07ff72f5$var$WORKSPACE_ROOT === projectRoot) $62a4a2dd07ff72f5$var$createClient(event.path, contents);
|
223
223
|
} else if (event.type === "delete" && event.path.endsWith(".json")) {
|
224
|
-
let existing = $
|
224
|
+
let existing = $62a4a2dd07ff72f5$var$clients.get(event.path);
|
225
225
|
console.log("existing", event.path, existing);
|
226
226
|
if (existing) {
|
227
|
-
$
|
227
|
+
$62a4a2dd07ff72f5$var$clients.delete(event.path);
|
228
228
|
existing.connection.end();
|
229
229
|
}
|
230
230
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@parcel/lsp",
|
3
|
-
"version": "2.12.1-dev.
|
3
|
+
"version": "2.12.1-dev.3207+ddaa72fad",
|
4
4
|
"license": "MIT",
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
@@ -22,10 +22,10 @@
|
|
22
22
|
},
|
23
23
|
"engines": {
|
24
24
|
"node": ">= 16.0.0",
|
25
|
-
"parcel": "^2.0.0-dev.
|
25
|
+
"parcel": "^2.0.0-dev.1582+ddaa72fad"
|
26
26
|
},
|
27
27
|
"dependencies": {
|
28
|
-
"@parcel/lsp-protocol": "2.12.1-dev.
|
28
|
+
"@parcel/lsp-protocol": "2.12.1-dev.3207+ddaa72fad",
|
29
29
|
"@parcel/watcher": "^2.0.7",
|
30
30
|
"common-path-prefix": "^3.0.0",
|
31
31
|
"nullthrows": "^1.1.1",
|
@@ -44,5 +44,5 @@
|
|
44
44
|
"targets": {
|
45
45
|
"types": false
|
46
46
|
},
|
47
|
-
"gitHead": "
|
47
|
+
"gitHead": "ddaa72fad245c2d5b065df71ad1a18f17d518c8c"
|
48
48
|
}
|