/*
* 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
*/
/*
*/
/* Portions Copyright 2008 Peter Bray */
/**
* A History Parser for Razor
*
* @author Peter Bray <Peter.Darren.Bray@gmail.com>
*/
class RazorHistoryParser {
+ "|EDIT_PROPS|ALTERED|CHECK-POINT|REVERT|INTRODUCE_AND_EDIT|BRANCH"
+ "|BUMP|MERGE-CHECK-IN|PROMOTE)"
+ "\\s+(\\S*)\\s+([\\.0-9]+)?\\s+(\\S*)\\s+(\\S*)\\s*$");
private static final boolean DUMP_HISTORY_ENTRY_ADDITIONS = false;
try {
} catch (IOException ioe) {
throw new HistoryException(ioe);
}
}
throws IOException {
if (!mappedFile.exists()) {
return null;
}
if (mappedFile.isDirectory()) {
return null;
}
try {
} finally {
}
}
boolean lastWasTitle = true;
}
continue;
if (infoMatcher.find()) {
lastWasTitle = true;
} else {
}
if (lastWasTitle) {
lastWasTitle = false;
}
} else {
}
} else {
if (actionMatcher.find()) {
entry = new HistoryEntry();
+ "= {0}, userName = {1}, revision = {2}, state = {3}, "
{
try {
} catch (ParseException pe) {
}
}
} else {
}
}
}
}
return history;
}
if (DUMP_HISTORY_ENTRY_ADDITIONS) {
}
}
}