-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfile.class.js
More file actions
441 lines (401 loc) · 9.43 KB
/
file.class.js
File metadata and controls
441 lines (401 loc) · 9.43 KB
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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
/**
* Collection of an emulation of the VMware Aria Automation classes
* File, FileReader and FileWriter.
*
* @author Stefan Schnell <mail@stefan-schnell.de>
* @license MIT
* @version 0.1.4
*
* Hint: This mock-up works only with the Mozilla Rhino JavaScript
* engine.
*
* Checked with Rhino engines version 1.7R4, 1.7.15 and 1.9.1
*/
/**
* Creates a new File object with the given file.
*
* @param file {string} - The file to access.
*/
var File = function(file) {
if (file != null) {
var f = java.io.File(file);
this.directory = String(f.getParent());
this.exists = f.exists();
this.extension = f.getName().substring(
f.getName().lastIndexOf(".") + 1
).toLowerCase();
this.hostname = "localhost";
this.isDir = f.isDirectory();
this.isLocal = false;
if (this.exists) {
this.length = f.length();
} else {
this.length = -1;
}
this.name = f.getName();
this.path = file;
}
};
File.prototype = {
/**
* Can read this file.
*
* @returns {boolean}
*/
canRead : function() {
return java.io.File(this.path).canRead();
},
/**
* Can write this file.
*
* @returns {boolean}
*/
canWrite : function() {
return java.io.File(this.path).canWrite();
},
/**
* Copies the file.<br>
* Hint: This method is not available in the standard.
*
* @param targetName {string} - The target file.
*/
copyTo : function(targetName) {
if (targetName == null) {
throw new Error("targetName argument can not be undefined or null");
}
java.nio.file.Files.copy(
java.io.File(this.path).toPath(),
java.io.File(targetName).toPath(),
java.nio.file.StandardCopyOption.REPLACE_EXISTING,
java.nio.file.StandardCopyOption.COPY_ATTRIBUTES,
java.nio.file.LinkOption.NOFOLLOW_LINKS
);
},
/**
* Creates the directory structure if it does not exist.
*/
createDirectory : function() {
var file = java.io.File(this.path);
if (!file.exists()) {
if (file.mkdirs()) {
this.isDir = file.isDirectory();
}
}
},
/**
* Creates the file if it does not exist.
*/
createFile : function() {
var file = java.io.File(this.path);
if (!file.exists()) {
if (file.createNewFile()) {
this.exists = file.exists();
this.length = file.length();
}
}
},
/**
* Deletes the file or an empty directory.
*/
deleteFile : function() {
var file = java.io.File(this.path);
if (file.exists()) {
if (file.delete()) {
this.exists = file.exists();
this.length = -1;
} else {
System.warn("File was not deleted");
}
}
},
/**
* Checks if file exists.
*
* @returns {boolean}
*/
existsFile: function() {
var file = java.io.File(this.path);
if (file.exists()) {
return true;
} else {
return false;
}
},
/**
* Returns the class name.<br>
* Hint: This method is a standard.
*
* @returns {string}
*/
getClassName : function() {
return "File";
},
/**
* List files and directories.
*
* @param extension {string} - The extension.
*
* @returns {Array.<String>}
*/
list : function(extension) {
var file = java.io.File(this.path);
if (file.isDirectory()) {
var fileList = null;
var returnArray = [];
fileList = file.list();
if (extension == null) {
fileList.forEach( function(item) {
returnArray.push(String(item));
});
} else {
fileList.forEach( function(item) {
if (String(item).toLowerCase().endsWith(extension)) {
returnArray.push(String(item));
}
});
}
return returnArray;
}
},
/**
* Renames the file.
*
* @param destPathName {string} - The new pathname for the file.
* @returns {boolean} - True if renaming succeeded, false otherwise.
*/
renameTo : function(destPathName) {
if (destPathName == null) {
throw new Error("destPathName argument can not be undefined or null");
}
var file = java.io.File(this.path);
if (file.exists()) {
return file.renameTo(java.io.File(destPathName));
}
},
/**
* Writes the content to the file.
*
* @param content {string} - The content to write.
*/
write : function(content) {
if (content == null) {
throw new Error("content argument can not be undefined or null");
}
var fileWriter = java.io.FileWriter(java.io.File(this.path));
fileWriter.write(content);
fileWriter.close();
this.length = java.io.File(this.path).length();
}
};
/**
* Creates a new FileReader with the given file.
*
* @param file {string} - The file to access.
*/
var FileReader = function(file) {
if (file != null) {
var f = java.io.File(file);
this.exists = f.exists();
this.path = file;
}
};
FileReader.prototype = {
/**
* Closes a previously opened file.
*/
close : function() {
},
/**
* Returns the class name.<br>
* Hint: This method is a standard.
*
* @returns {string}
*/
getClassName : function() {
return "FileReader";
},
/**
* Opens the file for reading.
*/
open : function() {
},
/**
* Reads all lines from the opened file.
*
* @returns {string}
*/
readAll : function() {
return String(
java.nio.file.Files.readString(
java.nio.file.Paths.get(this.path)
)
);
},
/**
* Reads one line from the opened file, the first line.
*
* @returns {string}
*/
readLine : function() {
return String(
java.nio.file.Files.readAllLines(
java.nio.file.Paths.get(this.path)
).get(0)
);
}
};
/**
* Creates a new FileWriter with the given file.
*
* @param file {string} - The file to access.
*/
var FileWriter = function(file) {
if (file != null) {
var f = java.io.File(file);
this.exists = f.exists();
this.path = file;
this._fileWriter = null;
}
// Type of carriage return used in writeLine.
this._lineEndUnix = "\n"; // 0
this._lineEndWindows = "\r\n"; // 1
this._lineEndMac = "\r"; // 2
this.lineEndType = 0;
};
FileWriter.prototype = {
/**
* Reinitializes the length to 0 and sets the file-pointer to the
* beginning of the file.
*/
clean : function() {
this.close();
var raf = java.io.RandomAccessFile(java.io.File(this.path), "rw");
raf.setLength(0);
this.open();
},
/**
* Closes a previously opened file.
*/
close : function() {
this._fileWriter.close();
this._fileWriter = null;
},
/**
* Returns the class name.<br>
* Hint: This method is a standard.
*
* @returns {string}
*/
getClassName : function() {
return "FileWriter";
},
/**
* Opens the file for writing.
*/
open : function() {
this._fileWriter = java.io.FileWriter(java.io.File(this.path), true);
},
/**
* Writes a string to the file.
*
* @param value {string} - The string to write.
*/
write : function(value) {
if (value == null) {
throw new Error("value argument can not be undefined or null");
}
this._fileWriter.write(String(value));
},
/**
* Writes a line to the file.
*
* @param value {string} - The line to write.
*/
writeLine : function(value) {
if (value == null) {
throw new Error("value argument can not be undefined or null");
}
switch (this.lineEndType) {
case 1 :
this._fileWriter.write(String(value) + this._lineEndWindows);
break;
case 2 :
this._fileWriter.write(String(value) + this._lineEndMac);
break;
default :
this._fileWriter.write(String(value) + this._lineEndUnix);
}
}
};
/**
* Creates a new FileHelper.
*/
var FileHelper = function() {
};
FileHelper.prototype = {
/**
* Returns the class name.<br>
* Hint: This method is a standard.
*
* @returns {string}
*/
getClassName : function() {
return "FileHelper";
},
/**
* Extracts the directory part from the file path.
*
* @param {string} path - Path from which something is to be extracted.
* @returns {string}
*/
getDirectory : function(path) {
return System.extractDirectory(path);
},
/**
* Extracts the extension part from the file path.
*
* @param {string} path - Path from which something is to be extracted.
* @returns {string}
*/
getExtension : function(path) {
return System.extractFileNameExtension(path);
},
/**
* Extracts the file name part from the file path.
*
* @param {string} path - Path from which something is to be extracted.
* @returns {string}
*/
getName : function(path) {
return System.extractFileName(path);
},
/**
* Extracts the file name part without extension from the file path.
*
* @param {string} path - Path from which something is to be extracted.
* @returns {string}
*/
getNameWithoutExtension : function(path) {
return System.extractFileNameWithoutExtension(path);
},
/**
* Checks is path is absolute.
*
* @param {string} path - Path to be checked if it is absolute.
* @returns {boolean}
*/
isAbsolutePath : function(path) {
if (path != null && path.trim().length > 0) {
var separatorPath = String(
java.util.regex.Pattern.compile("\\\\").matcher(path).replaceAll("/")
);
if (separatorPath.indexOf(":/") == 1) {
return true;
}
if (separatorPath.charAt(0) == '/') {
return true;
}
}
return false;
}
};