]> Kevux Git Server - kevux-tools/commitdiff
Progress: Resume work on completing the remove program.
authorKevin Day <Kevin@kevux.org>
Thu, 16 Jan 2025 05:11:56 +0000 (23:11 -0600)
committerKevin Day <Kevin@kevux.org>
Thu, 16 Jan 2025 05:11:56 +0000 (23:11 -0600)
This may be simpler to complete than TacocaT.
Make a few improvements while reviewing the state of the code and trying to remember where to resume development.

I should try to wrap up the simulate function entirely as the starting point.

sources/c/program/kevux/tools/remove/main/common/define.h
sources/c/program/kevux/tools/remove/main/operate.c
sources/c/program/kevux/tools/remove/main/operate.h

index 0d0446f1ec22c05b1febca9d421292f4b0a98f6f..36317ba338b81e8e96c717a4aee640dd7a456091 100644 (file)
@@ -197,7 +197,7 @@ extern "C" {
  *   - changed:                Remove by changed datetime.
  *   - different:              Remove by user different from caller.
  *   - directory:              Remove by file type: directory.
- *   - empty_all:              All empty flag bits are combined.
+ *   - empty_all:              Helper flag representing all empty flag bits.
  *   - empty_only:             Remove empty directories.
  *   - empty_only_fail:        Fail on empty directories.
  *   - empty_not:              Remove not empty directories.
@@ -210,7 +210,7 @@ extern "C" {
  *   - link:                   Remove by file type: link.
  *   - mode:                   Remove by mode.
  *   - option_used:            This gets set when when certain options are specified to toggle the default match detection boolean during removal of each file.
- *   - prompt_all:             All prompt flag bits are combined.
+ *   - prompt_all:             Helper flag representing all prompt flag bits.
  *   - prompt_each:            Operate in interactive mode, prompting for every file.
  *   - prompt_follow:          Operate in interactive mode: prompting for every link that is being followed.
  *   - prompt_never:           Do not operate in interactive mode.
index 2f93405238e951a3cf93276035b464f08271adbb..c6c7fd57ee41d0984c149f111535dbeb373e56d4 100644 (file)
@@ -386,11 +386,12 @@ extern "C" {
 
     if (flag & kt_remove_flag_file_operate_directory_d) {
       kt_remove_print_simulate_operate_boolean(&main->program.output, kt_remove_recurse_s, flag & kt_remove_flag_file_operate_recurse_d);
-    }
 
-    if (flag & kt_remove_flag_file_operate_directory_d) {
       if (main->setting.flag & kt_remove_main_flag_empty_all_d) {
         // @todo handle simulate for this.
+        // 1. print the particular empty flags set.
+        // 2. determine if, when a directory, is empty or not.
+        // 3. print the empty or not state.
       }
 
       // Recurse effectively forces tree.
index afd062471be82118b2c12cc1a4dcecd1abb0845b..4f8c1d44ca34a7b242d0d26a39f8e1ca5e4c66bf 100644 (file)
@@ -145,7 +145,7 @@ extern "C" {
  * Perform simulation of the file operation.
  *
  * The simulation process is also intended to be used to determine what to do with the actual file.
- * A flag is populated based on the results of the simulation analysis.
+ * Therefore this should be called even when not simulating.
  *
  * @param main
  *   The main program and settings data.
@@ -162,7 +162,7 @@ extern "C" {
  *   The path to the file to operate on.
  *
  * @return
- *   The flags determined by the simulation.
+ *   The resulting flags determined by the simulation analysis.
  *
  * @see f_file_link_read()
  * @see f_file_remove()