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=cdb194d2a34bb3a02e7ae6b4984be6c394e37726;hp=5e6e3db899ab0071b7b2d58dbde987982d8919b2;hb=f7afdbbb986bed7022976612a740027697ce93ec;hpb=1cfc78c91965df340cdde100ad6cb3ed50b28927 diff --git a/src/basic/path-util.h b/src/basic/path-util.h index 5e6e3db89..cdb194d2a 100644 --- a/src/basic/path-util.h +++ b/src/basic/path-util.h @@ -1,5 +1,3 @@ -/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ - #pragma once /*** @@ -21,7 +19,9 @@ along with systemd; If not, see . ***/ +#include #include +#include #include "macro.h" #include "time-util.h" @@ -36,33 +36,57 @@ #endif bool is_path(const char *p) _pure_; -char** path_split_and_make_absolute(const char *p); -int path_get_parent(const char *path, char **parent); +#if 0 /// UNNEEDED by elogind +int path_split_and_make_absolute(const char *p, char ***ret); +#endif // 0 bool path_is_absolute(const char *p) _pure_; +#if 0 /// UNNEEDED by elogind 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); +#if 0 /// UNNEEDED by elogind +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_; bool path_equal_or_files_same(const char *a, const char *b); +#if 0 /// UNNEEDED by elogind char* path_join(const char *root, const char *path, const char *rest); -char** path_strv_make_absolute_cwd(char **l); +static inline bool path_equal_ptr(const char *a, const char *b) { + return !!a == !!b && (!a || path_equal(a, b)); +} +#endif // 0 + +/* Note: the search terminates on the first NULL item. */ +#define PATH_IN_SET(p, ...) \ + ({ \ + char **s; \ + bool _found = false; \ + STRV_FOREACH(s, STRV_MAKE(__VA_ARGS__)) \ + if (path_equal(p, *s)) { \ + _found = true; \ + break; \ + } \ + _found; \ + }) + +#if 0 /// UNNEEDED by elogind +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); -int path_is_os_tree(const char *path); +#if 0 /// UNNEEDED by elogind +int find_binary(const char *name, char **filename); -int find_binary(const char *name, bool local, char **filename); - -// UNNEEDED bool paths_check_timestamp(const char* const* paths, usec_t *paths_ts_usec, bool update); +bool paths_check_timestamp(const char* const* paths, usec_t *paths_ts_usec, bool update); 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 @@ -100,3 +124,23 @@ char *prefix_root(const char *root, const char *path); } \ _ret; \ }) + +#if 0 /// UNNEEDED by elogind +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_or_backup_file(const char *filename) _pure_; + +#if 0 /// UNNEEDED by elogind +bool is_device_path(const char *path); +#endif // 0 +bool is_deviceallow_pattern(const char *path); + +int systemd_installation_has_version(const char *root, unsigned minimal_version);