| /* libnih |
| * |
| * Copyright © 2009 Scott James Remnant <scott@netsplit.com>. |
| * Copyright © 2009 Canonical Ltd. |
| * |
| * Permission is hereby granted, free of charge, to any person obtaining |
| * a copy of this software and associated documentation files (the |
| * "Software"), to deal in the Software without restriction, including |
| * without limitation the rights to use, copy, modify, merge, publish, |
| * distribute, sublicense, and/or sell copies of the Software, and to |
| * permit persons to whom the Software is furnished to do so, subject to |
| * the following conditions: |
| * |
| * The above copyright notice and this permission notice shall be |
| * included in all copies or substantial portions of the Software. |
| * |
| * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. |
| * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR |
| * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF |
| * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
| */ |
| |
| #ifndef NIH_FILE_H |
| #define NIH_FILE_H |
| |
| #include <sys/types.h> |
| #include <sys/stat.h> |
| |
| #include <fcntl.h> |
| |
| #include <nih/macros.h> |
| |
| |
| /** |
| * NihFileFilter: |
| * @data: data pointer, |
| * @path: path to file. |
| * |
| * A file filter is a function that can be called to determine whether |
| * a particular path should be ignored because of its filename, |
| * |
| * Returns: TRUE if the path should be ignored, FALSE otherwise. |
| **/ |
| typedef int (*NihFileFilter) (void *data, const char *path); |
| |
| /** |
| * NihFileVisitor: |
| * @data: data pointer given to nih_dir_walk(), |
| * @dirname: top-level path being walked, |
| * @path: path to file, |
| * @statbuf: stat of @path. |
| * |
| * A file visitor is a function that can be called for a filesystem object |
| * visited by nih_dir_walk() that does not match the filter given to that |
| * function. |
| * |
| * Returns: zero on success, negative value on raised error. |
| **/ |
| typedef int (*NihFileVisitor) (void *data, const char *dirname, |
| const char *path, struct stat *statbuf); |
| |
| /** |
| * NihFileErrorHandler: |
| * @data: data pointer given to nih_dir_walk(), |
| * @dirname: top-level path being walked, |
| * @path: path to file, |
| * @statbuf: stat of @path. |
| * |
| * A file error handler is a function called whenever the visitor function |
| * returns a raised error, or the attempt to walk @path fails. Note that |
| * @statbuf might be invalid if it was stat() that failed. |
| * |
| * This function should handle the error and return zero; alternatively |
| * it may raise the error again (or a different error) and return a negative |
| * value to abort the tree walk. |
| * |
| * Returns: zero on success, negative value on raised error. |
| **/ |
| typedef int (*NihFileErrorHandler) (void *data, const char *dirname, |
| const char *path, struct stat *statbuf); |
| |
| |
| NIH_BEGIN_EXTERN |
| |
| char *nih_file_read (const void *parent, const char *path, |
| size_t *length) |
| __attribute__ ((warn_unused_result, malloc)); |
| |
| void *nih_file_map (const char *path, int flags, size_t *length) |
| __attribute__ ((warn_unused_result)); |
| int nih_file_unmap (void *map, size_t length); |
| |
| int nih_file_is_hidden (const char *path); |
| int nih_file_is_backup (const char *path); |
| int nih_file_is_swap (const char *path); |
| int nih_file_is_rcs (const char *path); |
| int nih_file_is_packaging (const char *path); |
| int nih_file_ignore (void *data, const char *path); |
| |
| int nih_dir_walk (const char *path, NihFileFilter filter, |
| NihFileVisitor visitor, NihFileErrorHandler error, |
| void *data) |
| __attribute__ ((warn_unused_result)); |
| |
| NIH_END_EXTERN |
| |
| #endif /* NIH_FILE_H */ |