diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-12-18 15:55:03 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-12-18 15:55:03 +0100 |
commit | 2777dfe050359c359233b2f00dfb5c3b2dba4ed6 (patch) | |
tree | e120ef9c10295c74dc8c3ec6dfa39aaa665e7f6b /lib/fstree/gen_file_list.c | |
parent | caf350448c0020f95b9bfdd65770d86faf548549 (diff) |
Cleanup: merge the fstree post processing functions
Instead of having 3 different functions for sorting the tree, numbering
the nodes and generating a file list, that all have to be used in the
right order, this commit merges them into a single "fstree_post_process"
function.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'lib/fstree/gen_file_list.c')
-rw-r--r-- | lib/fstree/gen_file_list.c | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/lib/fstree/gen_file_list.c b/lib/fstree/gen_file_list.c deleted file mode 100644 index f20c131..0000000 --- a/lib/fstree/gen_file_list.c +++ /dev/null @@ -1,43 +0,0 @@ -/* SPDX-License-Identifier: GPL-3.0-or-later */ -/* - * gen_file_list.c - * - * Copyright (C) 2019 David Oberhollenzer <goliath@infraroot.at> - */ -#include "config.h" -#include "fstree.h" - -static file_info_t *file_list_dfs(tree_node_t *n) -{ - if (S_ISREG(n->mode)) { - n->data.file.next = NULL; - return &n->data.file; - } - - if (S_ISDIR(n->mode)) { - file_info_t *list = NULL, *last = NULL; - - for (n = n->data.dir.children; n != NULL; n = n->next) { - if (list == NULL) { - list = file_list_dfs(n); - if (list == NULL) - continue; - last = list; - } else { - last->next = file_list_dfs(n); - } - - while (last->next != NULL) - last = last->next; - } - - return list; - } - - return NULL; -} - -void fstree_gen_file_list(fstree_t *fs) -{ - fs->files = file_list_dfs(fs->root); -} |