forked from kaelzhang/node-ignore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
364 lines (289 loc) · 8.11 KB
/
index.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
'use strict';
module.exports = ignore;
ignore.Ignore = Ignore;
var EE = require('events').EventEmitter;
var node_util = require('util');
var node_fs = require('fs');
function ignore(options) {
return new Ignore(options);
}
var exists = node_fs.existsSync
? function(file) {
return node_fs.existsSync(file);
}
// if node <= 0.6, there's no fs.existsSync method.
: function(file) {
try {
node_fs.statSync(file);
return true;
} catch (e) {
return false;
}
};
// Select the first existing file of the file list
ignore.select = function(files) {
var selected;
files.some(function(file) {
if (exists(file)) {
selected = file;
return true;
}
});
return selected;
};
// @param {Object} options
// - ignore: {Array}
// - twoGlobstars: {boolean=false} enable pattern `'**'` (two consecutive asterisks), default to `false`.
// If false, ignore patterns with two globstars will be omitted
// - matchCase: {boolean=} case sensitive.
// By default, git is case-insensitive
function Ignore(options) {
options = options || {};
this.options = options;
this._patterns = [];
this._rules = [];
this._ignoreFiles = [];
options.ignore = options.ignore || [
// Some files or directories which we should ignore for most cases.
'.git',
'.svn',
'.DS_Store'
];
this.addPattern(options.ignore);
}
// Events:
// 'warn': ,
// will warn when encounter '`**`' (two consecutive asterisks)
// which is not compatible with all platforms (not works on Mac OS for example)
node_util.inherits(Ignore, EE);
function makeArray(subject) {
return Array.isArray(subject)
? subject
: subject === undefined || subject === null
? []
: [subject];
}
// @param {Array.<string>|string} pattern
Ignore.prototype.addPattern = function(pattern) {
makeArray(pattern).forEach(this._addPattern, this);
return this;
};
Ignore.prototype._addPattern = function(pattern) {
if (this._simpleTest(pattern)) {
var rule = this._createRule(pattern);
this._rules.push(rule);
}
};
Ignore.prototype.filter = function(paths) {
return paths.filter(this._filter, this);
};
Ignore.prototype._simpleTest = function(pattern) {
// Whitespace dirs are allowed, so only filter blank pattern.
var pass = pattern
// And not start with a '#'
&& pattern.indexOf('#') !== 0
&& !~this._patterns.indexOf(pattern);
this._patterns.push(pattern);
if (~pattern.indexOf('**')) {
this.emit('warn', {
code: 'WGLOBSTARS',
data: {
origin: pattern
},
message: '`**` found, which is not compatible cross all platforms.'
});
if (!this.options.twoGlobstars) {
return false;
}
}
return pass;
};
var REGEX_LEADING_EXCLAMATION = /^\\\!/;
var REGEX_LEADING_HASH = /^\\#/;
Ignore.prototype._createRule = function(pattern) {
var rule_object = {
origin: pattern
};
var match_start;
if (pattern.indexOf('!') === 0) {
rule_object.negative = true;
pattern = pattern.substr(1);
}
pattern = pattern
.replace(REGEX_LEADING_EXCLAMATION, '!')
.replace(REGEX_LEADING_HASH, '#');
rule_object.pattern = pattern;
rule_object.regex = this.makeRegex(pattern);
return rule_object;
};
// > If the pattern ends with a slash,
// > it is removed for the purpose of the following description,
// > but it would only find a match with a directory.
// > In other words, foo/ will match a directory foo and paths underneath it,
// > but will not match a regular file or a symbolic link foo (this is consistent with the way how pathspec works in general in Git).
// '`foo/`' will not match regular file '`foo`' or symbolic link '`foo`'
// -> ignore-rules will not deal with it, because it costs extra `fs.stat` call
// you could use option `mark: true` with `glob`
// '`foo/`' should not continue with the '`..`'
var REPLACERS = [
// Escape metacharacters
// which is written down by users but means special for regular expressions.
// > There are 12 characters with special meanings:
// > - the backslash \,
// > - the caret ^,
// > - the dollar sign $,
// > - the period or dot .,
// > - the vertical bar or pipe symbol |,
// > - the question mark ?,
// > - the asterisk or star *,
// > - the plus sign +,
// > - the opening parenthesis (,
// > - the closing parenthesis ),
// > - and the opening square bracket [,
// > - the opening curly brace {,
// > These special characters are often called "metacharacters".
[
/[\\\^$.|?*+()\[{]/g,
function(match) {
return '\\' + match;
}
],
// leading slash
[
// > A leading slash matches the beginning of the pathname.
// > For example, "/*.c" matches "cat-file.c" but not "mozilla-sha1/sha1.c".
// A leading slash matches the beginning of the pathname
/^\//,
'^'
],
[
/\//g,
'\\/'
],
[
// > A leading "**" followed by a slash means match in all directories.
// > For example, "**/foo" matches file or directory "foo" anywhere,
// > the same as pattern "foo".
// > "**/foo/bar" matches file or directory "bar" anywhere that is directly under directory "foo".
// Notice that the '*'s have been replaced as '\\*'
/^\^*\\\*\\\*\\\//,
// '**/foo' <-> 'foo'
// just remove it
''
],
// 'f'
// matches
// - /f(end)
// - /f/
// - (start)f(end)
// - (start)f/
// doesn't match
// - oof
// - foo
// pseudo:
// -> (^|/)f(/|$)
// ending
[
// 'js' will not match 'js.'
/(?:[^*\/])$/,
function(match) {
// 'js*' will not match 'a.js'
// 'js/' will not match 'a.js'
// 'js' will match 'a.js' and 'a.js/'
return match + '(?=$|\\/)';
}
],
// starting
[
// there will be no leading '/' (which has been replaced by the second replacer)
// If starts with '**', adding a '^' to the regular expression also works
/^(?=[^\^])/,
'(?:^|\\/)'
],
// two globstars
[
// > A slash followed by two consecutive asterisks then a slash matches zero or more directories.
// > For example, "a/**/b" matches "a/b", "a/x/b", "a/x/y/b" and so on.
// '/**/'
/\\\/\\\*\\\*\\\//g,
// Zero, one or several directories
// should not use '*', or it will be replaced by the next replacer
'(?:\\/[^\\/]+)*\\/'
],
// intermediate wildcards
[
// Never replace escaped '*'
// ignore rule '\*' will match the path '*'
// 'abc.*/' -> go
// 'abc.*' -> skip
/(^|[^\\]+)\\\*(?=.+)/g,
function(match, p1) {
// '*.js' matches '.js'
// '*.js' doesn't match 'abc'
return p1 + '[^\\/]*';
}
],
// ending wildcard
[
/\\\*$/,
// simply remove it
''
],
[
/\\\\\\/g,
'\\'
]
];
// @param {pattern}
Ignore.prototype.makeRegex = function(pattern) {
var source = REPLACERS.reduce(function(prev, current) {
return prev.replace(current[0], current[1]);
}, pattern);
return new RegExp(source, this.options.matchCase ? '' : 'i');
};
Ignore.prototype._filter = function(path) {
var rules = this._rules;
var i = 0;
var length = rules.length;
var matched;
var rule;
for (; i < length; i++) {
rule = rules[i];
// if matched = true, then we only test negative rules
// if matched = false, then we test non-negative rules
if (!(matched ^ rule.negative)) {
matched = rule.negative ^ rule.regex.test(path);
} else {
continue;
}
}
return !matched;
};
Ignore.prototype.createFilter = function() {
var self = this;
return function(path) {
return self._filter(path);
};
};
// @param {Array.<path>|path} a
Ignore.prototype.addIgnoreFile = function(files) {
makeArray(files).forEach(this._addIgnoreFile, this);
return this;
};
Ignore.prototype._addIgnoreFile = function(file) {
if (this._checkRuleFile(file)) {
this._ignoreFiles.push(file);
var content;
try {
content = node_fs.readFileSync(file);
} catch (e) {}
if (content) {
this.addPattern(content.toString().split(/\r?\n/));
}
}
};
Ignore.prototype._checkRuleFile = function(file) {
return file !== '.'
&& file !== '..'
&& !~this._ignoreFiles.indexOf(file);
};