diff options
author | Joe <rbo@gmx.us> | 2023-12-28 20:20:20 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2023-12-28 20:20:20 +0100 |
commit | 7fb69d9134866a699047350b50dea17b416d20cf (patch) | |
tree | 7aa1bc6e98759deb5589cf4df06e27f71173031e /c_init.go | |
parent | its not the way (diff) | |
download | hardflip-7fb69d9134866a699047350b50dea17b416d20cf.tar.gz hardflip-7fb69d9134866a699047350b50dea17b416d20cf.tar.bz2 hardflip-7fb69d9134866a699047350b50dea17b416d20cf.tar.xz hardflip-7fb69d9134866a699047350b50dea17b416d20cf.tar.zst hardflip-7fb69d9134866a699047350b50dea17b416d20cf.zip |
did the test and items list doesnt take much more ram so idk
Diffstat (limited to 'c_init.go')
-rw-r--r-- | c_init.go | 46 |
1 files changed, 28 insertions, 18 deletions
@@ -61,32 +61,32 @@ type HardOpts struct { // this function recurses into the specified root directory in order to load // every yaml file into memory func c_recurse_data_dir(dir, root string, opts HardOpts, - litems *ItemsList, ldirs *DirsList, + litems *ItemsList, ldirs *DirsList, dir_node *DirsNode, id *uint64, name string, parent *DirsNode, depth uint16) { files, err := os.ReadDir(root + dir) if err != nil { c_die("could not read data directory", err) } - dir_node := DirsNode{ - *id, - name, - parent, - depth, - &HostList{}, - opts.FoldAll, - nil, - } - item_node := ItemsNode{} - item_node.Dirs = &dir_node - item_node.Host = nil + // dir_node := DirsNode{ + // *id, + // name, + // parent, + // depth, + // &HostList{}, + // opts.FoldAll, + // nil, + // } + // item_node := ItemsNode{} + // item_node.Dirs = dir_node + // item_node.Host = nil *id++ // ldirs.add_back(&dir_node) // litems.add_back(&item_node) for _, file := range files { filename := file.Name() if file.IsDir() == true { - c_recurse_data_dir(dir + filename + "/", root, opts, litems, ldirs, - id, file.Name(), &dir_node, depth + 1) + c_recurse_data_dir(dir + filename + "/", root, opts, litems, ldirs, dir_node, + id, file.Name(), dir_node, depth + 1) } else if filepath.Ext(filename) == ".yml" { host_node := c_read_yaml_file(root + dir + filename) if host_node == nil { @@ -95,10 +95,10 @@ func c_recurse_data_dir(dir, root string, opts HardOpts, item_node := ItemsNode{} item_node.Dirs = nil item_node.Host = host_node + litems.add_back(&item_node) host_node.Filename = filename - host_node.Dir = &dir_node + host_node.Dir = dir_node dir_node.lhost.add_back(host_node) - // litems.add_back(&item_node) } } } @@ -108,7 +108,17 @@ func c_load_data_dir(dir string, opts HardOpts) (*ItemsList, *DirsList) { ldirs := DirsList{} var id uint64 + dir_node := DirsNode{ + 0, + "qwe", + nil, + 0, + &HostList{}, + opts.FoldAll, + nil, + } + ldirs.add_back(&dir_node) id = 0 - c_recurse_data_dir("", dir + "/", opts, &litems, &ldirs, &id, "", nil, 1) + c_recurse_data_dir("", dir + "/", opts, &litems, &ldirs, &dir_node, &id, "", nil, 1) return &litems, &ldirs } |