All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.codehaus.plexus.resource.loader.FileResourceLoader Maven / Gradle / Ivy

Go to download

A component to transparently retrieve resources from the filesystem, classpath or internet.

There is a newer version: 1.3.0
Show newest version
package org.codehaus.plexus.resource.loader;

/*
 * The MIT License
 *
 * Copyright (c) 2004, The Codehaus
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy of
 * this software and associated documentation files (the "Software"), to deal in
 * the Software without restriction, including without limitation the rights to
 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
 * of the Software, and to permit persons to whom the Software is furnished to do
 * so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

import java.io.File;
import java.io.IOException;
import java.util.Iterator;

import org.codehaus.plexus.resource.PlexusResource;
import org.codehaus.plexus.resource.loader.AbstractResourceLoader;
import org.codehaus.plexus.resource.loader.ResourceNotFoundException;
import org.codehaus.plexus.util.FileUtils;

/**
 * @author Trygve Laugstøl
 * @author Jason van Zyl
 * @version $Id$
 * @plexus.component role-hint="file" instantiation-strategy="per-lookup"
 */
public class FileResourceLoader
    extends AbstractResourceLoader
{
    public static final String ID = "file";

    // ----------------------------------------------------------------------
    // ResourceLoader Implementation
    // ----------------------------------------------------------------------

    public PlexusResource getResource( String name )
        throws ResourceNotFoundException
    {
        for ( Iterator it = paths.iterator(); it.hasNext(); )
        {
            String path = (String) it.next();

            final File file = new File( path, name );

            if ( file.canRead() )
            {
                return new FilePlexusResource( file );
            }
        }
        File file = new File( name );
        if ( file.isAbsolute() && file.canRead() )
        {
            return new FilePlexusResource( file );
        }
        throw new ResourceNotFoundException( name );
    }

    /**
     * @deprecated Use {@link org.codehaus.plexus.resource.ResourceManager#getResourceAsFile(PlexusResource )}.
     */
    public static File getResourceAsFile( String name, String outputPath, File outputDirectory )
        throws FileResourceCreationException

    {
        File f = new File( name );

        if ( f.exists() )
        {
            if ( outputPath == null )
            {
                return f;
            }
            else
            {
                try
                {
                    File outputFile;

                    if ( outputDirectory != null )
                    {
                        outputFile = new File( outputDirectory, outputPath );
                    }
                    else
                    {
                        outputFile = new File( outputPath );
                    }

                    if ( !outputFile.getParentFile().exists() )
                    {
                        outputFile.getParentFile().mkdirs();
                    }

                    FileUtils.copyFile( f, outputFile );

                    return outputFile;
                }
                catch ( IOException e )
                {
                    throw new FileResourceCreationException( "Cannot create file-based resource.", e );
                }
            }
        }

        return null;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy