blob: 49e71f9f087c20b2d3d877bd449d59ddb7d23324 [file] [log] [blame]
/**
* 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.hadoop.hdfs.server.namenode;
import java.io.BufferedInputStream;
import java.io.DataInputStream;
import java.io.IOException;
import java.io.InputStream;
/**
* A generic abstract class to support reading edits log data from
* persistent storage.
*
* It should stream bytes from the storage exactly as they were written
* into the #{@link EditLogOutputStream}.
*/
abstract class EditLogInputStream extends InputStream
implements JournalStream {
/** {@inheritDoc} */
public abstract int available() throws IOException;
/** {@inheritDoc} */
public abstract int read() throws IOException;
/** {@inheritDoc} */
public abstract int read(byte[] b, int off, int len) throws IOException;
/** {@inheritDoc} */
public abstract void close() throws IOException;
/**
* Return the size of the current edits log.
*/
abstract long length() throws IOException;
/**
* Return DataInputStream based on this edit stream.
*/
DataInputStream getDataInputStream() {
return new DataInputStream(new BufferedInputStream(this));
}
}