]> Kevux Git Server - kevux-tools/commitdiff
Progress: Continue working on completing the remove program.
authorKevin Day <Kevin@kevux.org>
Sun, 30 Mar 2025 03:12:49 +0000 (22:12 -0500)
committerKevin Day <Kevin@kevux.org>
Sun, 30 Mar 2025 03:12:49 +0000 (22:12 -0500)
Implement most of the `rm` program.
There are some remaining details and I need to also test the program.

Move some of the repeated setup code into `kt_remove_setting_load_standard()`.

Add the initial settings needed to support the `--preserve-root` and `--presserve-root-not` support via the newly added `root` flag.
This work is not yet implemented and needs to be completed.

Add support for all programs to return `2` instead of `1` when `F_support_not` is an error return to the main program.
I might end up applying this behavior to all of my FLL and related programs.

The `rm` program in particular has the `--` being manually processed.
I figured given the simple nature of this program that it would be easier to manually pre-process than to utilize the custom callbacks supported by the `f_console_parameter_process()`.

22 files changed:
data/build/fakefile
sources/c/program/kevux/tools/remove/main/common.c
sources/c/program/kevux/tools/remove/main/common.h
sources/c/program/kevux/tools/remove/main/common/define.h
sources/c/program/kevux/tools/remove/main/print/message.c
sources/c/program/kevux/tools/remove/remove/main.c
sources/c/program/kevux/tools/remove/rm/enumeration.h
sources/c/program/kevux/tools/remove/rm/main.c
sources/c/program/kevux/tools/remove/rm/print.c
sources/c/program/kevux/tools/remove/rm/print.h
sources/c/program/kevux/tools/remove/rm/rm.c
sources/c/program/kevux/tools/remove/rm/rm.h
sources/c/program/kevux/tools/remove/rm/string.c
sources/c/program/kevux/tools/remove/rm/string.h
sources/c/program/kevux/tools/remove/rmdir/main.c
sources/c/program/kevux/tools/remove/rmdir/print.c
sources/c/program/kevux/tools/remove/rmdir/rmdir.c
sources/c/program/kevux/tools/remove/rmdir/rmdir.h
sources/c/program/kevux/tools/remove/rmdir/string.h
sources/c/program/kevux/tools/remove/unlink/main.c
sources/c/program/kevux/tools/remove/unlink/unlink.c
sources/c/program/kevux/tools/remove/unlink/unlink.h

index 2b57ba467bf28bba7390ff37fa2f4af66fef8af6..ee821f926f06690ed87d6865df8348efc4637643 100644 (file)
@@ -14,6 +14,7 @@ main:
 remove:
   build remove/settings
   build remove/settings.remove
+  build remove/settings.rm
   build remove/settings.rmdir
   build remove/settings.unlink
 
index 679551e3b98bc653776687419f69bcde58e68a26..7f1dde742e155d9c05bbdf97c7a211298b96e125 100644 (file)
@@ -9,57 +9,8 @@ extern "C" {
 
     if (!main) return;
 
-    main->setting.flag &= ~kt_remove_main_flag_option_used_d;
-
-    main->setting.state.step_small = kt_remove_allocation_console_d;
-
-    f_console_parameter_process(arguments, &main->program.parameters, &main->setting.state, 0);
-
-    main->setting.state.step_small = kt_remove_allocation_small_d;
-
-    if (F_status_is_error(main->setting.state.status)) {
-      kt_remove_print_error(&main->program.error, macro_kt_remove_f(f_console_parameter_process));
-
-      return;
-    }
-
-    {
-      f_uint16s_t choices = f_uint16s_t_initialize;
-
-      // Identify and prioritize "color context" parameters.
-      {
-        uint16_t choices_array[3] = { f_console_standard_parameter_no_color_e, f_console_standard_parameter_light_e, f_console_standard_parameter_dark_e };
-        choices.array = choices_array;
-        choices.used = 3;
-
-        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
-
-        main->setting.state.status = fll_program_parameter_process_context(choices, modes, F_true, &main->program);
-
-        if (F_status_is_error(main->setting.state.status)) {
-          kt_remove_print_error(&main->program.error, macro_kt_remove_f(fll_program_parameter_process_context));
-
-          return;
-        }
-      }
-
-      // Identify and prioritize "verbosity" parameters.
-      {
-        uint16_t choices_array[5] = { f_console_standard_parameter_verbosity_quiet_e, f_console_standard_parameter_verbosity_error_e, f_console_standard_parameter_verbosity_verbose_e, f_console_standard_parameter_verbosity_debug_e, f_console_standard_parameter_verbosity_normal_e };
-        choices.array = choices_array;
-        choices.used = 5;
-
-        const uint8_t verbosity[5] = { f_console_verbosity_quiet_e, f_console_verbosity_error_e, f_console_verbosity_verbose_e, f_console_verbosity_debug_e, f_console_verbosity_normal_e };
-
-        main->setting.state.status = fll_program_parameter_process_verbosity(choices, verbosity, F_true, &main->program);
-
-        if (F_status_is_error(main->setting.state.status)) {
-          kt_remove_print_error(&main->program.error, macro_kt_remove_f(fll_program_parameter_process_verbosity));
-
-          return;
-        }
-      }
-    }
+    kt_remove_setting_load_standard(arguments, main);
+    if (F_status_is_error(main->setting.state.status)) return;
 
     f_number_unsigned_t i = 0;
     f_number_unsigned_t index = 0;
@@ -69,20 +20,6 @@ extern "C" {
 
     uint8_t j = 0;
 
-    main->setting.flag &= ~kt_remove_main_flag_version_copyright_help_d;
-
-    if (main->program.parameters.array[f_console_standard_parameter_help_e].result & f_console_result_found_e) {
-      main->setting.flag |= kt_remove_main_flag_help_d;
-    }
-
-    if (main->program.parameters.array[f_console_standard_parameter_version_e].result & f_console_result_found_e) {
-      main->setting.flag |= kt_remove_main_flag_version_d;
-    }
-
-    if (main->program.parameters.array[f_console_standard_parameter_copyright_e].result & f_console_result_found_e) {
-      main->setting.flag |= kt_remove_main_flag_copyright_d;
-    }
-
     if (main->program.parameters.array[kt_remove_parameter_block_e].result & f_console_result_found_e) {
       main->setting.flag |= kt_remove_main_flag_block_d | kt_remove_main_flag_option_used_d;
     }
@@ -625,6 +562,77 @@ extern "C" {
   }
 #endif // _di_kt_remove_setting_load_id_
 
+#ifndef _di_kt_remove_setting_load_standard_
+  void kt_remove_setting_load_standard(const f_console_arguments_t arguments, kt_remove_main_t * const main) {
+
+    if (!main) return;
+
+    main->setting.flag &= ~kt_remove_main_flag_option_used_d;
+
+    main->setting.state.step_small = kt_remove_allocation_console_d;
+
+    f_console_parameter_process(arguments, &main->program.parameters, &main->setting.state, 0);
+
+    main->setting.state.step_small = kt_remove_allocation_small_d;
+
+    if (F_status_is_error(main->setting.state.status)) {
+      kt_remove_print_error(&main->program.error, macro_kt_remove_f(f_console_parameter_process));
+
+      return;
+    }
+
+    {
+      f_uint16s_t choices = f_uint16s_t_initialize;
+
+      // Identify and prioritize "color context" parameters.
+      {
+        uint16_t choices_array[3] = { f_console_standard_parameter_no_color_e, f_console_standard_parameter_light_e, f_console_standard_parameter_dark_e };
+        choices.array = choices_array;
+        choices.used = 3;
+
+        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+
+        main->setting.state.status = fll_program_parameter_process_context(choices, modes, F_true, &main->program);
+
+        if (F_status_is_error(main->setting.state.status)) {
+          kt_remove_print_error(&main->program.error, macro_kt_remove_f(fll_program_parameter_process_context));
+
+          return;
+        }
+      }
+
+      // Identify and prioritize "verbosity" parameters.
+      {
+        uint16_t choices_array[5] = { f_console_standard_parameter_verbosity_quiet_e, f_console_standard_parameter_verbosity_error_e, f_console_standard_parameter_verbosity_verbose_e, f_console_standard_parameter_verbosity_debug_e, f_console_standard_parameter_verbosity_normal_e };
+        choices.array = choices_array;
+        choices.used = 5;
+
+        const uint8_t verbosity[5] = { f_console_verbosity_quiet_e, f_console_verbosity_error_e, f_console_verbosity_verbose_e, f_console_verbosity_debug_e, f_console_verbosity_normal_e };
+
+        main->setting.state.status = fll_program_parameter_process_verbosity(choices, verbosity, F_true, &main->program);
+
+        if (F_status_is_error(main->setting.state.status)) {
+          kt_remove_print_error(&main->program.error, macro_kt_remove_f(fll_program_parameter_process_verbosity));
+        }
+      }
+    }
+
+    main->setting.flag &= ~kt_remove_main_flag_version_copyright_help_d;
+
+    if (main->program.parameters.array[f_console_standard_parameter_help_e].result & f_console_result_found_e) {
+      main->setting.flag |= kt_remove_main_flag_help_d;
+    }
+
+    if (main->program.parameters.array[f_console_standard_parameter_version_e].result & f_console_result_found_e) {
+      main->setting.flag |= kt_remove_main_flag_version_d;
+    }
+
+    if (main->program.parameters.array[f_console_standard_parameter_copyright_e].result & f_console_result_found_e) {
+      main->setting.flag |= kt_remove_main_flag_copyright_d;
+    }
+  }
+#endif // _di_kt_remove_setting_load_standard_
+
 #ifdef __cplusplus
 } // extern "C"
 #endif
index bed82c0d6028072345bfc8f3bf11e62c94ebb055..3cf4ba51a3f9b8bacdca798a983b53953ffbaa55 100644 (file)
@@ -88,6 +88,39 @@ extern "C" {
   extern void kt_remove_setting_load_id(kt_remove_main_t * const main, f_console_parameter_t * const parameter, f_ids_t * const ids, const f_string_static_t name, const uint64_t flag, const uint8_t is_user);
 #endif // _di_kt_remove_setting_load_id_
 
+/**
+ * Perform the standard program setting load process, specifically handling the FLL standard parameters.
+ *
+ * This prints error messages as appropriate.
+ *
+ * @param arguments
+ *   The parameters passed to the process (often referred to as command line arguments).
+ * @param main
+ *   The main program and settings data.
+ *
+ *   The setting.flag has kt_remove_flag_option_used_d forcibly cleared on the start of this function.
+ *   Other settings may be changed by this function so be sure to apply any special modifications after calling this rather than before.
+ *
+ *   Must not be NULL.
+ *
+ *   This alters setting.status:
+ *     F_okay on success.
+ *     F_data_not on success but nothing was provided to operate with.
+ *
+ *     F_parameter (with error bit) on parameter error.
+ *
+ *     Errors (with error bit) from: f_console_parameter_process().
+ *     Errors (with error bit) from: fll_program_parameter_process_context().
+ *     Errors (with error bit) from: fll_program_parameter_process_verbosity().
+ *
+ * @see f_console_parameter_process()
+ * @see fll_program_parameter_process_context()
+ * @see fll_program_parameter_process_verbosity()
+ */
+#ifndef _di_kt_remove_setting_load_standard_
+  extern void kt_remove_setting_load_standard(const f_console_arguments_t arguments, kt_remove_main_t * const main);
+#endif // _di_kt_remove_setting_load_standard_
+
 #ifdef __cplusplus
 } // extern "C"
 #endif
index 379ccac61e9bcba05d34ed6a455f17ecb2b4206a..1a077c072cc6b2f281f3fd21dfb1244b2b09a99e 100644 (file)
@@ -216,90 +216,94 @@ extern "C" {
  * Flags passed to the main function or program.
  *
  * kt_remove_main_flag_*_d:
- *   - none:                     No flags set.
- *   - accessed:                 Remove by last accessed datetime.
- *   - accessed_changed_updated: A helper flag representing accessed, changed, and updated flag bits being set.
- *   - block:                    Remove by file type: block.
- *   - changed:                  Remove by changed datetime.
- *   - character:                Remove by file type: character.
- *   - copyright:                Print copyright.
- *   - different:                Remove by user different from caller.
- *   - directory:                Remove by file type: directory.
- *   - 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.
- *   - empty_not_fail:           Fail on not empty directories.
- *   - fifo:                     Remove by file type: FIFO.
- *   - follow:                   Follow symbolic links for deleting the file being pointed to rather than the link itself (when not set the link itself is deleted).
- *   - force:                    Forcibly delete.
- *   - force_simulate:           A helper flag representing force and simulate flag bits being set.
- *   - group:                    Remove by GID.
- *   - help:                     Print help.
- *   - link:                     Remove by file type: link.
- *   - mode:                     Remove by mode.
- *   - option_used:              Designates that type match options are in use, overriding the default behavior.
- *   - 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.
- *   - prompt_once:              Operate in interactive mode: prompting once if removing 3 or more files or when operating recursively.
- *   - recurse:                  Recurse directories.
- *   - regular:                  Remove by file type: regular.
- *   - remember:                 Enable remembering paths already processed.
- *   - same:                     Remove by same user as caller.
- *   - simulate:                 Do not actually perform deletes, instead print messages (when silent, should still return 0 or 1).
- *   - socket:                   Remove by file type: socket.
- *   - tree:                     Remove directory tree (parent directories) (remove a/b/c, removes a/b/c, then a/b/, then a).
- *   - updated:                  Remove by last updated datetime.
- *   - user:                     Remove by UID.
- *   - unknown:                  Remove by file type: unknown.
- *   - utc:                      Process dates in UTC mode.
- *   - version:                  Print version.
- *   - version_copyright_help:   A helper flag representing version, copyright, and help flag bits being set.
+ *   - none:                        No flags set.
+ *   - accessed:                    Remove by last accessed datetime.
+ *   - accessed_changed_updated:    A helper flag representing accessed, changed, and updated flag bits being set.
+ *   - block:                       Remove by file type: block.
+ *   - changed:                     Remove by changed datetime.
+ *   - character:                   Remove by file type: character.
+ *   - copyright:                   Print copyright.
+ *   - different:                   Remove by user different from caller.
+ *   - directory:                   Remove by file type: directory.
+ *   - 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.
+ *   - empty_not_fail:              Fail on not empty directories.
+ *   - fifo:                        Remove by file type: FIFO.
+ *   - file_types_except_directory: A helper flag representing all file types except for the directory type.
+ *   - follow:                      Follow symbolic links for deleting the file being pointed to rather than the link itself (when not set the link itself is deleted).
+ *   - force:                       Forcibly delete.
+ *   - force_simulate:              A helper flag representing force and simulate flag bits being set.
+ *   - group:                       Remove by GID.
+ *   - help:                        Print help.
+ *   - link:                        Remove by file type: link.
+ *   - mode:                        Remove by mode.
+ *   - option_used:                 Designates that type match options are in use, overriding the default behavior.
+ *   - 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.
+ *   - prompt_once:                 Operate in interactive mode: prompting once if removing 3 or more files or when operating recursively.
+ *   - recurse:                     Recurse directories.
+ *   - regular:                     Remove by file type: regular.
+ *   - remember:                    Enable remembering paths already processed.
+ *   - root:                        Allow for deleting root directory (Dangerous!).
+ *   - same:                        Remove by same user as caller.
+ *   - simulate:                    Do not actually perform deletes, instead print messages (when silent, should still return 0 or 1).
+ *   - socket:                      Remove by file type: socket.
+ *   - tree:                        Remove directory tree (parent directories) (remove a/b/c, removes a/b/c, then a/b/, then a).
+ *   - updated:                     Remove by last updated datetime.
+ *   - user:                        Remove by UID.
+ *   - unknown:                     Remove by file type: unknown.
+ *   - utc:                         Process dates in UTC mode.
+ *   - version:                     Print version.
+ *   - version_copyright_help:      A helper flag representing version, copyright, and help flag bits being set.
  */
 #ifndef _di_kt_remove_main_flag_d_
-  #define kt_remove_main_flag_none_d                     0x0
-  #define kt_remove_main_flag_accessed_d                 0x1
-  #define kt_remove_main_flag_accessed_changed_updated_d 0x40000005
-  #define kt_remove_main_flag_block_d                    0x2
-  #define kt_remove_main_flag_changed_d                  0x4
-  #define kt_remove_main_flag_character_d                0x8
-  #define kt_remove_main_flag_copyright_d                0x10
-  #define kt_remove_main_flag_different_d                0x20
-  #define kt_remove_main_flag_directory_d                0x40
-  #define kt_remove_main_flag_empty_all_d                0x780
-  #define kt_remove_main_flag_empty_only_d               0x80
-  #define kt_remove_main_flag_empty_only_fail_d          0x100
-  #define kt_remove_main_flag_empty_not_d                0x200
-  #define kt_remove_main_flag_empty_not_fail_d           0x400
-  #define kt_remove_main_flag_fifo_d                     0x800
-  #define kt_remove_main_flag_follow_d                   0x1000
-  #define kt_remove_main_flag_force_d                    0x2000
-  #define kt_remove_main_flag_force_simulate_d           0x8002000
-  #define kt_remove_main_flag_group_d                    0x4000
-  #define kt_remove_main_flag_help_d                     0x8000
-  #define kt_remove_main_flag_link_d                     0x10000
-  #define kt_remove_main_flag_mode_d                     0x20000
-  #define kt_remove_main_flag_option_used_d              0x40000
-  #define kt_remove_main_flag_prompt_all_d               0x780000
-  #define kt_remove_main_flag_prompt_each_d              0x80000
-  #define kt_remove_main_flag_prompt_follow_d            0x100000
-  #define kt_remove_main_flag_prompt_never_d             0x200000
-  #define kt_remove_main_flag_prompt_once_d              0x400000
-  #define kt_remove_main_flag_recurse_d                  0x800000
-  #define kt_remove_main_flag_regular_d                  0x1000000
-  #define kt_remove_main_flag_remember_d                 0x2000000
-  #define kt_remove_main_flag_same_d                     0x4000000
-  #define kt_remove_main_flag_simulate_d                 0x8000000
-  #define kt_remove_main_flag_socket_d                   0x10000000
-  #define kt_remove_main_flag_tree_d                     0x20000000
-  #define kt_remove_main_flag_updated_d                  0x40000000
-  #define kt_remove_main_flag_user_d                     0x80000000
-  #define kt_remove_main_flag_unknown_d                  0x100000000
-  #define kt_remove_main_flag_utc_d                      0x200000000
-  #define kt_remove_main_flag_version_d                  0x400000000
-  #define kt_remove_main_flag_version_copyright_help_d   0x400008010
+  #define kt_remove_main_flag_none_d                        0x0
+  #define kt_remove_main_flag_accessed_d                    0x1
+  #define kt_remove_main_flag_accessed_changed_updated_d    0x80000005
+  #define kt_remove_main_flag_block_d                       0x2
+  #define kt_remove_main_flag_changed_d                     0x4
+  #define kt_remove_main_flag_character_d                   0x8
+  #define kt_remove_main_flag_copyright_d                   0x10
+  #define kt_remove_main_flag_different_d                   0x20
+  #define kt_remove_main_flag_directory_d                   0x40
+  #define kt_remove_main_flag_empty_all_d                   0x780
+  #define kt_remove_main_flag_empty_only_d                  0x80
+  #define kt_remove_main_flag_empty_only_fail_d             0x100
+  #define kt_remove_main_flag_empty_not_d                   0x200
+  #define kt_remove_main_flag_empty_not_fail_d              0x400
+  #define kt_remove_main_flag_fifo_d                        0x800
+  #define kt_remove_main_flag_file_types_except_directory_d 0x2101080a
+  #define kt_remove_main_flag_follow_d                      0x1000
+  #define kt_remove_main_flag_force_d                       0x2000
+  #define kt_remove_main_flag_force_simulate_d              0x10002000
+  #define kt_remove_main_flag_group_d                       0x4000
+  #define kt_remove_main_flag_help_d                        0x8000
+  #define kt_remove_main_flag_link_d                        0x10000
+  #define kt_remove_main_flag_mode_d                        0x20000
+  #define kt_remove_main_flag_option_used_d                 0x40000
+  #define kt_remove_main_flag_prompt_all_d                  0x780000
+  #define kt_remove_main_flag_prompt_each_d                 0x80000
+  #define kt_remove_main_flag_prompt_follow_d               0x100000
+  #define kt_remove_main_flag_prompt_never_d                0x200000
+  #define kt_remove_main_flag_prompt_once_d                 0x400000
+  #define kt_remove_main_flag_recurse_d                     0x800000
+  #define kt_remove_main_flag_regular_d                     0x1000000
+  #define kt_remove_main_flag_remember_d                    0x2000000
+  #define kt_remove_main_flag_root_d                        0x4000000
+  #define kt_remove_main_flag_same_d                        0x8000000
+  #define kt_remove_main_flag_simulate_d                    0x10000000
+  #define kt_remove_main_flag_socket_d                      0x20000000
+  #define kt_remove_main_flag_tree_d                        0x40000000
+  #define kt_remove_main_flag_updated_d                     0x80000000
+  #define kt_remove_main_flag_user_d                        0x100000000
+  #define kt_remove_main_flag_unknown_d                     0x200000000
+  #define kt_remove_main_flag_utc_d                         0x400000000
+  #define kt_remove_main_flag_version_d                     0x800000000
+  #define kt_remove_main_flag_version_copyright_help_d      0x800008010
 #endif // _di_kt_remove_main_flag_e_
 
 /**
index 5deb8ba408f4e3582c2a5ec5ac487320607c9956..2023e0986d1d78741578713ec7cd79665b6e1477 100644 (file)
@@ -39,7 +39,7 @@ extern "C" {
     fll_program_print_help_option(print, kt_remove_short_link_s, kt_remove_long_link_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "     Remove by file type of link.");
     fll_program_print_help_option(print, kt_remove_short_mode_s, kt_remove_long_mode_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "     Remove by file mode.");
     fll_program_print_help_option(print, kt_remove_short_prompt_s, kt_remove_long_prompt_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "   Prompt before removing.");
-    fll_program_print_help_option(print, kt_remove_short_recurse_s, kt_remove_long_recurse_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "  Traverse into sub-directories when removing.");
+    fll_program_print_help_option(print, kt_remove_short_recurse_s, kt_remove_long_recurse_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "  Traverse into directories when removing.");
     fll_program_print_help_option(print, kt_remove_short_regular_s, kt_remove_long_regular_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "  Remove by file type of regular.");
     fll_program_print_help_option(print, kt_remove_short_same_s, kt_remove_long_same_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "     Remove by file owner by the current calling user.");
     fll_program_print_help_option(print, kt_remove_short_simulate_s, kt_remove_long_simulate_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, " Simulate removal rather than actually removing.");
index f6b094042108602289275119fb7cdb683e1c31c2..23bbde3637cb0cf87f93bee3ad05da64826dbbf4 100644 (file)
@@ -94,7 +94,11 @@ int
     fll_program_standard_set_down(&data.program);
   #endif // _kt_MOCK_MAIN_NAME
 
-  return (F_status_is_error(data.setting.state.status) || data.setting.state.status == F_false) ? 1 : 0;
+  if (F_status_is_error(data.setting.state.status)) {
+    return F_status_set_fine(data.setting.state.status) == F_support_not ? 2 : 1;
+  }
+
+  return data.setting.state.status == F_false ? 1 : 0;
 }
 
 #ifdef __cplusplus
index 8b229306193d63f8e872876e004be55683e749a6..e9f7c1227026c9e32fdcba17687a3538d8457033 100644 (file)
@@ -22,13 +22,15 @@ extern "C" {
 #ifndef _di_kt_remove_rm_parameter_e_
   enum {
     kt_remove_rm_parameter_directory_e = f_console_standard_parameter_last_e,
-    kt_remove_rm_parameter_each_e, // -i
+    kt_remove_rm_parameter_each_e,
     kt_remove_rm_parameter_force_e,
-    kt_remove_rm_parameter_once_e, // -I
+    kt_remove_rm_parameter_once_e,
     kt_remove_rm_parameter_one_filesystem_e,
-    kt_remove_rm_parameter_recursive_e, // -r, --recursive
-    kt_remove_rm_parameter_recursive_alt_e, // -R
+    kt_remove_rm_parameter_recursive_e,
+    kt_remove_rm_parameter_recursive_alt_e,
     kt_remove_rm_parameter_simulate_e,
+    kt_remove_rm_parameter_preserve_root_e,
+    kt_remove_rm_parameter_preserve_root_not_e,
     kt_remove_rm_parameter_verbose_alt_e,
     kt_remove_rm_parameter_version_alt_e,
   }; // enum
@@ -37,19 +39,21 @@ extern "C" {
     { \
       macro_fll_program_console_parameter_standard_initialize, \
       \
-      macro_f_console_parameter_t_initialize_3(kt_remove_short_directory_s,        kt_remove_long_directory_s,              0, f_console_flag_normal_e), \
-      macro_f_console_parameter_t_initialize_6(                                    kt_remove_rm_short_each_s,               0, f_console_flag_normal_e), \
-      macro_f_console_parameter_t_initialize_3(kt_remove_short_force_s,            kt_remove_long_force_s,                  0, f_console_flag_normal_e), \
-      macro_f_console_parameter_t_initialize_6(                                    kt_remove_rm_short_once_s,               0, f_console_flag_normal_e), \
-      macro_f_console_parameter_t_initialize_5(                                    kt_remove_rm_long_one_filesystem_s,      0, f_console_flag_normal_e), \
-      macro_f_console_parameter_t_initialize_3(kt_remove_short_recursive_s,        kt_remove_long_recursive_s,              0, f_console_flag_normal_e), \
-      macro_f_console_parameter_t_initialize_6(                                    kt_remove_rm_short_recursive_alt_s,      0, f_console_flag_normal_e), \
-      macro_f_console_parameter_t_initialize_3(kt_remove_short_simulate_s,         kt_remove_long_simulate_s,               0, f_console_flag_normal_e), \
-      macro_f_console_parameter_t_initialize_3(f_console_standard_short_verbose_s, f_console_standard_long_verbose_s,       0, f_console_flag_normal_e), \
-      macro_f_console_parameter_t_initialize_5(                                    f_console_standard_long_version_s,       0, f_console_flag_normal_e), \
+      macro_f_console_parameter_t_initialize_3(kt_remove_short_directory_s,        kt_remove_rm_long_directory_s,         0, f_console_flag_normal_e), \
+      macro_f_console_parameter_t_initialize_6(                                    kt_remove_rm_short_each_s,             0, f_console_flag_normal_e), \
+      macro_f_console_parameter_t_initialize_3(kt_remove_short_force_s,            kt_remove_long_force_s,                0, f_console_flag_normal_e), \
+      macro_f_console_parameter_t_initialize_6(                                    kt_remove_rm_short_once_s,             0, f_console_flag_normal_e), \
+      macro_f_console_parameter_t_initialize_5(                                    kt_remove_rm_long_one_filesystem_s,    0, f_console_flag_normal_e), \
+      macro_f_console_parameter_t_initialize_3(kt_remove_short_recurse_s,          kt_remove_long_recurse_s,              0, f_console_flag_normal_e), \
+      macro_f_console_parameter_t_initialize_6(                                    kt_remove_rm_short_recursive_s,        0, f_console_flag_normal_e), \
+      macro_f_console_parameter_t_initialize_3(kt_remove_short_simulate_s,         kt_remove_long_simulate_s,             0, f_console_flag_normal_e), \
+      macro_f_console_parameter_t_initialize_5(                                    kt_remove_rm_long_preserve_root_s,     0, f_console_flag_normal_e), \
+      macro_f_console_parameter_t_initialize_5(                                    kt_remove_rm_long_preserve_root_not_s, 0, f_console_flag_normal_e), \
+      macro_f_console_parameter_t_initialize_3(f_console_standard_short_verbose_s, f_console_standard_long_verbose_s,     0, f_console_flag_normal_e), \
+      macro_f_console_parameter_t_initialize_5(                                    f_console_standard_long_version_s,     0, f_console_flag_normal_e), \
     }
 
-  #define kt_remove_rm_total_parameters_d (f_console_parameter_state_type_total_d + 10)
+  #define kt_remove_rm_total_parameters_d (f_console_parameter_state_type_total_d + 12)
 #endif // _di_kt_remove_rm_parameter_e_
 
 #ifdef __cplusplus
index 1c2f32be5a5d2752ea59f8a4b6ee8dbdc3186665..29b0f9d28d3e4a1a1d045c161d247d3e4b022214 100644 (file)
@@ -85,7 +85,11 @@ int main(const int argc, const f_string_t *argv, const f_string_t *envp) {
 
   fll_program_standard_set_down(&data.program);
 
-  return (F_status_is_error(data.setting.state.status) || data.setting.state.status == F_false) ? 1 : 0;
+  if (F_status_is_error(data.setting.state.status)) {
+    return F_status_set_fine(data.setting.state.status) == F_support_not ? 2 : 1;
+  }
+
+  return data.setting.state.status == F_false ? 1 : 0;
 }
 
 #ifdef __cplusplus
index 45a6e57af778c1e2e3f9e4df4f821c98711efd80..5e882e7b090cd66e4df2985a0fe47bbc09d703de 100644 (file)
@@ -4,23 +4,41 @@
 extern "C" {
 #endif
 
-#ifndef _di_kt_remove_rm_print_error_directory_not_
-  f_status_t kt_remove_rm_print_error_directory_not(fl_print_t * const print, const f_string_static_t path) {
+#ifndef _di_kt_remove_rm_print_error_directory_
+  f_status_t kt_remove_rm_print_error_directory(fl_print_t * const print, const f_string_static_t path) {
 
     if (!print) return F_status_set_error(F_output_not);
     if (print->verbosity < f_console_verbosity_error_e) return F_output_not;
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QCannot remove directory '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format("%[%QCannot remove '%]", print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format("%[%Q%]", print->to, print->set->notable, path, print->set->notable);
-    fl_print_format("%[', file is not a directory.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
+    fl_print_format("%[', file is a directory.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
 
     return F_okay;
   }
-#endif // _di_kt_remove_rm_print_error_directory_not_
+#endif // _di_kt_remove_rm_print_error_directory_
+
+#ifndef _di_kt_remove_rm_print_error_directory_empty_not_
+  f_status_t kt_remove_rm_print_error_directory_empty_not(fl_print_t * const print, const f_string_static_t path) {
+
+    if (!print) return F_status_set_error(F_output_not);
+    if (print->verbosity < f_console_verbosity_error_e) return F_output_not;
+
+    f_file_stream_lock(print->to);
+
+    fl_print_format("%[%QCannot remove '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format("%[%Q%]", print->to, print->set->notable, path, print->set->notable);
+    fl_print_format("%[', directory is not empty.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
+
+    f_file_stream_unlock(print->to);
+
+    return F_okay;
+  }
+#endif // _di_kt_remove_rm_print_error_directory_empty_not_
 
 #ifndef _di_kt_remove_rm_print_message_help_
   f_status_t kt_remove_rm_print_message_help(fl_print_t * const print, const f_color_context_t context) {
@@ -43,11 +61,19 @@ extern "C" {
 
     f_print_dynamic_raw(f_string_eol_s, print->to);
 
-    fll_program_print_help_option(print, kt_remove_rm_short_parents_s, kt_remove_rm_long_parents_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "                 Remove directory and the parent directories in the path provided.");
-    fll_program_print_help_option(print, kt_remove_short_simulate_s, kt_remove_long_simulate_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "                Simulate removal rather than actually rming.");
+    fll_program_print_help_option(print, kt_remove_short_force_s, kt_remove_long_force_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "           Operate in interactive mode, prompting for every file.");
+
+    fll_program_print_help_option_short(print, kt_remove_rm_short_each_s, f_console_symbol_short_normal_s, "                    Prompt for every file when removing.");
+    fll_program_print_help_option_short(print, kt_remove_rm_short_once_s, f_console_symbol_short_normal_s, "                    Operate in interactive mode: prompting if removing 3 or more files.");
+
+    fll_program_print_help_option(print, kt_remove_short_recurse_s, f_string_empty_s, f_console_symbol_short_normal_s, f_string_empty_s, 0);
+    fll_program_print_help_option(print, kt_remove_rm_short_recursive_s, kt_remove_rm_long_recursive_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "       Traverse into directories when removing.");
+    fll_program_print_help_option(print, kt_remove_short_simulate_s, kt_remove_long_simulate_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "        Simulate removal rather than actually removing.");
 
-    fll_program_print_help_option_long(print, kt_remove_rm_long_ignore_empty_not_s, f_console_symbol_long_normal_s, "Ignore directories that are not empty rather than fail on error.");
-    fll_program_print_help_option_long(print, f_console_standard_long_version_s, f_console_symbol_long_normal_s, "                 Print this help message.");
+    fll_program_print_help_option_long(print, kt_remove_rm_long_preserve_root_s, f_console_symbol_long_normal_s, "   Prevent deletion of the root directoy '/' (default).");
+    fll_program_print_help_option_long(print, kt_remove_rm_long_preserve_root_not_s, f_console_symbol_long_normal_s, "Allow deletion of the root directory '/' (dangerous).");
+    fll_program_print_help_option_long(print, f_console_standard_long_verbose_s, f_console_symbol_long_normal_s, "         Increase verbosity beyond normal, printing more details.");
+    fll_program_print_help_option_long(print, f_console_standard_long_version_s, f_console_symbol_long_normal_s, "         Print only the program version number and immediately exit.");
 
     f_print_dynamic_raw(f_string_eol_s, print->to);
 
index 0b4c74fdeaa7bf89316453513ab1a91e3ea9fa90..6ac0b04221842f0f98474d3015eb0bd60bfeeae4 100644 (file)
@@ -17,7 +17,7 @@ extern "C" {
 #endif
 
 /**
- * Print error message about not being able to delete a file because that file is not a directory.
+ * Print error message about not being able to delete a file because that file is a directory.
  *
  * @param print
  *   The output structure to print to.
@@ -36,9 +36,33 @@ extern "C" {
  *
  * @see fll_error_print()
  */
-#ifndef _di_kt_remove_rm_print_error_directory_not_
-  extern f_status_t kt_remove_rm_print_error_directory_not(fl_print_t * const print, const f_string_static_t path);
-#endif // _di_kt_remove_rm_print_error_directory_not_
+#ifndef _di_kt_remove_rm_print_error_directory_
+  extern f_status_t kt_remove_rm_print_error_directory(fl_print_t * const print, const f_string_static_t path);
+#endif // _di_kt_remove_rm_print_error_directory_
+
+/**
+ * Print error message about not being able to delete a file because that file is not an empty directory.
+ *
+ * @param print
+ *   The output structure to print to.
+ *
+ *   Must not be NULL.
+ *
+ *   This does not alter print.custom.setting.state.status.
+ * @param path
+ *   The file that cannot be deleted.
+ *
+ * @return
+ *   F_okay on success.
+ *   F_output_not on success, but no printing is performed.
+ *
+ *   F_output_not (with error bit) if setting is NULL.
+ *
+ * @see fll_error_print()
+ */
+#ifndef _di_kt_remove_rm_print_error_directory_empty_not_
+  extern f_status_t kt_remove_rm_print_error_directory_empty_not(fl_print_t * const print, const f_string_static_t path);
+#endif // _di_kt_remove_rm_print_error_directory_empty_not_
 
 /**
  * Print help.
index e2c438cc287d78f0f43532b96cf352b3a1acac08..03dafbe0d4b51058a92f0d042acb795bfd765623 100644 (file)
@@ -12,12 +12,21 @@ extern "C" {
     if (!flag_operate) return F_status_set_error(F_parameter);
 
     if (flag_operate & kt_remove_flag_file_operate_directory_d) {
-      return kt_remove_operate_file_remove(main, path, flag_operate);
-    }
+      if (main->setting.flag & kt_remove_main_flag_empty_only_d) {
+        if (!(flag_operate & kt_remove_flag_file_operate_empty_d)) {
+          kt_remove_rm_print_error_directory_empty_not(&main->program.error, path);
 
-    kt_remove_rm_print_error_directory_not(&main->program.error, path);
+          return F_status_set_error(F_no);
+        }
+      }
+      else {
+        kt_remove_rm_print_error_directory(&main->program.error, path);
 
-    return F_status_set_error(F_no);
+        return F_status_set_error(F_no);
+      }
+    }
+
+    return kt_remove_operate_file_remove(main, path, flag_operate);
   }
 #endif // _di_kt_remove_rm_operate_file_remove_
 
@@ -26,129 +35,166 @@ extern "C" {
 
     if (!main) return;
 
-    main->setting.flag &= ~kt_remove_main_flag_option_used_d;
+    f_number_unsigned_t argc = 0;
+
+    // Pre-process the parameters to find any "--" such that everything after the "--" represents a literal file name.
+    if (arguments.argv) {
+      for (argc = 1; argc < arguments.argc; ++argc) {
+        if (f_compare_dynamic_string(arguments.argv[argc], kt_remove_rm_static_end_s, strnlen(arguments.argv[argc], F_console_parameter_size_d)) == F_equal_to) break;
+      } // for
+    }
+
+    if (argc && argc < arguments.argc) {
+      const f_console_arguments_t arguments_shorter = macro_f_console_arguments_t_initialize_1(argc, arguments.argv, arguments.envp);
 
-    main->setting.state.step_small = kt_remove_allocation_console_d;
+      kt_remove_setting_load_standard(arguments_shorter, main);
+    }
+    else {
+      kt_remove_setting_load_standard(arguments, main);
+    }
 
-    f_console_parameter_process(arguments, &main->program.parameters, &main->setting.state, 0);
+    if (F_status_is_error(main->setting.state.status)) return;
 
-    main->setting.state.step_small = kt_remove_allocation_small_d;
+    if (main->program.parameters.array[kt_remove_rm_parameter_directory_e].result & f_console_result_found_e) {
+      main->setting.flag |= kt_remove_main_flag_directory_d | kt_remove_main_flag_empty_only_d;
+    }
 
-    if (F_status_is_error(main->setting.state.status)) {
-      kt_remove_print_error(&main->program.error, macro_kt_remove_f(f_console_parameter_process));
+    if (main->program.parameters.array[kt_remove_rm_parameter_each_e].result & f_console_result_found_e) {
+      main->setting.flag |= kt_remove_main_flag_prompt_each_d;
+    }
+
+    if (main->program.parameters.array[kt_remove_rm_parameter_force_e].result & f_console_result_found_e) {
+      main->setting.flag |= kt_remove_main_flag_force_d;
+    }
+
+    if (main->program.parameters.array[kt_remove_rm_parameter_once_e].result & f_console_result_found_e) {
+      main->setting.flag |= kt_remove_main_flag_prompt_once_d;
+    }
+
+    if (main->program.parameters.array[kt_remove_rm_parameter_one_filesystem_e].result & f_console_result_found_e) {
+      main->setting.state.status = F_status_set_error(F_support_not);
+
+      fll_program_print_error_parameter_support_not(&main->program.error, f_console_symbol_long_normal_s, kt_remove_rm_long_one_filesystem_s);
 
       return;
     }
 
-    {
-      f_uint16s_t choices = f_uint16s_t_initialize;
+    if ((main->program.parameters.array[kt_remove_rm_parameter_recursive_e].result & f_console_result_found_e) || (main->program.parameters.array[kt_remove_rm_parameter_recursive_alt_e].result & f_console_result_found_e)) {
+      main->setting.flag |= kt_remove_main_flag_recurse_d;
+    }
 
-      // Identify and prioritize "color context" parameters.
-      {
-        uint16_t choices_array[3] = { kt_remove_rm_parameter_no_color_e, kt_remove_rm_parameter_light_e, kt_remove_rm_parameter_dark_e };
-        choices.array = choices_array;
-        choices.used = 3;
+    // @todo the kt_remove_main_flag_root_d needs to be implemented in the base remove project.
+    if (main->program.parameters.array[kt_remove_rm_parameter_preserve_root_e].result & f_console_result_found_e) {
+      main->setting.flag &= ~kt_remove_main_flag_root_d; // @todo check if this or preserve_root_not is farther to the right.
+    }
 
-        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
+    if (main->program.parameters.array[kt_remove_rm_parameter_preserve_root_not_e].result & f_console_result_found_e) {
+      main->setting.flag |= kt_remove_main_flag_root_d; // @todo check if this or preserve_root is farther to the right.
+    }
 
-        main->setting.state.status = fll_program_parameter_process_context(choices, modes, F_true, &main->program);
+    if (main->program.parameters.array[kt_remove_rm_parameter_simulate_e].result & f_console_result_found_e) {
+      main->setting.flag |= kt_remove_main_flag_simulate_d;
+    }
 
-        if (F_status_is_error(main->setting.state.status)) {
-          kt_remove_print_error(&main->program.error, macro_kt_remove_f(fll_program_parameter_process_context));
+    if (main->program.parameters.array[kt_remove_rm_parameter_verbose_alt_e].result & f_console_result_found_e) {
+      main->program.warning.verbosity
+        = main->program.error.verbosity
+        = main->program.output.verbosity
+        = main->program.message.verbosity
+          = f_console_verbosity_verbose_e;
+    }
 
-          return;
-        }
+    if (main->program.parameters.array[kt_remove_rm_parameter_version_alt_e].result & f_console_result_found_e) {
+      main->setting.flag |= kt_remove_main_flag_version_d;
+    }
+
+    // Load all remaining files as static strings (setting size to 0).
+    if (main->program.parameters.remaining.used || argc < arguments.argc) {
+      main->setting.state.status = f_memory_array_increase_by(
+        main->program.parameters.remaining.used + ((argc + 1 < arguments.argc) ? arguments.argc - (argc + 1) : 0),
+        sizeof(f_string_dynamic_t),
+        (void **) &main->setting.files.array,
+        &main->setting.files.used,
+        &main->setting.files.size
+      );
+
+      if (F_status_is_error(main->setting.state.status)) {
+        kt_remove_print_error(&main->program.error, macro_kt_remove_f(f_memory_array_increase_by));
+
+        return;
       }
 
-      // Identify and prioritize "verbosity" parameters.
       {
-        if (main->program.parameters.array[kt_remove_rm_parameter_verbose_alt_e].result & f_console_result_found_e) {
-          main->program.warning.verbosity
-            = main->program.error.verbosity
-            = main->program.output.verbosity
-            = main->program.message.verbosity
-              = f_console_verbosity_verbose_e;
-        }
-        else {
-          uint16_t choices_array[5] = { kt_remove_rm_parameter_verbosity_quiet_e, kt_remove_rm_parameter_verbosity_error_e, kt_remove_rm_parameter_verbosity_verbose_e, kt_remove_rm_parameter_verbosity_debug_e, kt_remove_rm_parameter_verbosity_normal_e };
-          choices.array = choices_array;
-          choices.used = 5;
+        f_number_unsigned_t index = 0;
 
-          const uint8_t verbosity[5] = { f_console_verbosity_quiet_e, f_console_verbosity_error_e, f_console_verbosity_verbose_e, f_console_verbosity_debug_e, f_console_verbosity_normal_e };
+        for (f_number_unsigned_t i = 0; i < main->program.parameters.remaining.used; ++i) {
 
-          main->setting.state.status = fll_program_parameter_process_verbosity(choices, verbosity, F_true, &main->program);
+          index = main->program.parameters.remaining.array[i];
 
-          if (F_status_is_error(main->setting.state.status)) {
-            kt_remove_print_error(&main->program.error, macro_kt_remove_f(fll_program_parameter_process_verbosity));
+          if (f_compare_dynamic(kt_remove_rm_static_interactive_always_s, main->program.parameters.arguments.array[index]) == F_equal_to) {
+            main->setting.flag &= ~kt_remove_main_flag_prompt_all_d;
+            main->setting.flag |= kt_remove_main_flag_prompt_each_d;
 
-            return;
+            continue;
           }
-        }
-      }
-    }
 
-    f_number_unsigned_t i = 0;
-    f_number_unsigned_t index = 0;
-    f_number_unsigned_t index2 = 0;
-    f_number_unsigned_t total_locations = 0;
-    f_number_unsigned_t total_arguments = 0;
+          if (f_compare_dynamic(kt_remove_rm_static_interactive_never_s, main->program.parameters.arguments.array[index]) == F_equal_to) {
+            main->setting.flag &= ~kt_remove_main_flag_prompt_all_d;
+            main->setting.flag |= kt_remove_main_flag_prompt_never_d;
 
-    uint8_t j = 0;
+            continue;
+          }
 
-    main->setting.flag &= ~kt_remove_main_flag_version_copyright_help_d;
+          if (f_compare_dynamic(kt_remove_rm_static_interactive_once_s, main->program.parameters.arguments.array[index]) == F_equal_to) {
+            main->setting.flag &= ~kt_remove_main_flag_prompt_all_d;
+            main->setting.flag |= kt_remove_main_flag_prompt_once_d;
 
-    if (main->program.parameters.array[kt_remove_rm_parameter_help_e].result & f_console_result_found_e) {
-      main->setting.flag |= kt_remove_main_flag_help_d;
-    }
+            continue;
+          }
 
-    if ((main->program.parameters.array[kt_remove_rm_parameter_version_e].result & f_console_result_found_e) || (main->program.parameters.array[kt_remove_rm_parameter_version_alt_e].result & f_console_result_found_e)) {
-      main->setting.flag |= kt_remove_main_flag_version_d;
-    }
+          if (f_compare_dynamic(kt_remove_rm_static_preserve_root_all_s, main->program.parameters.arguments.array[index]) == F_equal_to) {
+            main->setting.state.status = F_status_set_error(F_support_not);
 
-    if (main->program.parameters.array[kt_remove_rm_parameter_copyright_e].result & f_console_result_found_e) {
-      main->setting.flag |= kt_remove_main_flag_copyright_d;
-    }
+            fll_program_print_error_parameter_support_not(&main->program.error, f_console_symbol_long_normal_s, kt_remove_rm_long_one_filesystem_s);
 
-    if (main->program.parameters.array[kt_remove_rm_parameter_ignore_empty_not_e].result & f_console_result_found_e) {
-      main->setting.flag |= kt_remove_main_flag_empty_only_d;
-    }
+            return;
+          }
 
-    if (main->program.parameters.array[kt_remove_rm_parameter_parents_e].result & f_console_result_found_e) {
-      main->setting.flag |= kt_remove_main_flag_tree_d;
-    }
+          main->setting.files.array[main->setting.files.used].used = 0;
 
-    if (main->program.parameters.array[kt_remove_rm_parameter_simulate_e].result & f_console_result_found_e) {
-      main->setting.flag |= kt_remove_main_flag_simulate_d;
-    }
+          fl_path_clean(main->program.parameters.arguments.array[index], &main->setting.files.array[main->setting.files.used]);
 
-    // Load all remaining files as static strings (setting size to 0).
-    if (main->program.parameters.remaining.used) {
-      main->setting.state.status = f_memory_array_increase_by(main->program.parameters.remaining.used, sizeof(f_string_dynamic_t), (void **) &main->setting.files.array, &main->setting.files.used, &main->setting.files.size);
+          if (F_status_is_error(main->setting.state.status)) {
+            kt_remove_print_error_file(&main->program.error, macro_kt_remove_f(fl_path_clean), main->program.parameters.arguments.array[index], f_file_operation_process_s, fll_error_file_type_path_e);
 
-      if (F_status_is_error(main->setting.state.status)) {
-        kt_remove_print_error(&main->program.error, macro_kt_remove_f(f_memory_array_increase_by));
+            return;
+          }
 
-        return;
+          ++main->setting.files.used;
+        } // for
       }
 
-      for (i = 0; i < main->program.parameters.remaining.used; ++i, ++main->setting.files.used) {
+      if (argc < arguments.argc) {
+        f_string_static_t args = f_string_static_t_initialize;
 
-        index = main->program.parameters.remaining.array[i];
+        for (++argc; argc < arguments.argc; ++argc, ++main->setting.files.used) {
 
-        main->setting.files.array[main->setting.files.used].used = 0;
+          args.string = arguments.argv[argc];
+          args.used = strnlen(arguments.argv[argc], F_console_parameter_size_d);
 
-        fl_path_clean(main->program.parameters.arguments.array[index], &main->setting.files.array[main->setting.files.used]);
+          fl_path_clean(args, &main->setting.files.array[main->setting.files.used]);
 
-        if (F_status_is_error(main->setting.state.status)) {
-          kt_remove_print_error_file(&main->program.error, macro_kt_remove_f(fl_path_clean), main->program.parameters.arguments.array[index], f_file_operation_process_s, fll_error_file_type_path_e);
+          if (F_status_is_error(main->setting.state.status)) {
+            kt_remove_print_error_file(&main->program.error, macro_kt_remove_f(fl_path_clean), args, f_file_operation_process_s, fll_error_file_type_path_e);
 
-          return;
-        }
-      } // for
+            return;
+          }
+        } // for
+      }
     }
 
-    // Make sure only directoreis are deleted.
-    main->setting.flag |= kt_remove_main_flag_directory_d | kt_remove_main_flag_option_used_d;
+    // Make sure all non-directory files are deleted.
+    main->setting.flag |= kt_remove_main_flag_file_types_except_directory_d | kt_remove_main_flag_option_used_d;
   }
 #endif // _di_kt_remove_rm_setting_load_
 
index 01b68d7b000d5570b73373aeb9bd345d465faf26..0c71225a6796c1466d0d29b59958bb158fc23771 100644 (file)
@@ -80,13 +80,9 @@ extern "C" {
  *
  *     F_parameter (with error bit) on parameter error.
  *
- *     Errors (with error bit) from: f_console_parameter_process().
- *     Errors (with error bit) from: f_file_stream_open().
- *     Errors (with error bit) from: f_memory_array_increase_by().
+ *     Errors (with error bit) from: kt_remove_setting_load_standard().
  *
- * @see f_console_parameter_process()
- * @see f_file_stream_open()
- * @see f_memory_array_increase_by()
+ * @see kt_remove_setting_load_standard()
  */
 #ifndef _di_kt_remove_rm_setting_load_
   extern void kt_remove_rm_setting_load(const f_console_arguments_t arguments, kt_remove_main_t * const main);
index 5ffdac83548b2476d62043c0b2aee8825704734b..62061f02d5507945469814fecd5756b4d675e480 100644 (file)
@@ -10,10 +10,21 @@ extern "C" {
 #endif // _di_remove_program_name_s_
 
 #ifndef _di_kt_remove_rm_parameter_s_
-  const f_string_static_t kt_remove_rm_short_parents_s = macro_f_string_static_t_initialize_1(KT_REMOVE_rm_short_parents_s, 0, KT_REMOVE_rm_short_parents_s_length);
+  const f_string_static_t kt_remove_rm_short_each_s = macro_f_string_static_t_initialize_1(KT_REMOVE_rm_short_each_s, 0, KT_REMOVE_rm_short_each_s_length);
+  const f_string_static_t kt_remove_rm_short_once_s = macro_f_string_static_t_initialize_1(KT_REMOVE_rm_short_once_s, 0, KT_REMOVE_rm_short_once_s_length);
+  const f_string_static_t kt_remove_rm_short_recursive_s = macro_f_string_static_t_initialize_1(KT_REMOVE_rm_short_recursive_s, 0, KT_REMOVE_rm_short_recursive_s_length);
 
-  const f_string_static_t kt_remove_rm_long_ignore_empty_not_s = macro_f_string_static_t_initialize_1(KT_REMOVE_rm_long_ignore_empty_not_s, 0, KT_REMOVE_rm_long_ignore_empty_not_s_length);
-  const f_string_static_t kt_remove_rm_long_parents_s = macro_f_string_static_t_initialize_1(KT_REMOVE_rm_long_parents_s, 0, KT_REMOVE_rm_long_parents_s_length);
+  const f_string_static_t kt_remove_rm_long_directory_s = macro_f_string_static_t_initialize_1(KT_REMOVE_rm_long_directory_s, 0, KT_REMOVE_rm_long_directory_s_length);
+  const f_string_static_t kt_remove_rm_long_one_filesystem_s = macro_f_string_static_t_initialize_1(KT_REMOVE_rm_long_one_filesystem_s, 0, KT_REMOVE_rm_long_one_filesystem_s_length);
+  const f_string_static_t kt_remove_rm_long_recursive_s = macro_f_string_static_t_initialize_1(KT_REMOVE_rm_long_recursive_s, 0, KT_REMOVE_rm_long_recursive_s_length);
+  const f_string_static_t kt_remove_rm_long_preserve_root_s = macro_f_string_static_t_initialize_1(KT_REMOVE_rm_long_preserve_root_s, 0, KT_REMOVE_rm_long_preserve_root_s_length);
+  const f_string_static_t kt_remove_rm_long_preserve_root_not_s = macro_f_string_static_t_initialize_1(KT_REMOVE_rm_long_preserve_root_not_s, 0, KT_REMOVE_rm_long_preserve_root_not_s_length);
+
+  const f_string_static_t kt_remove_rm_static_end_s = macro_f_string_static_t_initialize_1(KT_REMOVE_rm_static_end_s, 0, KT_REMOVE_rm_static_end_s_length);
+  const f_string_static_t kt_remove_rm_static_interactive_always_s = macro_f_string_static_t_initialize_1(KT_REMOVE_rm_static_interactive_always_s, 0, KT_REMOVE_rm_static_interactive_always_s_length);
+  const f_string_static_t kt_remove_rm_static_interactive_never_s = macro_f_string_static_t_initialize_1(KT_REMOVE_rm_static_interactive_never_s, 0, KT_REMOVE_rm_static_interactive_never_s_length);
+  const f_string_static_t kt_remove_rm_static_interactive_once_s = macro_f_string_static_t_initialize_1(KT_REMOVE_rm_static_interactive_once_s, 0, KT_REMOVE_rm_static_interactive_once_s_length);
+  const f_string_static_t kt_remove_rm_static_preserve_root_all_s = macro_f_string_static_t_initialize_1(KT_REMOVE_rm_static_preserve_root_all_s, 0, KT_REMOVE_rm_static_preserve_root_all_s_length);
 #endif // _di_kt_remove_rm_parameter_s_
 
 #ifdef __cplusplus
index a43b9ea6265ede660c837b1b2ca8f34ead8da742..8e60ccd2b4a4f0e5885b3b0e651450bc9626c15e 100644 (file)
@@ -21,32 +21,63 @@ extern "C" {
  */
 #ifndef _di_kt_remove_program_name_s_
   #define KT_REMOVE_program_name_s      "rm"
-  #define KT_REMOVE_program_name_long_s "Remove Directory"
+  #define KT_REMOVE_program_name_long_s "Remove File"
 
   #define KT_REMOVE_program_name_s_length      5
-  #define KT_REMOVE_program_name_long_s_length 16
+  #define KT_REMOVE_program_name_long_s_length 11
 #endif // _di_kt_remove_program_name_s_
 
 /**
  * Additional strings used for various purposes for the rm program.
- *
- * kt_remove_rm_parameter_*_s: Parameter related strings.
  */
 #ifndef _di_kt_remove_rm_parameter_s_
-  #define KT_REMOVE_rm_short_parents_s "p"
+  #define KT_REMOVE_rm_short_each_s      "i"
+  #define KT_REMOVE_rm_short_once_s      "I"
+  #define KT_REMOVE_rm_short_recursive_s "R"
+
+  #define KT_REMOVE_rm_long_directory_s         "dir"
+  #define KT_REMOVE_rm_long_one_filesystem_s    "one-file-system"
+  #define KT_REMOVE_rm_long_recursive_s         "recursive"
+  #define KT_REMOVE_rm_long_preserve_root_s     "preserve-root"
+  #define KT_REMOVE_rm_long_preserve_root_not_s "no-preserve-root"
+
+  #define KT_REMOVE_rm_static_end_s                "--"
+  #define KT_REMOVE_rm_static_interactive_always_s "--interactive=always"
+  #define KT_REMOVE_rm_static_interactive_never_s  "--interactive=never"
+  #define KT_REMOVE_rm_static_interactive_once_s   "--interactive=once"
+  #define KT_REMOVE_rm_static_preserve_root_all_s  "--preserve-root=all"
+
+  #define KT_REMOVE_rm_short_each_s_length      1
+  #define KT_REMOVE_rm_short_once_s_length      1
+  #define KT_REMOVE_rm_short_recursive_s_length 1
 
-  #define KT_REMOVE_rm_long_ignore_empty_not_s "ignore-fail-on-non-empty"
-  #define KT_REMOVE_rm_long_parents_s          "parents"
+  #define KT_REMOVE_rm_long_directory_s_length         3
+  #define KT_REMOVE_rm_long_one_filesystem_s_length    15
+  #define KT_REMOVE_rm_long_recursive_s_length         9
+  #define KT_REMOVE_rm_long_preserve_root_s_length     13
+  #define KT_REMOVE_rm_long_preserve_root_not_s_length 16
 
-  #define KT_REMOVE_rm_short_parents_s_length 1
+  #define KT_REMOVE_rm_static_end_s_length                2
+  #define KT_REMOVE_rm_static_interactive_always_s_length 20
+  #define KT_REMOVE_rm_static_interactive_never_s_length  19
+  #define KT_REMOVE_rm_static_interactive_once_s_length   18
+  #define KT_REMOVE_rm_static_preserve_root_all_s_length  19
 
-  #define KT_REMOVE_rm_long_ignore_empty_not_s_length 24
-  #define KT_REMOVE_rm_long_parents_s_length          7
+  extern const f_string_static_t kt_remove_rm_short_each_s;
+  extern const f_string_static_t kt_remove_rm_short_once_s;
+  extern const f_string_static_t kt_remove_rm_short_recursive_s;
 
-  extern const f_string_static_t kt_remove_rm_short_parents_s;
+  extern const f_string_static_t kt_remove_rm_long_directory_s;
+  extern const f_string_static_t kt_remove_rm_long_one_filesystem_s;
+  extern const f_string_static_t kt_remove_rm_long_recursive_s;
+  extern const f_string_static_t kt_remove_rm_long_preserve_root_s;
+  extern const f_string_static_t kt_remove_rm_long_preserve_root_not_s;
 
-  extern const f_string_static_t kt_remove_rm_long_ignore_empty_not_s;
-  extern const f_string_static_t kt_remove_rm_long_parents_s;
+  extern const f_string_static_t kt_remove_rm_static_end_s;
+  extern const f_string_static_t kt_remove_rm_static_interactive_always_s;
+  extern const f_string_static_t kt_remove_rm_static_interactive_never_s;
+  extern const f_string_static_t kt_remove_rm_static_interactive_once_s;
+  extern const f_string_static_t kt_remove_rm_static_preserve_root_all_s;
 #endif // _di_kt_remove_rm_parameter_s_
 
 #ifdef __cplusplus
index 8e70673270a6a49b6e55bf227c20e8484eff4694..e6c29b5dba58f5fa89f0898b5dc601848d108673 100644 (file)
@@ -85,7 +85,11 @@ int main(const int argc, const f_string_t *argv, const f_string_t *envp) {
 
   fll_program_standard_set_down(&data.program);
 
-  return (F_status_is_error(data.setting.state.status) || data.setting.state.status == F_false) ? 1 : 0;
+  if (F_status_is_error(data.setting.state.status)) {
+    return F_status_set_fine(data.setting.state.status) == F_support_not ? 2 : 1;
+  }
+
+  return data.setting.state.status == F_false ? 1 : 0;
 }
 
 #ifdef __cplusplus
index 55730b487b1ce3c0f2503830af5f40817bd50648..9827be03d36a9cf39d0e4f6e049bd098a41ee412 100644 (file)
@@ -12,7 +12,7 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QCannot remove directory '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format("%[%QCannot remove '%]", print->to, print->set->error, print->prefix, print->set->error);
     fl_print_format("%[%Q%]", print->to, print->set->notable, path, print->set->notable);
     fl_print_format("%[', file is not a directory.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
 
@@ -44,10 +44,11 @@ extern "C" {
     f_print_dynamic_raw(f_string_eol_s, print->to);
 
     fll_program_print_help_option(print, kt_remove_rmdir_short_parents_s, kt_remove_rmdir_long_parents_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "                 Remove directory and the parent directories in the path provided.");
-    fll_program_print_help_option(print, kt_remove_short_simulate_s, kt_remove_long_simulate_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "                Simulate removal rather than actually rmdiring.");
+    fll_program_print_help_option(print, kt_remove_short_simulate_s, kt_remove_long_simulate_s, f_console_symbol_short_normal_s, f_console_symbol_long_normal_s, "                Simulate removal rather than actually removing.");
 
     fll_program_print_help_option_long(print, kt_remove_rmdir_long_ignore_empty_not_s, f_console_symbol_long_normal_s, "Ignore directories that are not empty rather than fail on error.");
-    fll_program_print_help_option_long(print, f_console_standard_long_version_s, f_console_symbol_long_normal_s, "                 Print this help message.");
+    fll_program_print_help_option_long(print, f_console_standard_long_verbose_s, f_console_symbol_long_normal_s, "                 Increase verbosity beyond normal, printing more details.");
+    fll_program_print_help_option_long(print, f_console_standard_long_version_s, f_console_symbol_long_normal_s, "                 Print only the program version number and immediately exit.");
 
     f_print_dynamic_raw(f_string_eol_s, print->to);
 
index e32203524fcf17f7e7b29f0b5fe416e1b6b33d70..d01dba490b25e8ac7a38158b6bd986b1ceea2e95 100644 (file)
@@ -26,88 +26,8 @@ extern "C" {
 
     if (!main) return;
 
-    main->setting.flag &= ~kt_remove_main_flag_option_used_d;
-
-    main->setting.state.step_small = kt_remove_allocation_console_d;
-
-    f_console_parameter_process(arguments, &main->program.parameters, &main->setting.state, 0);
-
-    main->setting.state.step_small = kt_remove_allocation_small_d;
-
-    if (F_status_is_error(main->setting.state.status)) {
-      kt_remove_print_error(&main->program.error, macro_kt_remove_f(f_console_parameter_process));
-
-      return;
-    }
-
-    {
-      f_uint16s_t choices = f_uint16s_t_initialize;
-
-      // Identify and prioritize "color context" parameters.
-      {
-        uint16_t choices_array[3] = { f_console_standard_parameter_no_color_e, f_console_standard_parameter_light_e, f_console_standard_parameter_dark_e };
-        choices.array = choices_array;
-        choices.used = 3;
-
-        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
-
-        main->setting.state.status = fll_program_parameter_process_context(choices, modes, F_true, &main->program);
-
-        if (F_status_is_error(main->setting.state.status)) {
-          kt_remove_print_error(&main->program.error, macro_kt_remove_f(fll_program_parameter_process_context));
-
-          return;
-        }
-      }
-
-      // Identify and prioritize "verbosity" parameters.
-      {
-        if (main->program.parameters.array[kt_remove_rmdir_parameter_verbose_alt_e].result & f_console_result_found_e) {
-          main->program.warning.verbosity
-            = main->program.error.verbosity
-            = main->program.output.verbosity
-            = main->program.message.verbosity
-              = f_console_verbosity_verbose_e;
-        }
-        else {
-          uint16_t choices_array[5] = { f_console_standard_parameter_verbosity_quiet_e, f_console_standard_parameter_verbosity_error_e, f_console_standard_parameter_verbosity_verbose_e, f_console_standard_parameter_verbosity_debug_e, f_console_standard_parameter_verbosity_normal_e };
-          choices.array = choices_array;
-          choices.used = 5;
-
-          const uint8_t verbosity[5] = { f_console_verbosity_quiet_e, f_console_verbosity_error_e, f_console_verbosity_verbose_e, f_console_verbosity_debug_e, f_console_verbosity_normal_e };
-
-          main->setting.state.status = fll_program_parameter_process_verbosity(choices, verbosity, F_true, &main->program);
-
-          if (F_status_is_error(main->setting.state.status)) {
-            kt_remove_print_error(&main->program.error, macro_kt_remove_f(fll_program_parameter_process_verbosity));
-
-            return;
-          }
-        }
-      }
-    }
-
-    f_number_unsigned_t i = 0;
-    f_number_unsigned_t index = 0;
-    f_number_unsigned_t index2 = 0;
-    f_number_unsigned_t total_locations = 0;
-    f_number_unsigned_t total_arguments = 0;
-
-    uint8_t j = 0;
-
-    main->setting.flag &= ~kt_remove_main_flag_version_copyright_help_d;
-
-    if (main->program.parameters.array[f_console_standard_parameter_help_e].result & f_console_result_found_e) {
-      main->setting.flag |= kt_remove_main_flag_help_d;
-    }
-
-    if ((main->program.parameters.array[f_console_standard_parameter_version_e].result & f_console_result_found_e) || (main->program.parameters.array[kt_remove_rmdir_parameter_version_alt_e].result & f_console_result_found_e)) {
-      main->setting.flag |= kt_remove_main_flag_version_d;
-    }
-
-    if (main->program.parameters.array[f_console_standard_parameter_copyright_e].result & f_console_result_found_e) {
-      main->setting.flag |= kt_remove_main_flag_copyright_d;
-    }
+    kt_remove_setting_load_standard(arguments, main);
+    if (F_status_is_error(main->setting.state.status)) return;
 
     if (main->program.parameters.array[kt_remove_rmdir_parameter_ignore_empty_not_e].result & f_console_result_found_e) {
       main->setting.flag |= kt_remove_main_flag_empty_only_d;
@@ -121,6 +41,18 @@ extern "C" {
       main->setting.flag |= kt_remove_main_flag_simulate_d;
     }
 
+    if (main->program.parameters.array[kt_remove_rmdir_parameter_verbose_alt_e].result & f_console_result_found_e) {
+      main->program.warning.verbosity
+        = main->program.error.verbosity
+        = main->program.output.verbosity
+        = main->program.message.verbosity
+          = f_console_verbosity_verbose_e;
+    }
+
+    if (main->program.parameters.array[kt_remove_rmdir_parameter_version_alt_e].result & f_console_result_found_e) {
+      main->setting.flag |= kt_remove_main_flag_version_d;
+    }
+
     // Load all remaining files as static strings (setting size to 0).
     if (main->program.parameters.remaining.used) {
       main->setting.state.status = f_memory_array_increase_by(main->program.parameters.remaining.used, sizeof(f_string_dynamic_t), (void **) &main->setting.files.array, &main->setting.files.used, &main->setting.files.size);
@@ -131,7 +63,9 @@ extern "C" {
         return;
       }
 
-      for (i = 0; i < main->program.parameters.remaining.used; ++i, ++main->setting.files.used) {
+      f_number_unsigned_t index = 0;
+
+      for (f_number_unsigned_t i = 0; i < main->program.parameters.remaining.used; ++i, ++main->setting.files.used) {
 
         index = main->program.parameters.remaining.array[i];
 
index 7878b47f53f8176a3e5aa17631440dfd4e47aa01..ee2264f107e57d36608e264026fe5a30752a258f 100644 (file)
@@ -80,13 +80,9 @@ extern "C" {
  *
  *     F_parameter (with error bit) on parameter error.
  *
- *     Errors (with error bit) from: f_console_parameter_process().
- *     Errors (with error bit) from: f_file_stream_open().
- *     Errors (with error bit) from: f_memory_array_increase_by().
+ *     Errors (with error bit) from: kt_remove_setting_load_standard().
  *
- * @see f_console_parameter_process()
- * @see f_file_stream_open()
- * @see f_memory_array_increase_by()
+ * @see kt_remove_setting_load_standard()
  */
 #ifndef _di_kt_remove_rmdir_setting_load_
   extern void kt_remove_rmdir_setting_load(const f_console_arguments_t arguments, kt_remove_main_t * const main);
index 492c8c0516f35d68b97bf58e11be49537831c6cc..c8fe70722d224692dee7d649ae03318985a40911 100644 (file)
@@ -29,8 +29,6 @@ extern "C" {
 
 /**
  * Additional strings used for various purposes for the rmdir program.
- *
- * kt_remove_rmdir_parameter_*_s: Parameter related strings.
  */
 #ifndef _di_kt_remove_rmdir_parameter_s_
   #define KT_REMOVE_rmdir_short_parents_s "p"
index 9464481c492dd7f8d4c2663e18d9239ec1ad6fbd..1c0d0c0129d03a5f2308e728f1e9f9948a072715 100644 (file)
@@ -85,7 +85,11 @@ int main(const int argc, const f_string_t *argv, const f_string_t *envp) {
 
   fll_program_standard_set_down(&data.program);
 
-  return (F_status_is_error(data.setting.state.status) || data.setting.state.status == F_false) ? 1 : 0;
+  if (F_status_is_error(data.setting.state.status)) {
+    return F_status_set_fine(data.setting.state.status) == F_support_not ? 2 : 1;
+  }
+
+  return data.setting.state.status == F_false ? 1 : 0;
 }
 
 #ifdef __cplusplus
index c323e4dd678246a7a6b8274668e166bfb36a4aff..5a90dd1b9ddd48803e3d0cb015c3fa043221eb88 100644 (file)
@@ -26,79 +26,8 @@ extern "C" {
 
     if (!main) return;
 
-    main->setting.flag &= ~kt_remove_main_flag_option_used_d;
-
-    main->setting.state.step_small = kt_remove_allocation_console_d;
-
-    f_console_parameter_process(arguments, &main->program.parameters, &main->setting.state, 0);
-
-    main->setting.state.step_small = kt_remove_allocation_small_d;
-
-    if (F_status_is_error(main->setting.state.status)) {
-      kt_remove_print_error(&main->program.error, macro_kt_remove_f(f_console_parameter_process));
-
-      return;
-    }
-
-    {
-      f_uint16s_t choices = f_uint16s_t_initialize;
-
-      // Identify and prioritize "color context" parameters.
-      {
-        uint16_t choices_array[3] = { f_console_standard_parameter_no_color_e, f_console_standard_parameter_light_e, f_console_standard_parameter_dark_e };
-        choices.array = choices_array;
-        choices.used = 3;
-
-        const uint8_t modes[3] = { f_color_mode_not_e, f_color_mode_light_e, f_color_mode_dark_e };
-
-        main->setting.state.status = fll_program_parameter_process_context(choices, modes, F_true, &main->program);
-
-        if (F_status_is_error(main->setting.state.status)) {
-          kt_remove_print_error(&main->program.error, macro_kt_remove_f(fll_program_parameter_process_context));
-
-          return;
-        }
-      }
-
-      // Identify and prioritize "verbosity" parameters.
-      {
-        uint16_t choices_array[5] = { f_console_standard_parameter_verbosity_quiet_e, f_console_standard_parameter_verbosity_error_e, f_console_standard_parameter_verbosity_verbose_e, f_console_standard_parameter_verbosity_debug_e, f_console_standard_parameter_verbosity_normal_e };
-        choices.array = choices_array;
-        choices.used = 5;
-
-        const uint8_t verbosity[5] = { f_console_verbosity_quiet_e, f_console_verbosity_error_e, f_console_verbosity_verbose_e, f_console_verbosity_debug_e, f_console_verbosity_normal_e };
-
-        main->setting.state.status = fll_program_parameter_process_verbosity(choices, verbosity, F_true, &main->program);
-
-        if (F_status_is_error(main->setting.state.status)) {
-          kt_remove_print_error(&main->program.error, macro_kt_remove_f(fll_program_parameter_process_verbosity));
-
-          return;
-        }
-      }
-    }
-
-    f_number_unsigned_t i = 0;
-    f_number_unsigned_t index = 0;
-    f_number_unsigned_t index2 = 0;
-    f_number_unsigned_t total_locations = 0;
-    f_number_unsigned_t total_arguments = 0;
-
-    uint8_t j = 0;
-
-    main->setting.flag &= ~kt_remove_main_flag_version_copyright_help_d;
-
-    if (main->program.parameters.array[f_console_standard_parameter_help_e].result & f_console_result_found_e) {
-      main->setting.flag |= kt_remove_main_flag_help_d;
-    }
-
-    if ((main->program.parameters.array[f_console_standard_parameter_version_e].result & f_console_result_found_e) || (main->program.parameters.array[kt_remove_unlink_parameter_version_alt_e].result & f_console_result_found_e)) {
-      main->setting.flag |= kt_remove_main_flag_version_d;
-    }
-
-    if (main->program.parameters.array[f_console_standard_parameter_copyright_e].result & f_console_result_found_e) {
-      main->setting.flag |= kt_remove_main_flag_copyright_d;
-    }
+    kt_remove_setting_load_standard(arguments, main);
+    if (F_status_is_error(main->setting.state.status)) return;
 
     if (main->program.parameters.array[kt_remove_unlink_parameter_simulate_e].result & f_console_result_found_e) {
       main->setting.flag |= kt_remove_main_flag_simulate_d;
@@ -114,7 +43,9 @@ extern "C" {
         return;
       }
 
-      for (i = 0; i < main->program.parameters.remaining.used; ++i, ++main->setting.files.used) {
+      f_number_unsigned_t index = 0;
+
+      for (f_number_unsigned_t i = 0; i < main->program.parameters.remaining.used; ++i, ++main->setting.files.used) {
 
         index = main->program.parameters.remaining.array[i];
 
index adf0c6362394eb0a74b42fe953bc387e6e44b4b8..e87c3951ab5bd4c63eca5345a5afe801da24e0d0 100644 (file)
@@ -80,13 +80,9 @@ extern "C" {
  *
  *     F_parameter (with error bit) on parameter error.
  *
- *     Errors (with error bit) from: f_console_parameter_process().
- *     Errors (with error bit) from: f_file_stream_open().
- *     Errors (with error bit) from: f_memory_array_increase_by().
+ *     Errors (with error bit) from: kt_remove_setting_load_standard().
  *
- * @see f_console_parameter_process()
- * @see f_file_stream_open()
- * @see f_memory_array_increase_by()
+ * @see kt_remove_setting_load_standard()
  */
 #ifndef _di_kt_remove_unlink_setting_load_
   extern void kt_remove_unlink_setting_load(const f_console_arguments_t arguments, kt_remove_main_t * const main);