/*
* 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
*/
/**
* Parse a stream of ClearCase log comments.
*/
try {
if (status != 0) {
throw new HistoryException("Failed to get history for '" +
}
return history;
} catch (IOException e) {
throw new HistoryException("Failed to get history for '" +
}
}
/**
* Process the output from the 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;
if (!"create version".equals(s) &&
!"create directory version".equals(s)) {
// skip this history entry
if (".".equals(s)) {
break;
}
}
continue;
}
entry = new HistoryEntry();
try {
} catch (ParseException pe) {
}
}
}
entry.setRevision(s);
}
if ("".equals(s)) {
// avoid empty lines in comments
continue;
}
glue = "\n";
}
}
}
/**
* Parse the given string.
*
* @param buffer The string to be parsed
* @return The parsed history
* @throws IOException if we fail to parse the buffer
*/
return history;
}
}