blob: 3dcf82cb3bed317c570790f08854d4ebab1fd412 [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.team.internal.ccvs.core.CVSException;
import org.eclipse.team.internal.ccvs.core.ICVSFile;
import org.eclipse.team.internal.ccvs.core.Policy;
import org.eclipse.team.internal.ccvs.core.syncinfo.ResourceSyncInfo;
/**
* The diff command needs to send a file structure to the server that differs somewhat from the canonical
* format sent by other commands. Instead of sending new files as questionables this class sends
* new files as modified and fakes them being added. The contents are sent to the server and are
* included in the returned diff report.
*/
class DiffStructureVisitor extends FileStructureVisitor {
public DiffStructureVisitor(Session session) {
super(session, false, true);
}
/**
* Send unmanaged files as modified with a default entry line.
*/
protected void sendFile(ICVSFile mFile) throws CVSException {
byte[] info = mFile.getSyncBytes();
if (info==null) {
return;
}
// Send the parent folder if it hasn't been sent already
sendFolder(mFile.getParent());
Policy.checkCanceled(monitor);
session.sendEntry(info, null);
if (!mFile.exists()) {
return;
}
if (mFile.isModified(null)) {
session.sendModified(mFile, ResourceSyncInfo.isBinary(info), monitor);
} else {
session.sendUnchanged(mFile);
}
}
}