
org.apache.jackrabbit.oak.segment.file.JournalReader Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.jackrabbit.oak.segment.file;
import java.io.Closeable;
import java.io.File;
import java.io.IOException;
import com.google.common.collect.AbstractIterator;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Iterator over the revisions in the journal in reverse order
* (end of the file to beginning).
*/
public final class JournalReader extends AbstractIterator implements Closeable {
private static final Logger LOG = LoggerFactory.getLogger(JournalReader.class);
private final ReversedLinesFileReader journal;
public JournalReader(File journalFile) throws IOException {
journal = new ReversedLinesFileReader(journalFile);
}
/**
* @throws IllegalStateException if an {@code IOException} occurs while reading from
* the journal file.
*/
@Override
protected String computeNext() {
try {
String line = journal.readLine();
while (line != null) {
int space = line.indexOf(' ');
if (space != -1) {
return line.substring(0, space);
}
line = journal.readLine();
}
} catch (IOException e) {
LOG.error("Error reading journal file", e);
}
return endOfData();
}
@Override
public void close() throws IOException {
journal.close();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy