View Javadoc

1   package org.apache.maven.shared.utils.io;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *  http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import java.io.File;
23  import java.util.ArrayList;
24  import java.util.List;
25  import java.util.StringTokenizer;
26  import java.util.regex.Pattern;
27  
28  import javax.annotation.Nonnull;
29  
30  /**
31   * Describes a match target for SelectorUtils.
32   * <p/>
33   * Significantly more efficient than using strings, since re-evaluation and re-tokenizing is avoided.
34   *
35   * @author Kristian Rosenvold
36   */
37  public class MatchPattern
38  {
39      private final String source;
40  
41      private final String regexPattern;
42  
43      private final Pattern regexPatternRegex;
44  
45      private final String separator;
46  
47      private final String[] tokenized;
48  
49      private MatchPattern( @Nonnull String source, @Nonnull String separator )
50      {
51          regexPattern = SelectorUtils.isRegexPrefixedPattern( source ) ? source.substring(
52              SelectorUtils.REGEX_HANDLER_PREFIX.length(),
53              source.length() - SelectorUtils.PATTERN_HANDLER_SUFFIX.length() ) : null;
54          regexPatternRegex = regexPattern != null ? Pattern.compile(  regexPattern ) : null;
55          this.source =
56              SelectorUtils.isAntPrefixedPattern( source ) ? source.substring( SelectorUtils.ANT_HANDLER_PREFIX.length(),
57                                                                               source.length()
58                                                                                   - SelectorUtils.PATTERN_HANDLER_SUFFIX.length() )
59                  : source;
60          this.separator = separator;
61          tokenized = tokenizePathToString( this.source, separator );
62      }
63  
64  
65      public boolean matchPath( String str, boolean isCaseSensitive )
66      {
67          if ( regexPattern != null )
68          {
69              return regexPatternRegex.matcher( str ).matches();
70          }
71          else
72          {
73              return SelectorUtils.matchAntPathPattern( this, str, separator, isCaseSensitive );
74          }
75      }
76  
77      boolean matchPath( String str, String[] strDirs, boolean isCaseSensitive )
78      {
79          if ( regexPattern != null )
80          {
81              return regexPatternRegex.matcher( str ).matches();
82          }
83          else
84          {
85              return SelectorUtils.matchAntPathPattern( getTokenizedPathString(), strDirs, isCaseSensitive );
86          }
87      }
88  
89      public boolean matchPatternStart( @Nonnull String str, boolean isCaseSensitive )
90      {
91          if ( regexPattern != null )
92          {
93              // FIXME: ICK! But we can't do partial matches for regex, so we have to reserve judgement until we have
94              // a file to deal with, or we can definitely say this is an exclusion...
95              return true;
96          }
97          else
98          {
99              String altStr = source.replace( '\\', '/' );
100 
101             return SelectorUtils.matchAntPathPatternStart( this, str, File.separator, isCaseSensitive )
102                 || SelectorUtils.matchAntPathPatternStart( this, altStr, "/", isCaseSensitive );
103         }
104     }
105 
106     public String[] getTokenizedPathString()
107     {
108         return tokenized;
109     }
110 
111 
112     public boolean startsWith( String string )
113     {
114         return source.startsWith( string );
115     }
116 
117 
118     static String[] tokenizePathToString( @Nonnull String path, @Nonnull String separator )
119     {
120         List<String> ret = new ArrayList<String>();
121         StringTokenizer st = new StringTokenizer( path, separator );
122         while ( st.hasMoreTokens() )
123         {
124             ret.add( st.nextToken() );
125         }
126         return ret.toArray( new String[ret.size()] );
127     }
128 
129     public static MatchPattern fromString( String source )
130     {
131         return new MatchPattern( source, File.separator );
132     }
133 
134 }