View Javadoc
1   /*
2    * Copyright (C) 2014, Andrey Loskutov <loskutov@gmx.de>
3    * and other copyright owners as documented in the project's IP log.
4    *
5    * This program and the accompanying materials are made available
6    * under the terms of the Eclipse Distribution License v1.0 which
7    * accompanies this distribution, is reproduced below, and is
8    * available at http://www.eclipse.org/org/documents/edl-v10.php
9    *
10   * All rights reserved.
11   *
12   * Redistribution and use in source and binary forms, with or
13   * without modification, are permitted provided that the following
14   * conditions are met:
15   *
16   * - Redistributions of source code must retain the above copyright
17   *   notice, this list of conditions and the following disclaimer.
18   *
19   * - Redistributions in binary form must reproduce the above
20   *   copyright notice, this list of conditions and the following
21   *   disclaimer in the documentation and/or other materials provided
22   *   with the distribution.
23   *
24   * - Neither the name of the Eclipse Foundation, Inc. nor the
25   *   names of its contributors may be used to endorse or promote
26   *   products derived from this software without specific prior
27   *   written permission.
28   *
29   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
30   * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
31   * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
33   * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
34   * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
35   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
36   * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
37   * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
38   * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39   * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
40   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
41   * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42   */
43  package org.eclipse.jgit.ignore;
44  
45  import static org.eclipse.jgit.ignore.internal.IMatcher.NO_MATCH;
46  import static org.eclipse.jgit.ignore.internal.Strings.isDirectoryPattern;
47  import static org.eclipse.jgit.ignore.internal.Strings.stripTrailing;
48  import static org.eclipse.jgit.ignore.internal.Strings.stripTrailingWhitespace;
49  
50  import org.eclipse.jgit.errors.InvalidPatternException;
51  import org.eclipse.jgit.ignore.internal.IMatcher;
52  import org.eclipse.jgit.ignore.internal.PathMatcher;
53  import org.slf4j.Logger;
54  import org.slf4j.LoggerFactory;
55  
56  /**
57   * "Fast" (compared with IgnoreRule) git ignore rule implementation supporting
58   * also double star <code>**<code> pattern.
59   * <p>
60   * This class is immutable and thread safe.
61   *
62   * @since 3.6
63   */
64  public class FastIgnoreRule {
65  	private final static Logger LOG = LoggerFactory
66  			.getLogger(FastIgnoreRule.class);
67  
68  	/**
69  	 * Character used as default path separator for ignore entries
70  	 */
71  	public static final char PATH_SEPARATOR = '/';
72  
73  	private final IMatcher matcher;
74  
75  	private final boolean inverse;
76  
77  	private final boolean dirOnly;
78  
79  	/**
80  	 *
81  	 * @param pattern
82  	 *            ignore pattern as described in <a href=
83  	 *            "https://www.kernel.org/pub/software/scm/git/docs/gitignore.html"
84  	 *            >git manual</a>. If pattern is invalid or is not a pattern
85  	 *            (comment), this rule doesn't match anything.
86  	 */
87  	public FastIgnoreRule(String pattern) {
88  		if (pattern == null)
89  			throw new IllegalArgumentException("Pattern must not be null!"); //$NON-NLS-1$
90  		if (pattern.length() == 0) {
91  			dirOnly = false;
92  			inverse = false;
93  			this.matcher = NO_MATCH;
94  			return;
95  		}
96  		inverse = pattern.charAt(0) == '!';
97  		if (inverse) {
98  			pattern = pattern.substring(1);
99  			if (pattern.length() == 0) {
100 				dirOnly = false;
101 				this.matcher = NO_MATCH;
102 				return;
103 			}
104 		}
105 		if (pattern.charAt(0) == '#') {
106 			this.matcher = NO_MATCH;
107 			dirOnly = false;
108 			return;
109 		}
110 		if (pattern.charAt(0) == '\\' && pattern.length() > 1) {
111 			char next = pattern.charAt(1);
112 			if (next == '!' || next == '#') {
113 				// remove backslash escaping first special characters
114 				pattern = pattern.substring(1);
115 			}
116 		}
117 		dirOnly = isDirectoryPattern(pattern);
118 		if (dirOnly) {
119 			pattern = stripTrailingWhitespace(pattern);
120 			pattern = stripTrailing(pattern, PATH_SEPARATOR);
121 			if (pattern.length() == 0) {
122 				this.matcher = NO_MATCH;
123 				return;
124 			}
125 		}
126 		IMatcher m;
127 		try {
128 			m = PathMatcher.createPathMatcher(pattern,
129 					Character.valueOf(PATH_SEPARATOR), dirOnly);
130 		} catch (InvalidPatternException e) {
131 			m = NO_MATCH;
132 			LOG.error(e.getMessage(), e);
133 		}
134 		this.matcher = m;
135 	}
136 
137 	/**
138 	 * Returns true if a match was made. <br>
139 	 * This function does NOT return the actual ignore status of the target!
140 	 * Please consult {@link #getResult()} for the negation status. The actual
141 	 * ignore status may be true or false depending on whether this rule is an
142 	 * ignore rule or a negation rule.
143 	 *
144 	 * @param path
145 	 *            Name pattern of the file, relative to the base directory of
146 	 *            this rule
147 	 * @param directory
148 	 *            Whether the target file is a directory or not
149 	 * @return True if a match was made. This does not necessarily mean that the
150 	 *         target is ignored. Call {@link #getResult() getResult()} for the
151 	 *         result.
152 	 */
153 	public boolean isMatch(String path, boolean directory) {
154 		if (path == null)
155 			return false;
156 		if (path.length() == 0)
157 			return false;
158 		boolean match = matcher.matches(path, directory);
159 		return match;
160 	}
161 
162 	/**
163 	 * @return True if the pattern is just a file name and not a path
164 	 */
165 	public boolean getNameOnly() {
166 		return !(matcher instanceof PathMatcher);
167 	}
168 
169 	/**
170 	 *
171 	 * @return True if the pattern should match directories only
172 	 */
173 	public boolean dirOnly() {
174 		return dirOnly;
175 	}
176 
177 	/**
178 	 * Indicates whether the rule is non-negation or negation.
179 	 *
180 	 * @return True if the pattern had a "!" in front of it
181 	 */
182 	public boolean getNegation() {
183 		return inverse;
184 	}
185 
186 	/**
187 	 * Indicates whether the rule is non-negation or negation.
188 	 *
189 	 * @return True if the target is to be ignored, false otherwise.
190 	 */
191 	public boolean getResult() {
192 		return !inverse;
193 	}
194 
195 	/**
196 	 * @return true if the rule never matches (comment line or broken pattern)
197 	 * @since 4.1
198 	 */
199 	public boolean isEmpty() {
200 		return matcher == NO_MATCH;
201 	}
202 
203 	@Override
204 	public String toString() {
205 		StringBuilder sb = new StringBuilder();
206 		if (inverse)
207 			sb.append('!');
208 		sb.append(matcher);
209 		if (dirOnly)
210 			sb.append(PATH_SEPARATOR);
211 		return sb.toString();
212 
213 	}
214 
215 	@Override
216 	public int hashCode() {
217 		final int prime = 31;
218 		int result = 1;
219 		result = prime * result + (inverse ? 1231 : 1237);
220 		result = prime * result + (dirOnly ? 1231 : 1237);
221 		result = prime * result + ((matcher == null) ? 0 : matcher.hashCode());
222 		return result;
223 	}
224 
225 	@Override
226 	public boolean equals(Object obj) {
227 		if (this == obj)
228 			return true;
229 		if (!(obj instanceof FastIgnoreRule))
230 			return false;
231 
232 		FastIgnoreRule other = (FastIgnoreRule) obj;
233 		if (inverse != other.inverse)
234 			return false;
235 		if (dirOnly != other.dirOnly)
236 			return false;
237 		return matcher.equals(other.matcher);
238 	}
239 }