/* Copyright 2007-2020 David Robillard Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include /// Return the path to a directory suitable for making temporary files char* lilv_temp_directory_path(void); /// Return true iff `path` is an absolute path bool lilv_path_is_absolute(const char* path); /// Return true iff `path` is a child of `dir` bool lilv_path_is_child(const char* path, const char* dir); /// Return the current working directory char* lilv_path_current(void); /** Return `path` as an absolute path. If `path` is absolute, an identical copy of it is returned. Otherwise, the returned path is relative to the current working directory. */ char* lilv_path_absolute(const char* path); /** Return `path` as an absolute path relative to `parent`. If `path` is absolute, an identical copy of it is returned. Otherwise, the returned path is relative to `parent`. */ char* lilv_path_absolute_child(const char* path, const char* parent); /** Return `path` relative to `base` if possible. If `path` is not within `base`, a copy is returned. Otherwise, an equivalent path relative to `base` is returned (which may contain up-references). */ char* lilv_path_relative_to(const char* path, const char* base); /** Return the path to the directory that contains `path`. Returns the root path if `path` is the root path. */ char* lilv_path_parent(const char* path); /** Return the filename component of `path` without any directories. Returns the empty string if `path` is the root path. */ char* lilv_path_filename(const char* path); /// Join path `a` and path `b` with a single directory separator between them char* lilv_path_join(const char* a, const char* b); /** Return `path` as a canonicalized absolute path. This expands all symbolic links, relative references, and removes extra directory separators. */ char* lilv_path_canonical(const char* path); /// Return true iff `path` points to an existing file system entry bool lilv_path_exists(const char* path); /// Return true iff `path` points to an existing directory bool lilv_is_directory(const char* path); /** Copy the file at path `src` to path `dst`. @return Zero on success, or a standard `errno` error code. */ int lilv_copy_file(const char* src, const char* dst); /** Create a symlink at `newpath` that points to `oldpath`. @return Zero on success, otherwise non-zero and `errno` is set. */ int lilv_symlink(const char* oldpath, const char* newpath); /** Set or remove an advisory exclusive lock on `file`. If the `lock` is true and the file is already locked by another process, or by this process via a different file handle, then this will not succeed and non-zero will be returned. @param file Handle for open file to lock. @param lock True to set lock, false to release lock. @param block If true, then this call will block until the lock is acquired. @return Zero on success. */ int lilv_flock(FILE* file, bool lock, bool block); /** Visit every file in the directory at `path`. @param path A path to a directory. @param data Opaque user data that is passed to `f`. @param f A function called on every entry in the directory. The `path` parameter is always the directory path passed to this function, the `name` parameter is the name of the directory entry (not its full path). */ void lilv_dir_for_each(const char* path, void* data, void (*f)(const char* path, const char* name, void* data)); /** Create a unique temporary directory in a specific directory. The last six characters of `pattern` must be `XXXXXX` and will be replaced with random characters. This works roughly like mkdtemp, except the pattern should only be a directory name, not a full path. The created path will be a child of the given parent directory. */ char* lilv_create_temporary_directory_in(const char* pattern, const char* parent); /** Create a unique temporary directory. This is like lilv_create_temporary_directory_in(), except it creates the directory in the system temporary directory. */ char* lilv_create_temporary_directory(const char* pattern); /** Create the directory `dir_path` and any parent directories if necessary. @return Zero on success, or an `errno` error code. */ int lilv_create_directories(const char* dir_path); /// Remove the file or empty directory at `path` int lilv_remove(const char* path); /// Return true iff the given paths point to files with identical contents bool lilv_file_equals(const char* a_path, const char* b_path);