Skip to content
Snippets Groups Projects
Commit 6054dddf authored by Karsten Loesing's avatar Karsten Loesing
Browse files

Skip lines that we don't care about.

The documents we're reading to memory can be huge, and in some cases
we only care about a small portion of it.  Rather than parsing all
lines, we can skip lines we don't care about and only parse the
remaining lines.
parent c0f4c764
No related branches found
No related tags found
No related merge requests found
......@@ -97,6 +97,12 @@ public class DocumentStore<T extends Document> {
/* Retrieve all previously stored documents from the given file. */
public Set<T> retrieve(File documentFile) {
return this.retrieve(documentFile, "");
}
/* Retrieve previously stored documents from the given file that start
* with the given prefix. */
public Set<T> retrieve(File documentFile, String prefix) {
/* Check if the document file exists, and if not, return an empty set.
* This is not an error case. */
......@@ -120,6 +126,14 @@ public class DocumentStore<T extends Document> {
+ "documents.%n", documentFile.getAbsolutePath());
lnr.close();
return null;
} else if (prefix.length() > formattedString0.length() &&
!(formattedString0 + line.substring(1)).startsWith(prefix)) {
/* Skip combined line not starting with prefix. */
continue;
} else if (prefix.length() > 0 &&
!formattedString0.startsWith(prefix)) {
/* Skip line not starting with prefix. */
continue;
} else {
T document = this.clazz.newInstance();
if (!document.parse(new String[] { formattedString0,
......
......@@ -153,7 +153,8 @@ public class Extrapolator {
File documentFile = new File(
this.computedNetworkFractionsDirectory, date);
Set<ComputedNetworkFractions> fractions
= this.computedNetworkFractionsStore.retrieve(documentFile);
= this.computedNetworkFractionsStore.retrieve(documentFile,
fingerprint);
for (ComputedNetworkFractions fraction : fractions) {
knownConsensuses.add(fraction.getValidAfterMillis());
if (fraction.getFingerprint().equals(fingerprint)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment