-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcpp_worker.js
402 lines (345 loc) · 13.4 KB
/
cpp_worker.js
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
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
371
372
373
374
375
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
402
/**
* @copyright 2015, Robin Dietrich
* @license MIT
*/
define(function(require, exports, module) {
var completeUtil = require("plugins/c9.ide.language/complete_util");
var baseLanguageHandler = require('plugins/c9.ide.language/base_handler');
var worker_util = require("plugins/c9.ide.language/worker_util");
var _ = require("plugins/c9.nodeapi/lodash");
var cpp_worker = module.exports = Object.create(baseLanguageHandler);
var uId = 0;
// different completion types
var completion_type = {
namespace_t: 0,
class_t: 1,
attribute_t: 2,
method_t: 3,
parameter_t: 4,
struct_t: 5,
function_t: 6,
enum_t: 7,
enum_static_t: 8,
union_t: 9,
typedef_t: 10,
variable_t: 11,
macro_t: 12,
include_t: 13,
unkown_t: 14
};
// caches last results
var last_results = null;
var last_pos = 0;
var emitter = null;
// returns index of last full word
function get_last_word_start(str) {
var last = 0;
for (var i = 0; i < str.length; ++i) {
if (!str[i].match(/\w/)) {
last = i+1;
}
}
return last;
}
// takes care of initial plugin registration
cpp_worker.init = function(callback) {
emitter = cpp_worker.getEmitter();
return callback();
};
// check if we handle the language
cpp_worker.handlesLanguage = function(language) {
return (language === "c_cpp");
};
// do an initial parse to speed things up in the future
cpp_worker.onDocumentOpen = function (path, doc, oldPath, callback) {
cpp_worker.sender.emit("documentOpened", {path: path});
return callback();
};
// send closing info
cpp_worker.onDocumentClose = function (path, callback) {
cpp_worker.sender.emit("documentClosed", {path: path});
return callback();
};
// code completion
cpp_worker.complete = function(doc, fullAst, pos, currentNode, callback) {
// returns true if one strings is a subsequent match to another
var filter_match = function (search, text) {
var idx = 0;
if (search == text)
return true;
if (text.substr(0, search.length) == search)
return true;
// prefix matches within the identifier
for (var i = 0; i < text.length; ++i) {
if (idx == search.length)
return true;
if (text[i] == search[idx])
++idx;
}
return false;
}
// filter candidates based on entered text
var filter_results = function (results, txt) {
// match each results name to the subsequence
var ret = [];
if (txt.length) {
_.forEach(results, function(res) {
if (filter_match(txt, res.name))
ret.push(res);
});
} else {
ret = results;
}
// transform to c9 format
var retConv = [];
_.forEach(ret, function(res) {
var r_meta = res.info.length ? "("+res.info.join(", ")+")" : null;
var r_text = res.name;
var r_icon = null;
var r_sig = res.name;
var r_priority = 200 + (-res.priority);
switch (res.type) {
case completion_type.function_t:
case completion_type.method_t:
r_icon = "method";
r_text += res.info.length ? "(^^)" : "()";
r_sig += r_meta ? " " + r_meta : " ()";
break;
case completion_type.macro_t:
r_text += res.info.length ? "(^^)" : "";
r_sig += r_meta ? " " + r_meta : "";
break;
case completion_type.class_t:
case completion_type.struct_t:
case completion_type.union_t:
r_icon = "package";
break;
case completion_type.parameter_t:
r_priority = 200; // current parameter in the function call
case completion_type.attribute_t:
r_icon = "property";
break;
default:
break;
}
retConv.push({
name: res.name, meta: r_meta, replaceText: r_text,
icon: r_icon, priority: r_priority, docHead: r_sig,
doc: res.brief
});
});
return retConv;
};
// create a unique numeric id to identify correct callback relationships
var cId = ++uId;
// match line to last full word
var line = doc.getLine(pos.row);
var wIdx = get_last_word_start(line.substr(0, pos.column));
// pull back completion to the beginning if we have a full word start
pos.column = wIdx;
var wMatch = line.substr(wIdx);
// check if we can use cached results
if (last_results && last_pos.row == pos.row && last_pos.column == pos.column) {
return callback(filter_results(last_results, wMatch));
}
// cb when code completion is done
emitter.on("_completionResult", function tmp(event) {
if (event.data.id != cId)
return;
// unregister this cb
emitter.off("_completionResult", tmp);
last_results = event.data.results
last_pos = pos;
// send results back
return callback(filter_results(last_results, wMatch));
});
// send completion data to the server
emitter.emit("_completion", {
pos: pos,
id: cId
});
};
// Propagate clang diagnostics
cpp_worker.analyze = function(value, ast, callback) {
// create a unique numeric id to identify correct callback relationships
var cId = ++uId;
// wait for the result and invoke the complete.callback function
emitter.on("_diagnoseResult", function invoTmp(ev) {
if (ev.data.id != cId)
return;
// unregister this cb
emitter.off("_diagnoseResult", invoTmp);
var results = []; // results to return
_.forEach(ev.data.results, function(res) {
var level = "";
switch (res.severity) {
case 2:
level = "warning";
break;
case 3:
level = "error";
break;
default:
level = "info";
break;
}
results.push({
pos: {
sl: res.row-1,
sc: res.col-1
},
level: level,
message: res.summary
});
});
return callback(results);
});
// send the completion data to the server
emitter.emit("_diagnose", {
id: cId
});
};
cpp_worker.outline = function(doc, fullAst, callback) {
// create a unique numeric id to identify correct callback relationships
var cId = ++uId;
// returns function arguments for an ast node
var astParam = function(ast) {
var params = [];
_.forEach(ast, function(ele) {
if (ele.cursor == completion_type.parameter_t) {
params.push(ele.type+" "+ele.name);
}
});
return "("+params.join(", ")+")";
};
// recursive ast parser function
// @todo: icon for class / union / struct enum
// @todo: take access specifier into account (green = public, blue = protected, red = private)
var parseAst = function (ast, item) {
_.forEach(ast, function (ele) {
var row = ele.loc_row - 1;
var col = ele.loc_col - 1;
var toPush = {
pos: { sl: row, sc: col, el: row, ec: col },
displayPos: { sl: row, sc: col, el : row, ec: col },
items: [],
name: ele.name
};
var pushItemIfNotExist = function(items, toPush) {
for (var i = 0, l = items.length; i < l; i++) {
var item = items[i];
if (item.name == toPush.name && item.icon == toPush.icon) {
if (item.icon !== "c_cpp_include" && item.items.length == 0) {
// prefer new item, because later definitions
// are usually more relevant
// eg. function def. after prototype
// or struct def. after typedef
items.splice(i, 1);
break;
}
return;
}
}
items.push(toPush);
};
// only handles icons
switch (ele.cursor) {
case completion_type.include_t:
toPush.icon = "c_cpp_include";
break;
case completion_type.class_t:
toPush.icon = "c_cpp_class";
break;
case completion_type.union_t:
toPush.icon = "c_cpp_union";
break;
case completion_type.struct_t:
toPush.icon = "c_cpp_struct";
break;
case completion_type.enum_t:
toPush.icon = "c_cpp_enum";
break;
case completion_type.function_t:
case completion_type.method_t:
toPush.icon = "method";
break;
case completion_type.enum_static_t:
case completion_type.attribute_t:
toPush.icon = "property";
break;
default:
toPush.icon = "property"; // use property, 99.9_% i'ts an enum member
break;
}
// names and the other stuff
switch (ele.cursor) {
// includes, no subs
case completion_type.include_t:
toPush.name = "<"+ele.name+">";
pushItemIfNotExist(item.items, toPush);
break;
// classes, subs maybe other classes, attributes or functions
case completion_type.class_t:
case completion_type.union_t:
case completion_type.struct_t:
case completion_type.enum_t: {
parseAst(ele.children, toPush);
pushItemIfNotExist(item.items, toPush);
} break;
// attributes, no subs
case completion_type.enum_static_t:
case completion_type.attribute_t:
pushItemIfNotExist(item.items, toPush);
break;
// functions and methods
case completion_type.function_t:
case completion_type.method_t: {
toPush.name = ele.name + astParam(ele.children);
parseAst(ele.children, toPush);
pushItemIfNotExist(item.items, toPush);
} break;
}
});
};
emitter.on("_outlineResult", function invoTmp(ev) {
if (ev.data.id != cId)
return;
emitter.off("_outlineResult", invoTmp);
var data = {items:[]};
parseAst(ev.data.ast, data);
return callback(data);
});
// send the data to the server
emitter.emit("_outline", {
id: cId
});
};
cpp_worker.jumpToDefinition = function(doc, fullAst, pos, currentNode, callback) {
// create a unique numeric id to identify correct callback relationships
var cId = ++uId;
emitter.on("_jumpToDefResult", function invoTmp(ev) {
if (ev.data.id != cId)
return;
cpp_worker.sender.off("_jumpToDefResult", invoTmp);
var p = ev.data.pos;
if (!p.file)
return callback();
var data = {
path: p.file,
row: p.row - 1,
column: p.col - 1
};
return callback(data);
});
// send the data to the server
emitter.emit("_jumpToDefinition", {
id: cId, pos: pos
});
};
/*
* enable language features for large files
*/
cpp_worker.getMaxFileSizeSupported = function() {
return 10 * 1000 * 1000;
};
});