-
Notifications
You must be signed in to change notification settings - Fork 0
/
util.js
259 lines (254 loc) · 9.13 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
255
256
257
258
259
const fs = require('fs');
const os = require('os');
const path = require('path');
const vscode = require('vscode');
const exec = require('child_process').exec;
const util = {
/**
* 获取当前所在工程根目录,有3种使用方法:<br>
* getProjectPath(uri) uri 表示工程内某个文件的路径<br>
* getProjectPath(document) document 表示当前被打开的文件document对象<br>
* getProjectPath() 会自动从 activeTextEditor 拿document对象,如果没有拿到则报错
* @param {*} document
*/
getProjectPath(document) {
if (!document) {
document = vscode.window.activeTextEditor ? vscode.window.activeTextEditor.document : null;
}
if (!document) {
this.showError('当前激活的编辑器不是文件或者没有文件被打开!');
return '';
}
const currentFile = (document.uri ? document.uri : document).fsPath;
let projectPath = null;
let workspaceFolders = vscode.workspace.workspaceFolders.map(item => item.uri.path);
// 由于存在Multi-root工作区,暂时没有特别好的判断方法,先这样粗暴判断
// 如果发现只有一个根文件夹,读取其子文件夹作为 workspaceFolders
if (workspaceFolders.length == 1 && workspaceFolders[0] === vscode.workspace.rootPath) {
const rootPath = workspaceFolders[0];
var files = fs.readdirSync(rootPath);
workspaceFolders = files.filter(name => !/^\./g.test(name)).map(name => path.resolve(rootPath, name));
// vscode.workspace.rootPath会不准确,且已过时
// return vscode.workspace.rootPath + '/' + this._getProjectName(vscode, document);
}
workspaceFolders.forEach(folder => {
if (currentFile.indexOf(folder) === 0) {
projectPath = folder;
}
})
if (!projectPath) {
this.showError('获取工程根路径异常!');
return '';
}
return projectPath;
},
/**
* 获取当前工程名
*/
getProjectName: function(projectPath) {
return path.basename(projectPath);
},
getPluginPath() {
},
/**
* 将一个单词首字母大写并返回
* @param {*} word 某个字符串
*/
upperFirstLetter: function(word) {
return (word || '').replace(/^\w/, m => m.toUpperCase());
},
/**
* 将一个单词首字母转小写并返回
* @param {*} word 某个字符串
*/
lowerFirstLeter: function(word) {
return (word || '').replace(/^\w/, m => m.toLowerCase());
},
/**
* 全局日志开关,发布时可以注释掉日志输出
*/
log: function(...args) {
console.log(...args);
},
/**
* 全局日志开关,发布时可以注释掉日志输出
*/
error: function(...args) {
console.error(...args);
},
/**
* 弹出错误信息
*/
showError: function(info) {
vscode.window.showErrorMessage(info);
},
/**
* 弹出提示信息
*/
showInfo: function(info) {
vscode.window.showInformationMessage(info);
},
findStrInFolder: function(folderPath, str) {
},
/**
* 从某个文件里面查找某个字符串,返回第一个匹配处的行与列,未找到返回第一行第一列
* @param filePath 要查找的文件
* @param reg 正则对象,最好不要带g,也可以是字符串
*/
findStrInFile: function(filePath, reg) {
const content = fs.readFileSync(filePath, 'utf-8');
reg = typeof reg === 'string' ? new RegExp(reg, 'm') : reg;
// 没找到直接返回
if (content.search(reg) < 0) return {row: 0, col: 0};
const rows = content.split(os.EOL);
// 分行查找只为了拿到行
for(let i = 0; i < rows.length; i++) {
let col = rows[i].search(reg);
if(col >= 0) {
return {row: i, col};
}
}
return {row: 0, col: 0};
},
/**
* 获取某个字符串在文件里第一次出现位置的范围,
*/
getStrRangeInFile: function(filePath, str) {
var pos = this.findStrInFile(filePath, str);
return new vscode.Range(new vscode.Position(pos.row, pos.col), new vscode.Position(pos.row, pos.col + str.length));
},
/**
* 简单的检测版本大小
*/
checkVersion: function(version1, version2) {
version1 = parseInt(version1.replace(/\./g, ''));
version2 = parseInt(version2.replace(/\./g, ''));
return version1 > version2;
},
/**
* 获取某个扩展文件绝对路径
* @param context 上下文
* @param relativePath 扩展中某个文件相对于根目录的路径,如 images/test.jpg
*/
getExtensionFileAbsolutePath: function(context, relativePath) {
return path.join(context.extensionPath, relativePath);
},
/**
* 获取某个扩展文件相对于webview需要的一种特殊路径格式
* 形如:vscode-resource:/Users/toonces/projects/vscode-cat-coding/media/cat.gif
* @param context 上下文
* @param relativePath 扩展中某个文件相对于根目录的路径,如 images/test.jpg
*/
getExtensionFileVscodeResource: function(context, relativePath) {
const diskPath = vscode.Uri.file(path.join(context.extensionPath, relativePath));
return diskPath.with({ scheme: 'vscode-resource' }).toString();
},
/**
* 在Finder中打开某个文件或者路径
*/
openFileInFinder: function(filePath) {
if (!fs.existsSync(filePath)) {
this.showError('文件不存在:' + filePath);
}
// 如果是目录,直接打开就好
if (fs.statSync(filePath).isDirectory()) {
exec(`open ${filePath}`);
} else {
// 如果是文件,要分开处理
const fileName = path.basename(filePath);
filePath = path.dirname(filePath);
// 这里有待完善,还不知道如何finder中如何选中文件
exec(`open ${filePath}`);
}
},
/**
* 在vscode中打开某个文件
* @param {*} path 文件绝对路径
* @param {*} text 可选,如果不为空,则选中第一处匹配的对应文字
*/
openFileInVscode: function(path, text) {
let options = undefined;
if (text) {
const selection = this.getStrRangeInFile(path, text);
options = { selection };
}
vscode.window.showTextDocument(vscode.Uri.file(path), options);
},
/**
* 用JD-GUI打开jar包
*/
openJarByJdGui: function(jarPath) {
// 如何选中文件有待完善
const jdGuiPath = vscode.workspace.getConfiguration().get('eggHelper.jdGuiPath');
if (!jdGuiPath) {
this.showError('JD-GUI路径不能为空!');
return;
}
if (!fs.existsSync(jdGuiPath)) {
this.showError('您还没有安装JD-GUI,请安装完后到vscode设置里面找到HSF助手并进行路径配置。');
return;
}
if (!fs.existsSync(jarPath)) {
this.showError('jar包未找到:' + jarPath);
return;
}
exec(`open ${jarPath} -a ${jdGuiPath}`);
},
/**
* 使用默认浏览器中打开某个URL
*/
openUrlInBrowser: function(url) {
exec(`open '${url}'`);
},
/**
* 递归遍历清空某个资源的require缓存
* @param {*} absolutePath
*/
clearRequireCache(absolutePath) {
const root = require.cache[absolutePath];
if (!root) return;
if (root.children) {
// 如果有子依赖项,先清空依赖项的缓存
root.children.forEach(item => {
this.clearRequireCache(item.id);
});
}
delete require.cache[absolutePath];
},
/**
* 动态require,和普通require不同的是,加载之前会先尝试删除缓存
* @param {*} modulePath
*/
dynamicRequire(modulePath) {
this.clearRequireCache(modulePath);
return require(modulePath);
},
/**
* 读取properties文件
* @param {*} filePath
*/
readProperties(filePath) {
const content = fs.readFileSync(filePath, 'utf-8');
let rows = content.split(os.EOL);
rows = rows.filter(row => row && row.trim() && !/^#/.test(row));
const result = {};
rows.forEach(row => {
let temp = row.split('=');
result[temp[0].trim()] = temp[1].trim();
});
return result;
},
/**
* 比较2个对象转JSON字符串后是否完全一样
* 特别注意,由于JS遍历对象的无序性(部分浏览器是按照添加顺序遍历的)导致同样的对象,
* 转成JSON串之后反而不一样,所以这里采用其它方式实现。
* @param {*} obj1
* @param {*} obj2
*/
jsonEquals(obj1, obj2) {
let s1 = this.formatToSpecialJSON(obj1, '', true);
let s2 = this.formatToSpecialJSON(obj2, '', true);
return s1 === s2;
}
};
module.exports = util;