-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathutil.js
254 lines (213 loc) · 7.64 KB
/
util.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
var vscode = require('vscode');
var os = require("os");
var window = vscode.window;
var workspace = vscode.workspace;
var defaultIcon = '$(checklist)';
var zapIcon = '$(zap)';
var defaultMsg = '0';
var DEFAULT_KEYWORDS = {
"TODO:": {
text: "TODO:",
color: '#fff',
backgroundColor: '#ffbd2a',
overviewRulerColor: 'rgba(255,189,42,0.8)'
},
"FIXME:": {
text: "FIXME:",
color: '#fff',
backgroundColor: '#f06292',
overviewRulerColor: 'rgba(240,98,146,0.8)'
}
};
var DEFAULT_STYLE = {
color: "#2196f3",
backgroundColor: "#ffeb3b",
};
function getAssembledData(keywords, customDefaultStyle, isCaseSensitive) {
var result = {}
keywords.forEach((v) => {
v = typeof v == 'string' ? { text: v } : v;
var text = v.text;
if (!text) return;//NOTE: in case of the text is empty
if (!isCaseSensitive) {
text = text.toUpperCase();
}
if (text == 'TODO:' || text == 'FIXME:') {
v = Object.assign({}, DEFAULT_KEYWORDS[text], v);
}
result[text] = Object.assign({}, DEFAULT_STYLE, customDefaultStyle, v);
})
Object.keys(DEFAULT_KEYWORDS).forEach((v) => {
if (!result[v]) {
result[v] = Object.assign({}, DEFAULT_STYLE, customDefaultStyle, DEFAULT_KEYWORDS[v]);
}
});
return result;
}
function chooseAnnotationType(availableAnnotationTypes) {
return window.showQuickPick(availableAnnotationTypes, {});
}
//get the include/exclude config
function getPathes(config) {
return Array.isArray(config) ?
'{' + config.join(',') + '}'
: (typeof config == 'string' ? config : '');
}
function searchAnnotations(workspaceState, pattern, callback) {
var settings = workspace.getConfiguration('todohighlight');
var includePattern = getPathes(settings.get('include')) || '{**/*}';
var excludePattern = getPathes(settings.get('exclude'));
var limitationForSearch = settings.get('maxFilesForSearch', 5120);
var statusMsg = ` Searching...`;
window.processing = true;
setStatusMsg(zapIcon, statusMsg);
workspace.findFiles(includePattern, excludePattern, limitationForSearch).then(function (files) {
if (!files || files.length === 0) {
callback({ message: 'No files found' });
return;
}
var totalFiles = files.length,
progress = 0,
times = 0,
annotations = {},
annotationList = [];
for (var i = 0; i < totalFiles; i++) {
workspace.openTextDocument(files[i]).then(function (file) {
searchAnnotationInFile(file, annotations, annotationList, pattern);
times++;
progress = Math.floor((times / totalFiles) * 100);
setStatusMsg(zapIcon, progress + '% ' + statusMsg);
if (times === totalFiles || window.manullyCancel) {
window.processing = true;
workspaceState.update('annotationList', annotationList)
callback(null, annotations, annotationList);
}
}, function (err) {
errorHandler(err);
});
}
}, function (err) {
errorHandler(err);
});
}
function searchAnnotationInFile(file, annotations, annotationList, regexp) {
var fileInUri = file.uri.toString();
var pathWithoutFile = fileInUri.substring(7, fileInUri.length);
for (var line = 0; line < file.lineCount; line++) {
var lineText = file.lineAt(line).text;
var match = lineText.match(regexp);
if (match !== null) {
if (!annotations.hasOwnProperty(pathWithoutFile)) {
annotations[pathWithoutFile] = [];
}
var content = getContent(lineText, match);
if (content.length > 500) {
content = content.substring(0, 500).trim() + '...';
}
var locationInfo = getLocationInfo(fileInUri, pathWithoutFile, lineText, line, match);
var annotation = {
uri: locationInfo.uri,
label: content,
detail: locationInfo.relativePath,
lineNum: line,
fileName: locationInfo.absPath,
startCol: locationInfo.startCol,
endCol: locationInfo.endCol
};
annotationList.push(annotation);
annotations[pathWithoutFile].push(annotation);
}
}
}
function annotationsFound(err, annotations, annotationList) {
if (err) {
console.log('todohighlight err:', err);
setStatusMsg(defaultIcon, defaultMsg);
return;
}
var resultNum = annotationList.length;
var tooltip = resultNum + ' result(s) found';
setStatusMsg(defaultIcon, resultNum, tooltip);
showOutputChannel(annotationList);
}
function showOutputChannel(data) {
if (!window.outputChannel) return;
window.outputChannel.clear();
if (data.length === 0) {
window.showInformationMessage('No results');
return;
}
var settings = workspace.getConfiguration('todohighlight');
var toggleURI = settings.get('toggleURI', false);
data.forEach(function (v, i, a) {
// due to an issue of vscode(https://github.com/Microsoft/vscode/issues/586), in order to make file path clickable within the output channel,the file path differs from platform
var patternA = '#' + (i + 1) + '\t' + v.uri + '#' + (v.lineNum + 1);
var patternB = '#' + (i + 1) + '\t' + v.uri + ':' + (v.lineNum + 1) + ':' + (v.startCol + 1);
var patterns = [patternA, patternB];
//for windows and mac
var patternType = 0;
if (os.platform() == "linux") {
// for linux
patternType = 1;
}
if (toggleURI) {
//toggle the pattern
patternType = +!patternType;
}
window.outputChannel.appendLine(patterns[patternType]);
window.outputChannel.appendLine('\t' + v.label + '\n');
});
window.outputChannel.show();
}
function getContent(lineText, match) {
return lineText.substring(lineText.indexOf(match[0]), lineText.length);
};
function getLocationInfo(fileInUri, pathWithoutFile, lineText, line, match) {
var rootPath = workspace.rootPath + '/';
var outputFile = pathWithoutFile.replace(rootPath, '');
var startCol = lineText.indexOf(match[0]);
var endCol = lineText.length;
var location = outputFile + ' ' + (line + 1) + ':' + (startCol + 1);
return {
uri: fileInUri,
absPath: pathWithoutFile,
relativePath: location,
startCol: startCol,
endCol: endCol
};
};
function createStatusBarItem() {
var statusBarItem = window.createStatusBarItem(vscode.StatusBarAlignment.Left);
statusBarItem.text = defaultIcon + defaultMsg;
statusBarItem.tooltip = 'List annotations';
statusBarItem.command = 'todohighlight.showOutputChannel';
return statusBarItem;
};
function errorHandler(err) {
window.processing = true;
setStatusMsg(defaultIcon, defaultMsg);
console.log('todohighlight err:', err);
}
function setStatusMsg(icon, msg, tooltip) {
if (window.statusBarItem) {
window.statusBarItem.text = `${icon} ${msg}` || '';
if (tooltip) {
window.statusBarItem.tooltip = tooltip;
}
window.statusBarItem.show();
}
}
function escapeRegExp(s) {
return s.replace(/[-\/\\^$*+?.()|[\]{}]/g, '\\$&');
}
module.exports = {
DEFAULT_STYLE,
getAssembledData,
chooseAnnotationType,
searchAnnotations,
annotationsFound,
createStatusBarItem,
setStatusMsg,
showOutputChannel,
escapeRegExp
};