View Javadoc

1   package org.apache.maven.plugin.surefire.util;
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.util.ArrayList;
23  import java.util.Collections;
24  import java.util.List;
25  
26  import org.apache.commons.lang3.StringUtils;
27  
28  import javax.annotation.Nonnull;
29  
30  final class ScannerUtil {
31  
32  	private ScannerUtil() {}
33  
34      private static final String FS = System.getProperty( "file.separator" );
35  
36      private static final String JAVA_SOURCE_FILE_EXTENSION = ".java";
37  
38      private static final String JAVA_CLASS_FILE_EXTENSION = ".class";
39      
40      private static final boolean IS_NON_UNIX_FS = (!FS.equals( "/" ));
41  
42      public static @Nonnull String convertToJavaClassName( @Nonnull String test )
43      {
44          return StringUtils.removeEnd( test, ".class" ).replace( FS, "." );
45      }
46  
47      public static @Nonnull String convertJarFileResourceToJavaClassName( @Nonnull String test )
48      {
49          return StringUtils.removeEnd( test, ".class" ).replace( "/", "." );
50      }
51  
52      public static @Nonnull String convertSlashToSystemFileSeparator( @Nonnull String path )
53      {
54          return ( IS_NON_UNIX_FS ? path.replace( "/", FS ) : path );
55      }
56  
57      public static @Nonnull String stripBaseDir( String basedir, String test )
58      {
59          return StringUtils.removeStart( test, basedir );
60      }
61  
62      public static @Nonnull String[] processIncludesExcludes( @Nonnull List<String> list )
63      {
64          List<String> newList = new ArrayList<String>();
65          for ( Object aList : list )
66          {
67              String include = (String) aList;
68              String[] includes = include.split( "," );
69              Collections.addAll( newList, includes );
70          }
71  
72          String[] incs = new String[newList.size()];
73  
74          for ( int i = 0; i < incs.length; i++ )
75          {
76              String inc = newList.get( i );
77              if ( inc.endsWith( JAVA_SOURCE_FILE_EXTENSION ) )
78              {
79                  inc = StringUtils.removeEnd( inc, JAVA_SOURCE_FILE_EXTENSION ) + JAVA_CLASS_FILE_EXTENSION;
80              }
81              incs[i] = convertSlashToSystemFileSeparator( inc );
82  
83          }
84          return incs;
85      }
86  }