All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hyperic.sigar.SudoFileInputStream Maven / Gradle / Ivy

There is a newer version: 1.6.6-rev002
Show newest version
/*
 * Copyright (c) 2006 Hyperic, Inc.
 *
 * 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.
 */

package org.hyperic.sigar;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;

/**
 * InputStream wrapper for 'sudo cat filename'
 */
public class SudoFileInputStream extends InputStream {
    private Process process;
    private InputStream is;

    public SudoFileInputStream(String file)
        throws IOException, FileNotFoundException {
        this(new File(file));
    }

    public SudoFileInputStream(File file)
        throws IOException, FileNotFoundException {
        if (!file.exists()) {
            throw new FileNotFoundException();
        }
        String[] args = {
            "sudo", "cat", file.toString()
        };
        this.process = Runtime.getRuntime().exec(args);
        this.is = this.process.getInputStream();
    }

    public void close() throws IOException {
        this.process.destroy();
    }

    /* passthru all other InputStream methods */
    public int read() throws IOException {
        return this.is.read();
    }

    public int read(byte b[]) throws IOException {
        return this.is.read(b);
    }

    public int read(byte b[], int off, int len) throws IOException {
        return this.is.read(b, off, len);
    }

    public long skip(long n) throws IOException {
        return this.is.skip(n);
    }

    public int available() throws IOException {
        return this.is.available();
    }

    public synchronized void mark(int readlimit) {
        this.is.mark(readlimit);
    }

    public synchronized void reset() throws IOException {
        this.is.reset();
    }

    public boolean markSupported() {
        return this.is.markSupported();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy