/* * Copyright (c) 2011-2013 The original author or authors * ------------------------------------------------------ * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Apache License v2.0 which accompanies this distribution. * * The Eclipse Public License is available at * http://www.eclipse.org/legal/epl-v10.html * * The Apache License v2.0 is available at * http://www.opensource.org/licenses/apache2.0.php * * You may elect to redistribute this code under either of these licenses. */ package io.vertx.core.file; import io.vertx.codegen.annotations.Fluent; import io.vertx.codegen.annotations.Nullable; import io.vertx.core.AsyncResult; import io.vertx.core.Handler; import io.vertx.core.buffer.Buffer; import io.vertx.codegen.annotations.VertxGen; import java.util.List; /** * Contains a broad set of operations for manipulating files on the file system. * <p> * A (potential) blocking and non blocking version of each operation is provided. * <p> * The non blocking versions take a handler which is called when the operation completes or an error occurs. * <p> * The blocking versions are named {@code xxxBlocking} and return the results, or throw exceptions directly. * In many cases, depending on the operating system and file system some of the potentially blocking operations * can return quickly, which is why we provide them, but it's highly recommended that you test how long they take to * return in your particular application before using them on an event loop. * <p> * Please consult the documentation for more information on file system support. * * * @author <a href="http://tfox.org">Tim Fox</a> */ @VertxGen public interface FileSystem { /** * Copy a file from the path {@code from} to path {@code to}, asynchronously. * <p> * The copy will fail if the destination already exists. * * @param from the path to copy from * @param to the path to copy to * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem copy(String from, String to, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #copy(String, String, Handler)} */ @Fluent FileSystem copyBlocking(String from, String to) ; /** * Copy a file from the path {@code from} to path {@code to}, asynchronously. * <p> * If {@code recursive} is {@code true} and {@code from} represents a directory, then the directory and its contents * will be copied recursively to the destination {@code to}. * <p> * The copy will fail if the destination if the destination already exists. * * @param from the path to copy from * @param to the path to copy to * @param recursive * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem copyRecursive(String from, String to, boolean recursive, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #copyRecursive(String, String, boolean, Handler)} */ @Fluent FileSystem copyRecursiveBlocking(String from, String to, boolean recursive) ; /** * Move a file from the path {@code from} to path {@code to}, asynchronously. * <p> * The move will fail if the destination already exists. * * @param from the path to copy from * @param to the path to copy to * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem move(String from, String to, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #move(String, String, Handler)} */ @Fluent FileSystem moveBlocking(String from, String to) ; /** * Truncate the file represented by {@code path} to length {@code len} in bytes, asynchronously. * <p> * The operation will fail if the file does not exist or {@code len} is less than {@code zero}. * * @param path the path to the file * @param len the length to truncate it to * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem truncate(String path, long len, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #truncate(String, long, Handler)} */ @Fluent FileSystem truncateBlocking(String path, long len) ; /** * Change the permissions on the file represented by {@code path} to {@code perms}, asynchronously. * <p> * The permission String takes the form rwxr-x--- as * specified <a href="http://download.oracle.com/javase/7/docs/api/java/nio/file/attribute/PosixFilePermissions.html">here</a>. * * @param path the path to the file * @param perms the permissions string * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem chmod(String path, String perms, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #chmod(String, String, Handler) } */ @Fluent FileSystem chmodBlocking(String path, String perms) ; /** * Change the permissions on the file represented by {@code path} to {@code perms}, asynchronously.<p> * The permission String takes the form rwxr-x--- as * specified in {<a href="http://download.oracle.com/javase/7/docs/api/java/nio/file/attribute/PosixFilePermissions.html">here</a>}. * <p> * If the file is directory then all contents will also have their permissions changed recursively. Any directory permissions will * be set to {@code dirPerms}, whilst any normal file permissions will be set to {@code perms}. * * @param path the path to the file * @param perms the permissions string * @param dirPerms the directory permissions * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem chmodRecursive(String path, String perms, String dirPerms, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #chmodRecursive(String, String, String, Handler)} */ @Fluent FileSystem chmodRecursiveBlocking(String path, String perms, String dirPerms) ; /** * Change the ownership on the file represented by {@code path} to {@code user} and {code group}, asynchronously. * * @param path the path to the file * @param user the user name, {@code null} will not change the user name * @param group the user group, {@code null} will not change the user group name * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem chown(String path, @Nullable String user, @Nullable String group, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #chown(String, String, String, Handler)} * */ @Fluent FileSystem chownBlocking(String path, @Nullable String user, @Nullable String group) ; /** * Obtain properties for the file represented by {@code path}, asynchronously. * <p> * If the file is a link, the link will be followed. * * @param path the path to the file * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem props(String path, Handler<AsyncResult<FileProps>> handler); /** * Blocking version of {@link #props(String, Handler)} */ FileProps propsBlocking(String path) ; /** * Obtain properties for the link represented by {@code path}, asynchronously. * <p> * The link will not be followed. * * @param path the path to the file * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem lprops(String path, Handler<AsyncResult<FileProps>> handler); /** * Blocking version of {@link #lprops(String, Handler)} */ FileProps lpropsBlocking(String path) ; /** * Create a hard link on the file system from {@code link} to {@code existing}, asynchronously. * * @param link the link * @param existing the link destination * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem link(String link, String existing, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #link(String, String, Handler)} */ @Fluent FileSystem linkBlocking(String link, String existing) ; /** * Create a symbolic link on the file system from {@code link} to {@code existing}, asynchronously. * * @param link the link * @param existing the link destination * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem symlink(String link, String existing, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #link(String, String, Handler)} */ @Fluent FileSystem symlinkBlocking(String link, String existing) ; /** * Unlinks the link on the file system represented by the path {@code link}, asynchronously. * * @param link the link * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem unlink(String link, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #unlink(String, Handler)} */ @Fluent FileSystem unlinkBlocking(String link) ; /** * Returns the path representing the file that the symbolic link specified by {@code link} points to, asynchronously. * * @param link the link * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem readSymlink(String link, Handler<AsyncResult<String>> handler); /** * Blocking version of {@link #readSymlink(String, Handler)} */ String readSymlinkBlocking(String link) ; /** * Deletes the file represented by the specified {@code path}, asynchronously. * * @param path path to the file * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem delete(String path, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #delete(String, Handler)} */ @Fluent FileSystem deleteBlocking(String path) ; /** * Deletes the file represented by the specified {@code path}, asynchronously. * <p> * If the path represents a directory and {@code recursive = true} then the directory and its contents will be * deleted recursively. * * @param path path to the file * @param recursive delete recursively? * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem deleteRecursive(String path, boolean recursive, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #deleteRecursive(String, boolean, Handler)} */ @Fluent FileSystem deleteRecursiveBlocking(String path, boolean recursive) ; /** * Create the directory represented by {@code path}, asynchronously. * <p> * The operation will fail if the directory already exists. * * @param path path to the file * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem mkdir(String path, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #mkdir(String, Handler)} */ @Fluent FileSystem mkdirBlocking(String path) ; /** * Create the directory represented by {@code path}, asynchronously. * <p> * The new directory will be created with permissions as specified by {@code perms}. * <p> * The permission String takes the form rwxr-x--- as specified * in <a href="http://download.oracle.com/javase/7/docs/api/java/nio/file/attribute/PosixFilePermissions.html">here</a>. * <p> * The operation will fail if the directory already exists. * * @param path path to the file * @param perms the permissions string * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem mkdir(String path, String perms, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #mkdir(String, String, Handler)} */ @Fluent FileSystem mkdirBlocking(String path, String perms) ; /** * Create the directory represented by {@code path} and any non existent parents, asynchronously. * <p> * The operation will fail if the directory already exists. * * @param path path to the file * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem mkdirs(String path, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #mkdirs(String, Handler)} */ @Fluent FileSystem mkdirsBlocking(String path) ; /** * Create the directory represented by {@code path} and any non existent parents, asynchronously. * <p> * The new directory will be created with permissions as specified by {@code perms}. * <p> * The permission String takes the form rwxr-x--- as specified * in <a href="http://download.oracle.com/javase/7/docs/api/java/nio/file/attribute/PosixFilePermissions.html">here</a>. * <p> * The operation will fail if the directory already exists.<p> * * @param path path to the file * @param perms the permissions string * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem mkdirs(String path, String perms, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #mkdirs(String, String, Handler)} */ @Fluent FileSystem mkdirsBlocking(String path, String perms) ; /** * Read the contents of the directory specified by {@code path}, asynchronously. * <p> * The result is an array of String representing the paths of the files inside the directory. * * @param path path to the file * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem readDir(String path, Handler<AsyncResult<List<String>>> handler); /** * Blocking version of {@link #readDir(String, Handler)} */ List<String> readDirBlocking(String path) ; /** * Read the contents of the directory specified by {@code path}, asynchronously. * <p> * The parameter {@code filter} is a regular expression. If {@code filter} is specified then only the paths that * match @{filter}will be returned. * <p> * The result is an array of String representing the paths of the files inside the directory. * * @param path path to the directory * @param filter the filter expression * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem readDir(String path, String filter, Handler<AsyncResult<List<String>>> handler); /** * Blocking version of {@link #readDir(String, String, Handler)} */ List<String> readDirBlocking(String path, String filter) ; /** * Reads the entire file as represented by the path {@code path} as a {@link Buffer}, asynchronously. * <p> * Do not use this method to read very large files or you risk running out of available RAM. * * @param path path to the file * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem readFile(String path, Handler<AsyncResult<Buffer>> handler); /** * Blocking version of {@link #readFile(String, Handler)} */ Buffer readFileBlocking(String path) ; /** * Creates the file, and writes the specified {@code Buffer data} to the file represented by the path {@code path}, * asynchronously. * * @param path path to the file * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem writeFile(String path, Buffer data, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #writeFile(String, Buffer, Handler)} */ @Fluent FileSystem writeFileBlocking(String path, Buffer data) ; /** * Open the file represented by {@code path}, asynchronously. * <p> * The file is opened for both reading and writing. If the file does not already exist it will be created. * * @param path path to the file * @param options options describing how the file should be opened * @return a reference to this, so the API can be used fluently * */ @Fluent FileSystem open(String path, OpenOptions options, Handler<AsyncResult<AsyncFile>> handler); /** * Blocking version of {@link #open(String, io.vertx.core.file.OpenOptions, Handler)} */ AsyncFile openBlocking(String path, OpenOptions options); /** * Creates an empty file with the specified {@code path}, asynchronously. * * @param path path to the file * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem createFile(String path, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #createFile(String, Handler)} */ @Fluent FileSystem createFileBlocking(String path) ; /** * Creates an empty file with the specified {@code path} and permissions {@code perms}, asynchronously. * * @param path path to the file * @param perms the permissions string * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem createFile(String path, String perms, Handler<AsyncResult<Void>> handler); /** * Blocking version of {@link #createFile(String, String, Handler)} */ @Fluent FileSystem createFileBlocking(String path, String perms) ; /** * Determines whether the file as specified by the path {@code path} exists, asynchronously. * * @param path path to the file * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem exists(String path, Handler<AsyncResult<Boolean>> handler); /** * Blocking version of {@link #exists(String, Handler)} */ boolean existsBlocking(String path) ; /** * Returns properties of the file-system being used by the specified {@code path}, asynchronously. * * @param path path to anywhere on the filesystem * @param handler the handler that will be called on completion * @return a reference to this, so the API can be used fluently */ @Fluent FileSystem fsProps(String path, Handler<AsyncResult<FileSystemProps>> handler); /** * Blocking version of {@link #fsProps(String, Handler)} */ FileSystemProps fsPropsBlocking(String path) ; }