Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0660b6dc2056b1fd15cd09fe2a2a57c2f2fc1211 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*******************************************************************************
 * Copyright (c) 2000, 2011 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.listeners;


import java.io.PrintStream;
import java.util.regex.Pattern;

import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.osgi.util.NLS;
import org.eclipse.team.internal.ccvs.core.*;
import org.eclipse.team.internal.ccvs.core.client.CommandOutputListener;
import org.eclipse.team.internal.ccvs.core.client.Session;

public class DiffListener extends CommandOutputListener {

	//Error Messages returned by CVS
	static final String ERR_NOSUCHDIRECTORY = "cvs [diff aborted]: no such directory"; //$NON-NLS-1$

	// Expressions for examining response lines 
	static final String INDEX = "Index: "; //$NON-NLS-1$
	static final String BINARYFILESDIFFER = "Binary files .* and .* differ"; //$NON-NLS-1$
	
	PrintStream patchStream;
	boolean wroteToStream;
	
	private String index = ""; //$NON-NLS-1$

	public DiffListener(PrintStream patchStream) {
		this.patchStream = patchStream;
		wroteToStream=false;
	}
	
	public IStatus messageLine(
			String line, 
			ICVSRepositoryLocation location, 
			ICVSFolder commandRoot,
			IProgressMonitor monitor) {
		
		// Special handling to avoid getting duplicate CRs when generating a patch on windows.  
		// If the remote file has CR/LF in it, then the line will have a CR at the end.
		// We need to remove it so we don't end up with two CRs (since the printStream will also add one).
		// On *nix, we want to include the CR since it will not be added by the printStream (see bug 92162).
		if (Session.IS_CRLF_PLATFORM && line.length() > 0 && line.charAt(line.length() - 1) == '\r') {
			line = line.substring(0, line.length() - 1);
		}
		patchStream.println(line);
		wroteToStream = true;

		if (line.startsWith(INDEX)) {
			index = line.substring(INDEX.length());
		} else if (Pattern.matches(BINARYFILESDIFFER, line)) {
			String message = NLS.bind(
					CVSMessages.ThePatchDoesNotContainChangesFor_0,
					new String[] { index });
			return new CVSStatus(IStatus.WARNING,
					CVSStatus.BINARY_FILES_DIFFER, message, (Throwable) null);
		}

		return OK;
	}

	public IStatus errorLine(
			String line, 
			ICVSRepositoryLocation location, 
			ICVSFolder commandRoot,
			IProgressMonitor monitor) {
		// return all the server errors as CVSStatus.ERROR_LINE or
		// CVSStatus.PROTOCOL_ERROR
		if (getServerMessage(line, location) != null) {
			return super.errorLine(line, location, commandRoot, monitor);
		}
		
		//Check to see if this is a no such directory message
		if (line.indexOf(ERR_NOSUCHDIRECTORY) != -1){
			return OK;
		}
		return super.errorLine(line, location, commandRoot, monitor);
	}

	public boolean wroteToStream() {
		return wroteToStream;
	}
}

Back to the top