/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* See LICENSE.txt included in this distribution for the specific
* language governing permissions and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at LICENSE.txt.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/**
* Class used to parse the history log from Monotone
*
* @author Trond Norbye
*/
this.repository = repository;
}
/**
* Parse the history for the specified file or directory. If a changeset is
* specified, only return the history from the changeset right after the
* specified one.
*
* @param file the file or directory to get history for
* @param changeset the changeset right before the first one to fetch, or
* {@code null} if all changesets should be fetched
* @return history for the specified file or directory
* @throws HistoryException if an error happens when parsing the history
*/
try {
if (status != 0) {
throw new HistoryException("Failed to get history for '"
}
} catch (IOException e) {
throw new HistoryException("Failed to get history for '"
}
}
"-----------------------------------------------------------------";
/**
* Process the output from the hg log command and insert the HistoryEntries
* into the history field.
*
* @param input The output from the process
* @throws java.io.IOException If an error occurs while reading the stream
*/
String s;
int state = 0;
s = s.trim();
// Later versions of monotone (such as 1.0) output even more dashes
// so lets require the minimum amount for maximum compatibility
// between monotone versions.
if (s.startsWith(LOG_SEPARATOR)) {
}
entry = new HistoryEntry();
state = 0;
continue;
}
continue;
}
switch (state) {
case 0:
if (s.startsWith("Revision:")) {
++state;
}
break;
case 1:
if (s.startsWith("Author:")) {
++state;
}
break;
case 2:
if (s.startsWith("Date:")) {
try {
} catch (ParseException pe) {
}
++state;
}
break;
case 3:
|| s.startsWith("Deleted "))
{
++state;
} else if (s.equalsIgnoreCase("ChangeLog:")) {
state = 5;
}
break;
case 4:
{
/* swallow */
} else if (s.equalsIgnoreCase("ChangeLog:")) {
state = 5;
} else {
try {
} catch (FileNotFoundException e) { // NOPMD
// If the file is not located under the source
// root, ignore it
}
}
}
break;
case 5:
entry.appendMessage(s);
break;
default:
break;
}
}
}
}
}