Package org.apache.maven.repository

Source Code of org.apache.maven.repository.ChecksumValidator

package org.apache.maven.repository;

/*
* Copyright 2001-2004 The Apache Software Foundation.
*
* Licensed 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 java.io.File;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;

import org.apache.maven.artifact.Artifact;
import org.apache.maven.artifact.manager.DefaultWagonManager;
import org.apache.maven.artifact.manager.WagonManager;
import org.apache.maven.artifact.repository.ArtifactRepository;
import org.apache.maven.wagon.TransferFailedException;
import org.apache.maven.wagon.UnsupportedProtocolException;
import org.apache.maven.wagon.Wagon;
import org.apache.maven.wagon.observers.ChecksumObserver;

/**
* Prints all artifacts without checksum file
*
* @todo generate checksums for those files without it
* @author <a href="mailto:carlos@apache.org">Carlos Sanchez </a>
* @version $Id: ChecksumValidator.java 163597 2005-03-17 14:47:15Z carlos $
*/

public class ChecksumValidator
{

    private ChecksumObserver checksumObserver;

    private ArtifactRepository tempRepository;

    public ChecksumValidator()
    {

        checksumObserver = new ChecksumObserver();

        tempRepository = new ArtifactRepository();

        File f = new File( "target/test-classes/temp/" );

        tempRepository.setUrl( "file://" + f.getPath() );

    }

    public boolean isValidChecksum( Artifact artifact, ArtifactRepository localRepository )
        throws TransferFailedException, UnsupportedProtocolException
    {
        WagonManager wagonManager = new DefaultWagonManager();

        Set set = new HashSet();

        set.add( localRepository );

        Wagon wagon = wagonManager.getWagon( "file://" );

        wagon.addTransferListener( checksumObserver );

        wagonManager.get( artifact, set, tempRepository );

        // File file = artifact.getFile();
        //
        // TransferEvent transferEvent = new TransferEvent( wagon, new
        // Resource(), TransferEvent.TRANSFER_COMPLETED,
        // TransferEvent.REQUEST_GET );
        //
        // checksumObserver.transferStarted( transferEvent );
        // checksumObserver.transferProgress(transferEvent, file);

        return true;
    }

    public static void main( String[] args )
    {
        if ( args.length != 1 )
        {
            System.out.println( "Usage: " + ChecksumValidator.class.getName() + " path.to.local.repository" );

            return;
        }

        ArtifactRepository localRepository = new ArtifactRepository();

        String path = args[0];

        File f = new File( path );

        localRepository.setUrl( "file://" + f.getPath() );

        List artifacts = RepositoryTools.getAllArtifacts( localRepository );

        Iterator it = artifacts.iterator();

        while ( it.hasNext() )
        {
            Artifact artifact = (Artifact) it.next();

            if ( !artifact.getChecksumFile().exists() )
            {
                System.out.println( artifact );
            }
        }
    }

}
TOP

Related Classes of org.apache.maven.repository.ChecksumValidator

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.