forked from zhaopengme/vscode-fileheader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.js
274 lines (248 loc) · 11 KB
/
extension.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
/*
* @Author: mikey.zhaopeng
* @Date: 2016-07-29 15:57:29
* @Last Modified by: Noscere
* @Last Modified time: 2022-11-15 07:22:32.354
*/
var vscode = require('vscode');
const fileheader = require('./fileheader');
const customErrors = require('application-errors');
Date.prototype.format = fileheader.dateFormat;
function getConfig() {
var config = vscode.workspace.getConfiguration('fileheader');
config.lastModifiedBy = config.LastModifiedBy;
if(config.Author) {
// Sanity check - shouldn't be null, but you never know
if(config.LastModifiedBy) {
if(config.Author != 'Someone' && config.LastModifiedBy == 'Someone') {
// If the author is set, but the last modified isn't...
config.lastModifiedBy = config.Author;
}
} // if config.LastModifiedBy
else {
// if there is no Last Modified name specified
// then use the author name instead
config.lastModifiedBy = config.Author;
}
}
return config;
}
function activate(context) {
console.log('"file-header-comments" is now active!');
var disposable = vscode.commands.registerCommand('extension.fileheader', async function () {
var config = getConfig();
if (!config) {
throw new customErrors.ObjectError(config, "vscode.WorkspaceConfiguration", "file-header-comments.registerCommand() - unexpected undefined object - getConfig() return value was undefined");
}
var editor = vscode.editor || vscode.window.activeTextEditor;
var languageId = editor.document.languageId || null;
var templates = config.templates;
var configTpl = null;
switch(languageId) {
case 'shellscript':
case 'python':
case 'perl':
case 'perl6':
// shell script uses # for comments
// use the shell.tpl template
configTpl = templates.shellScript;
break;
// html uses <!-- --> comment blocks
case 'html':
configTpl = templates.html;
break;
// visual basic uses ' comments
case 'vb':
configTpl = templates.visualBasic;
break;
default:
// defaults to existing C-style
// implementation template
configTpl = templates.c;
}
/*
* @Author: huangyuan
* @Date: 2017-02-28 17:51:35
* @Last Modified by: [email protected]
* @Last Modified time: 2017-02-28 17:51:35
* @description: Insert at the current row instead of the first row
*/
var description = "";
var defaultDescription = vscode.window.activeTextEditor.document.uri.toString();
if(config.renderingOptions.description) {
// prompt the user for a description
description = await vscode.window.showInputBox({
"title": "File Header Description",
"value": defaultDescription,
"prompt": "Enter a description for this file. The filename and window title is the default value.\nEntering no description will disable the @Description field for this file.",
"ignoreFocusOut": true })
}
if(!description) {
description = defaultDescription;
}
var line = editor.selection.active.line;
editor.edit(function (editBuilder) {
var time = new Date().format(config.dateFormat);
var data = {
author: config.Author,
email: config.Email,
lastModifiedBy: config.lastModifiedBy, // use local variable assigned in getConfig()
createTime: time,
updateTime: time,
description: description
}
// Pre-process the template for any disabled elements
configTpl = fileheader.preprocess(configTpl, config.renderingOptions);
// prompt user for any additional information
// do the insert
try {
var tpl = new fileheader.template(configTpl).render(data);;
editBuilder.insert(new vscode.Position(line, 0), tpl);
} catch (error) {
console.error(error);
}
}); // function editBuilder
}); // registerCommand
context.subscriptions.push(disposable);
vscode.workspace.onDidSaveTextDocument(function (file) {
var config = getConfig();
if (!config) {
throw new customErrors.ObjectError(config, "vscode.WorkspaceConfiguration", "file-header-comments.onDidSaveTextDocument() : unexpected undefined object - getConfig() return value was undefined");
}
setTimeout(function () {
try {
var f = file;
var editor = vscode.editor || vscode.window.activeTextEditor;
var document = editor.document;
var isReturn = false;
var authorRange = null;
var authorText = null;
var lastTimeRange = null;
var lastTimeText = null;
var diff = -1;
var lineCount = document.lineCount;
var comment = false;
var prefix = null;
var commentStartsWith = null;
var commentEndsWith = null;
switch(document.languageId) {
// Catering for differing comment characters
// shell scripts, python, perl, use hash
// # there are no comment blocks
case 'shellscript':
case 'perl':
case 'perl6':
case 'python':
commentStartsWith="#";
prefix = "# ";
break;
// html uses
// <!-- comments block
// - like this
// -->
case 'html':
commentStartsWith="<!--";
commentEndsWith="-->";
prefix = " - ";
break;
// visual basic
// ' inline comments,
// ' no comment blocks
case 'vb':
commentStartsWith="'";
prefix="' ";
break;
// Use existing behaviour with C-style comment
/* comments block
* like this
*/
default:
commentStartsWith="/*";
commentEndsWith="*/";
prefix = " * ";
}
for (var i = 0; i < lineCount; i++) {
var linetAt = document.lineAt(i);
var lineTextOriginal = linetAt.text;
var line = linetAt.text;
line = line.trim();
if (line.startsWith(commentStartsWith) && ((!commentEndsWith) || !line.endsWith(commentEndsWith))) {// Does it start with comment character?
comment = true;// start of entering comments
} else if (comment) {
if ((commentEndsWith) && line.endsWith(commentEndsWith)) {
comment = false;//end comment
}
var range = linetAt.range;
if (line.indexOf('@Last\ Modified\ by') > -1) {//Indicates the editor name
var replaceAuthorReg = /^(.*?)(@Last Modified by:)(\s*)(\S*)$/;
authorRange = range;
if (replaceAuthorReg.test(lineTextOriginal)) {
authorText = fileheader.replaceSubstringInLine(lineTextOriginal, replaceAuthorReg, config.LastModifiedBy);
} else {
authorText = fileheader.constructCommentLine('@Last Modified by: ', config.LastModifiedBy, prefix);
}
} else if (line.indexOf('@Last\ Modified\ time') > -1) {//Last modified at time
var time = line.replace('@Last\ Modified\ time:', '').replace('*', '');
var oldTime = new Date(time);
var curTime = new Date();
var diff = (curTime - oldTime) / 1000;
var replaceTimeReg = /^(.*?)(@Last Modified time:)(\s*)(.*)$/;
lastTimeRange = range;
var currTimeFormate = curTime.format(config.dateFormat);
if (replaceTimeReg.test(lineTextOriginal)) {
lastTimeText = fileheader.replaceSubstringInLine(lineTextOriginal, replaceTimeReg, currTimeFormate)
} else {
lastTimeText = fileheader.constructCommentLine('@Last Modified time: ', currTimeFormate, prefix);
}
}
if (!comment) {
break;//Finish
}
}
}// end for
if ((authorRange != null) && (lastTimeRange != null) && (diff > 20)) {
setTimeout(function () {
editor.edit(function (edit) {
edit.replace(authorRange, authorText);
edit.replace(lastTimeRange, lastTimeText);
});
document.save();
}, 200);
}
} catch (error) {
console.error(error);
}
}, 200);
}); // onDidSaveTextDocument
}
function getConfiguration() {
return vscode.workspace.getConfiguration('mocha');
}
function getLineText(lineNum, editor) {
const document = editor.document;
if (lineNum >= document.lineCount) {
return '';
}
const start = new vscode.Position(lineNum, 0);
const lastLine = document.lineAt(lineNum);
const end = new vscode.Position(lineNum, lastLine.text.length);
const range = new vscode.Range(start, end);
var t = document.getText(range);
return t;
}
function replaceLineText(lineNum, text, editor) {
const document = editor.document;
if (lineNum >= document.lineCount) {
return '';
}
const start = new vscode.Position(lineNum, 0);
const lastLine = document.lineAt(lineNum);
const end = new vscode.Position(lineNum, lastLine.text.length);
const range = new vscode.Range(start, end);
editor.edit(function (edit) {
edit.replace(range, text);
});
}
exports.activate = activate;
function deactivate() { }
exports.deactivate = deactivate;