Package org.apache.maven.archiva.indexer.search

Source Code of org.apache.maven.archiva.indexer.search.FileContentIndexPopulator

package org.apache.maven.archiva.indexer.search;

/*
* 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.commons.io.FileUtils;
import org.apache.maven.archiva.indexer.filecontent.FileContentRecord;
import org.apache.maven.archiva.model.ArchivaArtifact;

import java.io.File;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;

import junit.framework.AssertionFailedError;

/**
* FileContentIndexPopulator
*
* @author <a href="mailto:joakime@apache.org">Joakim Erdfelt</a>
* @version $Id: FileContentIndexPopulator.java 592513 2007-11-06 18:26:04Z joakime $
*/
public class FileContentIndexPopulator
    implements IndexPopulator
{
    public Map<String, ArchivaArtifact> getObjectMap()
    {
        return null;
    }

    public Map<String, FileContentRecord> populate( File basedir )
    {
        Map<String, FileContentRecord> map = new HashMap<String, FileContentRecord>();

        File repoDir = new File( basedir, "src/test/managed-repository" );

        String prefix = "org/apache/maven/archiva/record/";

        map.put( "parent-pom-1", createFileContentRecord( repoDir, prefix + "parent-pom/1/parent-pom-1.pom" ) );
        map.put( "child-pom-1.0-SNAPSHOT", createFileContentRecord( repoDir, prefix
            + "test-child-pom/1.0-SNAPSHOT/test-child-pom-1.0-20060728.121314-1.pom" ) );
        map.put( "test-archetype-1.0", createFileContentRecord( repoDir, prefix
            + "test-archetype/1.0/test-archetype-1.0.pom" ) );
        map.put( "test-jar-and-pom-1.0-alpha-1", createFileContentRecord( repoDir, prefix
            + "test-jar-and-pom/1.0-alpha-1/test-jar-and-pom-1.0-alpha-1.pom" ) );
        map.put( "test-plugin-1.0", createFileContentRecord( repoDir, prefix + "test-plugin/1.0/test-plugin-1.0.pom" ) );
        map.put( "test-pom-1.0", createFileContentRecord( repoDir, prefix + "test-pom/1.0/test-pom-1.0.pom" ) );
        map.put( "test-skin-1.0", createFileContentRecord( repoDir, prefix + "test-skin/1.0/test-skin-1.0.pom" ) );

        return map;
    }

    private FileContentRecord createFileContentRecord( File repoDir, String path )
    {
        File pathToFile = new File( repoDir, path );

        if ( !pathToFile.exists() )
        {
            throw new AssertionFailedError( "Can't find test file: " + pathToFile.getAbsolutePath() );
        }

        FileContentRecord record = new FileContentRecord();
        record.setRepositoryId( "test-repo" );
        record.setFilename( path );

        try
        {
            record.setContents( FileUtils.readFileToString( pathToFile, null ) );
        }
        catch ( IOException e )
        {
            e.printStackTrace();
            throw new AssertionFailedError( "Can't load test file contents: " + pathToFile.getAbsolutePath() );
        }

        return record;
    }
}
TOP

Related Classes of org.apache.maven.archiva.indexer.search.FileContentIndexPopulator

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.