-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNdeFs.js
419 lines (347 loc) · 10.1 KB
/
NdeFs.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
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
var fs = require('fs'),
fsExtra = require('fs-extra'),
rmdir = require('rimraf'),
mv = require('mv'), // for moving files accross devices
spawn = require('child_process').spawn,
recursiveReaddir = require('recursive-readdir'),
async = require('async'),
path = require('path'),
File = require('./File.js'),
DesktopFile = require('./DesktopFile.js'),
DirectoryFile = require('./DirectoryFile.js'),
FileSorter = require('./FileSorter.js'),
FileFilter = require('./FileFilter.js');
function NdeFs( options ) {
var directoryWatchers = [];
var sortSettings = ['hiddenLast', 'directoryFirst', 'displayName'],
filterSettings = [];
var fileSorter = new FileSorter( sortSettings ),
fileFilter = new FileFilter( filterSettings ),
iconPathFetcher = options.iconPathFetcher;
this.userHome = process.env.HOME;
this.currentDirectory = null;
// dirs with lower index in Array
// override dir applications
// with higher indices
var applicationDirectories = [
this.userHome + '/.local/share/applications/',
'/usr/share/applications/'
];
function addWatcher( path, handler ) {
try {
var watcher = fs.watch(path, function( ev, fileName ) {
// e.g. torrent downloads
// the 'change' event is triggered
// very frequently
// to avoid constant refreshes
// ignore change event
//
// Better solution instead of ignoring
// is to prevent subsequent updates
// by giving it a min time
// between updates e.g. 1s
// and in conjunction with that
// prevent repaints of the directory
// if no file elements have changed
// e.g. checking the filelist and
// the file object list for changes
// and only then rerender the folder
if ( ev === 'change' && fileName.match(/\.part$/) ) {
// do nothing
// console.log('Part file - no trigger', ev, fileName);
} else {
handler( ev, fileName );
}
});
directoryWatchers.push( watcher );
} catch(e) {
console.error('Can not watch directory\n' + path + '\n' + e);
}
}
function watchDirectory( path, handler ) {
// unwatch last directory
directoryWatchers.forEach(function( watcher ){
watcher.close();
});
directoryWatchers = [];
// refresh directory
// on file changes
// special applications view
if ( path === 'applications://') {
applicationDirectories.forEach(function( applicationDirectory ) {
addWatcher( applicationDirectory, handler );
});
// regular directories
} else {
addWatcher( path, handler );
}
}
this.getParentDirectory = function() {
var segments = this.currentDirectory.split('/');
segments.pop();
segments.pop();
return (segments.join("/")) + '/';
}.bind(this);
var cleanPath = function( path ) {
// remove unecessary white spaces
path = path.trim();
// ensure slash '/' at end of path
if ( path.substr(path.length - 1) !== '/' )
path += '/';
// remove file protocol
path = path.replace(/^file:\/\//, '');
// allow relative path
if ( path[0] !== '/' && ! path.match(/^[a-z\-]+:\/\//) )
path = this.currentDirectory + path;
var expansionFailed = false;
// perform bash variable expansion
// as well as tilde '~' home expansion
path = path.replace(/(\$[A-Z_]+)/g, function(envVar){
var envVarValue = process.env[envVar.replace(/^\$/,'')];
if ( ! envVarValue ) {
console.error('Unkown environment variable\n' + envVar);
expansionFailed = true;
}
return envVarValue;
});
if ( expansionFailed )
return null;
path = path.replace(/^~/, this.userHome);
path = path.replace(/^\/{2,}/, '/');
return path;
}.bind(this);
// As we only have to create a
// virtual directory view
// we can move the watch and
// readdir code into a separate function
// and use the body of sort/filter
// as before
// thus not duplicating the efforts
// try to keep it dry
//
// Differences to opening regular
// directory
// - virtual path applications:// (because virtual directory / composed view)
// - watch several directories at the same time
// - fileList items have virtual parent applications:// and can have different real parent directories
//
// application root dirs
// need to search recursively
// watch dirs recursively
// recursively get all files
// applications in ~/.local override
// applications in /usr
// merge to final list
// then apply sort/filter on them
// var applicationDirectories = [
// '/usr/share/applications/',
// this.userHome + '/.local/share/applications/'
// ];
this.getApplicationsViewFileList = function( callback ) {
async.map(applicationDirectories, recursiveReaddir, function( err, fileLists ){
if ( err ) {
callback( err, null);
return;
}
var purifiedFileList = [],
purifiedFileNameList = [];
var fileList = [].concat
.apply( [], fileLists )
.filter(function( f ) {
// filter out non-.desktop files
return !! f.match(/[^\/]\.desktop$/);
});
var fileNameList = fileList.map(function( absFilePath ){
return path.basename( absFilePath );
});
var fileCount = fileNameList.length;
// As the indices of the fileList
// and the fileNameList are the same
// we can compare fileNames
// but pick absFilePaths with
// the same indices.
// The purifiedFileNameList serves us
// to identify duplicates
// and the purifiedFileList is the
// filtered collection we want to return
for ( var i = 0; i < fileCount; i++ ) {
var fileName = fileNameList[i];
if ( purifiedFileNameList.indexOf( fileName ) === -1 ) {
var absFilePath = fileList[i];
purifiedFileNameList.push( fileName );
purifiedFileList.push( absFilePath );
}
}
callback( null, purifiedFileList );
});
};
this.getFileList = function( path, callback ) {
// special applications view
if ( path === 'applications://') {
this.getApplicationsViewFileList( callback );
// regular directories
} else {
fs.readdir( path, function(err, fileNameList) {
if ( err ) {
callback( err, null );
return;
}
var fileList = fileNameList.map(function( fileName ){
return path + fileName;
});
callback(null, fileList);
});
}
}.bind(this);
this.getFilesInDirectory = function( path ) {
path = cleanPath( path );
if ( path === null ) {
console.error('Invalid path\n' + path);
return;
}
// refresh dir on file changes
watchDirectory(path, function( ev, fileName ) {
this.getFilesInDirectory( path );
}.bind(this));
this.getFileList( path, function( err, fileList ) {
var fileCount,
filteredCount = 0,
absoluteFilePath,
file,
i;
if ( err ) {
console.error('Can not open directory\n' + path + '\n' + err);
return;
}
this.currentDirectory = path;
this.validPathCallback( path );
// updateHistory(path);
// ui.setLocation( path );
// renderHistoryButtons();
// markBookmark(path);
fileCount = fileList.length;
if ( fileCount === 0 ) {
this.onFiles( [] );
return;
}
fileSorter.reset();
fileSorter.onsorted = function( files ){
this.onFiles( files );
}.bind(this);
for ( i = 0; i < fileCount; i++ ) {
absoluteFilePath = fileList[i];
this.createFileObj(absoluteFilePath, function( file ) {
fileFilter.onPass(file,
function( file ) {
fileSorter.add( file );
filteredCount++;
if ( filteredCount === fileCount )
fileSorter.done();
}, function( file ) {
filteredCount++;
if ( filteredCount === fileCount )
fileSorter.done();
});
}.bind(this));
}
// close file sorter
}.bind(this));
}.bind(this);
// this.stat
// is meant to deal
// with broken symlinks
// fs.stat will treat an
// broken symlink as an
// ENOENT is no file or directory error
// which then breaks the view
// for this directory.
// To prevent that from happening
// I retry with lstat if an error
// occurs.
// lstat will list the broken symlink
// as a regular file instead of
// throwing an error
this.stat = function( path, callback ) {
fs.stat(path, function( err, stats ){
if ( err ) {
fs.lstat( path, callback );
return;
}
callback( err, stats );
});
};
this.createFileObj = function( absoluteFilePath, callback ) {
var file;
this.stat(absoluteFilePath, function( err, stats ) {
if ( err )
throw err;
// Directory
if ( stats.isDirectory() ) {
file = new DirectoryFile({
absoluteFilePath: absoluteFilePath,
isDirectory: true
});
// File
} else {
// Desktop App
if ( absoluteFilePath.match(/\.desktop$/) ) {
file = new DesktopFile({
absoluteFilePath: absoluteFilePath,
iconPathFetcher: iconPathFetcher,
isDirectory: false
});
// Regular File
} else {
file = new File({
absoluteFilePath: absoluteFilePath,
isDirectory: false
});
}
}
callback( file );
});
}.bind(this);
this.openFile = function( file ) {
file.isDirectory(function( err, isDir ) {
file.getAbsolutePath(function(err, absPath) {
if ( isDir ) {
this.getFilesInDirectory( absPath );
} else {
file.open();
}
}.bind(this));
}.bind(this));
}.bind(this);
this.removeFile = function( file, callback ) {
file.getAbsolutePath(function( err, path ) {
if ( err ) {
if ( callback ) callback( err );
return;
}
rmdir(path, function( err ) {
if ( callback ) callback( err );
});
});
}.bind(this);
(function init() {
}());
}
NdeFs.prototype.newFile = function( path, callback ) {
// w - creates and opens file for writing
// x - but throughs error if exists
fs.open( path, 'wx', function( err, fd ){
if ( err ) {
callback( err );
return;
}
fs.close( fd, callback );
});
};
// We can't use the fs.rename API
// when moving files accross
// different devices/partitions
// the 'mv' library will
// take care of that for us
NdeFs.prototype.renameFile = mv;
NdeFs.prototype.copyFile = fsExtra.copy;
module.exports = NdeFs;