123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812 |
- /* 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.
- */
- #ifndef APR_FILE_IO_H
- #define APR_FILE_IO_H
- /**
- * @file fspr_file_io.h
- * @brief APR File I/O Handling
- */
- #include "fspr.h"
- #include "fspr_pools.h"
- #include "fspr_time.h"
- #include "fspr_errno.h"
- #include "fspr_file_info.h"
- #include "fspr_inherit.h"
- #define APR_WANT_STDIO /**< for SEEK_* */
- #define APR_WANT_IOVEC /**< for fspr_file_writev */
- #include "fspr_want.h"
- #ifdef __cplusplus
- extern "C" {
- #endif /* __cplusplus */
- /**
- * @defgroup fspr_file_io File I/O Handling Functions
- * @ingroup APR
- * @{
- */
- /**
- * @defgroup fspr_file_open_flags File Open Flags/Routines
- * @{
- */
- /* Note to implementors: Values in the range 0x00100000--0x80000000
- are reserved for platform-specific values. */
- #define APR_FOPEN_READ 0x00001 /**< Open the file for reading */
- #define APR_FOPEN_WRITE 0x00002 /**< Open the file for writing */
- #define APR_FOPEN_CREATE 0x00004 /**< Create the file if not there */
- #define APR_FOPEN_APPEND 0x00008 /**< Append to the end of the file */
- #define APR_FOPEN_TRUNCATE 0x00010 /**< Open the file and truncate
- to 0 length */
- #define APR_FOPEN_BINARY 0x00020 /**< Open the file in binary mode */
- #define APR_FOPEN_EXCL 0x00040 /**< Open should fail if APR_CREATE
- and file exists. */
- #define APR_FOPEN_BUFFERED 0x00080 /**< Open the file for buffered I/O */
- #define APR_FOPEN_DELONCLOSE 0x00100 /**< Delete the file after close */
- #define APR_FOPEN_XTHREAD 0x00200 /**< Platform dependent tag to open
- the file for use across multiple
- threads */
- #define APR_FOPEN_SHARELOCK 0x00400 /**< Platform dependent support for
- higher level locked read/write
- access to support writes across
- process/machines */
- #define APR_FOPEN_NOCLEANUP 0x00800 /**< Do not register a cleanup
- when the file is opened */
- #define APR_FOPEN_SENDFILE_ENABLED 0x01000 /**< Advisory flag that this
- file should support
- fspr_socket_sendfile operation */
- #define APR_FOPEN_LARGEFILE 0x04000 /**< Platform dependent flag to enable
- large file support; WARNING see
- below. */
- /* backcompat */
- #define APR_READ APR_FOPEN_READ /**< @deprecated @see APR_FOPEN_READ */
- #define APR_WRITE APR_FOPEN_WRITE /**< @deprecated @see APR_FOPEN_WRITE */
- #define APR_CREATE APR_FOPEN_CREATE /**< @deprecated @see APR_FOPEN_CREATE */
- #define APR_APPEND APR_FOPEN_APPEND /**< @deprecated @see APR_FOPEN_APPEND */
- #define APR_TRUNCATE APR_FOPEN_TRUNCATE /**< @deprecated @see APR_FOPEN_TRUNCATE */
- #define APR_BINARY APR_FOPEN_BINARY /**< @deprecated @see APR_FOPEN_BINARY */
- #define APR_EXCL APR_FOPEN_EXCL /**< @deprecated @see APR_FOPEN_EXCL */
- #define APR_BUFFERED APR_FOPEN_BUFFERED /**< @deprecated @see APR_FOPEN_BUFFERED */
- #define APR_DELONCLOSE APR_FOPEN_DELONCLOSE /**< @deprecated @see APR_FOPEN_DELONCLOSE */
- #define APR_XTHREAD APR_FOPEN_XTHREAD /**< @deprecated @see APR_FOPEN_XTHREAD */
- #define APR_SHARELOCK APR_FOPEN_SHARELOCK /**< @deprecated @see APR_FOPEN_SHARELOCK */
- #define APR_FILE_NOCLEANUP APR_FOPEN_NOCLEANUP /**< @deprecated @see APR_FOPEN_NOCLEANUP */
- #define APR_SENDFILE_ENABLED APR_FOPEN_SENDFILE_ENABLED /**< @deprecated @see APR_FOPEN_SENDFILE_ENABLED */
- #define APR_LARGEFILE APR_FOPEN_LARGEFILE /**< @deprecated @see APR_FOPEN_LARGEFILE */
- /** @warning The APR_LARGEFILE flag only has effect on some platforms
- * where sizeof(fspr_off_t) == 4. Where implemented, it allows opening
- * and writing to a file which exceeds the size which can be
- * represented by fspr_off_t (2 gigabytes). When a file's size does
- * exceed 2Gb, fspr_file_info_get() will fail with an error on the
- * descriptor, likewise fspr_stat()/fspr_lstat() will fail on the
- * filename. fspr_dir_read() will fail with APR_INCOMPLETE on a
- * directory entry for a large file depending on the particular
- * APR_FINFO_* flags. Generally, it is not recommended to use this
- * flag. */
- /** @} */
- /**
- * @defgroup fspr_file_seek_flags File Seek Flags
- * @{
- */
- /* flags for fspr_file_seek */
- /** Set the file position */
- #define APR_SET SEEK_SET
- /** Current */
- #define APR_CUR SEEK_CUR
- /** Go to end of file */
- #define APR_END SEEK_END
- /** @} */
- /**
- * @defgroup fspr_file_attrs_set_flags File Attribute Flags
- * @{
- */
- /* flags for fspr_file_attrs_set */
- #define APR_FILE_ATTR_READONLY 0x01 /**< File is read-only */
- #define APR_FILE_ATTR_EXECUTABLE 0x02 /**< File is executable */
- #define APR_FILE_ATTR_HIDDEN 0x04 /**< File is hidden */
- /** @} */
- /**
- * @defgroup fspr_file_writev{_full} max iovec size
- * @{
- */
- #if defined(DOXYGEN)
- #define APR_MAX_IOVEC_SIZE 1024 /**< System dependent maximum
- size of an iovec array */
- #elif defined(IOV_MAX)
- #define APR_MAX_IOVEC_SIZE IOV_MAX
- #elif defined(MAX_IOVEC)
- #define APR_MAX_IOVEC_SIZE MAX_IOVEC
- #else
- #define APR_MAX_IOVEC_SIZE 1024
- #endif
- /** @} */
- /** File attributes */
- typedef fspr_uint32_t fspr_fileattrs_t;
- /** Type to pass as whence argument to fspr_file_seek. */
- typedef int fspr_seek_where_t;
- /**
- * Structure for referencing files.
- */
- typedef struct fspr_file_t fspr_file_t;
- /* File lock types/flags */
- /**
- * @defgroup fspr_file_lock_types File Lock Types
- * @{
- */
- #define APR_FLOCK_SHARED 1 /**< Shared lock. More than one process
- or thread can hold a shared lock
- at any given time. Essentially,
- this is a "read lock", preventing
- writers from establishing an
- exclusive lock. */
- #define APR_FLOCK_EXCLUSIVE 2 /**< Exclusive lock. Only one process
- may hold an exclusive lock at any
- given time. This is analogous to
- a "write lock". */
- #define APR_FLOCK_TYPEMASK 0x000F /**< mask to extract lock type */
- #define APR_FLOCK_NONBLOCK 0x0010 /**< do not block while acquiring the
- file lock */
- /** @} */
- /**
- * Open the specified file.
- * @param newf The opened file descriptor.
- * @param fname The full path to the file (using / on all systems)
- * @param flag Or'ed value of:
- * <PRE>
- * APR_READ open for reading
- * APR_WRITE open for writing
- * APR_CREATE create the file if not there
- * APR_APPEND file ptr is set to end prior to all writes
- * APR_TRUNCATE set length to zero if file exists
- * APR_BINARY not a text file (This flag is ignored on
- * UNIX because it has no meaning)
- * APR_BUFFERED buffer the data. Default is non-buffered
- * APR_EXCL return error if APR_CREATE and file exists
- * APR_DELONCLOSE delete the file after closing.
- * APR_XTHREAD Platform dependent tag to open the file
- * for use across multiple threads
- * APR_SHARELOCK Platform dependent support for higher
- * level locked read/write access to support
- * writes across process/machines
- * APR_FILE_NOCLEANUP Do not register a cleanup with the pool
- * passed in on the <EM>pool</EM> argument (see below).
- * The fspr_os_file_t handle in fspr_file_t will not
- * be closed when the pool is destroyed.
- * APR_SENDFILE_ENABLED Open with appropriate platform semantics
- * for sendfile operations. Advisory only,
- * fspr_socket_sendfile does not check this flag.
- * </PRE>
- * @param perm Access permissions for file.
- * @param pool The pool to use.
- * @remark If perm is APR_OS_DEFAULT and the file is being created,
- * appropriate default permissions will be used.
- * @remark By default, the returned file descriptor will not be
- * inherited by child processes created by fspr_proc_create(). This
- * can be changed using fspr_file_inherit_set().
- */
- APR_DECLARE(fspr_status_t) fspr_file_open(fspr_file_t **newf, const char *fname,
- fspr_int32_t flag, fspr_fileperms_t perm,
- fspr_pool_t *pool);
- /**
- * Close the specified file.
- * @param file The file descriptor to close.
- */
- APR_DECLARE(fspr_status_t) fspr_file_close(fspr_file_t *file);
- /**
- * Delete the specified file.
- * @param path The full path to the file (using / on all systems)
- * @param pool The pool to use.
- * @remark If the file is open, it won't be removed until all
- * instances are closed.
- */
- APR_DECLARE(fspr_status_t) fspr_file_remove(const char *path, fspr_pool_t *pool);
- /**
- * Rename the specified file.
- * @param from_path The full path to the original file (using / on all systems)
- * @param to_path The full path to the new file (using / on all systems)
- * @param pool The pool to use.
- * @warning If a file exists at the new location, then it will be
- * overwritten. Moving files or directories across devices may not be
- * possible.
- */
- APR_DECLARE(fspr_status_t) fspr_file_rename(const char *from_path,
- const char *to_path,
- fspr_pool_t *pool);
- /**
- * Copy the specified file to another file.
- * @param from_path The full path to the original file (using / on all systems)
- * @param to_path The full path to the new file (using / on all systems)
- * @param perms Access permissions for the new file if it is created.
- * In place of the usual or'd combination of file permissions, the
- * value APR_FILE_SOURCE_PERMS may be given, in which case the source
- * file's permissions are copied.
- * @param pool The pool to use.
- * @remark The new file does not need to exist, it will be created if required.
- * @warning If the new file already exists, its contents will be overwritten.
- */
- APR_DECLARE(fspr_status_t) fspr_file_copy(const char *from_path,
- const char *to_path,
- fspr_fileperms_t perms,
- fspr_pool_t *pool);
- /**
- * Append the specified file to another file.
- * @param from_path The full path to the source file (use / on all systems)
- * @param to_path The full path to the destination file (use / on all systems)
- * @param perms Access permissions for the destination file if it is created.
- * In place of the usual or'd combination of file permissions, the
- * value APR_FILE_SOURCE_PERMS may be given, in which case the source
- * file's permissions are copied.
- * @param pool The pool to use.
- * @remark The new file does not need to exist, it will be created if required.
- */
- APR_DECLARE(fspr_status_t) fspr_file_append(const char *from_path,
- const char *to_path,
- fspr_fileperms_t perms,
- fspr_pool_t *pool);
- /**
- * Are we at the end of the file
- * @param fptr The apr file we are testing.
- * @remark Returns APR_EOF if we are at the end of file, APR_SUCCESS otherwise.
- */
- APR_DECLARE(fspr_status_t) fspr_file_eof(fspr_file_t *fptr);
- /**
- * Open standard error as an apr file pointer.
- * @param thefile The apr file to use as stderr.
- * @param pool The pool to allocate the file out of.
- *
- * @remark The only reason that the fspr_file_open_std* functions exist
- * is that you may not always have a stderr/out/in on Windows. This
- * is generally a problem with newer versions of Windows and services.
- *
- * @remark The other problem is that the C library functions generally work
- * differently on Windows and Unix. So, by using fspr_file_open_std*
- * functions, you can get a handle to an APR struct that works with
- * the APR functions which are supposed to work identically on all
- * platforms.
- */
- APR_DECLARE(fspr_status_t) fspr_file_open_stderr(fspr_file_t **thefile,
- fspr_pool_t *pool);
- /**
- * open standard output as an apr file pointer.
- * @param thefile The apr file to use as stdout.
- * @param pool The pool to allocate the file out of.
- *
- * @remark See remarks for fspr_file_open_stdout.
- */
- APR_DECLARE(fspr_status_t) fspr_file_open_stdout(fspr_file_t **thefile,
- fspr_pool_t *pool);
- /**
- * open standard input as an apr file pointer.
- * @param thefile The apr file to use as stdin.
- * @param pool The pool to allocate the file out of.
- *
- * @remark See remarks for fspr_file_open_stdout.
- */
- APR_DECLARE(fspr_status_t) fspr_file_open_stdin(fspr_file_t **thefile,
- fspr_pool_t *pool);
- /**
- * Read data from the specified file.
- * @param thefile The file descriptor to read from.
- * @param buf The buffer to store the data to.
- * @param nbytes On entry, the number of bytes to read; on exit, the number
- * of bytes read.
- *
- * @remark fspr_file_read will read up to the specified number of
- * bytes, but never more. If there isn't enough data to fill that
- * number of bytes, all of the available data is read. The third
- * argument is modified to reflect the number of bytes read. If a
- * char was put back into the stream via ungetc, it will be the first
- * character returned.
- *
- * @remark It is not possible for both bytes to be read and an APR_EOF
- * or other error to be returned. APR_EINTR is never returned.
- */
- APR_DECLARE(fspr_status_t) fspr_file_read(fspr_file_t *thefile, void *buf,
- fspr_size_t *nbytes);
- /**
- * Write data to the specified file.
- * @param thefile The file descriptor to write to.
- * @param buf The buffer which contains the data.
- * @param nbytes On entry, the number of bytes to write; on exit, the number
- * of bytes written.
- *
- * @remark fspr_file_write will write up to the specified number of
- * bytes, but never more. If the OS cannot write that many bytes, it
- * will write as many as it can. The third argument is modified to
- * reflect the * number of bytes written.
- *
- * @remark It is possible for both bytes to be written and an error to
- * be returned. APR_EINTR is never returned.
- */
- APR_DECLARE(fspr_status_t) fspr_file_write(fspr_file_t *thefile, const void *buf,
- fspr_size_t *nbytes);
- /**
- * Write data from iovec array to the specified file.
- * @param thefile The file descriptor to write to.
- * @param vec The array from which to get the data to write to the file.
- * @param nvec The number of elements in the struct iovec array. This must
- * be smaller than APR_MAX_IOVEC_SIZE. If it isn't, the function
- * will fail with APR_EINVAL.
- * @param nbytes The number of bytes written.
- *
- * @remark It is possible for both bytes to be written and an error to
- * be returned. APR_EINTR is never returned.
- *
- * @remark fspr_file_writev is available even if the underlying
- * operating system doesn't provide writev().
- */
- APR_DECLARE(fspr_status_t) fspr_file_writev(fspr_file_t *thefile,
- const struct iovec *vec,
- fspr_size_t nvec, fspr_size_t *nbytes);
- /**
- * Read data from the specified file, ensuring that the buffer is filled
- * before returning.
- * @param thefile The file descriptor to read from.
- * @param buf The buffer to store the data to.
- * @param nbytes The number of bytes to read.
- * @param bytes_read If non-NULL, this will contain the number of bytes read.
- *
- * @remark fspr_file_read will read up to the specified number of
- * bytes, but never more. If there isn't enough data to fill that
- * number of bytes, then the process/thread will block until it is
- * available or EOF is reached. If a char was put back into the
- * stream via ungetc, it will be the first character returned.
- *
- * @remark It is possible for both bytes to be read and an error to be
- * returned. And if *bytes_read is less than nbytes, an accompanying
- * error is _always_ returned.
- *
- * @remark APR_EINTR is never returned.
- */
- APR_DECLARE(fspr_status_t) fspr_file_read_full(fspr_file_t *thefile, void *buf,
- fspr_size_t nbytes,
- fspr_size_t *bytes_read);
- /**
- * Write data to the specified file, ensuring that all of the data is
- * written before returning.
- * @param thefile The file descriptor to write to.
- * @param buf The buffer which contains the data.
- * @param nbytes The number of bytes to write.
- * @param bytes_written If non-NULL, set to the number of bytes written.
- *
- * @remark fspr_file_write will write up to the specified number of
- * bytes, but never more. If the OS cannot write that many bytes, the
- * process/thread will block until they can be written. Exceptional
- * error such as "out of space" or "pipe closed" will terminate with
- * an error.
- *
- * @remark It is possible for both bytes to be written and an error to
- * be returned. And if *bytes_written is less than nbytes, an
- * accompanying error is _always_ returned.
- *
- * @remark APR_EINTR is never returned.
- */
- APR_DECLARE(fspr_status_t) fspr_file_write_full(fspr_file_t *thefile,
- const void *buf,
- fspr_size_t nbytes,
- fspr_size_t *bytes_written);
- /**
- * Write data from iovec array to the specified file, ensuring that all of the
- * data is written before returning.
- * @param thefile The file descriptor to write to.
- * @param vec The array from which to get the data to write to the file.
- * @param nvec The number of elements in the struct iovec array. This must
- * be smaller than APR_MAX_IOVEC_SIZE. If it isn't, the function
- * will fail with APR_EINVAL.
- * @param nbytes The number of bytes written.
- *
- * @remark fspr_file_writev_full is available even if the underlying
- * operating system doesn't provide writev().
- */
- APR_DECLARE(fspr_status_t) fspr_file_writev_full(fspr_file_t *thefile,
- const struct iovec *vec,
- fspr_size_t nvec,
- fspr_size_t *nbytes);
- /**
- * Write a character into the specified file.
- * @param ch The character to write.
- * @param thefile The file descriptor to write to
- */
- APR_DECLARE(fspr_status_t) fspr_file_putc(char ch, fspr_file_t *thefile);
- /**
- * Read a character from the specified file.
- * @param ch The character to read into
- * @param thefile The file descriptor to read from
- */
- APR_DECLARE(fspr_status_t) fspr_file_getc(char *ch, fspr_file_t *thefile);
- /**
- * Put a character back onto a specified stream.
- * @param ch The character to write.
- * @param thefile The file descriptor to write to
- */
- APR_DECLARE(fspr_status_t) fspr_file_ungetc(char ch, fspr_file_t *thefile);
- /**
- * Read a string from the specified file.
- * @param str The buffer to store the string in.
- * @param len The length of the string
- * @param thefile The file descriptor to read from
- * @remark The buffer will be NUL-terminated if any characters are stored.
- */
- APR_DECLARE(fspr_status_t) fspr_file_gets(char *str, int len,
- fspr_file_t *thefile);
- /**
- * Write the string into the specified file.
- * @param str The string to write.
- * @param thefile The file descriptor to write to
- */
- APR_DECLARE(fspr_status_t) fspr_file_puts(const char *str, fspr_file_t *thefile);
- /**
- * Flush the file's buffer.
- * @param thefile The file descriptor to flush
- */
- APR_DECLARE(fspr_status_t) fspr_file_flush(fspr_file_t *thefile);
- /**
- * Duplicate the specified file descriptor.
- * @param new_file The structure to duplicate into.
- * @param old_file The file to duplicate.
- * @param p The pool to use for the new file.
- * @remark *new_file must point to a valid fspr_file_t, or point to NULL.
- */
- APR_DECLARE(fspr_status_t) fspr_file_dup(fspr_file_t **new_file,
- fspr_file_t *old_file,
- fspr_pool_t *p);
- /**
- * Duplicate the specified file descriptor and close the original
- * @param new_file The old file that is to be closed and reused
- * @param old_file The file to duplicate
- * @param p The pool to use for the new file
- *
- * @remark new_file MUST point at a valid fspr_file_t. It cannot be NULL.
- */
- APR_DECLARE(fspr_status_t) fspr_file_dup2(fspr_file_t *new_file,
- fspr_file_t *old_file,
- fspr_pool_t *p);
- /**
- * Move the specified file descriptor to a new pool
- * @param new_file Pointer in which to return the new fspr_file_t
- * @param old_file The file to move
- * @param p The pool to which the descriptor is to be moved
- * @remark Unlike fspr_file_dup2(), this function doesn't do an
- * OS dup() operation on the underlying descriptor; it just
- * moves the descriptor's fspr_file_t wrapper to a new pool.
- * @remark The new pool need not be an ancestor of old_file's pool.
- * @remark After calling this function, old_file may not be used
- */
- APR_DECLARE(fspr_status_t) fspr_file_setaside(fspr_file_t **new_file,
- fspr_file_t *old_file,
- fspr_pool_t *p);
- /**
- * Move the read/write file offset to a specified byte within a file.
- * @param thefile The file descriptor
- * @param where How to move the pointer, one of:
- * <PRE>
- * APR_SET -- set the offset to offset
- * APR_CUR -- add the offset to the current position
- * APR_END -- add the offset to the current file size
- * </PRE>
- * @param offset The offset to move the pointer to.
- * @remark The third argument is modified to be the offset the pointer
- was actually moved to.
- */
- APR_DECLARE(fspr_status_t) fspr_file_seek(fspr_file_t *thefile,
- fspr_seek_where_t where,
- fspr_off_t *offset);
- /**
- * Create an anonymous pipe.
- * @param in The file descriptor to use as input to the pipe.
- * @param out The file descriptor to use as output from the pipe.
- * @param pool The pool to operate on.
- * @remark By default, the returned file descriptors will be inherited
- * by child processes created using fspr_proc_create(). This can be
- * changed using fspr_file_inherit_unset().
- */
- APR_DECLARE(fspr_status_t) fspr_file_pipe_create(fspr_file_t **in,
- fspr_file_t **out,
- fspr_pool_t *pool);
- /**
- * Create a named pipe.
- * @param filename The filename of the named pipe
- * @param perm The permissions for the newly created pipe.
- * @param pool The pool to operate on.
- */
- APR_DECLARE(fspr_status_t) fspr_file_namedpipe_create(const char *filename,
- fspr_fileperms_t perm,
- fspr_pool_t *pool);
- /**
- * Get the timeout value for a pipe or manipulate the blocking state.
- * @param thepipe The pipe we are getting a timeout for.
- * @param timeout The current timeout value in microseconds.
- */
- APR_DECLARE(fspr_status_t) fspr_file_pipe_timeout_get(fspr_file_t *thepipe,
- fspr_interval_time_t *timeout);
- /**
- * Set the timeout value for a pipe or manipulate the blocking state.
- * @param thepipe The pipe we are setting a timeout on.
- * @param timeout The timeout value in microseconds. Values < 0 mean wait
- * forever, 0 means do not wait at all.
- */
- APR_DECLARE(fspr_status_t) fspr_file_pipe_timeout_set(fspr_file_t *thepipe,
- fspr_interval_time_t timeout);
- /** file (un)locking functions. */
- /**
- * Establish a lock on the specified, open file. The lock may be advisory
- * or mandatory, at the discretion of the platform. The lock applies to
- * the file as a whole, rather than a specific range. Locks are established
- * on a per-thread/process basis; a second lock by the same thread will not
- * block.
- * @param thefile The file to lock.
- * @param type The type of lock to establish on the file.
- */
- APR_DECLARE(fspr_status_t) fspr_file_lock(fspr_file_t *thefile, int type);
- /**
- * Remove any outstanding locks on the file.
- * @param thefile The file to unlock.
- */
- APR_DECLARE(fspr_status_t) fspr_file_unlock(fspr_file_t *thefile);
- /**accessor and general file_io functions. */
- /**
- * return the file name of the current file.
- * @param new_path The path of the file.
- * @param thefile The currently open file.
- */
- APR_DECLARE(fspr_status_t) fspr_file_name_get(const char **new_path,
- fspr_file_t *thefile);
-
- /**
- * Return the data associated with the current file.
- * @param data The user data associated with the file.
- * @param key The key to use for retreiving data associated with this file.
- * @param file The currently open file.
- */
- APR_DECLARE(fspr_status_t) fspr_file_data_get(void **data, const char *key,
- fspr_file_t *file);
- /**
- * Set the data associated with the current file.
- * @param file The currently open file.
- * @param data The user data to associate with the file.
- * @param key The key to use for assocaiteing data with the file.
- * @param cleanup The cleanup routine to use when the file is destroyed.
- */
- APR_DECLARE(fspr_status_t) fspr_file_data_set(fspr_file_t *file, void *data,
- const char *key,
- fspr_status_t (*cleanup)(void *));
- /**
- * Write a string to a file using a printf format.
- * @param fptr The file to write to.
- * @param format The format string
- * @param ... The values to substitute in the format string
- * @return The number of bytes written
- */
- APR_DECLARE_NONSTD(int) fspr_file_printf(fspr_file_t *fptr,
- const char *format, ...)
- __attribute__((format(printf,2,3)));
- /**
- * set the specified file's permission bits.
- * @param fname The file (name) to apply the permissions to.
- * @param perms The permission bits to apply to the file.
- *
- * @warning Some platforms may not be able to apply all of the
- * available permission bits; APR_INCOMPLETE will be returned if some
- * permissions are specified which could not be set.
- *
- * @warning Platforms which do not implement this feature will return
- * APR_ENOTIMPL.
- */
- APR_DECLARE(fspr_status_t) fspr_file_perms_set(const char *fname,
- fspr_fileperms_t perms);
- /**
- * Set attributes of the specified file.
- * @param fname The full path to the file (using / on all systems)
- * @param attributes Or'd combination of
- * <PRE>
- * APR_FILE_ATTR_READONLY - make the file readonly
- * APR_FILE_ATTR_EXECUTABLE - make the file executable
- * APR_FILE_ATTR_HIDDEN - make the file hidden
- * </PRE>
- * @param attr_mask Mask of valid bits in attributes.
- * @param pool the pool to use.
- * @remark This function should be used in preference to explict manipulation
- * of the file permissions, because the operations to provide these
- * attributes are platform specific and may involve more than simply
- * setting permission bits.
- * @warning Platforms which do not implement this feature will return
- * APR_ENOTIMPL.
- */
- APR_DECLARE(fspr_status_t) fspr_file_attrs_set(const char *fname,
- fspr_fileattrs_t attributes,
- fspr_fileattrs_t attr_mask,
- fspr_pool_t *pool);
- /**
- * Set the mtime of the specified file.
- * @param fname The full path to the file (using / on all systems)
- * @param mtime The mtime to apply to the file.
- * @param pool The pool to use.
- * @warning Platforms which do not implement this feature will return
- * APR_ENOTIMPL.
- */
- APR_DECLARE(fspr_status_t) fspr_file_mtime_set(const char *fname,
- fspr_time_t mtime,
- fspr_pool_t *pool);
- /**
- * Create a new directory on the file system.
- * @param path the path for the directory to be created. (use / on all systems)
- * @param perm Permissions for the new direcoty.
- * @param pool the pool to use.
- */
- APR_DECLARE(fspr_status_t) fspr_dir_make(const char *path, fspr_fileperms_t perm,
- fspr_pool_t *pool);
- /** Creates a new directory on the file system, but behaves like
- * 'mkdir -p'. Creates intermediate directories as required. No error
- * will be reported if PATH already exists.
- * @param path the path for the directory to be created. (use / on all systems)
- * @param perm Permissions for the new direcoty.
- * @param pool the pool to use.
- */
- APR_DECLARE(fspr_status_t) fspr_dir_make_recursive(const char *path,
- fspr_fileperms_t perm,
- fspr_pool_t *pool);
- /**
- * Remove directory from the file system.
- * @param path the path for the directory to be removed. (use / on all systems)
- * @param pool the pool to use.
- */
- APR_DECLARE(fspr_status_t) fspr_dir_remove(const char *path, fspr_pool_t *pool);
- /**
- * get the specified file's stats.
- * @param finfo Where to store the information about the file.
- * @param wanted The desired fspr_finfo_t fields, as a bit flag of APR_FINFO_ values
- * @param thefile The file to get information about.
- */
- APR_DECLARE(fspr_status_t) fspr_file_info_get(fspr_finfo_t *finfo,
- fspr_int32_t wanted,
- fspr_file_t *thefile);
-
- /**
- * Truncate the file's length to the specified offset
- * @param fp The file to truncate
- * @param offset The offset to truncate to.
- */
- APR_DECLARE(fspr_status_t) fspr_file_trunc(fspr_file_t *fp, fspr_off_t offset);
- /**
- * Retrieve the flags that were passed into fspr_file_open()
- * when the file was opened.
- * @return fspr_int32_t the flags
- */
- APR_DECLARE(fspr_int32_t) fspr_file_flags_get(fspr_file_t *f);
- /**
- * Get the pool used by the file.
- */
- APR_POOL_DECLARE_ACCESSOR(file);
- /**
- * Set a file to be inherited by child processes.
- *
- */
- APR_DECLARE_INHERIT_SET(file);
- /**
- * Unset a file from being inherited by child processes.
- */
- APR_DECLARE_INHERIT_UNSET(file);
- /**
- * Open a temporary file
- * @param fp The apr file to use as a temporary file.
- * @param templ The template to use when creating a temp file.
- * @param flags The flags to open the file with. If this is zero,
- * the file is opened with
- * APR_CREATE | APR_READ | APR_WRITE | APR_EXCL | APR_DELONCLOSE
- * @param p The pool to allocate the file out of.
- * @remark
- * This function generates a unique temporary file name from template.
- * The last six characters of template must be XXXXXX and these are replaced
- * with a string that makes the filename unique. Since it will be modified,
- * template must not be a string constant, but should be declared as a character
- * array.
- *
- */
- APR_DECLARE(fspr_status_t) fspr_file_mktemp(fspr_file_t **fp, char *templ,
- fspr_int32_t flags, fspr_pool_t *p);
- /**
- * Find an existing directory suitable as a temporary storage location.
- * @param temp_dir The temp directory.
- * @param p The pool to use for any necessary allocations.
- * @remark
- * This function uses an algorithm to search for a directory that an
- * an application can use for temporary storage. Once such a
- * directory is found, that location is cached by the library. Thus,
- * callers only pay the cost of this algorithm once if that one time
- * is successful.
- *
- */
- APR_DECLARE(fspr_status_t) fspr_temp_dir_get(const char **temp_dir,
- fspr_pool_t *p);
- /** @} */
- #ifdef __cplusplus
- }
- #endif
- #endif /* ! APR_FILE_IO_H */
|