package org.apache.maven.surefire.booter; /* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ import org.apache.maven.surefire.util.internal.SystemUtils; import java.io.File; import java.net.MalformedURLException; import java.net.URL; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.Iterator; import java.util.LinkedHashSet; import java.util.List; import static java.io.File.pathSeparatorChar; import static org.apache.maven.surefire.util.internal.UrlUtils.toURL; /** * An ordered list of classpath elements with set behaviour * * A Classpath is immutable and thread safe. * * Immutable and thread safe * * @author Kristian Rosenvold */ public class Classpath implements Iterable<String> { private final List<String> unmodifiableElements; public static Classpath join( Classpath firstClasspath, Classpath secondClasspath ) { LinkedHashSet<String> accumulated = new LinkedHashSet<String>( ); if ( firstClasspath != null ) { firstClasspath.addTo( accumulated ); } if ( secondClasspath != null ) { secondClasspath.addTo( accumulated ); } return new Classpath( accumulated ); } private void addTo( Collection<String> c ) { c.addAll( unmodifiableElements ); } private Classpath() { this.unmodifiableElements = Collections.emptyList(); } public Classpath( Classpath other, String additionalElement ) { ArrayList<String> elems = new ArrayList<String>( other.unmodifiableElements ); elems.add( additionalElement ); unmodifiableElements = Collections.unmodifiableList( elems ); } public Classpath( Collection<String> elements ) { List<String> newCp = new ArrayList<String>( elements.size() ); for ( String element : elements ) { element = element.trim(); if ( element.length() != 0 ) { newCp.add( element ); } } unmodifiableElements = Collections.unmodifiableList( newCp ); } public static Classpath emptyClasspath() { return new Classpath(); } public Classpath addClassPathElementUrl( String path ) { if ( path == null ) { throw new IllegalArgumentException( "Null is not a valid class path element url." ); } return !unmodifiableElements.contains( path ) ? new Classpath( this, path ) : this; } public List<String> getClassPath() { return unmodifiableElements; } /** * @deprecated this should be package private method which returns List of Files. It will be * removed in the next major version. * * @return list of {@link URL jar files paths} with {@code file} protocol in URL. * @throws MalformedURLException if {@link URL} could not be created upon given class-path element(s) */ @Deprecated public List<URL> getAsUrlList() throws MalformedURLException { List<URL> urls = new ArrayList<URL>(); for ( String url : unmodifiableElements ) { File f = new File( url ); urls.add( toURL( f ) ); } return urls; } public void writeToSystemProperty( String propertyName ) { StringBuilder sb = new StringBuilder(); for ( String element : unmodifiableElements ) { sb.append( element ) .append( pathSeparatorChar ); } System.setProperty( propertyName, sb.toString() ); } @Override public boolean equals( Object o ) { if ( this == o ) { return true; } if ( o == null || getClass() != o.getClass() ) { return false; } Classpath classpath = (Classpath) o; return unmodifiableElements.equals( classpath.unmodifiableElements ); } public ClassLoader createClassLoader( boolean childDelegation, boolean enableAssertions, String roleName ) throws SurefireExecutionException { try { ClassLoader parent = SystemUtils.platformClassLoader(); IsolatedClassLoader classLoader = new IsolatedClassLoader( parent, childDelegation, roleName ); for ( String classPathElement : unmodifiableElements ) { classLoader.addURL( new File( classPathElement ).toURL() ); } if ( parent != null ) { parent.setDefaultAssertionStatus( enableAssertions ); } classLoader.setDefaultAssertionStatus( enableAssertions ); return classLoader; } catch ( MalformedURLException e ) { throw new SurefireExecutionException( "When creating classloader", e ); } } @Override public int hashCode() { return unmodifiableElements.hashCode(); } public String getLogMessage( String descriptor ) { StringBuilder result = new StringBuilder(); result.append( descriptor ).append( " classpath:" ); for ( String element : unmodifiableElements ) { result.append( " " ).append( element ); } return result.toString(); } public String getCompactLogMessage( String descriptor ) { StringBuilder result = new StringBuilder(); result.append( descriptor ).append( " classpath:" ); for ( String element : unmodifiableElements ) { result.append( " " ); if ( element != null ) { int pos = element.lastIndexOf( File.separatorChar ); if ( pos >= 0 ) { result.append( element.substring( pos + 1 ) ); } else { result.append( element ); } } else { result.append( (String) null ); } } return result.toString(); } @Override public Iterator<String> iterator() { return unmodifiableElements.iterator(); } }