com.gemstone.gemfire.internal.cache.CountingDataInputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gemfire-core Show documentation
Show all versions of gemfire-core Show documentation
SnappyData store based off Pivotal GemFireXD
/*
* Copyright (c) 2010-2015 Pivotal Software, Inc. All rights reserved.
*
* Licensed 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. See accompanying
* LICENSE file.
*/
package com.gemstone.gemfire.internal.cache;
import java.io.*;
/**
* A data input stream that counts the bytes it plans on reading.
*
* @author Darrel Schneider
*
* @since prPersistSprint2
*/
public class CountingDataInputStream implements DataInput {
private final long fileLength;
private long count;
private final DataInput dis;
public CountingDataInputStream(InputStream is, long fileLength) {
this.fileLength = fileLength;
this.dis = new DataInputStream(is);
}
public CountingDataInputStream(final DataInput in, final long fileLength) {
this.fileLength = fileLength;
this.dis = in;
}
public long getCount() {
return this.count;
}
public long getFileLength() {
return this.fileLength;
}
public void decrementCount() {
this.count--;
}
public boolean atEndOfFile() {
return this.fileLength == this.count;
}
public void readFully(byte b[]) throws IOException {
this.dis.readFully(b);
this.count += b.length;
}
public void readFully(byte b[], int off, int len) throws IOException {
this.dis.readFully(b, off, len);
this.count += len;
}
public int skipBytes(int n) throws IOException {
int result = this.dis.skipBytes(n);
this.count += result;
return result;
}
public boolean readBoolean() throws IOException {
boolean result = this.dis.readBoolean();
this.count += 1;
return result;
}
public byte readByte() throws IOException {
byte result = this.dis.readByte();
this.count += 1;
return result;
}
public int readUnsignedByte() throws IOException {
int result = this.dis.readUnsignedByte();
this.count += 1;
return result;
}
public short readShort() throws IOException {
short result = this.dis.readShort();
this.count += 2;
return result;
}
public int readUnsignedShort() throws IOException {
int result = this.dis.readUnsignedShort();
this.count += 2;
return result;
}
public char readChar() throws IOException {
char result = this.dis.readChar();
this.count += 2;
return result;
}
public int readInt() throws IOException {
int result = this.dis.readInt();
this.count += 4;
return result;
}
public long readLong() throws IOException {
long result = this.dis.readLong();
this.count += 8;
return result;
}
public float readFloat() throws IOException {
float result = this.dis.readFloat();
this.count += 4;
return result;
}
public double readDouble() throws IOException {
double result = this.dis.readDouble();
this.count += 8;
return result;
}
public String readLine() throws IOException {
throw new IllegalStateException("method not supported");
}
public String readUTF() throws IOException {
return DataInputStream.readUTF(this);
}
public void close() throws IOException {
if (this.dis instanceof DataInputStream) {
((DataInputStream)this.dis).close();
}
}
}