@parcel/lsp 2.12.1-dev.3207 → 2.12.1-dev.3224
Sign up to get free protection for your applications and to get access to all the features.
- package/lib/LspServer.js +87 -87
- 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 $iguR5$path = require("path");
|
2
|
+
var $iguR5$fs = require("fs");
|
3
|
+
var $iguR5$os = require("os");
|
4
|
+
var $iguR5$vscodelanguageservernode = require("vscode-languageserver/node");
|
5
|
+
var $iguR5$vscodejsonrpcnode = require("vscode-jsonrpc/node");
|
6
|
+
var $iguR5$assert = require("assert");
|
7
|
+
var $iguR5$url = require("url");
|
8
|
+
var $iguR5$commonpathprefix = require("common-path-prefix");
|
9
|
+
var $iguR5$parcelwatcher = require("@parcel/watcher");
|
10
|
+
var $iguR5$parcellspprotocol = require("@parcel/lsp-protocol");
|
11
11
|
|
12
12
|
|
13
13
|
|
@@ -19,30 +19,30 @@ var $8aa0f$parcellspprotocol = require("@parcel/lsp-protocol");
|
|
19
19
|
|
20
20
|
|
21
21
|
|
22
|
-
const $
|
23
|
-
const $
|
24
|
-
const $
|
22
|
+
const $59f54c17f33674ed$var$connection = (0, $iguR5$vscodelanguageservernode.createConnection)((0, $iguR5$vscodelanguageservernode.ProposedFeatures).all);
|
23
|
+
const $59f54c17f33674ed$var$WORKSPACE_ROOT = process.cwd();
|
24
|
+
const $59f54c17f33674ed$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 $59f54c17f33674ed$var$hasConfigurationCapability = false;
|
28
|
+
let $59f54c17f33674ed$var$hasWorkspaceFolderCapability = false;
|
29
29
|
// let hasDiagnosticRelatedInformationCapability = false;
|
30
|
-
let $
|
31
|
-
$
|
30
|
+
let $59f54c17f33674ed$var$hasDiagnosticsRefreshSupport = false;
|
31
|
+
$59f54c17f33674ed$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
|
+
$59f54c17f33674ed$var$hasConfigurationCapability = !!(capabilities.workspace && !!capabilities.workspace.configuration);
|
36
|
+
$59f54c17f33674ed$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
|
+
$59f54c17f33674ed$var$hasDiagnosticsRefreshSupport = Boolean(capabilities.workspace?.diagnostics?.refreshSupport);
|
43
43
|
const result = {
|
44
44
|
capabilities: {
|
45
|
-
textDocumentSync: (0, $
|
45
|
+
textDocumentSync: (0, $iguR5$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 @@ $62a4a2dd07ff72f5$var$connection.onInitialize((params)=>{
|
|
50
50
|
}
|
51
51
|
}
|
52
52
|
};
|
53
|
-
if ($
|
53
|
+
if ($59f54c17f33674ed$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
|
+
$59f54c17f33674ed$var$connection.onInitialized(()=>{
|
61
|
+
if ($59f54c17f33674ed$var$hasConfigurationCapability) // Register for all configuration changes.
|
62
|
+
$59f54c17f33674ed$var$connection.client.register((0, $iguR5$vscodelanguageservernode.DidChangeConfigurationNotification).type, undefined);
|
63
|
+
if ($59f54c17f33674ed$var$hasWorkspaceFolderCapability) $59f54c17f33674ed$var$connection.workspace.onDidChangeWorkspaceFolders(()=>{
|
64
|
+
$59f54c17f33674ed$var$connection.console.log('Workspace folder change event received.');
|
65
65
|
});
|
66
66
|
});
|
67
67
|
// Proxy
|
68
|
-
$
|
69
|
-
let client = $
|
68
|
+
$59f54c17f33674ed$var$connection.onRequest((0, $iguR5$parcellspprotocol.RequestImporters), async (params)=>{
|
69
|
+
let client = $59f54c17f33674ed$var$findClient(params);
|
70
70
|
if (client) {
|
71
|
-
let result = await client.connection.sendRequest((0, $
|
71
|
+
let result = await client.connection.sendRequest((0, $iguR5$parcellspprotocol.RequestImporters), params);
|
72
72
|
return result;
|
73
73
|
}
|
74
74
|
return null;
|
75
75
|
});
|
76
|
-
$
|
77
|
-
let client = $
|
76
|
+
$59f54c17f33674ed$var$connection.onRequest((0, $iguR5$vscodelanguageservernode.DocumentDiagnosticRequest).type, async (params)=>{
|
77
|
+
let client = $59f54c17f33674ed$var$findClient(params.textDocument.uri);
|
78
78
|
let result;
|
79
79
|
if (client) {
|
80
80
|
// console.log(
|
@@ -83,24 +83,24 @@ $62a4a2dd07ff72f5$var$connection.onRequest((0, $8aa0f$vscodelanguageservernode.D
|
|
83
83
|
// params.previousResultId === client.lastBuild,
|
84
84
|
// );
|
85
85
|
if (params.previousResultId === client.lastBuild) return {
|
86
|
-
kind: (0, $
|
86
|
+
kind: (0, $iguR5$vscodelanguageservernode.DocumentDiagnosticReportKind).Unchanged,
|
87
87
|
resultId: client.lastBuild
|
88
88
|
};
|
89
|
-
result = await client.connection.sendRequest((0, $
|
89
|
+
result = await client.connection.sendRequest((0, $iguR5$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, $iguR5$vscodelanguageservernode.DocumentDiagnosticReportKind).Full,
|
94
94
|
resultId: client?.lastBuild,
|
95
95
|
items: result ?? []
|
96
96
|
};
|
97
97
|
});
|
98
|
-
$
|
99
|
-
class $
|
98
|
+
$59f54c17f33674ed$var$connection.listen();
|
99
|
+
class $59f54c17f33674ed$var$ProgressReporter {
|
100
100
|
begin() {
|
101
101
|
this.progressReporterPromise = (async ()=>{
|
102
|
-
let reporter = await $
|
103
|
-
reporter.begin(
|
102
|
+
let reporter = await $59f54c17f33674ed$var$connection.window.createWorkDoneProgress();
|
103
|
+
reporter.begin('Parcel');
|
104
104
|
return reporter;
|
105
105
|
})();
|
106
106
|
this.progressReporterPromise.then((reporter)=>{
|
@@ -109,7 +109,7 @@ class $62a4a2dd07ff72f5$var$ProgressReporter {
|
|
109
109
|
}
|
110
110
|
async done() {
|
111
111
|
if (this.progressReporterPromise == null) this.begin();
|
112
|
-
$
|
112
|
+
$iguR5$assert(this.progressReporterPromise != null);
|
113
113
|
(await this.progressReporterPromise).done();
|
114
114
|
this.progressReporterPromise = null;
|
115
115
|
}
|
@@ -123,108 +123,108 @@ class $62a4a2dd07ff72f5$var$ProgressReporter {
|
|
123
123
|
}
|
124
124
|
}
|
125
125
|
}
|
126
|
-
function $
|
127
|
-
if ($
|
126
|
+
function $59f54c17f33674ed$var$sendDiagnosticsRefresh() {
|
127
|
+
if ($59f54c17f33674ed$var$hasDiagnosticsRefreshSupport) $59f54c17f33674ed$var$connection.sendRequest((0, $iguR5$vscodelanguageservernode.DiagnosticRefreshRequest).type);
|
128
128
|
}
|
129
|
-
let $
|
130
|
-
let $
|
131
|
-
function $
|
132
|
-
let filepath = $
|
129
|
+
let $59f54c17f33674ed$var$progressReporter = new $59f54c17f33674ed$var$ProgressReporter();
|
130
|
+
let $59f54c17f33674ed$var$clients = new Map();
|
131
|
+
function $59f54c17f33674ed$var$findClient(document) {
|
132
|
+
let filepath = $iguR5$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 $59f54c17f33674ed$var$clients){
|
136
|
+
let prefix = $iguR5$commonpathprefix([
|
137
137
|
client.projectRoot,
|
138
138
|
filepath
|
139
139
|
]).length;
|
140
140
|
if (longestPrefix < prefix) {
|
141
141
|
longestPrefix = prefix;
|
142
142
|
bestClient = client;
|
143
|
-
} else if (longestPrefix === prefix) console.warn(
|
143
|
+
} else if (longestPrefix === prefix) console.warn('Ambiguous client for ' + filepath);
|
144
144
|
}
|
145
145
|
return bestClient;
|
146
146
|
}
|
147
|
-
function $
|
148
|
-
const file = $
|
147
|
+
function $59f54c17f33674ed$var$loadMetafile(filepath) {
|
148
|
+
const file = $iguR5$fs.readFileSync(filepath, 'utf-8');
|
149
149
|
return JSON.parse(file);
|
150
150
|
}
|
151
|
-
function $
|
151
|
+
function $59f54c17f33674ed$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, $iguR5$vscodejsonrpcnode.createServerPipeTransport)(socketfilepath);
|
154
|
+
let client = (0, $iguR5$vscodejsonrpcnode.createMessageConnection)(reader, writer);
|
155
155
|
client.listen();
|
156
156
|
let uris = new Set();
|
157
157
|
let result = {
|
158
158
|
connection: client,
|
159
159
|
uris: uris,
|
160
160
|
projectRoot: metafile.projectRoot,
|
161
|
-
lastBuild:
|
161
|
+
lastBuild: '0'
|
162
162
|
};
|
163
|
-
client.onNotification((0, $
|
163
|
+
client.onNotification((0, $iguR5$parcellspprotocol.NotificationBuildStatus), (state, message)=>{
|
164
164
|
// console.log('got NotificationBuildStatus', state, message);
|
165
|
-
if (state ===
|
166
|
-
$
|
167
|
-
for (let uri of uris)$
|
165
|
+
if (state === 'start') {
|
166
|
+
$59f54c17f33674ed$var$progressReporter.begin();
|
167
|
+
for (let uri of uris)$59f54c17f33674ed$var$connection.sendDiagnostics({
|
168
168
|
uri: uri,
|
169
169
|
diagnostics: []
|
170
170
|
});
|
171
|
-
} else if (state ===
|
172
|
-
else if (state ===
|
171
|
+
} else if (state === 'progress' && message != null) $59f54c17f33674ed$var$progressReporter.report(message);
|
172
|
+
else if (state === 'end') {
|
173
173
|
result.lastBuild = String(Date.now());
|
174
|
-
$
|
175
|
-
$
|
176
|
-
$
|
174
|
+
$59f54c17f33674ed$var$sendDiagnosticsRefresh();
|
175
|
+
$59f54c17f33674ed$var$progressReporter.done();
|
176
|
+
$59f54c17f33674ed$var$connection.sendNotification((0, $iguR5$parcellspprotocol.NotificationBuild));
|
177
177
|
}
|
178
178
|
});
|
179
|
-
client.onNotification((0, $
|
179
|
+
client.onNotification((0, $iguR5$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
|
+
$59f54c17f33674ed$var$connection.sendDiagnostics(d);
|
184
184
|
}
|
185
185
|
});
|
186
186
|
client.onClose(()=>{
|
187
|
-
$
|
188
|
-
$
|
187
|
+
$59f54c17f33674ed$var$clients.delete(JSON.stringify(metafile));
|
188
|
+
$59f54c17f33674ed$var$sendDiagnosticsRefresh();
|
189
189
|
return Promise.all([
|
190
190
|
...uris
|
191
|
-
].map((uri)=>$
|
191
|
+
].map((uri)=>$59f54c17f33674ed$var$connection.sendDiagnostics({
|
192
192
|
uri: uri,
|
193
193
|
diagnostics: []
|
194
194
|
})));
|
195
195
|
});
|
196
|
-
$
|
197
|
-
$
|
196
|
+
$59f54c17f33674ed$var$sendDiagnosticsRefresh();
|
197
|
+
$59f54c17f33674ed$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 $59f54c17f33674ed$var$BASEDIR = $iguR5$path.join($iguR5$fs.realpathSync($iguR5$os.tmpdir()), 'parcel-lsp');
|
201
|
+
$iguR5$fs.mkdirSync($59f54c17f33674ed$var$BASEDIR, {
|
202
202
|
recursive: true
|
203
203
|
});
|
204
|
-
$
|
204
|
+
$iguR5$fs.writeFileSync($iguR5$path.join($59f54c17f33674ed$var$BASEDIR, $59f54c17f33674ed$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 $
|
208
|
-
if (!filename.endsWith(
|
209
|
-
let filepath = $
|
210
|
-
const contents = $
|
207
|
+
for (let filename of $iguR5$fs.readdirSync($59f54c17f33674ed$var$BASEDIR)){
|
208
|
+
if (!filename.endsWith('.json')) continue;
|
209
|
+
let filepath = $iguR5$path.join($59f54c17f33674ed$var$BASEDIR, filename);
|
210
|
+
const contents = $59f54c17f33674ed$var$loadMetafile(filepath);
|
211
211
|
const { projectRoot: projectRoot } = contents;
|
212
|
-
if ($
|
212
|
+
if ($59f54c17f33674ed$var$WORKSPACE_ROOT === projectRoot) $59f54c17f33674ed$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
|
+
$iguR5$parcelwatcher.subscribe($59f54c17f33674ed$var$BASEDIR, async (err, events)=>{
|
217
217
|
if (err) throw err;
|
218
218
|
for (let event of events){
|
219
|
-
if (event.type ===
|
220
|
-
const contents = $
|
219
|
+
if (event.type === 'create' && event.path.endsWith('.json')) {
|
220
|
+
const contents = $59f54c17f33674ed$var$loadMetafile(event.path);
|
221
221
|
const { projectRoot: projectRoot } = contents;
|
222
|
-
if ($
|
223
|
-
} else if (event.type ===
|
224
|
-
let existing = $
|
225
|
-
console.log(
|
222
|
+
if ($59f54c17f33674ed$var$WORKSPACE_ROOT === projectRoot) $59f54c17f33674ed$var$createClient(event.path, contents);
|
223
|
+
} else if (event.type === 'delete' && event.path.endsWith('.json')) {
|
224
|
+
let existing = $59f54c17f33674ed$var$clients.get(event.path);
|
225
|
+
console.log('existing', event.path, existing);
|
226
226
|
if (existing) {
|
227
|
-
$
|
227
|
+
$59f54c17f33674ed$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.3224+1f9adfe6b",
|
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.1599+1f9adfe6b"
|
26
26
|
},
|
27
27
|
"dependencies": {
|
28
|
-
"@parcel/lsp-protocol": "2.12.1-dev.
|
28
|
+
"@parcel/lsp-protocol": "2.12.1-dev.3224+1f9adfe6b",
|
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": "1f9adfe6b886787910fa163d338103f407662b68"
|
48
48
|
}
|