Package com.xebialabs.overthere

Examples of com.xebialabs.overthere.RuntimeIOException


     * @param fileDescription to prepend to error message.
     * @throws RuntimeIOException if file is a directory.
     */
    private static void checkReallyIsAFile(OverthereFile file, String fileDescription) {
        if (file.exists() && file.isDirectory()) {
            throw new RuntimeIOException(fileDescription + " file " + file + " exists but is a directory");
        }
    }
View Full Code Here


     * @param dirDescription to prepend to error message.
     * @throws RuntimeIOException if directory does not exist or if it a flat file.
     */
    private static void checkDirectoryExists(OverthereFile dir, String dirDescription) {
        if (!dir.exists()) {
            throw new RuntimeIOException(dirDescription + " directory " + dir + " does not exist");
        }
        checkReallyIsADirectory(dir, dirDescription);
    }
View Full Code Here

                public InputStream getInput() throws IOException {
                    return f.getInputStream();
                }
            });
        } catch (IOException exc) {
            throw new RuntimeIOException(format("Cannot read file [%s]", f), exc);
        }

    }
View Full Code Here

                public OutputStream getOutput() throws IOException {
                    return f.getOutputStream();
                }
            });
        } catch (IOException exc) {
            throw new RuntimeIOException(format("Cannot write data to file [%s]", f), exc);
        }
    }
View Full Code Here

    }

    @Override
    public void delete() {
        if (!file.delete()) {
            throw new RuntimeIOException("Cannot delete " + this);
        }
    }
View Full Code Here

    }

    @Override
    public void mkdir() {
        if (!file.mkdir()) {
            throw new RuntimeIOException("Cannot mkdir " + this);
        }
    }
View Full Code Here

    }

    @Override
    public void mkdirs() {
        if (!file.mkdirs()) {
            throw new RuntimeIOException("Cannot mkdir " + this);
        }
    }
View Full Code Here

    }

    @Override
    public void renameTo(OverthereFile dest) {
        if (!(dest instanceof LocalFile)) {
            throw new RuntimeIOException("Destination is not a " + LocalFile.class.getName());
        }

        if (!file.renameTo(((LocalFile) dest).file)) {
            throw new RuntimeIOException("Cannot rename " + this + " to " + dest);
        }
    }
View Full Code Here

    @Override
    public InputStream getInputStream() {
        try {
            return asBuffered(new FileInputStream(file));
        } catch (FileNotFoundException exc) {
            throw new RuntimeIOException("Cannot open " + this + " for reading", exc);
        }
    }
View Full Code Here

    @Override
    public OutputStream getOutputStream() {
        try {
            return asBuffered(new FileOutputStream(file));
        } catch (FileNotFoundException exc) {
            throw new RuntimeIOException("Cannot open " + this + " for writing", exc);
        }
    }
View Full Code Here

TOP

Related Classes of com.xebialabs.overthere.RuntimeIOException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.