]> Kevux Git Server - kevux-tools/commitdiff
Update: Use the pre-defined typedef structure style for the main program type.
authorKevin Day <Kevin@kevux.org>
Mon, 20 Jan 2025 23:53:07 +0000 (17:53 -0600)
committerKevin Day <Kevin@kevux.org>
Mon, 20 Jan 2025 23:53:07 +0000 (17:53 -0600)
Make sure that the typedef is defined early for a later defined type.
This allows for circular use of the main, such as with callbacks.

This is being done across all of my programs.

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

index bcda40bc877f4cfd632bf10ade34e3e2ffedb534..a7ddb124b7a638de83dcd3b574edad0c550d11ec 100644 (file)
@@ -17,6 +17,13 @@ extern "C" {
 #endif
 
 /**
+ * Pre-define the main type so it can be used in child classes.
+ */
+#ifndef _di_kt_remove_main_t_typedef_
+  typedef struct kt_remove_main_t_ kt_remove_main_t;
+#endif // _di_kt_remove_main_t_typedef_
+
+/**
  * A processed Date parameter.
  *
  * The start is inclusive and the stop is exclusive just like with f_range_t.
@@ -154,7 +161,7 @@ extern "C" {
  * groups:   An array of Group IDs (gid_t) represented via an unsigned 32-bit integer.
  * users:    An array of Group IDs (uid_t) represented via an unsigned 32-bit integer.
  *
- * process_help:                  Process help (generally printing help).
+ * print_help:                    Print help.
  * process_normal:                Process normally (data from parameters and files).
  * process_operate_file:          Process an individual file, returning F_done to designate handled, and F_okay for letting parent continue handling.
  * process_operate_file_simulate: Simulate process of an individual file, returning F_done to designate handled, and F_okay for letting parent continue handling.
@@ -181,10 +188,10 @@ extern "C" {
     const f_string_static_t *program_name;
     const f_string_static_t *program_name_long;
 
-    f_status_t (*process_help)(void * const main);
-    void (*process_normal)(void * const main);
-    void (*process_operate_file)(void * const main, const f_string_static_t path, const struct stat statistics, uint8_t * const flag);
-    void (*process_operate_file_simulate)(void * const main, const f_string_static_t path, const struct stat statistics, uint8_t * const flag);
+    f_status_t (*print_help)(fl_print_t * const print, const f_color_context_t context);
+    void (*process_normal)(kt_remove_main_t * const main);
+    void (*process_operate_file)(kt_remove_main_t * const main, const f_string_static_t path, const struct stat statistics, uint8_t * const flag);
+    void (*process_operate_file_simulate)(kt_remove_main_t * const main, const f_string_static_t path, const struct stat statistics, uint8_t * const flag);
   } kt_remove_setting_t;
 
   #define kt_remove_setting_t_initialize \
@@ -217,10 +224,10 @@ extern "C" {
  * setting: The settings data.
  */
 #ifndef _di_kt_remove_main_t_
-  typedef struct {
+  struct kt_remove_main_t_ {
     fll_program_data_t program;
     kt_remove_setting_t setting;
-  } kt_remove_main_t;
+  };
 
   #define kt_remove_main_t_initialize \
     { \
index 114d6dbd84908cd27d1d0fdd1239dda2fbd1921e..0755455086ed3122909b2d3ff0da540153490729 100644 (file)
@@ -392,7 +392,8 @@ extern "C" {
       main->setting.state.status = F_okay;
 
       if (main->setting.flag & kt_remove_main_flag_tree_d) {
-        // @todo handle simulate for this.
+        f_range_t range = macro_f_range_t_initialize_2(path.used);
+        // @todo do backwards searches on the path.
       }
 
       // @todo call a similate fl_directory_do() or move this into the kt_remove_operate_file_directory() process.
@@ -401,7 +402,7 @@ extern "C" {
     if (main->setting.process_operate_file_simulate) {
       main->setting.state.status = F_okay;
 
-      main->setting.process_operate_file_simulate((void *) main, path, statistics, &flag);
+      main->setting.process_operate_file_simulate(main, path, statistics, &flag);
       if (F_status_is_error(main->setting.state.status)) return flag;
 
       if (main->setting.state.status == F_done) {
index 4191c81a3c04e3f3254c5d7279eee333bad43fc8..97e98725a378caedfb57de66616cc14558dfdd8c 100644 (file)
@@ -13,8 +13,8 @@ extern "C" {
 
     if (main->setting.flag & kt_remove_main_flag_version_copyright_help_d) {
       if (main->setting.flag & kt_remove_main_flag_help_d) {
-        if (main->setting.process_help) {
-          main->setting.process_help((void *) main);
+        if (main->setting.print_help) {
+          main->setting.print_help(&main->program.output, main->program.context);
         }
       }
       else if (main->setting.flag & kt_remove_main_flag_version_d) {
@@ -28,7 +28,7 @@ extern "C" {
     }
 
     if (main->setting.process_normal) {
-      main->setting.process_normal((void *) main);
+      main->setting.process_normal(main);
       if (F_status_is_error(main->setting.state.status)) return;
     }
 
@@ -42,24 +42,6 @@ extern "C" {
   }
 #endif // _di_kt_remove_main_
 
-#ifndef _di_kt_remove_process_help_
-  f_status_t kt_remove_process_help(void * const main) {
-
-    if (!main) return F_output_not;
-
-    return kt_remove_print_message_help(&((kt_remove_main_t *) main)->program.output, ((kt_remove_main_t *) main)->program.context);
-  }
-#endif // _di_kt_remove_process_help_
-
-#ifndef _di_kt_remove_process_normal_
-  void kt_remove_process_normal(void * const main) {
-
-    if (!main) return;
-
-    kt_remove_process_normal_operate(((kt_remove_main_t *) main));
-  }
-#endif // _di_kt_remove_process_normal_
-
 #ifndef _di_kt_remove_process_normal_operate_
   void kt_remove_process_normal_operate(kt_remove_main_t * const main) {
 
index 7ed70fd69c2692b65d8f33bc56d07f5841f7f726..736ceabc70a41e9e579ce1a7b9569132d8f433d3 100644 (file)
@@ -99,47 +99,6 @@ extern "C" {
 #endif // _di_kt_remove_main_
 
 /**
- * Process printing help.
- *
- * @param main
- *   The main program and settings data.
- *
- *   This must be of type kt_remove_main_t.
- *
- *   Must not be NULL.
- *
- *   This does not alter main.setting.state.status.
- *
- * @return
- *   F_okay on success.
- *   F_output_not on success, but no printing is performed.
- */
-#ifndef _di_kt_remove_process_help_
-  extern f_status_t kt_remove_process_help(void * const main);
-#endif // _di_kt_remove_process_help_
-
-/**
- * Process normally, writing to the output.
- *
- * @param main
- *   The main program and settings data.
- *
- *   This must be of type kt_remove_main_t.
- *
- *   Must not be NULL.
- *
- *   This alters main.setting.state.status:
- *     F_okay on success.
- *
- *     Errors with (error bit set) from: kt_remove_process_normal_operate()
- *
- * @see kt_remove_process_normal_operate()
- */
-#ifndef _di_kt_remove_process_normal_
-  extern void kt_remove_process_normal(void * const main);
-#endif // _di_kt_remove_process_normal_
-
-/**
  * Perform the normal processing.
  *
  * @param main
index 1854a3f2edb1defabf0549f99427df04fc0e0997..a0ab500efc68319337014defdec95d90571971cf 100644 (file)
@@ -23,8 +23,8 @@ int main(const int argc, const f_string_t *argv, const f_string_t *envp) {
   data.setting.state.data = (void *) &data;
   data.setting.program_name = &kt_remove_program_name_s;
   data.setting.program_name_long = &kt_remove_program_name_long_s;
-  data.setting.process_help = &kt_remove_process_help;
-  data.setting.process_normal = &kt_remove_process_normal;
+  data.setting.print_help = &kt_remove_print_message_help;
+  data.setting.process_normal = &kt_remove_process_normal_operate;
   data.setting.recurse.action = &kt_remove_operate_file_directory_recurse_action;
   data.setting.recurse.handle = &kt_remove_operate_file_directory_recurse_handle;
   data.setting.recurse.depth_max = kt_remove_depth_max_d;
index 87b82b5296802271a111f068c56ada55d4c4a805..0eb975a60e8208372d8deed179087731634737da 100644 (file)
@@ -196,7 +196,7 @@ extern "C" {
 
     // Only process these when needed to avoid unnecessary operations.
     if (main->callback.setting_load_send_receive && !(main->setting.flag & (kt_tacocat_main_flag_copyright_d | kt_tacocat_main_flag_version_d |kt_tacocat_main_flag_help_d))) {
-      main->callback.setting_load_send_receive(arguments, (void *) main);
+      main->callback.setting_load_send_receive(arguments, main);
     }
 
     if (F_status_is_error_not(main->setting.state.status)) {
@@ -206,11 +206,9 @@ extern "C" {
 #endif // _di_kt_tacocat_setting_load_
 
 #ifndef _di_kt_tacocat_setting_load_send_receive_
-  void kt_tacocat_setting_load_send_receive(const f_console_arguments_t arguments, void * const void_main) {
+  void kt_tacocat_setting_load_send_receive(const f_console_arguments_t arguments, kt_tacocat_main_t * const main) {
 
-    if (!void_main) return;
-
-    kt_tacocat_main_t * const main = (kt_tacocat_main_t *) void_main;
+    if (!main) return;
 
     const uint8_t parameters[] = {
       kt_tacocat_parameter_receive_e,
index d1fb8209960516ed225a06258c6a8eb3f230f3e4..c15bbb90ff1add8dc1a0fd03e1a8954d14d4668e 100644 (file)
@@ -67,8 +67,6 @@ extern "C" {
  * @param main
  *   The main program and settings data.
  *
- *   This must be of type kt_tacocat_main_t.
- *
  *   Must not be NULL.
  *
  *   This alters main.setting.state.status:
@@ -91,7 +89,7 @@ extern "C" {
  * @see f_string_dynamic_append_nulless()
  */
 #ifndef _di_kt_tacocat_setting_load_send_receive_
-  extern void kt_tacocat_setting_load_send_receive(const f_console_arguments_t arguments, void * const main);
+  extern void kt_tacocat_setting_load_send_receive(const f_console_arguments_t arguments, kt_tacocat_main_t * const main);
 #endif // _di_kt_tacocat_setting_load_send_receive_
 
 /**
index f5cc6c5754011606356d9bb83d2496c3d14064e2..c47a9aaca6aaab33f6a563b394d99b28317a3968 100644 (file)
@@ -17,6 +17,13 @@ extern "C" {
 #endif
 
 /**
+ * Pre-define the main type so it can be used in child classes.
+ */
+#ifndef _di_kt_tacocat_main_t_typedef_
+  typedef struct kt_tacocat_main_t_ kt_tacocat_main_t;
+#endif // _di_kt_tacocat_main_t_typedef_
+
+/**
  * A set of all socket related properties.
  *
  * size_block: The size in bytes to used to represent a block when sending or receiving packets.
@@ -363,7 +370,7 @@ extern "C" {
  */
 #ifndef _di_kt_tacocat_callback_t_
   typedef struct {
-    void (*setting_load_send_receive)(const f_console_arguments_t arguments, void * const main);
+    void (*setting_load_send_receive)(const f_console_arguments_t arguments, kt_tacocat_main_t * const main);
   } kt_tacocat_callback_t;
 
   #define kt_tacocat_callback_t_initialize \
@@ -397,13 +404,13 @@ extern "C" {
  * thread:   The program thread data.
  */
 #ifndef _di_kt_tacocat_main_t_
-  typedef struct {
+  struct kt_tacocat_main_t_ {
     fll_program_data_t program;
     kt_tacocat_setting_t setting;
     kt_tacocat_callback_t callback;
     kt_tacocat_thread_t thread;
     kt_tacocat_cache_t cache;
-  } kt_tacocat_main_t;
+  };
 
   #define kt_tacocat_main_t_initialize \
     { \