blob: a551bdc601c9d2d12cf73570c4c526ae1e009958 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.internal.ccvs.core.client;
import org.eclipse.core.runtime.Assert;
import org.eclipse.team.internal.ccvs.core.*;
import org.eclipse.team.internal.ccvs.core.client.Command.LocalOption;
/**
* This visitor is used by the Add command to ensure that the parent
* folder is sent along with the added resource.
*/
class AddStructureVisitor extends AbstractStructureVisitor {
public AddStructureVisitor(Session session, LocalOption[] localOptions) {
super(session, localOptions, false, true);
}
@Override
public void visitFile(ICVSFile mFile) throws CVSException {
// Send the parent folder
sendFolder(mFile.getParent());
// Sends the Is-modified request if it is supported, otherwise
// the file contents are sent as binary. The server does not
// need the contents at this stage so this should not be a problem.
session.sendIsModified(mFile, true, monitor);
}
@Override
public void visitFolder(ICVSFolder mFolder) throws CVSException {
Assert.isNotNull(mFolder);
// Send the parent folder
sendFolder(mFolder.getParent());
// Send the directory
String localPath = mFolder.getRelativePath(session.getLocalRoot());
String remotePath = mFolder.getRemoteLocation(session.getLocalRoot());
session.sendDirectory(localPath, remotePath);
// Record that we sent this folder
recordLastSent(mFolder);
}
}