org.apache.jackrabbit.util.LazyFileInputStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.sling.feature.analyser Show documentation
Show all versions of org.apache.sling.feature.analyser Show documentation
A feature describes an OSGi system
/*
* 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.util;
import java.io.File;
import java.io.FileDescriptor;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
/**
* This Class implements an InputStream that provides the same functionality
* as a FileInputStream
but opens the file by the first file access.
*/
public class LazyFileInputStream extends InputStream {
/**
* the underlying input stream
*/
private FileInputStream in;
/**
* FileDescriptor to use
*/
private FileDescriptor fd;
/**
* File to use
*/
private File file;
/**
* Creates a new LazyFileInputStream
for the given file. If the
* file is unreadably, a FileNotFoundException is thrown.
*
* @param file
* @throws java.io.FileNotFoundException
*/
public LazyFileInputStream(File file)
throws FileNotFoundException {
// check if we can read from the file
if (!file.canRead()) {
throw new FileNotFoundException(file.getPath());
}
this.file = file;
}
/**
* Creates a new LazyFileInputStream
for the given file
* desciptor.
*
* @param fdObj
*/
public LazyFileInputStream(FileDescriptor fdObj) {
this.fd = fdObj;
}
/**
* Creates a new LazyFileInputStream
for the given file. If the
* file is unreadably, a FileNotFoundException is thrown.
*
* @param name
* @throws java.io.FileNotFoundException
*/
public LazyFileInputStream(String name) throws FileNotFoundException {
this(new File(name));
}
/**
* Opens the underlying file input stream in neccessairy.
* @throws java.io.IOException
*/
public void open() throws IOException {
if (in == null) {
if (file != null) {
in = new FileInputStream(file);
} else if (fd != null) {
in = new FileInputStream(fd);
} else {
throw new IOException("Stream already closed.");
}
}
}
/**
* {@inheritDoc}
*/
public int read() throws IOException {
open();
return in.read();
}
/**
* {@inheritDoc}
*/
public int available() throws IOException {
open();
return in.available();
}
/**
* {@inheritDoc}
*/
public void close() throws IOException {
if (in != null) {
in.close();
}
in = null;
file = null;
fd = null;
}
/**
* {@inheritDoc}
*/
public synchronized void reset() throws IOException {
open();
in.reset();
}
/**
* {@inheritDoc}
*/
public boolean markSupported() {
try {
open();
return in.markSupported();
} catch (IOException e) {
throw new IllegalStateException(e.toString());
}
}
/**
* {@inheritDoc}
*/
public synchronized void mark(int readlimit) {
try {
open();
in.mark(readlimit);
} catch (IOException e) {
throw new IllegalStateException(e.toString());
}
}
/**
* {@inheritDoc}
*/
public long skip(long n) throws IOException {
open();
return in.skip(n);
}
/**
* {@inheritDoc}
*/
public int read(byte[] b) throws IOException {
open();
return in.read(b);
}
/**
* {@inheritDoc}
*/
public int read(byte[] b, int off, int len) throws IOException {
open();
return in.read(b, off, len);
}
}