blob: d08be90bf307b557eff7e3e874030542ffa0b97c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2003 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.internal.ccvs.core.client;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.team.internal.ccvs.core.CVSException;
import org.eclipse.team.internal.ccvs.core.CVSStatus;
import org.eclipse.team.internal.ccvs.core.ICVSFolder;
import org.eclipse.team.internal.ccvs.core.ICVSResource;
import org.eclipse.team.internal.ccvs.core.Policy;
import org.eclipse.team.internal.ccvs.core.syncinfo.FolderSyncInfo;
import org.eclipse.team.internal.ccvs.core.util.Assert;
public class Add extends Command {
/*** Local options: specific to add ***/
protected Add() { }
protected String getRequestId() {
return "add"; //$NON-NLS-1$
}
protected ICVSResource[] sendLocalResourceState(Session session, GlobalOption[] globalOptions,
LocalOption[] localOptions, ICVSResource[] resources, IProgressMonitor monitor)
throws CVSException {
// Check that all the arguments can give you an
// repo that you will need while traversing the
// file-structure
for (int i = 0; i < resources.length; i++) {
Assert.isNotNull(resources[i].getRemoteLocation(session.getLocalRoot()));
}
// Get a vistor and use it on every resource we should
// work on
AddStructureVisitor visitor = new AddStructureVisitor(session);
visitor.visit(session, resources, monitor);
return resources;
}
/**
* If the add succeeded then folders have to be initialized with the
* sync info
*/
protected IStatus commandFinished(Session session, GlobalOption[] globalOptions,
LocalOption[] localOptions, ICVSResource[] resources, IProgressMonitor monitor,
IStatus status) throws CVSException {
if (status.getCode() == CVSStatus.SERVER_ERROR) {
return status;
}
for (int i = 0; i < resources.length; i++) {
if (resources[i].isFolder()) {
ICVSFolder mFolder = (ICVSFolder) resources[i];
FolderSyncInfo info = mFolder.getParent().getFolderSyncInfo();
if (info == null) {
status = mergeStatus(status, new CVSStatus(CVSStatus.ERROR, Policy.bind("Add.invalidParent", mFolder.getRelativePath(session.getLocalRoot())))); //$NON-NLS-1$
} else {
String repository = info.getRepository() + "/" + mFolder.getName(); //$NON-NLS-1$
mFolder.setFolderSyncInfo(new FolderSyncInfo(repository, info.getRoot(), info.getTag(), info.getIsStatic()));
}
}
}
return status;
}
}