blob: 6869f248a3f073f9cd9910350302a6da861a27bd [file] [log] [blame]
package org.apache.maven.scm.provider.synergy.command.unedit;
/*
* 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.scm.ScmException;
import org.apache.maven.scm.ScmFile;
import org.apache.maven.scm.ScmFileSet;
import org.apache.maven.scm.ScmResult;
import org.apache.maven.scm.command.unedit.AbstractUnEditCommand;
import org.apache.maven.scm.command.unedit.UnEditScmResult;
import org.apache.maven.scm.provider.ScmProviderRepository;
import org.apache.maven.scm.provider.synergy.command.SynergyCommand;
import org.apache.maven.scm.provider.synergy.repository.SynergyScmProviderRepository;
import org.apache.maven.scm.provider.synergy.util.SynergyUtil;
import org.codehaus.plexus.util.FileUtils;
import java.io.File;
import java.io.IOException;
import java.util.Iterator;
/**
* @author <a href="mailto:julien.henry@capgemini.com">Julien Henry</a>
*/
public class SynergyUnEditCommand
extends AbstractUnEditCommand
implements SynergyCommand
{
protected ScmResult executeUnEditCommand( ScmProviderRepository repository, ScmFileSet fileSet )
throws ScmException
{
getLogger().debug( "executing unedit command..." );
SynergyScmProviderRepository repo = (SynergyScmProviderRepository) repository;
getLogger().debug( "basedir: " + fileSet.getBasedir() );
String CCM_ADDR = SynergyUtil.start( getLogger(), repo.getUser(), repo.getPassword(), null );
try
{
String project_spec =
SynergyUtil.getWorkingProject( getLogger(), repo.getProjectSpec(), repo.getUser(), CCM_ADDR );
if ( project_spec == null )
{
throw new ScmException( "You should checkout project first" );
}
File WAPath = SynergyUtil.getWorkArea( getLogger(), project_spec, CCM_ADDR );
File destPath = new File( WAPath, repo.getProjectName() );
for ( Iterator i = fileSet.getFileList().iterator(); i.hasNext(); )
{
ScmFile f = (ScmFile) i.next();
File source = new File( fileSet.getBasedir(), f.getPath() );
File dest = new File( destPath, f.getPath() );
SynergyUtil.delete( getLogger(), dest, CCM_ADDR, true );
if ( !source.equals( dest ) )
{
getLogger().debug( "Copy file [" + dest + "] to [" + source + "]." );
try
{
FileUtils.copyFile( dest, source );
}
catch ( IOException e )
{
throw new ScmException( "Unable to restore file in output folder", e );
}
}
}
}
finally
{
SynergyUtil.stop( getLogger(), CCM_ADDR );
}
return new UnEditScmResult( "", fileSet.getFileList() );
}
}