blob: af2937a4096d7578658729faeb1c5fadc76d5db6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2006 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.team.internal.ccvs.core.client.listeners;
import java.util.Date;
import org.eclipse.core.runtime.PlatformObject;
import org.eclipse.team.internal.ccvs.core.*;
import org.eclipse.team.internal.ccvs.core.resources.RemoteFile;
public class LogEntry extends PlatformObject implements ILogEntry {
private RemoteFile file;
private String author;
private Date date;
private String comment;
private String state;
private CVSTag[] tags;
private String[] revisions;
/*
* Flatten the text in the multi-line comment
*/
public static String flattenText(String string) {
StringBuffer buffer = new StringBuffer(string.length() + 20);
boolean skipAdjacentLineSeparator = true;
for (int i = 0; i < string.length(); i++) {
char c = string.charAt(i);
if (c == '\r' || c == '\n') {
if (!skipAdjacentLineSeparator)
buffer.append(CVSMessages.LogEntry_0);
skipAdjacentLineSeparator = true;
} else {
buffer.append(c);
skipAdjacentLineSeparator = false;
}
}
return buffer.toString();
}
public LogEntry(RemoteFile file, String revision, String author, Date date, String comment, String state, CVSTag[] tags) {
this.file = file.toRevision(revision);
this.author = author;
this.date = date;
this.comment = comment;
this.state = state;
this.tags = tags;
}
public LogEntry(RemoteFile file, String revision, String author, Date date, String comment, String state, CVSTag[] tags, String[] revisions) {
this(file,revision,author,date,comment,state,tags);
this.revisions=revisions;
}
/**
* @see ILogEntry#getRevision()
*/
public String getRevision() {
return file.getRevision();
}
/**
* @see ILogEntry#getAuthor()
*/
public String getAuthor() {
return author;
}
/**
* @see ILogEntry#getDate()
*/
public Date getDate() {
return date;
}
/**
* @see ILogEntry#getComment()
*/
public String getComment() {
return comment;
}
/**
* @see ILogEntry#getState()
*/
public String getState() {
return state;
}
/**
* @see ILogEntry#getTags()
*/
public CVSTag[] getTags() {
CVSTag[] result = new CVSTag[tags.length];
System.arraycopy(tags, 0, result, 0, tags.length);
return result;
}
/**
* @see ILogEntry#getRemoteFile()
*/
public ICVSRemoteFile getRemoteFile() {
return file;
}
/**
* @see ILogEntry#isDeletion()
*/
public boolean isDeletion() {
return getState().equals("dead"); //$NON-NLS-1$
}
/**
* In the case where files on a branch haven't been modified since their initial branch point,
* they keep the revision number of their predecessor. In this case no revision info will be displayed
* while doing a log, so all branch revision numbers are recorded. This allows the user to pick which revision
* they are interested in.
* @return an array of branch revision strings or an empty array if no branch revisions were recorded
*/
public String[] getBranchRevisions(){
if (revisions != null)
return revisions;
return new String[0];
}
}