X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fbasic%2Fpath-util.h;h=72edda8182588e49e0e247f5ab467e913265e6f7;hp=90b405dc84ba2cffab83855cb0ec7fde7e58652d;hb=6917418372a990fbfe9a39864ccefacb37c70cc8;hpb=c286398e07a7a16aa88a3437318cb2edf8c082c1 diff --git a/src/basic/path-util.h b/src/basic/path-util.h index 90b405dc8..72edda818 100644 --- a/src/basic/path-util.h +++ b/src/basic/path-util.h @@ -36,33 +36,43 @@ #endif bool is_path(const char *p) _pure_; -// UNNEEDED char** path_split_and_make_absolute(const char *p); -int path_get_parent(const char *path, char **parent); +/// UNNEEDED by elogind +#if 0 +int path_split_and_make_absolute(const char *p, char ***ret); +#endif // 0 bool path_is_absolute(const char *p) _pure_; +/// UNNEEDED by elogind +#if 0 char* path_make_absolute(const char *p, const char *prefix); -char* path_make_absolute_cwd(const char *p); -// UNNEEDED int path_make_relative(const char *from_dir, const char *to_path, char **_r); +#endif // 0 +int path_make_absolute_cwd(const char *p, char **ret); +/// UNNEEDED by elogind +#if 0 +int path_make_relative(const char *from_dir, const char *to_path, char **_r); +#endif // 0 char* path_kill_slashes(char *path); char* path_startswith(const char *path, const char *prefix) _pure_; int path_compare(const char *a, const char *b) _pure_; bool path_equal(const char *a, const char *b) _pure_; -// UNNEEDED bool path_equal_or_files_same(const char *a, const char *b); -// UNNEEDED char* path_join(const char *root, const char *path, const char *rest); +bool path_equal_or_files_same(const char *a, const char *b); +/// UNNEEDED by elogind +#if 0 +char* path_join(const char *root, const char *path, const char *rest); -char** path_strv_make_absolute_cwd(char **l); +int path_strv_make_absolute_cwd(char **l); +#endif // 0 char** path_strv_resolve(char **l, const char *prefix); char** path_strv_resolve_uniq(char **l, const char *prefix); -int fd_is_mount_point(int fd, const char *filename, int flags); -int path_is_mount_point(const char *path, int flags); -int path_is_read_only_fs(const char *path); -// UNNEEDED int path_is_os_tree(const char *path); +/// UNNEEDED by elogind +#if 0 +int find_binary(const char *name, char **filename); -// UNNEEDED int find_binary(const char *name, bool local, char **filename); +bool paths_check_timestamp(const char* const* paths, usec_t *paths_ts_usec, bool update); -// UNNEEDED bool paths_check_timestamp(const char* const* paths, usec_t *paths_ts_usec, bool update); - -// UNNEEDED int fsck_exists(const char *fstype); +int fsck_exists(const char *fstype); +int mkfs_exists(const char *fstype); +#endif // 0 /* Iterates through the path prefixes of the specified path, going up * the tree, to root. Also returns "" (and not "/"!) for the root @@ -74,7 +84,7 @@ int path_is_read_only_fs(const char *path); #define PATH_FOREACH_PREFIX_MORE(prefix, path) \ for (char *_slash = ({ path_kill_slashes(strcpy(prefix, path)); if (streq(prefix, "/")) prefix[0] = 0; strrchr(prefix, 0); }); _slash && ((*_slash = 0), true); _slash = strrchr((prefix), '/')) -// UNNEEDED char *prefix_root(const char *root, const char *path); +char *prefix_root(const char *root, const char *path); /* Similar to prefix_root(), but returns an alloca() buffer, or * possibly a const pointer into the path parameter */ @@ -100,3 +110,23 @@ int path_is_read_only_fs(const char *path); } \ _ret; \ }) + +/// UNNEEDED by elogind +#if 0 +int parse_path_argument_and_warn(const char *path, bool suppress_root, char **arg); +#endif // 0 + +char* dirname_malloc(const char *path); + +bool filename_is_valid(const char *p) _pure_; +bool path_is_safe(const char *p) _pure_; + +char *file_in_same_dir(const char *path, const char *filename); + +bool hidden_file_allow_backup(const char *filename); +bool hidden_file(const char *filename) _pure_; + +/// UNNEEDED by elogind +#if 0 +bool is_device_path(const char *path); +#endif // 0