Remove redundant code and get rid of a lot of the callbacks.
I did further structural investigation and found that I really didn't need most callbacks.
Add special flags to distinguish when file types are being specified and when they are not.
Then when this is set, handle accordingly and print errors.
This reduces the need for custom handling code in each of the other programs like `rm`, `rmdir`, and `unlink`.
Update the settings and flags accordingly.
I have not gotten the time to update the unit tests, which currently now fail.
I also need to review the programs and their replacement counterparts for any problems.
uint8_t j = 0;
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;
+ main->setting.flag |= kt_remove_main_flag_block_d | kt_remove_main_flag_option_type_d | kt_remove_main_flag_option_used_d;
}
if (main->program.parameters.array[kt_remove_parameter_character_e].result & f_console_result_found_e) {
- main->setting.flag |= kt_remove_main_flag_character_d | kt_remove_main_flag_option_used_d;
+ main->setting.flag |= kt_remove_main_flag_character_d | kt_remove_main_flag_option_type_d | kt_remove_main_flag_option_used_d;
}
if (main->program.parameters.array[kt_remove_parameter_different_e].result & f_console_result_found_e) {
main->setting.flag &= ~kt_remove_main_flag_same_d;
- main->setting.flag |= kt_remove_main_flag_different_d | kt_remove_main_flag_option_used_d;
+ main->setting.flag |= kt_remove_main_flag_different_d | kt_remove_main_flag_option_type_d | kt_remove_main_flag_option_used_d;
if (main->program.parameters.array[kt_remove_parameter_same_e].result & f_console_result_found_e) {
index = main->program.parameters.array[kt_remove_parameter_different_e].locations.used;
}
else if (main->program.parameters.array[kt_remove_parameter_same_e].result & f_console_result_found_e) {
main->setting.flag &= ~kt_remove_main_flag_different_d;
- main->setting.flag |= kt_remove_main_flag_same_d | kt_remove_main_flag_option_used_d;
+ main->setting.flag |= kt_remove_main_flag_same_d | kt_remove_main_flag_option_type_d | kt_remove_main_flag_option_used_d;
}
if (main->program.parameters.array[kt_remove_parameter_fifo_e].result & f_console_result_found_e) {
- main->setting.flag |= kt_remove_main_flag_fifo_d | kt_remove_main_flag_option_used_d;
+ main->setting.flag |= kt_remove_main_flag_fifo_d | kt_remove_main_flag_option_type_d | kt_remove_main_flag_option_used_d;
}
if (main->program.parameters.array[kt_remove_parameter_follow_e].result & f_console_result_found_e) {
}
if (main->program.parameters.array[kt_remove_parameter_directory_e].result & f_console_result_found_e) {
- main->setting.flag |= kt_remove_main_flag_directory_d | kt_remove_main_flag_option_used_d;
+ main->setting.flag |= kt_remove_main_flag_directory_d | kt_remove_main_flag_option_type_d | kt_remove_main_flag_option_used_d;
}
if (main->program.parameters.array[kt_remove_parameter_force_e].result & f_console_result_found_e) {
}
if (main->program.parameters.array[kt_remove_parameter_link_e].result & f_console_result_found_e) {
- main->setting.flag |= kt_remove_main_flag_link_d | kt_remove_main_flag_option_used_d;
+ main->setting.flag |= kt_remove_main_flag_link_d | kt_remove_main_flag_option_type_d | kt_remove_main_flag_option_used_d;
}
if (main->program.parameters.array[kt_remove_parameter_recurse_e].result & f_console_result_found_e) {
}
if (main->program.parameters.array[kt_remove_parameter_regular_e].result & f_console_result_found_e) {
- main->setting.flag |= kt_remove_main_flag_regular_d | kt_remove_main_flag_option_used_d;
+ main->setting.flag |= kt_remove_main_flag_regular_d | kt_remove_main_flag_option_type_d | kt_remove_main_flag_option_used_d;
}
if (main->program.parameters.array[kt_remove_parameter_simulate_e].result & f_console_result_found_e) {
}
if (main->program.parameters.array[kt_remove_parameter_socket_e].result & f_console_result_found_e) {
- main->setting.flag |= kt_remove_main_flag_socket_d | kt_remove_main_flag_option_used_d;
+ main->setting.flag |= kt_remove_main_flag_socket_d | kt_remove_main_flag_option_type_d | kt_remove_main_flag_option_used_d;
}
if (main->program.parameters.array[kt_remove_parameter_tree_e].result & f_console_result_found_e) {
}
if (main->program.parameters.array[kt_remove_parameter_unknown_e].result & f_console_result_found_e) {
- main->setting.flag |= kt_remove_main_flag_unknown_d | kt_remove_main_flag_option_used_d;
+ main->setting.flag |= kt_remove_main_flag_unknown_d | kt_remove_main_flag_option_type_d | kt_remove_main_flag_option_used_d;
}
if (main->program.parameters.array[kt_remove_parameter_utc_e].result & f_console_result_found_e) {
* - 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.
+ * - option_type: Designates that type match options are specifically in use, overriding the default behavior (one should also set options_used when setting this).
+ * - option_type_used: A helper flag representing option_type and option_used flag bits being set.
+ * - option_used: Designates that custom match options are in use, overriding the default behavior.
+ * - prompt_all: A helper flag representing all prompt flag bits being set.
* - 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.
#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 0x80000005
+ #define kt_remove_main_flag_accessed_changed_updated_d 0x100000005
#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_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_file_types_except_directory_d 0x44201080a
#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_force_simulate_d 0x20002000
#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
+ #define kt_remove_main_flag_option_type_d 0x40000
+ #define kt_remove_main_flag_option_type_used_d 0xc0000
+ #define kt_remove_main_flag_option_used_d 0x80000
+ #define kt_remove_main_flag_prompt_all_d 0xf00000
+ #define kt_remove_main_flag_prompt_each_d 0x100000
+ #define kt_remove_main_flag_prompt_follow_d 0x200000
+ #define kt_remove_main_flag_prompt_never_d 0x400000
+ #define kt_remove_main_flag_prompt_once_d 0x800000
+ #define kt_remove_main_flag_recurse_d 0x1000000
+ #define kt_remove_main_flag_regular_d 0x2000000
+ #define kt_remove_main_flag_remember_d 0x4000000
+ #define kt_remove_main_flag_root_d 0x8000000
+ #define kt_remove_main_flag_same_d 0x10000000
+ #define kt_remove_main_flag_simulate_d 0x20000000
+ #define kt_remove_main_flag_socket_d 0x40000000
+ #define kt_remove_main_flag_tree_d 0x80000000
+ #define kt_remove_main_flag_updated_d 0x100000000
+ #define kt_remove_main_flag_user_d 0x200000000
+ #define kt_remove_main_flag_unknown_d 0x400000000
+ #define kt_remove_main_flag_utc_d 0x800000000
+ #define kt_remove_main_flag_version_d 0x1000000000
+ #define kt_remove_main_flag_version_copyright_help_d 0x1000008010
#endif // _di_kt_remove_main_flag_e_
/**
const f_string_static_t kt_remove_never_s = macro_f_string_static_t_initialize_1(KT_REMOVE_never_s, 0, KT_REMOVE_never_s_length);
const f_string_static_t kt_remove_no_s = macro_f_string_static_t_initialize_1(KT_REMOVE_no_s, 0, KT_REMOVE_no_s_length);
const f_string_static_t kt_remove_not_s = macro_f_string_static_t_initialize_1(KT_REMOVE_not_s, 0, KT_REMOVE_not_s_length);
+ const f_string_static_t kt_remove_not_empty_s = macro_f_string_static_t_initialize_1(KT_REMOVE_not_empty_s, 0, KT_REMOVE_not_empty_s_length);
const f_string_static_t kt_remove_not_fail_s = macro_f_string_static_t_initialize_1(KT_REMOVE_not_fail_s, 0, KT_REMOVE_not_fail_s_length);
const f_string_static_t kt_remove_now_s = macro_f_string_static_t_initialize_1(KT_REMOVE_now_s, 0, KT_REMOVE_now_s_length);
const f_string_static_t kt_remove_once_s = macro_f_string_static_t_initialize_1(KT_REMOVE_once_s, 0, KT_REMOVE_once_s_length);
#define KT_REMOVE_never_s "never"
#define KT_REMOVE_no_s "no"
#define KT_REMOVE_not_s "not"
+ #define KT_REMOVE_not_empty_s "not empty"
#define KT_REMOVE_not_fail_s "not_fail"
#define KT_REMOVE_now_s "now"
#define KT_REMOVE_once_s "once"
#define KT_REMOVE_never_s_length 5
#define KT_REMOVE_no_s_length 2
#define KT_REMOVE_not_s_length 3
+ #define KT_REMOVE_not_empty_s_length 9
#define KT_REMOVE_not_fail_s_length 8
#define KT_REMOVE_now_s_length 3
#define KT_REMOVE_once_s_length 4
extern const f_string_static_t kt_remove_never_s;
extern const f_string_static_t kt_remove_no_s;
extern const f_string_static_t kt_remove_not_s;
+ extern const f_string_static_t kt_remove_not_empty_s;
extern const f_string_static_t kt_remove_not_fail_s;
extern const f_string_static_t kt_remove_now_s;
extern const f_string_static_t kt_remove_once_s;
/**
* The main program callbacks.
*
- * print_help: Print help.
- * process_normal: Process normally (data from parameters and files).
- * process_remove: Process actual removal, returning F_done to designate handled, and F_okay for letting parent continue handling.
+ * print_help: Print help.
*/
#ifndef _di_kt_remove_callback_t_
typedef f_status_t (*print_help_call_t)(fl_print_t * const print, const f_color_context_t context);
- typedef void (*process_normal_call_t)(kt_remove_main_t * const main);
- typedef f_status_t (*process_remove_call_t)(kt_remove_main_t * const main, const f_string_static_t path, const uint32_t flag_operate);
typedef struct {
print_help_call_t print_help;
- process_normal_call_t process_normal;
- process_remove_call_t process_remove;
} kt_remove_callback_t;
#define kt_remove_callback_t_initialize \
{ \
0, \
- 0, \
- 0, \
}
#endif // _di_kt_remove_callback_t_
extern "C" {
#endif
-// @fixme nothing is calling this. recurrsion is needed!?
#ifndef _di_kt_remove_operate_directory_
f_status_t kt_remove_operate_directory(kt_remove_main_t * const main, const f_string_static_t path, const uint32_t flag_operate) {
if (F_status_is_error_not(main->setting.state.status) && main->setting.state.status != F_skip) {
main->setting.state.status = F_okay;
- if (flag_operate & kt_remove_flag_file_operate_directory_d) {
- status = main->setting.state.status = kt_remove_operate_directory(main, path, flag_operate);
- }
- else {
- if (main->call.process_remove) {
- status = main->setting.state.status = main->call.process_remove(main, path, flag_operate);
-
- if (status == F_done) {
- main->setting.state.status = F_okay;
-
- return;
- }
- }
- }
+ status = main->setting.state.status = (flag_operate & kt_remove_flag_file_operate_directory_d)
+ ? kt_remove_operate_directory(main, path, flag_operate)
+ : kt_remove_operate_remove(main, path, flag_operate);
}
}
}
if (!kt_remove_operate_shall_remove(flag_operate) || (main->setting.flag & kt_remove_main_flag_simulate_d)) return;
if (F_status_is_error_not(main->setting.state.status) && !(flag_operate & kt_remove_flag_file_operate_processed_d)) {
- if (main->call.process_remove) {
- main->setting.state.status = F_okay;
-
- main->setting.state.status = main->call.process_remove(main, path, flag_operate);
- if (F_status_is_error(main->setting.state.status)) return;
-
- if (main->setting.state.status == F_done) {
- main->setting.state.status = F_okay;
+ main->setting.state.status = F_okay;
- return;
- }
- }
+ main->setting.state.status = kt_remove_operate_remove(main, path, flag_operate);
+ if (F_status_is_error(main->setting.state.status)) return;
}
if (F_status_is_error_not(main->setting.state.status)) {
kt_remove_main_t * const main = (kt_remove_main_t *) recurse->state.custom;
- if (main->call.process_remove) {
- recurse->state.status = F_okay;
+ recurse->state.status = F_okay;
- recurse->state.status = main->call.process_remove(
- main,
- path,
- flag & f_directory_recurse_do_flag_top_after_e
- ? recurse->state.code
- : flag & f_directory_recurse_do_flag_directory_e
- ? (recurse->state.code | kt_remove_flag_file_operate_child_d | kt_remove_flag_file_operate_directory_d) & ~kt_remove_flag_file_operate_parent_d
- : (recurse->state.code | kt_remove_flag_file_operate_child_d) & ~kt_remove_flag_file_operate_directory_parent_d
- );
+ recurse->state.status = kt_remove_operate_remove(
+ main,
+ path,
+ flag & f_directory_recurse_do_flag_top_after_e
+ ? recurse->state.code
+ : flag & f_directory_recurse_do_flag_directory_e
+ ? (recurse->state.code | kt_remove_flag_file_operate_child_d | kt_remove_flag_file_operate_directory_d) & ~kt_remove_flag_file_operate_parent_d
+ : (recurse->state.code | kt_remove_flag_file_operate_child_d) & ~kt_remove_flag_file_operate_directory_parent_d
+ );
- if (recurse->state.status == F_done) {
- recurse->state.status = F_okay;
+ if (recurse->state.status == F_done) {
+ recurse->state.status = F_okay;
- return;
- }
+ return;
}
}
#endif // _di_kt_remove_operate_recurse_action_
#ifndef _di_kt_remove_operate_shall_remove_
f_status_t kt_remove_operate_shall_remove(const uint32_t flag) {
- return flag & kt_remove_flag_file_operate_remove_d;
+ return (flag & kt_remove_flag_file_operate_remove_d) && !(flag & kt_remove_flag_file_operate_remove_fail_d) && !(flag & kt_remove_flag_file_operate_remove_not_d);
}
#endif // _di_kt_remove_operate_shall_remove_
if (kt_remove_signal_check(main)) return 0;
- uint32_t flag_out = (main->setting.flag & kt_remove_main_flag_option_used_d) ? 0 : kt_remove_flag_file_operate_remove_d;
+ uint32_t flag_out = (main->setting.flag & kt_remove_main_flag_option_type_used_d) ? 0 : kt_remove_flag_file_operate_remove_d;
kt_remove_operate_memory_check(main, path, &flag_out);
if (F_status_is_error(main->setting.state.status) || (flag_out & kt_remove_flag_file_operate_processed_d)) return flag_out;
if (F_status_is_error(status)) {
main->setting.state.status = status;
- if (!(main->setting.flag & kt_remove_main_flag_simulate_d)) {
- remove_print_warning_file_reason(&main->program.warning, path, kt_remove_print_reason_stat_fail_s);
- }
+ remove_print_warning_file_reason(&main->program.warning, path, kt_remove_print_reason_stat_fail_s);
return 0;
}
}
if (F_status_is_error(main->setting.state.status)) {
- if (!(main->setting.flag & kt_remove_main_flag_simulate_d)) {
- remove_print_warning_file_reason(&main->program.warning, path, kt_remove_print_reason_no_access_s);
- }
+ remove_print_warning_file_reason(&main->program.warning, path, kt_remove_print_reason_no_access_s);
return 0;
}
main->setting.state.status = f_file_stat(path, main->setting.flag & kt_remove_main_flag_follow_d, &statistics);
if (F_status_is_error(main->setting.state.status)) {
- if (!(main->setting.flag & kt_remove_main_flag_simulate_d)) {
- remove_print_warning_file_reason(&main->program.warning, path, kt_remove_print_reason_stat_fail_s);
- }
+ remove_print_warning_file_reason(&main->program.warning, path, kt_remove_print_reason_stat_fail_s);
return flag_out;
}
- if (macro_f_file_type_is_block(statistics.st_mode)) {
- kt_remove_print_simulate_operate_boolean(&main->program.output, f_file_type_name_block_s, F_true);
+ kt_remove_preprocess_file_type(main, path, macro_f_file_type_is_block(statistics.st_mode), f_file_type_name_block_s, kt_remove_main_flag_block_d, 0x1, &flag_out);
- if (main->setting.flag & kt_remove_main_flag_block_d) {
- flag_out |= kt_remove_flag_file_operate_remove_d;
- }
- }
+ kt_remove_preprocess_file_type(main, path, macro_f_file_type_is_character(statistics.st_mode), f_file_type_name_character_s, kt_remove_main_flag_character_d, 0x1, &flag_out);
- if (macro_f_file_type_is_character(statistics.st_mode)) {
- kt_remove_print_simulate_operate_boolean(&main->program.output, f_file_type_name_character_s, F_true);
+ kt_remove_preprocess_file_type(main, path, macro_f_file_type_is_directory(statistics.st_mode), f_file_type_name_directory_s, kt_remove_main_flag_directory_d, 0x1, &flag_out);
- if (main->setting.flag & kt_remove_main_flag_character_d) {
- flag_out |= kt_remove_flag_file_operate_remove_d;
- }
- }
+ kt_remove_preprocess_file_type(main, path, macro_f_file_type_is_fifo(statistics.st_mode), f_file_type_name_fifo_s, kt_remove_main_flag_fifo_d, 0x1, &flag_out);
- if (macro_f_file_type_is_directory(statistics.st_mode)) {
- kt_remove_print_simulate_operate_boolean(&main->program.output, f_file_type_name_directory_s, F_true);
+ kt_remove_preprocess_file_type(main, path, macro_f_file_type_is_link(statistics.st_mode), f_file_type_name_link_s, kt_remove_main_flag_link_d, 0x1, &flag_out);
- flag_out |= kt_remove_flag_file_operate_directory_d;
+ kt_remove_preprocess_file_type(main, path, macro_f_file_type_is_regular(statistics.st_mode), f_file_type_name_regular_s, kt_remove_main_flag_regular_d, 0x3, &flag_out);
- if (main->setting.flag & kt_remove_main_flag_directory_d) {
- flag_out |= kt_remove_flag_file_operate_remove_d;
- }
- }
-
- if (macro_f_file_type_is_fifo(statistics.st_mode)) {
- kt_remove_print_simulate_operate_boolean(&main->program.output, f_file_type_name_fifo_s, F_true);
-
- if (main->setting.flag & kt_remove_main_flag_fifo_d) {
- flag_out |= kt_remove_flag_file_operate_remove_d;
- }
- }
+ kt_remove_preprocess_file_type(main, path, macro_f_file_type_is_socket(statistics.st_mode), f_file_type_name_socket_s, kt_remove_main_flag_socket_d, 0x1, &flag_out);
- if (macro_f_file_type_is_link(statistics.st_mode)) {
- kt_remove_print_simulate_operate_boolean(&main->program.output, f_file_type_name_link_s, F_true);
+ kt_remove_preprocess_file_type(main, path, macro_f_file_type_is_unknown(statistics.st_mode), f_file_type_name_unknown_s, kt_remove_main_flag_unknown_d, 0x0, &flag_out);
- if (main->setting.flag & kt_remove_main_flag_link_d) {
- flag_out |= kt_remove_flag_file_operate_remove_d;
- }
- }
-
- if (macro_f_file_type_is_regular(statistics.st_mode)) {
- kt_remove_print_simulate_operate_boolean(&main->program.output, f_file_type_name_regular_s, F_true);
-
- if (main->setting.flag & kt_remove_main_flag_regular_d) {
- flag_out |= kt_remove_flag_file_operate_remove_d;
- }
- }
-
- if (macro_f_file_type_is_socket(statistics.st_mode)) {
- kt_remove_print_simulate_operate_boolean(&main->program.output, f_file_type_name_socket_s, F_true);
-
- if (main->setting.flag & kt_remove_main_flag_socket_d) {
- flag_out |= kt_remove_flag_file_operate_remove_d;
- }
+ if (macro_f_file_type_is_directory(statistics.st_mode)) {
+ flag_out |= kt_remove_flag_file_operate_directory_d;
}
- if (main->setting.flag & kt_remove_main_flag_unknown_d) {
- kt_remove_print_simulate_operate_boolean(&main->program.output, f_file_type_name_unknown_s, F_true);
-
- if (macro_f_file_type_is_unknown(statistics.st_mode)) {
- flag_out |= kt_remove_flag_file_operate_remove_d;
- }
- }
+ if (!(main->setting.flag & kt_remove_main_flag_simulate_d) && (flag_out & kt_remove_flag_file_operate_remove_fail_d)) return flag_out;
if (main->setting.flag & kt_remove_main_flag_user_d) {
for (i = 0; i < main->setting.users.used; ++i) {
if (main->setting.flag & kt_remove_main_flag_empty_all_d) {
if (main->setting.state.status == F_true) {
if (main->setting.flag & kt_remove_main_flag_empty_not_fail_d) {
+ kt_remove_print_error_file_is_a(&main->program.error, path, kt_remove_empty_s, 0);
+
flag_out |= kt_remove_flag_file_operate_remove_fail_d;
}
else if (main->setting.flag & kt_remove_main_flag_empty_not_d) {
}
else if (main->setting.state.status == F_false) {
if (main->setting.flag & kt_remove_main_flag_empty_only_fail_d) {
+ kt_remove_print_error_file_is_a(&main->program.error, path, kt_remove_not_empty_s, 0);
+
flag_out |= kt_remove_flag_file_operate_remove_fail_d;
}
else if (main->setting.flag & kt_remove_main_flag_empty_only_d || !(main->setting.flag & kt_remove_main_flag_recurse_d)) {
}
else if (main->setting.state.status == F_false) {
if (!(main->setting.flag & kt_remove_main_flag_recurse_d)) {
+ kt_remove_print_error_file_is_a(&main->program.error, path, kt_remove_not_empty_s, 0);
+
flag_out |= kt_remove_flag_file_operate_remove_fail_d;
}
}
}
#endif // _di_kt_remove_preprocess_file_dates_
+#ifndef _di_kt_remove_preprocess_file_type_
+ void kt_remove_preprocess_file_type(kt_remove_main_t * const main, const f_string_static_t path, const uint32_t is, f_string_static_t name, const uint64_t type, const uint8_t code, uint32_t * const flag_out) {
+
+ if (!main || !flag_out) return;
+
+ if (is) {
+ *flag_out |= kt_remove_flag_file_operate_remove_d;
+
+ if (main->setting.flag & type) {
+ *flag_out |= kt_remove_flag_file_operate_remove_d;
+ }
+ else if (main->setting.flag & kt_remove_main_flag_option_type_d) {
+ kt_remove_print_error_file_is_a(&main->program.error, path, name, code);
+
+ *flag_out |= kt_remove_flag_file_operate_remove_fail_d;
+ }
+ }
+
+ if (is || (main->setting.flag & type)) {
+ kt_remove_print_simulate_operate_boolean(&main->program.output, name, is);
+ }
+ }
+#endif // _di_kt_remove_preprocess_file_type_
+
#ifndef _di_kt_remove_preprocess_recurse_action_
void kt_remove_preprocess_recurse_action(f_directory_recurse_do_t * const recurse, const f_string_static_t name, const uint32_t flag) {
#endif // _di_kt_remove_preprocess_file_dates_
/**
+ * Perform pre-processing (including simulation) of the file operation, specifically handling file types.
+ *
+ * @param main
+ * The main program and settings data.
+ *
+ * Must not be NULL.
+ *
+ * This alters main.setting.state.status:
+ * F_yes on date matched.
+ * F_no on no matches.
+ * F_parameter (with error bit) if a parameter is invalid.
+ * @param path
+ * The path to the file to operate on.
+ * @param is
+ * A boolean designating whether or not this is of a particular type.
+ * This is expected to be passed something like macro_f_file_type_is_block().
+ * @param name
+ * The name of the file type being tested.
+ * @param type
+ * A flag from the kt_remove_main_flag_*_d representing the file type.
+ * @param code
+ * A code intended to be passed to kt_remove_print_error_file_is_a() as needed.
+ * @param flag_out
+ * The return flag to modify if needed.
+ *
+ * Must not be NULL.
+ */
+#ifndef _di_kt_remove_preprocess_file_type_
+ extern void kt_remove_preprocess_file_type(kt_remove_main_t * const main, const f_string_static_t path, const uint32_t is, f_string_static_t name, const uint64_t type, const uint8_t code, uint32_t * const flag_out);
+#endif // _di_kt_remove_preprocess_file_type_
+
+/**
* Perform directory recursion for a single file operation action.
*
* @param recurse
}
#endif // _di_kt_remove_print_error_
+#ifndef _di_kt_remove_print_error_file_is_a_
+ f_status_t kt_remove_print_error_file_is_a(fl_print_t * const print, const f_string_static_t path, const f_string_static_t is, const uint8_t code) {
+
+ if (!print || !print->custom) return F_status_set_error(F_output_not);
+ if (print->verbosity < f_console_verbosity_error_e) return F_output_not;
+
+ kt_remove_main_t * const main = (kt_remove_main_t *) print->custom;
+
+ if (main->setting.flag & kt_remove_main_flag_simulate_d) 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("%[', is ", print->to, print->set->error);
+
+ if (code & 0x1) {
+ fl_print_format("a ", print->to);
+ }
+
+ fl_print_format("%Q", print->to, is);
+
+ if (code & 0x2) {
+ fl_print_format(" file", print->to);
+ }
+
+ fl_print_format(".%]%r", print->to, print->set->error, f_string_eol_s);
+
+ f_file_stream_unlock(print->to);
+
+ return F_okay;
+ }
+#endif // _di_kt_remove_print_error_file_is_a_
+
#ifndef _di_kt_remove_print_error_file_
f_status_t kt_remove_print_error_file(fl_print_t * const print, const f_string_t function, const f_string_static_t name, const f_string_static_t operation, const uint8_t type) {
* F_output_not on success, but no printing is performed.
*
* F_output_not (with error bit) if setting is NULL.
- *
- * @see fll_error_file_print()
*/
#ifndef _di_kt_remove_print_error_file_
extern f_status_t kt_remove_print_error_file(fl_print_t * const print, const f_string_t function, const f_string_static_t name, const f_string_static_t operation, const uint8_t type);
#endif // _di_kt_remove_print_error_file_
/**
+ * Print error message about not being able to delete a directory due to something the directory is.
+ *
+ * @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.
+ * @param is
+ * Designate what the file is.
+ * @param code
+ * Set to 0x1 to print an ' a' before the 'is' parameter.
+ * Set to 0x2 to print ' file' after the 'is' parameter.
+ *
+ * @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.
+ */
+#ifndef _di_kt_remove_print_error_file_is_a_
+ extern f_status_t kt_remove_print_error_file_is_a(fl_print_t * const print, const f_string_static_t path, const f_string_static_t is, const uint8_t code);
+#endif // _di_kt_remove_print_error_file_is_a_
+
+/**
* Print file related error or warning messages, using status from the parameter.
*
* This is useful for functions where the main.state.status is not being used, such as with fl_directory_do().
* F_output_not on success, but no printing is performed.
*
* F_output_not (with error bit) if setting is NULL.
- *
- * @see fll_error_file_print()
*/
#ifndef _di_kt_remove_print_error_file_status_
extern f_status_t kt_remove_print_error_file_status(fl_print_t * const print, const f_string_t function, const f_string_static_t name, const f_string_static_t operation, const uint8_t type, const f_status_t status);
* 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_print_error_id_
extern f_status_t kt_remove_print_error_id(fl_print_t * const print, const f_string_t function, const f_string_static_t name_id, const bool is_user);
* 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_print_error_status_
extern f_status_t kt_remove_print_error_status(fl_print_t * const print, const f_string_t function, const f_status_t status);
* F_output_not on success, but no printing is performed.
*
* F_output_not (with error bit) if setting is NULL.
- *
- * @see f_file_stream_lock()
- * @see f_file_stream_unlock()
- * @see fl_print_format()
*/
#ifndef _di_kt_remove_print_error_parameter_missing_value_requires_amount_
extern f_status_t kt_remove_print_error_parameter_missing_value_requires_amount(fl_print_t * const print, const f_string_static_t symbol, const f_string_static_t parameter, const f_number_unsigned_t amount);
* F_output_not on success, but no printing is performed.
*
* F_output_not (with error bit) if setting is NULL.
- *
- * @see f_file_stream_lock()
- * @see f_file_stream_unlock()
- * @see fl_print_format()
*/
#ifndef _di_kt_remove_print_error_parameter_missing_value_requires_yesno_
extern f_status_t kt_remove_print_error_parameter_missing_value_requires_yesno(fl_print_t * const print, const f_string_static_t symbol, const f_string_static_t parameter);
* F_output_not on success, but no printing is performed.
*
* F_output_not (with error bit) if setting is NULL.
- *
- * @see fll_print_format()
*/
#ifndef _di_kt_remove_print_error_parameter_no_files_
extern f_status_t kt_remove_print_error_parameter_no_files(fl_print_t * const print);
* F_output_not on success, but no printing is performed.
*
* F_output_not (with error bit) if setting is NULL.
- *
- * @see fll_print_format()
*/
#ifndef _di_kt_remove_print_error_recursion_max_
extern f_status_t kt_remove_print_error_recursion_max(fl_print_t * const print, const f_string_static_t path);
* F_output_not on success, but no printing is performed.
*
* F_output_not (with error bit) if setting is NULL.
- *
- * @see f_file_stream_lock()
- * @see f_file_stream_unlock()
- * @see fl_print_format()
*/
#ifndef _di_kt_remove_print_error_parameter_unknown_value_
extern f_status_t kt_remove_print_error_parameter_unknown_value(fl_print_t * const print, const f_string_static_t symbol, const f_string_static_t parameter, const f_string_static_t value);
kt_remove_main_t * const main = (kt_remove_main_t *) print->custom;
if (print->verbosity < f_console_verbosity_verbose_e || (main->setting.flag & kt_remove_main_flag_force_d) && print->verbosity < f_console_verbosity_debug_e) return F_output_not;
+ if (main->setting.flag & kt_remove_main_flag_simulate_d) return F_output_not;
f_file_stream_lock(print->to);
return;
}
- if (main->call.process_normal) {
- main->call.process_normal(main);
- }
+ kt_remove_normal_operate(main);
if (kt_remove_signal_check(main)) {
fll_program_print_signal_received(&main->program.warning, main->program.signal_received);
data.setting.program_name_long = &kt_remove_program_name_long_s;
data.call.print_help = &kt_remove_print_message_help;
- data.call.process_normal = &kt_remove_normal_operate;
- data.call.process_remove = &kt_remove_operate_remove;
#ifdef _en_kt_default_to_utc_
data.setting.flag |= kt_remove_flag_utc_d;
data.setting.program_name_long = &kt_remove_program_name_long_s;
data.call.print_help = &kt_remove_rm_print_message_help;
- data.call.process_normal = &kt_remove_normal_operate;
- data.call.process_remove = &kt_remove_rm_operate_remove;
#ifdef _en_kt_default_to_utc_
data.setting.flag |= kt_remove_flag_utc_d;
extern "C" {
#endif
-#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 '%]", 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 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_
-
-#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) {
#endif
/**
- * 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.
- *
- * 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_
- 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.
*
* @param print
extern "C" {
#endif
-#ifndef _di_kt_remove_rm_operate_remove_
- f_status_t kt_remove_rm_operate_remove(kt_remove_main_t * const main, const f_string_static_t path, const uint32_t flag_operate) {
-
- if (!main) return F_status_set_error(F_parameter);
-
- if (!flag_operate) return F_status_set_error(F_parameter);
-
- if (flag_operate & kt_remove_flag_file_operate_directory_d) {
- if (main->setting.flag & kt_remove_main_flag_directory_d) {
- if (!(flag_operate & kt_remove_flag_file_operate_empty_d) && (main->setting.flag & kt_remove_main_flag_empty_only_d)) {
- kt_remove_rm_print_error_directory_empty_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 kt_remove_operate_remove(main, path, flag_operate);
- }
-#endif // _di_kt_remove_rm_operate_remove_
-
#ifndef _di_kt_remove_rm_setting_load_
void kt_remove_rm_setting_load(const f_console_arguments_t arguments, kt_remove_main_t * const main) {
if (F_status_is_error(main->setting.state.status)) return;
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;
+ main->setting.flag |= kt_remove_main_flag_directory_d | kt_remove_main_flag_empty_only_fail_d;
}
if (main->program.parameters.array[kt_remove_rm_parameter_each_e].result & f_console_result_found_e) {
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 | kt_remove_main_flag_directory_d;
- // Must not have the empty only flag set while recursive.
- main->setting.flag &= ~kt_remove_main_flag_empty_only_d;
+ // Must not have the empty flags set while recursive.
+ main->setting.flag &= ~kt_remove_main_flag_empty_all_d;
}
// @todo the kt_remove_main_flag_root_d needs to be implemented in the base remove project.
}
// 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;
+ main->setting.flag |= kt_remove_main_flag_file_types_except_directory_d | kt_remove_main_flag_option_type_d| kt_remove_main_flag_option_used_d;
}
#endif // _di_kt_remove_rm_setting_load_
#endif
/**
- * Perform rm program remove operation.
- *
- * This prints error messages as appropriate.
- *
- * @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.
- *
- * Must not be NULL.
- *
- * This alters setting.status:
- * Success from: kt_remove_operate_remove().
- *
- * F_no (with error bit) on failure and file is not to be removed or cannot be removed.
- *
- * Errors (with error bit) from: kt_remove_operate_remove().
- *
- * F_parameter (with error bit) on parameter error.
- * @param path
- * The file being processed.
- * @param flag_operate
- * The operate file specific flags from kt_remove_flag_file_operate_*_e.
- *
- * @return
- * Success from: kt_remove_operate_remove().
- *
- * F_no (with error bit) on failure and file is not to be removed or cannot be removed.
- *
- * Errors (with error bit) from: kt_remove_operate_remove().
- *
- * F_parameter (with error bit) on parameter error.
- *
- * @see kt_remove_operate_remove()
- */
-#ifndef _di_kt_remove_rm_operate_remove_
- extern f_status_t kt_remove_rm_operate_remove(kt_remove_main_t * const main, const f_string_static_t path, const uint32_t flag_operate);
-#endif // _di_kt_remove_rm_operate_remove_
-
-/**
* Perform the rm program setting load process.
*
* This prints error messages as appropriate.
data.setting.program_name_long = &kt_remove_program_name_long_s;
data.call.print_help = &kt_remove_rmdir_print_message_help;
- data.call.process_normal = &kt_remove_normal_operate;
- data.call.process_remove = &kt_remove_rmdir_operate_remove;
#ifdef _en_kt_default_to_utc_
data.setting.flag |= kt_remove_flag_utc_d;
extern "C" {
#endif
-#ifndef _di_kt_remove_rmdir_print_error_directory_not_
- f_status_t kt_remove_rmdir_print_error_directory_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("%[', file is not 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_rmdir_print_error_directory_not_
-
#ifndef _di_kt_remove_rmdir_print_message_help_
f_status_t kt_remove_rmdir_print_message_help(fl_print_t * const print, const f_color_context_t context) {
#endif
/**
- * Print error message about not being able to delete a file because that file is not a 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_rmdir_print_error_directory_not_
- extern f_status_t kt_remove_rmdir_print_error_directory_not(fl_print_t * const print, const f_string_static_t path);
-#endif // _di_kt_remove_rmdir_print_error_directory_not_
-
-/**
* Print help.
*
* @param print
extern "C" {
#endif
-#ifndef _di_kt_remove_rmdir_operate_remove_
- f_status_t kt_remove_rmdir_operate_remove(kt_remove_main_t * const main, const f_string_static_t path, const uint32_t flag_operate) {
-
- if (!main) return F_status_set_error(F_parameter);
-
- if (!flag_operate) return F_status_set_error(F_parameter);
-
- if (flag_operate & kt_remove_flag_file_operate_directory_d) {
- return kt_remove_operate_remove(main, path, flag_operate);
- }
-
- kt_remove_rmdir_print_error_directory_not(&main->program.error, path);
-
- return F_status_set_error(F_no);
- }
-#endif // _di_kt_remove_rmdir_operate_remove_
-
#ifndef _di_kt_remove_rmdir_setting_load_
void kt_remove_rmdir_setting_load(const f_console_arguments_t arguments, kt_remove_main_t * const main) {
}
// Make sure only directoreis are deleted.
- main->setting.flag |= kt_remove_main_flag_directory_d | kt_remove_main_flag_option_used_d;
+ main->setting.flag |= kt_remove_main_flag_directory_d | kt_remove_main_flag_option_type_d | kt_remove_main_flag_option_used_d;
}
#endif // _di_kt_remove_rmdir_setting_load_
#endif
/**
- * Perform rmdir program remove operation.
- *
- * This prints error messages as appropriate.
- *
- * @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.
- *
- * Must not be NULL.
- *
- * This alters setting.status:
- * Success from: kt_remove_operate_remove().
- *
- * F_no (with error bit) on failure and file is not to be removed or cannot be removed.
- *
- * Errors (with error bit) from: kt_remove_operate_remove().
- *
- * F_parameter (with error bit) on parameter error.
- * @param path
- * The file being processed.
- * @param flag_operate
- * The operate file specific flags from kt_remove_flag_file_operate_*_e.
- *
- * @return
- * Success from: kt_remove_operate_remove().
- *
- * F_no (with error bit) on failure and file is not to be removed or cannot be removed.
- *
- * Errors (with error bit) from: kt_remove_operate_remove().
- *
- * F_parameter (with error bit) on parameter error.
- *
- * @see kt_remove_operate_remove()
- */
-#ifndef _di_kt_remove_rmdir_operate_remove_
- extern f_status_t kt_remove_rmdir_operate_remove(kt_remove_main_t * const main, const f_string_static_t path, const uint32_t flag_operate);
-#endif // _di_kt_remove_rmdir_operate_remove_
-
-/**
* Perform the rmdir program setting load process.
*
* This prints error messages as appropriate.
data.setting.program_name_long = &kt_remove_program_name_long_s;
data.call.print_help = &kt_remove_unlink_print_message_help;
- data.call.process_normal = &kt_remove_normal_operate;
- data.call.process_remove = &kt_remove_unlink_operate_remove;
#ifdef _en_kt_default_to_utc_
data.setting.flag |= kt_remove_flag_utc_d;
extern "C" {
#endif
-#ifndef _di_kt_remove_unlink_print_error_link_not_
- f_status_t kt_remove_unlink_print_error_link_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 unlink '%]", 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 link.%]%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_unlink_print_error_link_not_
-
#ifndef _di_kt_remove_unlink_print_message_help_
f_status_t kt_remove_unlink_print_message_help(fl_print_t * const print, const f_color_context_t context) {
#endif
/**
- * Print error message about not being able to delete a file because that file is not a link.
- *
- * @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_unlink_print_error_link_not_
- extern f_status_t kt_remove_unlink_print_error_link_not(fl_print_t * const print, const f_string_static_t path);
-#endif // _di_kt_remove_unlink_print_error_link_not_
-
-/**
* Print help.
*
* @param print
extern "C" {
#endif
-#ifndef _di_kt_remove_unlink_operate_remove_
- f_status_t kt_remove_unlink_operate_remove(kt_remove_main_t * const main, const f_string_static_t path, const uint32_t flag_operate) {
-
- if (!main) return F_status_set_error(F_parameter);
-
- if (!flag_operate) return F_status_set_error(F_parameter);
-
- if (flag_operate & kt_remove_flag_file_operate_link_d) {
- return kt_remove_operate_remove(main, path, flag_operate);
- }
-
- kt_remove_unlink_print_error_link_not(&main->program.error, path);
-
- return F_status_set_error(F_no);
- }
-#endif // _di_kt_remove_unlink_operate_remove_
-
#ifndef _di_kt_remove_unlink_setting_load_
void kt_remove_unlink_setting_load(const f_console_arguments_t arguments, kt_remove_main_t * const main) {
}
// Make sure only links are deleted.
- main->setting.flag |= kt_remove_main_flag_link_d | kt_remove_main_flag_option_used_d;
+ main->setting.flag |= kt_remove_main_flag_link_d | kt_remove_main_flag_option_type_d | kt_remove_main_flag_option_used_d;
}
#endif // _di_kt_remove_unlink_setting_load_
#endif
/**
- * Perform unlink program remove operation.
- *
- * This prints error messages as appropriate.
- *
- * @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.
- *
- * Must not be NULL.
- *
- * This alters setting.status:
- * Success from: kt_remove_operate_remove().
- *
- * F_no (with error bit) on failure and file is not to be removed or cannot be removed.
- *
- * Errors (with error bit) from: kt_remove_operate_remove().
- *
- * F_parameter (with error bit) on parameter error.
- * @param path
- * The file being processed.
- * @param flag_operate
- * The operate file specific flags from kt_remove_flag_file_operate_*_e.
- *
- * @return
- * Success from: kt_remove_operate_remove().
- *
- * F_no (with error bit) on failure and file is not to be removed or cannot be removed.
- *
- * Errors (with error bit) from: kt_remove_operate_remove().
- *
- * F_parameter (with error bit) on parameter error.
- *
- * @see kt_remove_operate_remove()
- */
-#ifndef _di_kt_remove_unlink_operate_remove_
- extern f_status_t kt_remove_unlink_operate_remove(kt_remove_main_t * const main, const f_string_static_t path, const uint32_t flag_operate);
-#endif // _di_kt_remove_unlink_operate_remove_
-
-/**
* Perform the unlink program setting load process.
*
* This prints error messages as appropriate.
data.setting.program_name_long = &kt_remove_program_name_long_s;
data.call.print_help = &kt_remove_print_message_help;
- data.call.process_normal = &kt_remove_process_normal_operate;
#ifdef _en_kt_default_to_utc_
data.setting.flag |= kt_remove_flag_utc_d;