Package org.apache.continuum.purge.controller

Source Code of org.apache.continuum.purge.controller.DistributedDirectoryPurgeController

package org.apache.continuum.purge.controller;

/*
* 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.continuum.distributed.transport.slave.SlaveBuildAgentTransportClient;
import org.apache.continuum.distributed.transport.slave.SlaveBuildAgentTransportService;
import org.apache.continuum.model.repository.AbstractPurgeConfiguration;
import org.apache.continuum.model.repository.DistributedDirectoryPurgeConfiguration;
import org.apache.continuum.purge.executor.ContinuumPurgeExecutorException;
import org.apache.maven.continuum.configuration.ConfigurationService;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.net.URL;

/**
* DirectoryPurgeController
*
* @author
* @plexus.component role="org.apache.continuum.purge.controller.PurgeController" role-hint="purge-distributed-directory"
*/
public class DistributedDirectoryPurgeController
    implements PurgeController
{
    private static final Logger log = LoggerFactory.getLogger( DistributedDirectoryPurgeController.class );

    /**
     * @plexus.requirement
     */
    private ConfigurationService configurationService;

    private SlaveBuildAgentTransportService transportClient;

    public void doPurge( String path )
    {
        log.warn( "doPurge( String ) is not supported for DistributedDirectoryPurgeController" );
    }

    public void doPurge( AbstractPurgeConfiguration purgeConfig )
    {
        DistributedDirectoryPurgeConfiguration dirPurge = (DistributedDirectoryPurgeConfiguration) purgeConfig;
        try
        {
            transportClient.ping();

            StringBuilder logMsg = new StringBuilder().append(
                "Executing directory purge with the following settings[directoryType=" ).
                append( dirPurge.getDirectoryType() ).append( ",daysOlder=" ).
                append( dirPurge.getDaysOlder() ).append( ", retentionCount=" ).
                append( dirPurge.getRetentionCount() ).append( ", deleteAll=" ).
                append( dirPurge.isDeleteAll() ).append( "]" );

            log.debug( logMsg.toString() );

            transportClient.executeDirectoryPurge( dirPurge.getDirectoryType(), dirPurge.getDaysOlder(),
                                                   dirPurge.getRetentionCount(), dirPurge.isDeleteAll() );
        }
        catch ( Exception e )
        {
            log.error( "Unable to execute purge: " + e.getMessage(), e );
        }
    }

    public void initializeExecutors( AbstractPurgeConfiguration purgeConfig )
        throws ContinuumPurgeExecutorException
    {
        DistributedDirectoryPurgeConfiguration dirPurge = (DistributedDirectoryPurgeConfiguration) purgeConfig;

        try
        {
            transportClient = new SlaveBuildAgentTransportClient( new URL( dirPurge.getBuildAgentUrl() ), "",
                                                                  configurationService.getSharedSecretPassword() );
        }
        catch ( Exception e )
        {
            throw new ContinuumPurgeExecutorException( e.getMessage(), e );
        }
    }
}
TOP

Related Classes of org.apache.continuum.purge.controller.DistributedDirectoryPurgeController

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.