]> Kevux Git Server - kevux-tools/commit
Progress: Continue working on completing the remove program.
authorKevin Day <Kevin@kevux.org>
Mon, 10 Mar 2025 03:22:43 +0000 (22:22 -0500)
committerKevin Day <Kevin@kevux.org>
Mon, 10 Mar 2025 03:37:30 +0000 (22:37 -0500)
commit5f374d8209a34a0d2a786c5df9eb7a5c77fa9002
treeaf8f0ee67ba8822ecda155c1a47d620d61d1814c
parentcf7ad88181c8213d401d9af6208062e82d741e28
Progress: Continue working on completing the remove program.

I discovered that the `fl_directory_do()` could use some improvements while working on this.
Those changes are now made in the FLL project.
Make changes to this project based on the `fl_directory_do()` updates.

I began writing some tests and I encountered several problems and concerns that side-tracked me.

Rename the `kt_remove_operate_file_recurse()` to `kt_remove_operate_file_directory()`.
This should make its design and purpose more clear.

Make sure that the recurse status is processed in the proper order for the file operation directory.
Fix the problem where the recursion is being performed even when the recurse flag is not set.
Add checks to see if the directory is empty or not before deleting when recursion is not enabled.
The flag (called code in this case) needs to accurately reflect the directory status of the file during recursion.
Make sure the recurse error handler uses the top path or the recurse path as appropriate.

Print debug messages before recursion begins.

Add missing `f_status_t` return states to several print functions.
I did not do an exhaustive look (I imagine the TacocaT program needs similar changes).
Fix problems where the program output is being used for the print functions rather than the print output.

The runtime unit tests do not work correctly because the standard outputs are being closed.
Add additional ifdef checks to prevent the set down functions from being called.
26 files changed:
data/build/remove/settings
data/build/remove/settings-mocks.remove
data/build/remove/settings-objects
data/build/remove/settings-tests.remove
documents/readme.txt
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/operate.c
sources/c/program/kevux/tools/remove/main/operate.h
sources/c/program/kevux/tools/remove/main/preprocess.c
sources/c/program/kevux/tools/remove/main/preprocess.h
sources/c/program/kevux/tools/remove/main/print/debug.c [new file with mode: 0644]
sources/c/program/kevux/tools/remove/main/print/debug.h [new file with mode: 0644]
sources/c/program/kevux/tools/remove/main/print/simulate.c
sources/c/program/kevux/tools/remove/main/print/simulate.h
sources/c/program/kevux/tools/remove/main/print/verbose.c
sources/c/program/kevux/tools/remove/main/print/verbose.h
sources/c/program/kevux/tools/remove/main/remove.h
sources/c/program/kevux/tools/remove/remove/main.c
tests/unit/remove/c/mock-remove.c
tests/unit/remove/c/mock-remove.h
tests/unit/remove/c/test-remove-print_version.h
tests/unit/remove/c/test-remove-regular_no_args.c [new file with mode: 0644]
tests/unit/remove/c/test-remove-regular_no_args.h [new file with mode: 0644]
tests/unit/remove/c/test-remove.c
tests/unit/remove/c/test-remove.h