diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-06-19 14:37:43 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-06-19 15:17:54 +0200 |
commit | 0135734e41046c051a018d6c5d97e1b6ea7638b5 (patch) | |
tree | 4c2c05a9355aab68b0157fd2d0bdbb165b33e4da /lib/fstree/add_by_path.c | |
parent | 19fbebec161c749e5bfe440e4514e2bc2d2ac3d4 (diff) |
Cleanup: split up fstree.c
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/fstree/add_by_path.c')
-rw-r--r-- | lib/fstree/add_by_path.c | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/lib/fstree/add_by_path.c b/lib/fstree/add_by_path.c new file mode 100644 index 0000000..2cd3b4a --- /dev/null +++ b/lib/fstree/add_by_path.c @@ -0,0 +1,82 @@ +/* SPDX-License-Identifier: GPL-3.0-or-later */ +#include "fstree.h" + +#include <string.h> +#include <errno.h> + +static tree_node_t *child_by_name(tree_node_t *root, const char *name, + size_t len) +{ + tree_node_t *n = root->data.dir->children; + + while (n != NULL) { + if (strncmp(n->name, name, len) == 0 && n->name[len] == '\0') + break; + + n = n->next; + } + + return n; +} + +static tree_node_t *get_parent_node(fstree_t *fs, tree_node_t *root, + const char *path) +{ + const char *end; + tree_node_t *n; + + for (;;) { + if (!S_ISDIR(root->mode)) { + errno = ENOTDIR; + return NULL; + } + + end = strchr(path, '/'); + if (end == NULL) + break; + + n = child_by_name(root, path, end - path); + + if (n == NULL) { + n = fstree_mknode(fs, root, path, end - path, NULL, + &fs->defaults); + if (n == NULL) + return NULL; + + n->data.dir->created_implicitly = true; + } + + root = n; + path = end + 1; + } + + return root; +} + +tree_node_t *fstree_add_generic(fstree_t *fs, const char *path, + const struct stat *sb, const char *extra) +{ + tree_node_t *child, *parent; + const char *name; + + parent = get_parent_node(fs, fs->root, path); + if (parent == NULL) + return NULL; + + name = strrchr(path, '/'); + name = (name == NULL ? path : (name + 1)); + + child = child_by_name(parent, name, strlen(name)); + if (child != NULL) { + if (!S_ISDIR(child->mode) || !S_ISDIR(sb->st_mode) || + !child->data.dir->created_implicitly) { + errno = EEXIST; + return NULL; + } + + child->data.dir->created_implicitly = false; + return child; + } + + return fstree_mknode(fs, parent, name, strlen(name), extra, sb); +} |