Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 059746443d9cf1044a7802c72ca24cc7f9cd6f14 (plain) (blame)
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
442
443
444
445
446
447
448
449
450
/*******************************************************************************
 * Copyright (c) 2000, 2006 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *     Matt McCutchen (hashproduct+eclipse@gmail.com) - Bug 132260 Eclipse doesn't understand negated character classes in .cvsignore
 *******************************************************************************/
package org.eclipse.team.internal.ccvs.core.util;

import java.util.Vector;
import java.util.HashMap;

/**
 * A StringMatcher contains a glob and matches it against strings.
 * StringMatcher supports * and ? wildcards and character classes, possibly
 * negated by !, that contain single characters and/or ranges.
 * Note: code copied from org.eclipse.jdt.internal.core.util.StringMatcher on April 3, 2001
 * (version 0.1 - 010901H18 [rename jbl]).
 */
public class StringMatcher {

	protected static class CharacterClass {
		final boolean isNegated;
		final String text;

		CharacterClass(boolean isNegated, String text) {
			this.isNegated = isNegated;
			this.text = text;
		}

		boolean listed(char c) {
			for (int i = 0; i < text.length(); ) {
				if (i + 2 < text.length() && text.charAt(i + 1) == '-') {
					if (c >= text.charAt(i) && c <= text.charAt(i + 2))
						return true;
					i += 3;
				} else {
					if (c == text.charAt(i))
						return true;
					i++;
				}
			}
			return false;
		}
		boolean match(char c) {
			return listed(c) ^ isNegated;
		}
	}
	
	protected String fPattern;
	protected int fLength; // pattern length
	protected boolean fIgnoreWildCards;
	protected boolean fIgnoreCase;
	protected boolean fHasLeadingStar;
	protected boolean fHasTrailingStar;
	protected String fSegments[]; //the given pattern is split into * separated segments
	protected HashMap/*<Integer, CharacterClass>*/ fCharacterClassMaps[];

	/* boundary value beyond which we don't need to search in the text */
	protected int fBound = 0;
	
	/** \? in pattern becomes ? in fSegments, while ? in pattern becomes this */
	protected static final char fSingleWildCard = '\u0000';
	
	public static class Position {
		int start; //inclusive
		int end; //exclusive
		public Position(int start, int end) {
			this.start = start;
			this.end = end;
		}
		public int getStart() {
			return start;
		}
		public int getEnd() {
			return end;
		}
	}

	/**
	 * Find the first occurrence of the pattern between <code>start</code> (inclusive) 
	 * and <code>end</code> (exclusive).  
	 * @param text the String object to search in 
	 * @param start the starting index of the search range, inclusive
	 * @param end the ending index of the search range, exclusive
	 * @return a <code>StringMatcher.Position</code> object that keeps the starting 
	 * (inclusive) and ending positions (exclusive) of the first occurrence of the 
	 * pattern in the specified range of the text; return null if not found or subtext
	 * is empty (start==end). A pair of zeros is returned if pattern is empty string
	 * Note that for pattern like "*abc*" with leading and trailing stars, position of "abc"
	 * is returned. For a pattern like"*??*" in text "abcdf", (1,3) is returned
	 */
	public StringMatcher.Position find(String text, int start, int end) {
		if (fPattern  == null|| text == null)
			throw new IllegalArgumentException();
			
		int tlen = text.length();
		if (start < 0)
			start = 0;
		if (end > tlen)
			end = tlen;
		if (end < 0 ||start >= end )
			return null;
		if (fLength == 0)
			return new Position(start, start);
		if (fIgnoreWildCards) {
			int x = posIn(text, start, end);
			if (x < 0)
				return null;
			return new Position(x, x+fLength);
		}

		int segCount = fSegments.length;
		if (segCount == 0)//pattern contains only '*'(s)
			return new Position (start, end);
					
		int curPos = start;
		int matchStart = -1; 
		int i; 
		for (i = 0; i < segCount && curPos < end; ++i) {
			String current = fSegments[i];
			int nextMatch = regExpPosIn(text, curPos, end, current, fCharacterClassMaps[i]);
			if (nextMatch < 0 )
				return null;
			if(i == 0)
				matchStart = nextMatch;
			curPos = nextMatch + current.length();
		}
		if (i < segCount)
			return null;
		return new Position(matchStart, curPos);
	}

	/**
	 * Constructs a StringMatcher that matches strings against the glob
	 * <code>aPattern</code>.
	 * 
	 * <code>aPattern</code> may contain "?"s, which match single characters,
	 * "*"s, which match zero or more characters, and character classes in
	 * "[...]".  All characters other than "*", "?", and "[" match themselves,
	 * except for "\", which escapes the following character.  For example,
	 * "\*" matches "*" and "\a" matches "a", while "\\" matches "\".  Remember
	 * that Java string literals have an additional level of escaping, so a
	 * string literal for a glob matching a single backslash is written "\\\\".
	 * 
	 * "[" begins a character class, which may contain characters and/or ranges;
	 * "]" ends the class.  A character class matches any single character in
	 * it; for example, "[ac-e]" matches an "a", a "c", a "d", or an "e".  A
	 * negated character class begins with "[!" and matches any single character
	 * not listed.  Inside a character class, "\" loses its special meaning as
	 * an escape character.  The fancier POSIX requirements for character
	 * classes are not supported: ranges use Unicode character numbers, and
	 * (for example) [:alpha:], [.ch.], and [=a=] are not recognized.
	 * 
	 * @param aPattern the glob to match text with
	 * @param ignoreCase if true, case is ignored
	 * @param ignoreWildCards if true, the pattern is taken literally instead of
	 * as a glob
	 */
	public StringMatcher(String aPattern, boolean ignoreCase, boolean ignoreWildCards) {
		fIgnoreCase = ignoreCase;
		fIgnoreWildCards = ignoreWildCards;
		fLength = aPattern.length();

		/* convert case */
		if (fIgnoreCase) {
			fPattern = aPattern.toUpperCase();
		} else {
			fPattern = aPattern;
		}
		
		if (fIgnoreWildCards) {
			parseNoWildCards();
		} else {
			parseWildCards();
		}
	}
	/**
	 * Given the starting (inclusive) and the ending (exclusive) poisitions in the   
	 * <code>text</code>, determine if the given substring matches with aPattern  
	 * @return true if the specified portion of the text matches the pattern
	 * @param text a String object that contains the substring to match 
	 * @param start marks the starting position (inclusive) of the substring
	 * @param end marks the ending index (exclusive) of the substring 
	 */
	public boolean match(String text, int start, int end) {
		if (null == text)
			throw new IllegalArgumentException();

		if (start > end)
			return false;

		if (fIgnoreWildCards)
			return (end - start == fLength) && fPattern.regionMatches(fIgnoreCase, 0, text, start, fLength);
		int segCount= fSegments.length;
		if (segCount == 0 && (fHasLeadingStar || fHasTrailingStar))  // pattern contains only '*'(s)
			return true;
		if (start == end)
			return fLength == 0;
		if (fLength == 0)
			return start == end;

		int tlen= text.length();
		if (start < 0)
			start= 0;
		if (end > tlen)
			end= tlen;

		int tCurPos= start;
		int bound= end - fBound;
		if ( bound < 0)
			return false;
		int i=0;
		String current= fSegments[i];
		HashMap/*<Integer, CharacterClass>*/ curCharClassMap= fCharacterClassMaps[i];
		int segLength= current.length();

		/* process first segment */
		if (!fHasLeadingStar){
			if(!regExpRegionMatches(text, start, current, 0, segLength, curCharClassMap)) {
				return false;
			} else {
				++i;
				tCurPos= tCurPos + segLength;
			}
		}
		if ((fSegments.length == 1) && (!fHasLeadingStar) && (!fHasTrailingStar)) {
			// only one segment to match, no wildcards specified
			return tCurPos == end;
		}
		/* process middle segments */
		while (i < segCount) {
			current= fSegments[i];
			curCharClassMap= fCharacterClassMaps[i];
			int currentMatch;
			int k= current.indexOf(fSingleWildCard);
			if (k < 0) {
				currentMatch= textPosIn(text, tCurPos, end, current);
				if (currentMatch < 0)
					return false;
			} else {
				currentMatch= regExpPosIn(text, tCurPos, end, current, curCharClassMap);
				if (currentMatch < 0)
					return false;
			}
			tCurPos= currentMatch + current.length();
			i++;
		}

		/* process final segment */
		if (!fHasTrailingStar && tCurPos != end) {
			int clen= current.length();
			return regExpRegionMatches(text, end - clen, current, 0, clen, curCharClassMap);
		}
		return i == segCount ;
	}
	/**
	 * match the given <code>text</code> with the pattern 
	 * @return true if matched eitherwise false
	 * @param text the String object to match against the pattern 
	 */
	public boolean  match(String text) {
		return match(text, 0, text.length());
	}
	/**
	 * This method parses the given pattern into segments separated by wildcard '*' characters.
	 * Since wildcards are not being used in this case, the pattern consists of a single segment.
	 */
	private void parseNoWildCards() {
		fSegments = new String[1];
		fSegments[0] = fPattern;
		fBound = fLength;
	}
	/**
	 * This method parses the given pattern into segments separated by wildcard '*' characters.
	 * @param p a String object that is a simple regular expression with *  and/or  ? 
	 */
	private void parseWildCards() {
		if(fPattern.startsWith("*"))//$NON-NLS-1$
			fHasLeadingStar = true;

		Vector temp = new Vector();
		HashMap/*<Integer, CharacterClass>*/ segmentCCs = null;
		Vector/*<HashMap<Integer, CharacterClass>>*/ allCCs = new Vector();

		int pos = 0;
		StringBuffer buf = new StringBuffer();
		while (pos < fLength) {
			char c = fPattern.charAt(pos++);
			fHasTrailingStar = false;
			switch (c) {
				case '\\':
					if (pos >= fLength) {
						buf.append(c);
					} else {
						c = fPattern.charAt(pos++);
						buf.append(c);
					}
				break;
				case '*':
					fHasTrailingStar = true;
					if (buf.length() > 0) {
						/* new segment */
						temp.addElement(buf.toString());
						allCCs.addElement(segmentCCs);
						fBound += buf.length();
						buf.setLength(0);
						segmentCCs = null;
					}
				break;
				case '[':
					if (segmentCCs == null)
						segmentCCs = new HashMap/*<Integer, CharacterClass>*/();
					if (pos >= fLength) {
						// Unterminated; take [ literally for lack of anything better to do
						buf.append(c);
						break;
					}
					boolean negated = (fPattern.charAt(pos) == '!');
					int beginPos = (negated ? pos + 1 : pos);
					int endPos = fPattern.indexOf(']', beginPos + 1);
					if (endPos == -1) {
						// Unterminated; take [ literally for lack of anything better to do
						buf.append(c);
						break;
					}
					CharacterClass cc = new CharacterClass(negated, fPattern.substring(beginPos, endPos));
					segmentCCs.put(new Integer(buf.length()), cc);
					pos = endPos + 1;
					/* fall through; fSingleWildCard can also represent a character class */
				case '?':
					/* append special character representing single match wildcard */
					buf.append(fSingleWildCard);
				break;
				default:
					buf.append(c);
			}
		}

		/* add last buffer to segment list */
		if (buf.length() > 0) {
			temp.addElement(buf.toString());
			allCCs.addElement(segmentCCs);
			fBound += buf.length();
		}
			
		fSegments = new String[temp.size()];
		temp.copyInto(fSegments);
		fCharacterClassMaps = new HashMap[allCCs.size()];
		allCCs.copyInto(fCharacterClassMaps);
	}
	/** 
	 * @param text a string which contains no wildcard
	 * @param start the starting index in the text for search, inclusive
	 * @param end the stopping point of search, exclusive
	 * @return the starting index in the text of the pattern , or -1 if not found 
	 */
	protected int posIn(String text, int start, int end) {//no wild card in pattern
		return textPosIn(text, start, end, fPattern);
	}
	/** 
	 * @param text a simple regular expression that may only contain '?'(s)
	 * @param start the starting index in the text for search, inclusive
	 * @param end the stopping point of search, exclusive
	 * @param p a simple regular expression that may contains '?'
	 * @param caseIgnored whether the pattern is not casesensitive
	 * @return the starting index in the text of the pattern , or -1 if not found 
	 */
	protected int regExpPosIn(String text, int start, int end, String p, HashMap/*<Integer, CharacterClass>*/ ccMap) {
		int plen = p.length();
		
		int max = end - plen;
		for (int i = start; i <= max; ++i) {
			if (regExpRegionMatches(text, i, p, 0, plen, ccMap))
				return i;
		}
		return -1;
	}
	/**
	 * 
	 * @return boolean
	 * @param text a String to match
	 * @param start int that indicates the starting index of match, inclusive
	 * @param end int that indicates the ending index of match, exclusive
	 * @param p String, a simple regular expression that may contain '?'
	 * @param ignoreCase boolean indicating whether <code>p</code> is case sensitive
	 * @param ccMap maps each index of p at which fSingleWildCard occurs (as an 
	 * Integer) to CharacterClass data, or null for a plain old ?
	 */
	protected boolean regExpRegionMatches(String text, int tStart, String p, int pStart, int plen, HashMap/*<Integer, CharacterClass>*/ ccMap) {
		for (int ppos = 0; plen-- > 0; ppos++) {
			char tchar = text.charAt(tStart++);
			char pchar = p.charAt(pStart++);

			/* process wild cards */
			if (!fIgnoreWildCards) {
				/* skip single wild cards */
				if (pchar == fSingleWildCard) {
					if (ccMap == null)
						continue;
					CharacterClass cc = (CharacterClass) ccMap.get(new Integer(ppos));
					if (cc == null || cc.match(tchar))
						continue;
					else
						return false;
				}
			}
			if (pchar == tchar)
				continue;
			if (fIgnoreCase) {
				char tc = Character.toUpperCase(tchar);
				if (tc == pchar)
					continue;
			}
			return false;
		}
		return true;
	}
	/** 
	 * @param text the string to match
	 * @param start the starting index in the text for search, inclusive
	 * @param end the stopping point of search, exclusive
	 * @param p a string that has no wildcard
	 * @param ignoreCase boolean indicating whether p is case sensitive
	 * @return the starting index in the text of the pattern , or -1 if not found 
	 */
	protected int textPosIn(String text, int start, int end, String p) { 
		
		int plen = p.length();
		int max = end - plen;
		
		if (!fIgnoreCase) {
			int i = text.indexOf(p, start);
			if (i == -1 || i > max)
				return -1;
			return i;
		}
		
		for (int i = start; i <= max; ++i) {
			if (text.regionMatches(true, i, p, 0, plen))
				return i;
		}
		
		return -1;
	}
}

Back to the top