Utilize the FLL file type strings.
Merge the separate file stat printing into the simulate function and create the appropriate print functions.
Fix the loop variable name order ('i' before 'j').
Fix the printing of the Time and EpochTime units.
Print the time units on the same line as the `updated`, `accessed`, and `changed`.
Improve error printing for user and group IDs when the ID is not found or too large.
#define _di_f_file_type_
#define _di_f_file_type_at_
//#define _di_f_file_type_d_
-#define _di_f_file_type_name_block_s_
-#define _di_f_file_type_name_character_s_
-#define _di_f_file_type_name_directory_s_
-#define _di_f_file_type_name_fifo_s_
-#define _di_f_file_type_name_file_s_
-#define _di_f_file_type_name_link_s_
-#define _di_f_file_type_name_regular_s_
-#define _di_f_file_type_name_socket_s_
-#define _di_f_file_type_s_
+//#define _di_f_file_type_name_block_s_
+//#define _di_f_file_type_name_character_s_
+//#define _di_f_file_type_name_directory_s_
+//#define _di_f_file_type_name_fifo_s_
+//#define _di_f_file_type_name_file_s_
+//#define _di_f_file_type_name_link_s_
+//#define _di_f_file_type_name_regular_s_
+//#define _di_f_file_type_name_socket_s_
+//#define _di_f_file_type_name_unknown_s_
+//#define _di_f_file_type_s_
//#define _di_f_file_umask_get_
#define _di_f_file_umask_set_
#define _di_f_file_write_
#define _di_f_file_type_name_link_s_
#define _di_f_file_type_name_regular_s_
#define _di_f_file_type_name_socket_s_
+#define _di_f_file_type_name_unknown_s_
//#define _di_f_file_type_s_
//#define _di_f_file_umask_get_
#define _di_f_file_umask_set_
ids->array[ids->used] = kt_remove_get_id(main, main->program.parameters.arguments.array[parameter->values.array[i]], is_user);
if (F_status_is_error(main->setting.state.status)) {
- kt_remove_print_error(&main->program.error, macro_kt_remove_f(kt_remove_get_id));
+ kt_remove_print_error_id(&main->program.error, macro_kt_remove_f(kt_remove_get_id), main->program.parameters.arguments.array[parameter->values.array[i]], is_user);
return;
}
* This alters setting.status:
* F_okay on success.
*
- * F_parameter (with error bit) on parameter error.
+ * F_parameter (with error bit) if a parameter is invalid.
*
* Errors (with error bit) from: f_memory_array_increase_by().
* Errors (with error bit) from: kt_remove_get_id().
#ifndef _di_kt_remove_s_
const f_string_static_t kt_remove_each_s = macro_f_string_static_t_initialize_1(KT_REMOVE_each_s, 0, KT_REMOVE_each_s_length);
const f_string_static_t kt_remove_empty_s = macro_f_string_static_t_initialize_1(KT_REMOVE_empty_s, 0, KT_REMOVE_empty_s_length);
+ const f_string_static_t kt_remove_different_s = macro_f_string_static_t_initialize_1(KT_REMOVE_different_s, 0, KT_REMOVE_different_s_length);
const f_string_static_t kt_remove_follow_s = macro_f_string_static_t_initialize_1(KT_REMOVE_follow_s, 0, KT_REMOVE_follow_s_length);
const f_string_static_t kt_remove_force_s = macro_f_string_static_t_initialize_1(KT_REMOVE_force_s, 0, KT_REMOVE_force_s_length);
+ const f_string_static_t kt_remove_group_s = macro_f_string_static_t_initialize_1(KT_REMOVE_group_s, 0, KT_REMOVE_group_s_length);
const f_string_static_t kt_remove_ignore_s = macro_f_string_static_t_initialize_1(KT_REMOVE_ignore_s, 0, KT_REMOVE_ignore_s_length);
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_recurse_s = macro_f_string_static_t_initialize_1(KT_REMOVE_recurse_s, 0, KT_REMOVE_recurse_s_length);
const f_string_static_t kt_remove_remove_s = macro_f_string_static_t_initialize_1(KT_REMOVE_remove_s, 0, KT_REMOVE_remove_s_length);
const f_string_static_t kt_remove_root_s = macro_f_string_static_t_initialize_1(KT_REMOVE_root_s, 0, KT_REMOVE_root_s_length);
+ const f_string_static_t kt_remove_same_s = macro_f_string_static_t_initialize_1(KT_REMOVE_same_s, 0, KT_REMOVE_same_s_length);
const f_string_static_t kt_remove_skip_s = macro_f_string_static_t_initialize_1(KT_REMOVE_skip_s, 0, KT_REMOVE_skip_s_length);
const f_string_static_t kt_remove_today_s = macro_f_string_static_t_initialize_1(KT_REMOVE_today_s, 0, KT_REMOVE_today_s_length);
const f_string_static_t kt_remove_tomorrow_s = macro_f_string_static_t_initialize_1(KT_REMOVE_tomorrow_s, 0, KT_REMOVE_tomorrow_s_length);
const f_string_static_t kt_remove_tree_s = macro_f_string_static_t_initialize_1(KT_REMOVE_tree_s, 0, KT_REMOVE_tree_s_length);
const f_string_static_t kt_remove_yes_s = macro_f_string_static_t_initialize_1(KT_REMOVE_yes_s, 0, KT_REMOVE_yes_s_length);
const f_string_static_t kt_remove_yesterday_s = macro_f_string_static_t_initialize_1(KT_REMOVE_yesterday_s, 0, KT_REMOVE_yesterday_s_length);
+ const f_string_static_t kt_remove_user_s = macro_f_string_static_t_initialize_1(KT_REMOVE_user_s, 0, KT_REMOVE_user_s_length);
#endif // _di_kt_remove_s_
#ifndef _di_kt_remove_date_s_
#ifndef _di_kt_remove_s_
#define KT_REMOVE_each_s "each"
#define KT_REMOVE_empty_s "empty"
+ #define KT_REMOVE_different_s "different"
#define KT_REMOVE_follow_s "follow"
#define KT_REMOVE_force_s "force"
+ #define KT_REMOVE_group_s "group"
#define KT_REMOVE_ignore_s "ignore"
#define KT_REMOVE_never_s "never"
#define KT_REMOVE_no_s "no"
#define KT_REMOVE_recurse_s "recurse"
#define KT_REMOVE_remove_s "remove"
#define KT_REMOVE_root_s "root"
+ #define KT_REMOVE_same_s "same"
#define KT_REMOVE_skip_s "skip"
#define KT_REMOVE_today_s "today"
#define KT_REMOVE_tomorrow_s "tomorrow"
#define KT_REMOVE_tree_s "tree"
#define KT_REMOVE_yes_s "yes"
#define KT_REMOVE_yesterday_s "yesterday"
+ #define KT_REMOVE_user_s "user"
#define KT_REMOVE_each_s_length 4
#define KT_REMOVE_empty_s_length 5
+ #define KT_REMOVE_different_s_length 9
#define KT_REMOVE_follow_s_length 6
#define KT_REMOVE_force_s_length 5
+ #define KT_REMOVE_group_s_length 5
#define KT_REMOVE_ignore_s_length 6
#define KT_REMOVE_never_s_length 5
#define KT_REMOVE_no_s_length 2
#define KT_REMOVE_recurse_s_length 7
#define KT_REMOVE_remove_s_length 6
#define KT_REMOVE_root_s_length 4
+ #define KT_REMOVE_same_s_length 4
#define KT_REMOVE_skip_s_length 4
#define KT_REMOVE_today_s_length 5
#define KT_REMOVE_tomorrow_s_length 8
#define KT_REMOVE_tree_s_length 4
#define KT_REMOVE_yes_s_length 3
#define KT_REMOVE_yesterday_s_length 9
+ #define KT_REMOVE_user_s_length 4
extern const f_string_static_t kt_remove_each_s;
extern const f_string_static_t kt_remove_empty_s;
+ extern const f_string_static_t kt_remove_different_s;
extern const f_string_static_t kt_remove_follow_s;
extern const f_string_static_t kt_remove_force_s;
+ extern const f_string_static_t kt_remove_group_s;
extern const f_string_static_t kt_remove_ignore_s;
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_recurse_s;
extern const f_string_static_t kt_remove_remove_s;
extern const f_string_static_t kt_remove_root_s;
+ extern const f_string_static_t kt_remove_same_s;
extern const f_string_static_t kt_remove_skip_s;
extern const f_string_static_t kt_remove_today_s;
extern const f_string_static_t kt_remove_tomorrow_s;
extern const f_string_static_t kt_remove_tree_s;
extern const f_string_static_t kt_remove_yes_s;
extern const f_string_static_t kt_remove_yesterday_s;
+ extern const f_string_static_t kt_remove_user_s;
#endif // _di_kt_remove_s_
/**
f_number_unsigned_t i = 0;
- // @todo move all file stat print commands inside this.
struct stat statistics;
memset(&statistics, 0, sizeof(struct stat));
main->setting.state.status = f_file_stat(path, main->setting.flag & kt_remove_main_flag_follow_d, &statistics);
- kt_remove_print_simulate_operate_file_stat(&main->program.output, 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);
return flag_out;
}
- if (main->setting.flag & kt_remove_main_flag_block_d) {
- if (macro_f_file_type_is_block(statistics.st_mode)) {
+ 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);
+
+ if (main->setting.flag & kt_remove_main_flag_block_d) {
flag_out |= kt_remove_flag_file_operate_remove_d;
}
}
- if (main->setting.flag & kt_remove_main_flag_character_d) {
- if (macro_f_file_type_is_character(statistics.st_mode)) {
+ 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);
+
+ if (main->setting.flag & kt_remove_main_flag_character_d) {
flag_out |= kt_remove_flag_file_operate_remove_d;
}
}
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);
+
flag_out |= kt_remove_flag_file_operate_directory_d;
if (main->setting.flag & kt_remove_main_flag_directory_d) {
}
}
- if (main->setting.flag & kt_remove_main_flag_fifo_d) {
- if (macro_f_file_type_is_fifo(statistics.st_mode)) {
+ 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;
}
}
- if (main->setting.flag & kt_remove_main_flag_link_d) {
- if (macro_f_file_type_is_link(statistics.st_mode)) {
+ 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);
+
+ if (main->setting.flag & kt_remove_main_flag_link_d) {
flag_out |= kt_remove_flag_file_operate_remove_d;
}
}
- if (main->setting.flag & kt_remove_main_flag_regular_d) {
- if (macro_f_file_type_is_regular(statistics.st_mode)) {
+ 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 (main->setting.flag & kt_remove_main_flag_socket_d) {
- if (macro_f_file_type_is_socket(statistics.st_mode)) {
+ 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 (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 (statistics.st_uid == (uid_t) main->setting.users.array[i]) break;
} // for
+ kt_remove_print_simulate_operate_id(&main->program.output, (f_number_unsigned_t) statistics.st_uid, F_true);
+
if (i < main->setting.users.used) {
flag_out |= kt_remove_flag_file_operate_remove_d;
}
}
if (main->setting.flag & kt_remove_main_flag_same_d) {
+ kt_remove_print_simulate_operate_boolean(&main->program.output, kt_remove_same_s, statistics.st_uid == geteuid());
+
if (statistics.st_uid == geteuid()) {
flag_out |= kt_remove_flag_file_operate_remove_d;
}
}
if (main->setting.flag & kt_remove_main_flag_different_d) {
+ kt_remove_print_simulate_operate_boolean(&main->program.output, kt_remove_different_s, statistics.st_uid != geteuid());
+
if (statistics.st_uid != geteuid()) {
flag_out |= kt_remove_flag_file_operate_remove_d;
}
if (statistics.st_gid == (gid_t) main->setting.groups.array[i]) break;
} // for
+ kt_remove_print_simulate_operate_id(&main->program.output, (f_number_unsigned_t) statistics.st_gid, F_false);
+
if (i < main->setting.groups.used) {
flag_out |= kt_remove_flag_file_operate_remove_d;
}
if (main->setting.flag & kt_remove_main_flag_mode_d) {
const mode_t mode = statistics.st_mode & F_file_mode_all_d;
+ const f_string_static_t modes[] = {
+ kt_remove_mode_word_different_s,
+ kt_remove_mode_word_same_s,
+ kt_remove_mode_word_similar_s,
+ kt_remove_mode_word_not_s,
+ };
+
+ const uint8_t types[] = {
+ kt_remove_flag_mode_different_d,
+ kt_remove_flag_mode_same_d,
+ kt_remove_flag_mode_similar_d,
+ kt_remove_flag_mode_not_d,
+ };
+
+ kt_remove_print_simulate_operate_mode(&main->program.output, (f_number_unsigned_t) mode, f_string_empty_s);
+
for (i = 0; i < main->setting.modes.used; ++i) {
if (kt_remove_signal_check(main)) return flag_out;
} // for
if (i < main->setting.modes.used) {
+ for (uint8_t j = 0; j < 4; ++j) {
+
+ if (main->setting.modes.array[i].type == types[j]) {
+ kt_remove_print_simulate_operate_mode(&main->program.output, (f_number_unsigned_t) main->setting.modes.array[i].mode, modes[j]);
+
+ break;
+ }
+ } // for
+
flag_out |= kt_remove_flag_file_operate_remove_d;
}
}
- kt_remove_preprocess_file_dates(main, path, flag_operate, statistics, &flag_out);
+ kt_remove_preprocess_file_dates(main, path, flag_operate, statistics);
if (F_status_is_error(main->setting.state.status)) return flag_out;
+ if (main->setting.state.status == F_yes) {
+ flag_out |= kt_remove_flag_file_operate_remove_d;
+ }
+
if (flag_out & kt_remove_flag_file_operate_directory_d) {
flag_out |= kt_remove_flag_file_operate_recurse_d;
#endif // _di_kt_remove_preprocess_file_recurse_action_
#ifndef _di_kt_remove_preprocess_file_dates_
- void kt_remove_preprocess_file_dates(kt_remove_main_t * const main, const f_string_static_t path, const uint16_t flag_operate, const struct stat statistics, uint16_t * const flag_out) {
+ void kt_remove_preprocess_file_dates(kt_remove_main_t * const main, const f_string_static_t path, const uint16_t flag_operate, const struct stat statistics) {
if (!main) return;
- if (!flag_out) {
- main->setting.state.status = F_status_set_error(F_parameter);
-
- return;
- }
-
- // @todo this is copied from the print function and needs to be updated.
- f_number_unsigned_t i = 0;
+ uint8_t i = 0;
f_number_unsigned_t j = 0;
kt_remove_dates_t * const dates[] = {
statistics.st_mtim,
};
- const f_string_static_t * const names[] = {
- &kt_remove_long_accessed_s,
- &kt_remove_long_changed_s,
- &kt_remove_long_updated_s,
+ const f_string_static_t names[] = {
+ kt_remove_long_accessed_s,
+ kt_remove_long_changed_s,
+ kt_remove_long_updated_s,
};
f_status_t result = F_okay;
f_number_unsigned_t match_second = 0;
f_number_unsigned_t start_year = 0;
f_number_unsigned_t start_second = 0;
- //f_number_unsigned_t stop_year = 0;
f_number_unsigned_t stop_second = 0;
- for (j = 0; j < 3; ++j) {
+ for (i = 0; i < 3; ++i) {
- for (i = 0; i < dates[j]->used; ++i) {
+ for (j = 0; j < dates[i]->used; ++j) {
if (kt_remove_signal_check(main)) return;
- match_year = kt_remove_time_year_unix_epoch_d + (times[j].tv_sec / kt_remove_time_seconds_in_year_d);
- match_second = times[j].tv_sec % kt_remove_time_seconds_in_year_d;
+ match_year = kt_remove_time_year_unix_epoch_d + (times[i].tv_sec / kt_remove_time_seconds_in_year_d);
+ match_second = times[i].tv_sec % kt_remove_time_seconds_in_year_d;
- start_year = dates[j]->array[i].start_year + (dates[j]->array[i].start_second / kt_remove_time_seconds_in_year_d);
- start_second = dates[j]->array[i].start_second % kt_remove_time_seconds_in_year_d;
+ start_year = dates[i]->array[j].start_year + (dates[i]->array[j].start_second / kt_remove_time_seconds_in_year_d);
+ start_second = dates[i]->array[j].start_second % kt_remove_time_seconds_in_year_d;
name_type = f_string_empty_s;
result = F_okay;
- if (dates[j]->array[i].type == kt_remove_flag_date_today_d || dates[j]->array[i].type == kt_remove_flag_date_tomorrow_d || dates[j]->array[i].type == kt_remove_flag_date_yesterday_d) {
- //stop_year = dates[j]->array[i].stop_year + (dates[j]->array[i].stop_second / kt_remove_time_seconds_in_year_d);
- stop_second = dates[j]->array[i].stop_second % kt_remove_time_seconds_in_year_d;
+ if (dates[i]->array[j].type == kt_remove_flag_date_today_d || dates[i]->array[j].type == kt_remove_flag_date_tomorrow_d || dates[i]->array[j].type == kt_remove_flag_date_yesterday_d) {
+ stop_second = dates[i]->array[j].stop_second % kt_remove_time_seconds_in_year_d;
- if (dates[j]->array[i].operation == kt_remove_flag_date_equal_d) {
+ if (dates[i]->array[j].operation == kt_remove_flag_date_equal_d) {
name_type = kt_remove_date_symbol_equal_s;
result = F_false;
if (match_second > start_second && match_second < stop_second) {
result = F_true;
}
- else if (match_second == start_second && times[j].tv_nsec >= dates[j]->array[i].start_nanosecond && times[j].tv_nsec < dates[j]->array[i].stop_nanosecond) {
+ else if (match_second == start_second && times[i].tv_nsec >= dates[i]->array[j].start_nanosecond && times[i].tv_nsec < dates[i]->array[j].stop_nanosecond) {
result = F_true;
}
}
}
- else if (dates[j]->array[i].operation == kt_remove_flag_date_less_d) {
+ else if (dates[i]->array[j].operation == kt_remove_flag_date_less_d) {
name_type = kt_remove_date_symbol_less_s;
result = F_false;
if (match_second < start_second) {
result = F_true;
}
- else if (match_second == start_second && times[j].tv_nsec < dates[j]->array[i].start_nanosecond) {
+ else if (match_second == start_second && times[i].tv_nsec < dates[i]->array[j].start_nanosecond) {
result = F_true;
}
}
}
- else if (dates[j]->array[i].operation == kt_remove_flag_date_less_equal_d) {
+ else if (dates[i]->array[j].operation == kt_remove_flag_date_less_equal_d) {
name_type = kt_remove_date_symbol_less_equal_s;
result = F_false;
if (match_second < stop_second) {
result = F_true;
}
- else if (match_second == stop_second && times[j].tv_nsec < dates[j]->array[i].stop_nanosecond) {
+ else if (match_second == stop_second && times[i].tv_nsec < dates[i]->array[j].stop_nanosecond) {
result = F_true;
}
}
}
- else if (dates[j]->array[i].operation == kt_remove_flag_date_more_d) {
+ else if (dates[i]->array[j].operation == kt_remove_flag_date_more_d) {
name_type = kt_remove_date_symbol_more_s;
result = F_false;
if (match_second > stop_second) {
result = F_true;
}
- else if (match_second == stop_second && times[j].tv_nsec >= dates[j]->array[i].stop_nanosecond) {
+ else if (match_second == stop_second && times[i].tv_nsec >= dates[i]->array[j].stop_nanosecond) {
result = F_true;
}
}
}
- else if (dates[j]->array[i].operation == kt_remove_flag_date_more_equal_d) {
+ else if (dates[i]->array[j].operation == kt_remove_flag_date_more_equal_d) {
name_type = kt_remove_date_symbol_more_equal_s;
result = F_false;
if (match_second > start_second) {
result = F_true;
}
- else if (match_second == start_second && times[j].tv_nsec >= dates[j]->array[i].start_nanosecond) {
+ else if (match_second == start_second && times[i].tv_nsec >= dates[i]->array[j].start_nanosecond) {
result = F_true;
}
}
}
- else if (dates[j]->array[i].operation == kt_remove_flag_date_not_d) {
+ else if (dates[i]->array[j].operation == kt_remove_flag_date_not_d) {
name_type = kt_remove_date_symbol_not_s;
result = F_true;
if (match_second > start_second && match_second < stop_second) {
result = F_false;
}
- else if (match_second == start_second && times[j].tv_nsec >= dates[j]->array[i].start_nanosecond && times[j].tv_nsec < dates[j]->array[i].stop_nanosecond) {
+ else if (match_second == start_second && times[i].tv_nsec >= dates[i]->array[j].start_nanosecond && times[i].tv_nsec < dates[i]->array[j].stop_nanosecond) {
result = F_false;
}
}
}
}
- else if (dates[j]->array[i].operation == kt_remove_flag_date_equal_d) {
+ else if (dates[i]->array[j].operation == kt_remove_flag_date_equal_d) {
name_type = kt_remove_date_symbol_equal_s;
- if (match_year == start_year && match_second == start_second && times[j].tv_nsec == dates[j]->array[i].start_nanosecond) {
+ if (match_year == start_year && match_second == start_second && times[i].tv_nsec == dates[i]->array[j].start_nanosecond) {
result = F_true;
}
else {
result = F_false;
}
}
- else if (dates[j]->array[i].operation == kt_remove_flag_date_less_d) {
+ else if (dates[i]->array[j].operation == kt_remove_flag_date_less_d) {
name_type = kt_remove_date_symbol_less_s;
result = F_false;
if (match_second < start_second) {
result = F_true;
}
- else if (match_second == start_second && times[j].tv_nsec < dates[j]->array[i].start_nanosecond) {
+ else if (match_second == start_second && times[i].tv_nsec < dates[i]->array[j].start_nanosecond) {
result = F_true;
}
}
}
- else if (dates[j]->array[i].operation == kt_remove_flag_date_less_equal_d) {
+ else if (dates[i]->array[j].operation == kt_remove_flag_date_less_equal_d) {
name_type = kt_remove_date_symbol_less_equal_s;
result = F_false;
if (match_second < start_second) {
result = F_true;
}
- else if (match_second == start_second && times[j].tv_nsec <= dates[j]->array[i].start_nanosecond) {
+ else if (match_second == start_second && times[i].tv_nsec <= dates[i]->array[j].start_nanosecond) {
result = F_true;
}
}
}
- else if (dates[j]->array[i].operation == kt_remove_flag_date_more_d) {
+ else if (dates[i]->array[j].operation == kt_remove_flag_date_more_d) {
name_type = kt_remove_date_symbol_more_s;
result = F_false;
if (match_second > start_second) {
result = F_true;
}
- else if (match_second == start_second && times[j].tv_nsec > dates[j]->array[i].start_nanosecond) {
+ else if (match_second == start_second && times[i].tv_nsec > dates[i]->array[j].start_nanosecond) {
result = F_true;
}
}
}
- else if (dates[j]->array[i].operation == kt_remove_flag_date_more_equal_d) {
+ else if (dates[i]->array[j].operation == kt_remove_flag_date_more_equal_d) {
name_type = kt_remove_date_symbol_more_equal_s;
result = F_false;
if (match_second > start_second) {
result = F_true;
}
- else if (match_second == start_second && times[j].tv_nsec >= dates[j]->array[i].start_nanosecond) {
+ else if (match_second == start_second && times[i].tv_nsec >= dates[i]->array[j].start_nanosecond) {
result = F_true;
}
}
}
- else if (dates[j]->array[i].operation == kt_remove_flag_date_not_d) {
+ else if (dates[i]->array[j].operation == kt_remove_flag_date_not_d) {
name_type = kt_remove_date_symbol_not_s;
- if (match_year != start_year || match_second != start_second || times[j].tv_nsec != dates[j]->array[i].start_nanosecond) {
+ if (match_year != start_year || match_second != start_second || times[i].tv_nsec != dates[i]->array[j].start_nanosecond) {
result = F_true;
}
else {
}
if (name_type.used) {
- // @todo this should set the flag_out
- //fll_print_format(" %Q %Q ", print->to, *names[j], result ? kt_remove_yes_s : kt_remove_no_s);
- //fll_print_format("%u::%un 0:%un %Q ", print->to, match_year, (f_number_unsigned_t) times[j].tv_sec, (f_number_unsigned_t) times[j].tv_nsec, name_type);
- //fll_print_format("%u::%un 0:%un%r", print->to, dates[j]->array[i].start_year, dates[j]->array[i].start_second, dates[j]->array[i].start_nanosecond, f_string_eol_s);
+ kt_remove_print_simulate_operate_date(&main->program.output, names[i], result, times[i], dates[i]->array[j], name_type);
break;
}
} // for
} // for
+
+ main->setting.state.status = result ? F_yes : F_no;
}
#endif // _di_kt_remove_preprocess_file_dates_
* Must not be NULL.
*
* This alters main.setting.state.status:
- * F_okay on success.
- * F_data_not on success but file is an empty string.
+ * 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 flag_operate
* The operate file specific flags from kt_remove_flag_file_operate_*_e.
* @param statistics
* The already loaded file statistics.
- * @param flag_out
- * The resulting flags determined by the pre-process.
- *
- * Must not be NULL.
- *
- * @return
- * The resulting flags determined by the pre-process.
*/
#ifndef _di_kt_remove_preprocess_file_dates_
- void kt_remove_preprocess_file_dates(kt_remove_main_t * const main, const f_string_static_t path, const uint16_t flag_operate, const struct stat statistics, uint16_t * const flag_out);
+ extern void kt_remove_preprocess_file_dates(kt_remove_main_t * const main, const f_string_static_t path, const uint16_t flag_operate, const struct stat statistics);
#endif // _di_kt_remove_preprocess_file_dates_
#ifdef __cplusplus
}
#endif // _di_kt_remove_print_error_file_status_
+#ifndef _di_kt_remove_print_error_id_
+ 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) {
+
+ 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 (F_status_set_fine(main->setting.state.status) == F_exist_not || F_status_set_fine(main->setting.state.status) == F_number_too_large) {
+ f_file_stream_lock(print->to);
+
+ fl_print_format("%[%QThe %r ", print->to, print->set->error, print->prefix, is_user ? kt_remove_user_s : kt_remove_group_s);
+ fl_print_format("%[%Q%] %[", print->to, print->set->notable, name_id, print->set->notable, print->set->error);
+
+ fl_print_format(F_status_set_fine(main->setting.state.status) == F_exist_not ? "is not known" : "is too large", print->to);
+
+ fl_print_format(".%]%r", print->to, print->set->error, f_string_eol_s);
+
+ f_file_stream_unlock(print->to);
+ }
+ else if (F_status_set_fine(main->setting.state.status) != F_interrupt) {
+ fll_error_print(print, F_status_set_fine(main->setting.state.status), function, F_true);
+ }
+
+ return F_okay;
+ }
+#endif // _di_kt_remove_print_error_id_
+
#ifndef _di_kt_remove_print_error_status_
f_status_t kt_remove_print_error_status(fl_print_t * const print, const f_string_t function, const f_status_t status) {
#endif // _di_kt_remove_print_error_file_status_
/**
+ * Print error message regarding user and group IDs, falling back to generic error message as necessary.
+ *
+ * @param print
+ * The output structure to print to.
+ *
+ * Must not be NULL.
+ *
+ * This does not alter print.custom.setting.state.status.
+ * @param function
+ * (optional) The name of the function where the error happened.
+ *
+ * Set to NULL to disable.
+ * @param name_id
+ * The user name, user ID, group name, or group ID.
+ * @param is_user
+ * If TRUE, then this is a user ID.
+ * If FALSE, then this is a group ID.
+ *
+ * @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_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);
+#endif // _di_kt_remove_print_error_id_
+
+/**
* Print generic error message regarding a function failing in some way, 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().
if (!(main->setting.flag & kt_remove_main_flag_simulate_d)) return F_output_not;
- main->setting.state.status = F_okay;
-
f_file_stream_lock(print->to);
fl_print_format("%r%[Files to Remove%]:%r", print->to, f_string_eol_s, print->set->title, print->set->title, f_string_eol_s);
}
#endif // _di_kt_remove_print_simulate_operate_boolean_
+#ifndef _di_kt_remove_print_simulate_operate_date_
+ f_status_t kt_remove_print_simulate_operate_date(fl_print_t * const print, const f_string_static_t name, const bool yes, const f_time_spec_t time, const kt_remove_date_t date, const f_string_static_t type) {
+
+ if (!print || !print->custom) return F_status_set_error(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;
+
+ const f_number_unsigned_t match_year = kt_remove_time_year_unix_epoch_d + (time.tv_sec / kt_remove_time_seconds_in_year_d);
+ const f_number_unsigned_t match_second = time.tv_sec % kt_remove_time_seconds_in_year_d;
+
+ const f_number_unsigned_t start_year = date.start_year + (date.start_second / kt_remove_time_seconds_in_year_d);
+ const f_number_unsigned_t start_second = date.start_second % kt_remove_time_seconds_in_year_d;
+
+ f_file_stream_lock(print->to);
+
+ fl_print_format(" %r %r", print->to, name, yes ? kt_remove_yes_s : kt_remove_no_s);
+ fl_print_format(" %u::%un 0:%un %Q", print->to, match_year, match_second, (f_number_unsigned_t) time.tv_nsec, type);
+ fl_print_format(" %u::%un 0:%un%r", print->to, start_year, start_second, (f_number_unsigned_t) date.start_nanosecond, f_string_eol_s);
+
+ f_file_stream_unlock(print->to);
+
+ return F_okay;
+ }
+#endif // _di_kt_remove_print_simulate_operate_date_
+
#ifndef _di_kt_remove_print_simulate_operate_file_
f_status_t kt_remove_print_simulate_operate_file(fl_print_t * const print, const f_string_static_t path, const uint16_t flag) {
}
#endif // _di_kt_remove_print_simulate_operate_file_exists_
-#ifndef _di_kt_remove_print_simulate_operate_file_stat_
- f_status_t kt_remove_print_simulate_operate_file_stat(fl_print_t * const print, struct stat statistics) {
+#ifndef _di_kt_remove_print_simulate_operate_id_
+ f_status_t kt_remove_print_simulate_operate_id(fl_print_t * const print, const f_number_unsigned_t id, const bool is_user) {
if (!print || !print->custom) return F_status_set_error(F_output_not);
if (!(main->setting.flag & kt_remove_main_flag_simulate_d)) return F_output_not;
- if (main->setting.flag & kt_remove_main_flag_block_d) {
- fll_print_format(" block %r%r", print->to, macro_f_file_type_is_block(statistics.st_mode) ? kt_remove_yes_s : kt_remove_no_s, f_string_eol_s);
- }
-
- if (main->setting.flag & kt_remove_main_flag_character_d) {
- fll_print_format(" character %r%r", print->to, macro_f_file_type_is_character(statistics.st_mode) ? kt_remove_yes_s : kt_remove_no_s, f_string_eol_s);
- }
-
- if (main->setting.flag & kt_remove_main_flag_directory_d) {
- fll_print_format(" directory %r%r", print->to, macro_f_file_type_is_directory(statistics.st_mode) ? kt_remove_yes_s : kt_remove_no_s, f_string_eol_s);
- }
-
- if (main->setting.flag & kt_remove_main_flag_fifo_d) {
- fll_print_format(" fifo %r%r", print->to, macro_f_file_type_is_fifo(statistics.st_mode) ? kt_remove_yes_s : kt_remove_no_s, f_string_eol_s);
- }
-
- if (main->setting.flag & kt_remove_main_flag_link_d) {
- fll_print_format(" link %r%r", print->to, macro_f_file_type_is_link(statistics.st_mode) ? kt_remove_yes_s : kt_remove_no_s, f_string_eol_s);
- }
-
- if (main->setting.flag & kt_remove_main_flag_regular_d) {
- fll_print_format(" regular %r%r", print->to, macro_f_file_type_is_regular(statistics.st_mode) ? kt_remove_yes_s : kt_remove_no_s, f_string_eol_s);
- }
+ fll_print_format(" %r %un%r", print->to, is_user ? kt_remove_user_s : kt_remove_group_s, id, f_string_eol_s);
- if (main->setting.flag & kt_remove_main_flag_socket_d) {
- fll_print_format(" socket %r%r", print->to, macro_f_file_type_is_socket(statistics.st_mode) ? kt_remove_yes_s : kt_remove_no_s, f_string_eol_s);
- }
-
- if (main->setting.flag & kt_remove_main_flag_unknown_d) {
- fll_print_format(" unknown %r%r", print->to, macro_f_file_type_is_unknown(statistics.st_mode) ? kt_remove_yes_s : kt_remove_no_s, f_string_eol_s);
- }
-
- f_number_unsigned_t i = 0;
- uint8_t j = 0;
-
- if (main->setting.flag & kt_remove_main_flag_user_d) {
- for (; i < main->setting.users.used; ++i) {
- if (statistics.st_uid == (uid_t) main->setting.users.array[i]) break;
- } // for
-
- if (i == main->setting.users.used) {
- fll_print_format(" user%r", print->to, f_string_eol_s);
- }
- else {
- fll_print_format(" user %un%r", print->to, (f_number_unsigned_t) statistics.st_uid, f_string_eol_s);
- }
- }
+ return F_okay;
+ }
+#endif // _di_kt_remove_print_simulate_operate_id_
- if (main->setting.flag & kt_remove_main_flag_same_d) {
- fll_print_format(" same %r%r", print->to, (statistics.st_uid == geteuid()) ? kt_remove_yes_s : kt_remove_no_s, f_string_eol_s);
- }
+#ifndef _di_kt_remove_print_simulate_operate_mode_
+ f_status_t kt_remove_print_simulate_operate_mode(fl_print_t * const print, const f_number_unsigned_t mode, const f_string_static_t match) {
- if (main->setting.flag & kt_remove_main_flag_different_d) {
- fll_print_format(" different %r%r", print->to, (statistics.st_uid == geteuid()) ? kt_remove_no_s : kt_remove_yes_s, f_string_eol_s);
- }
+ if (!print || !print->custom) return F_status_set_error(F_output_not);
- if (main->setting.flag & kt_remove_main_flag_group_d) {
- for (i = 0; i < main->setting.groups.used; ++i) {
- if (statistics.st_gid == (gid_t) main->setting.groups.array[i]) break;
- } // for
+ kt_remove_main_t * const main = (kt_remove_main_t *) print->custom;
- if (i == main->setting.groups.used) {
- fll_print_format(" group%r", print->to, f_string_eol_s);
- }
- else {
- fll_print_format(" group %un%r", print->to, (f_number_unsigned_t) statistics.st_gid, f_string_eol_s);
- }
- }
+ if (!(main->setting.flag & kt_remove_main_flag_simulate_d)) return F_output_not;
- if (main->setting.flag & kt_remove_main_flag_mode_d) {
- const mode_t mode = statistics.st_mode & F_file_mode_all_d;
-
- const uint8_t types[] = {
- kt_remove_flag_mode_different_d,
- kt_remove_flag_mode_same_d,
- kt_remove_flag_mode_similar_d,
- kt_remove_flag_mode_not_d,
- };
-
- const f_string_static_t strings[] = {
- kt_remove_mode_word_different_s,
- kt_remove_mode_word_same_s,
- kt_remove_mode_word_similar_s,
- kt_remove_mode_word_not_s,
- };
-
- fll_print_format(" mode %@03un%r", print->to, (f_number_unsigned_t) mode, f_string_eol_s);
-
- for (i = 0; i < main->setting.modes.used; ++i) {
-
- if (main->setting.modes.array[i].type == kt_remove_flag_mode_different_d) {
- if (main->setting.modes.array[i].mode ^ mode) break;
- }
- else if (main->setting.modes.array[i].type == kt_remove_flag_mode_same_d) {
- if (!(main->setting.modes.array[i].mode ^ mode)) break;
- }
- else if (main->setting.modes.array[i].type == kt_remove_flag_mode_similar_d) {
- if (main->setting.modes.array[i].mode & mode) break;
- }
- else if (main->setting.modes.array[i].type == kt_remove_flag_mode_not_d) {
- if (main->setting.modes.array[i].mode != mode) break;
- }
- } // for
-
- if (i < main->setting.modes.used) {
- for (j = 0; j < 4; ++j) {
-
- if (main->setting.modes.array[i].type == types[j]) {
- fll_print_format(" mode_matched %Q %@03un%r", print->to, strings[j], (f_number_unsigned_t) main->setting.modes.array[i].mode, f_string_eol_s);
-
- break;
- }
- } // for
- }
+ if (match.used) {
+ fll_print_format(" mode_matched %Q %@03un%r", print->to, match, mode, f_string_eol_s);
}
-
- {
- kt_remove_dates_t * const dates[] = {
- &main->setting.accessed,
- &main->setting.changed,
- &main->setting.updated,
- };
-
- f_time_spec_t times[] = {
- statistics.st_atim,
- statistics.st_ctim,
- statistics.st_mtim,
- };
-
- const f_string_static_t * const names[] = {
- &kt_remove_long_accessed_s,
- &kt_remove_long_changed_s,
- &kt_remove_long_updated_s,
- };
-
- f_status_t result = F_okay;
- f_string_static_t name_type = f_string_empty_s;
- f_number_unsigned_t match_year = 0;
- f_number_unsigned_t match_second = 0;
- f_number_unsigned_t start_year = 0;
- f_number_unsigned_t start_second = 0;
- //f_number_unsigned_t stop_year = 0; // @todo figure out if stop year is needed, the check below may not end up be being processed.
- f_number_unsigned_t stop_second = 0;
-
- for (j = 0; j < 3; ++j) {
-
- for (i = 0; i < dates[j]->used; ++i) {
-
- if (kt_remove_signal_check(main)) return F_status_set_error(F_interrupt);
-
- match_year = kt_remove_time_year_unix_epoch_d + (times[j].tv_sec / kt_remove_time_seconds_in_year_d);
- match_second = times[j].tv_sec % kt_remove_time_seconds_in_year_d;
-
- start_year = dates[j]->array[i].start_year + (dates[j]->array[i].start_second / kt_remove_time_seconds_in_year_d);
- start_second = dates[j]->array[i].start_second % kt_remove_time_seconds_in_year_d;
-
- name_type = f_string_empty_s;
- result = F_okay;
-
- if (dates[j]->array[i].type == kt_remove_flag_date_today_d || dates[j]->array[i].type == kt_remove_flag_date_tomorrow_d || dates[j]->array[i].type == kt_remove_flag_date_yesterday_d) {
- //stop_year = dates[j]->array[i].stop_year + (dates[j]->array[i].stop_second / kt_remove_time_seconds_in_year_d);
- stop_second = dates[j]->array[i].stop_second % kt_remove_time_seconds_in_year_d;
-
- if (dates[j]->array[i].operation == kt_remove_flag_date_equal_d) {
- name_type = kt_remove_date_symbol_equal_s;
- result = F_false;
-
- if (match_year == start_year) {
- if (match_second > start_second && match_second < stop_second) {
- result = F_true;
- }
- else if (match_second == start_second && times[j].tv_nsec >= dates[j]->array[i].start_nanosecond && times[j].tv_nsec < dates[j]->array[i].stop_nanosecond) {
- result = F_true;
- }
- }
- }
- else if (dates[j]->array[i].operation == kt_remove_flag_date_less_d) {
- name_type = kt_remove_date_symbol_less_s;
- result = F_false;
-
- if (match_year < start_year) {
- result = F_true;
- }
- else if (match_year == start_year) {
- if (match_second < start_second) {
- result = F_true;
- }
- else if (match_second == start_second && times[j].tv_nsec < dates[j]->array[i].start_nanosecond) {
- result = F_true;
- }
- }
- }
- else if (dates[j]->array[i].operation == kt_remove_flag_date_less_equal_d) {
- name_type = kt_remove_date_symbol_less_equal_s;
- result = F_false;
-
- if (match_year < start_year) {
- result = F_true;
- }
- else if (match_year == start_year) {
- if (match_second < stop_second) {
- result = F_true;
- }
- else if (match_second == stop_second && times[j].tv_nsec < dates[j]->array[i].stop_nanosecond) {
- result = F_true;
- }
- }
- }
- else if (dates[j]->array[i].operation == kt_remove_flag_date_more_d) {
- name_type = kt_remove_date_symbol_more_s;
- result = F_false;
-
- if (match_year > start_year) {
- result = F_true;
- }
- else if (match_year == start_year) {
- if (match_second > stop_second) {
- result = F_true;
- }
- else if (match_second == stop_second && times[j].tv_nsec >= dates[j]->array[i].stop_nanosecond) {
- result = F_true;
- }
- }
- }
- else if (dates[j]->array[i].operation == kt_remove_flag_date_more_equal_d) {
- name_type = kt_remove_date_symbol_more_equal_s;
- result = F_false;
-
- if (match_year > start_year) {
- result = F_true;
- }
- else if (match_year == start_year) {
- if (match_second > start_second) {
- result = F_true;
- }
- else if (match_second == start_second && times[j].tv_nsec >= dates[j]->array[i].start_nanosecond) {
- result = F_true;
- }
- }
- }
- else if (dates[j]->array[i].operation == kt_remove_flag_date_not_d) {
- name_type = kt_remove_date_symbol_not_s;
- result = F_true;
-
- if (match_year == start_year) {
- if (match_second > start_second && match_second < stop_second) {
- result = F_false;
- }
- else if (match_second == start_second && times[j].tv_nsec >= dates[j]->array[i].start_nanosecond && times[j].tv_nsec < dates[j]->array[i].stop_nanosecond) {
- result = F_false;
- }
- }
- }
- }
- else if (dates[j]->array[i].operation == kt_remove_flag_date_equal_d) {
- name_type = kt_remove_date_symbol_equal_s;
-
- if (match_year == start_year && match_second == start_second && times[j].tv_nsec == dates[j]->array[i].start_nanosecond) {
- result = F_true;
- }
- else {
- result = F_false;
- }
- }
- else if (dates[j]->array[i].operation == kt_remove_flag_date_less_d) {
- name_type = kt_remove_date_symbol_less_s;
- result = F_false;
-
- if (match_year < start_year) {
- result = F_true;
- }
- else if (match_year == start_year) {
- if (match_second < start_second) {
- result = F_true;
- }
- else if (match_second == start_second && times[j].tv_nsec < dates[j]->array[i].start_nanosecond) {
- result = F_true;
- }
- }
- }
- else if (dates[j]->array[i].operation == kt_remove_flag_date_less_equal_d) {
- name_type = kt_remove_date_symbol_less_equal_s;
- result = F_false;
-
- if (match_year < start_year) {
- result = F_true;
- }
- else if (match_year == start_year) {
- if (match_second < start_second) {
- result = F_true;
- }
- else if (match_second == start_second && times[j].tv_nsec <= dates[j]->array[i].start_nanosecond) {
- result = F_true;
- }
- }
- }
- else if (dates[j]->array[i].operation == kt_remove_flag_date_more_d) {
- name_type = kt_remove_date_symbol_more_s;
- result = F_false;
-
- if (match_year > start_year) {
- result = F_true;
- }
- else if (match_year == start_year) {
- if (match_second > start_second) {
- result = F_true;
- }
- else if (match_second == start_second && times[j].tv_nsec > dates[j]->array[i].start_nanosecond) {
- result = F_true;
- }
- }
- }
- else if (dates[j]->array[i].operation == kt_remove_flag_date_more_equal_d) {
- name_type = kt_remove_date_symbol_more_equal_s;
- result = F_false;
-
- if (match_year > start_year) {
- result = F_true;
- }
- else if (match_year == start_year) {
- if (match_second > start_second) {
- result = F_true;
- }
- else if (match_second == start_second && times[j].tv_nsec >= dates[j]->array[i].start_nanosecond) {
- result = F_true;
- }
- }
- }
- else if (dates[j]->array[i].operation == kt_remove_flag_date_not_d) {
- name_type = kt_remove_date_symbol_not_s;
-
- if (match_year != start_year || match_second != start_second || times[j].tv_nsec != dates[j]->array[i].start_nanosecond) {
- result = F_true;
- }
- else {
- result = F_false;
- }
- }
-
- if (name_type.used) {
- fll_print_format(" %Q %Q ", print->to, *names[j], result ? kt_remove_yes_s : kt_remove_no_s);
- fll_print_format("%u::%un 0:%un %Q ", print->to, match_year, (f_number_unsigned_t) times[j].tv_sec, (f_number_unsigned_t) times[j].tv_nsec, name_type);
- fll_print_format("%u::%un 0:%un%r", print->to, dates[j]->array[i].start_year, dates[j]->array[i].start_second, dates[j]->array[i].start_nanosecond, f_string_eol_s);
-
- break;
- }
- } // for
- } // for
+ else {
+ fll_print_format(" mode %@03un%r", print->to, mode, f_string_eol_s);
}
return F_okay;
}
-#endif // _di_kt_remove_print_simulate_operate_file_stat_
+#endif // _di_kt_remove_print_simulate_operate_mode_
#ifndef _di_kt_remove_print_simulate_operate_prompt_once_
f_status_t kt_remove_print_simulate_operate_prompt_once(fl_print_t * const print, const bool yes) {
#endif // _di_kt_remove_print_simulate_operate_boolean_
/**
+ * Print dates regarding the simulation.
+ *
+ * This does nothing if the simulate flag (kt_remove_flag_simulate_d) is not set.
+ *
+ * @param print
+ * The output structure to print to.
+ *
+ * This locks, uses, and unlocks the file stream.
+ *
+ * Must not be NULL.
+ *
+ * This does not alter print.custom.setting.state.status.
+ * @param name
+ * The name to be associated with the boolean value.
+ * @param yes
+ * If TRUE, then print "yes".
+ * If FALSE, then print "no".
+ * @param time
+ * The file time.
+ * @param date
+ * The date being matched.
+ * @param type
+ * The type of operation that matches, such as "=".
+ *
+ * @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_simulate_operate_date_
+ extern f_status_t kt_remove_print_simulate_operate_date(fl_print_t * const print, const f_string_static_t name, const bool yes, const f_time_spec_t time, const kt_remove_date_t date, const f_string_static_t type);
+#endif // _di_kt_remove_print_simulate_operate_date_
+
+/**
* Simulate operate on a single file.
*
* This does nothing if the simulate flag (kt_remove_flag_simulate_d) is not set.
#endif // _di_kt_remove_print_simulate_operate_file_exists_
/**
- * Simulate operate on a single file, processing file statistics.
+ * Print a message for user ID or group ID regarding the simulation.
+ *
+ * This does nothing if the simulate flag (kt_remove_flag_simulate_d) is not set.
+ *
+ * @param print
+ * The output structure to print to.
+ *
+ * This locks, uses, and unlocks the file stream.
+ *
+ * Must not be NULL.
+ *
+ * This does not alter print.custom.setting.state.status.
+ * @param id
+ * The user or group ID.
+ * @param is_user
+ * If TRUE, then this is a user ID.
+ * If FALSE, then this is a group ID.
+ *
+ * @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_simulate_operate_id_
+ extern f_status_t kt_remove_print_simulate_operate_id(fl_print_t * const print, const f_number_unsigned_t id, const bool is_user);
+#endif // _di_kt_remove_print_simulate_operate_id_
+
+/**
+ * Print a message for mode or mode matched regarding the simulation.
*
* This does nothing if the simulate flag (kt_remove_flag_simulate_d) is not set.
*
* Must not be NULL.
*
* This does not alter print.custom.setting.state.status.
- * @param statistics
- * The file statistics.
+ * @param mode
+ * The mode of the file.
+ * @param match
+ * Set match.used to 0 to designate printing the mode
+ * Set match.used > 0 to designate a string representing the matched mode.
*
* @return
* F_okay on success.
*
* F_output_not (with error bit) if setting is NULL.
*/
-#ifndef _di_kt_remove_print_simulate_operate_file_stat_
- extern f_status_t kt_remove_print_simulate_operate_file_stat(fl_print_t * const print, struct stat statistics);
-#endif // _di_kt_remove_print_simulate_operate_file_stat_
+#ifndef _di_kt_remove_print_simulate_operate_mode_
+ extern f_status_t kt_remove_print_simulate_operate_mode(fl_print_t * const print, const f_number_unsigned_t mode, const f_string_static_t match);
+#endif // _di_kt_remove_print_simulate_operate_mode_
/**
* Print a message for some prompt parameter is set to once regarding the simulation.