]> Kevux Git Server - kevux-tools/commit
Progress: Continue working on completing the remove program.
authorKevin Day <Kevin@kevux.org>
Wed, 29 Jan 2025 04:24:47 +0000 (22:24 -0600)
committerKevin Day <Kevin@kevux.org>
Wed, 29 Jan 2025 05:51:43 +0000 (23:51 -0600)
commit45265e93ececfdea3bf85220fcbc76c3e9fec1a8
treec444548af3039201350961a6efeaf794f22bbfb1
parentaf94cf83e5f02bde3763b9249772e7b3bb4794d5
Progress: Continue working on completing the remove program.

Implement the prompt simulate message logic.
Change the "prompt all" to "prompt each".
Move link detection outside of the print function (which it probably should not have been there anyway) and perform the link detection during preprocessing.

The simulate function is renamed to preprocess.

Add a tree cache structure for building a distinct list of tree paths.
I may very likely need to sort this somehow.

The tree caching allows for dynamically building the tree list and allowing for the tree removal during a post process step.

I am trying to avoid excessive pre-processing loops.
I am currently thinking that the simulate can still handle the processing without a pre-process loop that organizes everything before the simulate.
There will need to be some sort of logic added to detect and ignore already deleted paths in cases where the same path appears multiple times.
14 files changed:
data/build/stand_alone/configs/remove-config.h
sources/c/program/kevux/tools/remove/main/common.c
sources/c/program/kevux/tools/remove/main/common/define.h
sources/c/program/kevux/tools/remove/main/common/print.c
sources/c/program/kevux/tools/remove/main/common/print.h
sources/c/program/kevux/tools/remove/main/common/string.c
sources/c/program/kevux/tools/remove/main/common/string.h
sources/c/program/kevux/tools/remove/main/common/type.c
sources/c/program/kevux/tools/remove/main/common/type.h
sources/c/program/kevux/tools/remove/main/operate.c
sources/c/program/kevux/tools/remove/main/operate.h
sources/c/program/kevux/tools/remove/main/print/message.c
sources/c/program/kevux/tools/remove/main/print/simulate.c
sources/c/program/kevux/tools/remove/main/print/simulate.h