]> Kevux Git Server - control/commitdiff
Progress: Continue migrating the project.
authorKevin Day <Kevin@kevux.org>
Fri, 26 Jul 2024 04:12:25 +0000 (23:12 -0500)
committerKevin Day <Kevin@kevux.org>
Fri, 26 Jul 2024 04:12:25 +0000 (23:12 -0500)
30 files changed:
data/build/defines
data/build/fakefile
data/build/settings
sources/c/program/control/control/main.c
sources/c/program/control/main/action.c
sources/c/program/control/main/action.h
sources/c/program/control/main/common.c
sources/c/program/control/main/common.h
sources/c/program/control/main/common/define.h
sources/c/program/control/main/common/enumeration.h
sources/c/program/control/main/common/string.c
sources/c/program/control/main/common/type.c
sources/c/program/control/main/common/type.h
sources/c/program/control/main/control.c [deleted file]
sources/c/program/control/main/control.h
sources/c/program/control/main/main.c [deleted file]
sources/c/program/control/main/main.h [deleted file]
sources/c/program/control/main/packet.c
sources/c/program/control/main/packet.h
sources/c/program/control/main/print/debug.c
sources/c/program/control/main/print/error.c
sources/c/program/control/main/print/error.h
sources/c/program/control/main/print/message.c
sources/c/program/control/main/print/message.h
sources/c/program/control/main/process.c
sources/c/program/control/main/process.h
sources/c/program/control/main/signal.c
sources/c/program/control/main/signal.h
sources/c/program/control/main/thread.c
sources/c/program/control/main/thread.h

index 822a9b68892286c7a4d9f1265c945a89cf90800a..6ea23051d8587e67d518e985b98d4182f0f75a61 100644 (file)
@@ -1,18 +1,35 @@
 # fss-0000
 
+_di_libcap_         Disable libcap support, allow for compiling and linking without libcap (-lcap).
 _di_thread_support_ Disables thread support.
 
+_libcap_legacy_only_ Disable functionality provided by later versions of libcap (2.43 and later).
+
 _controller_as_init_ The controller program is compiled as an init replacement and this control program should treat it as such.
+
+_override_control_path_settings_ Use this as the default full path to the controlsettings.
+_override_control_path_settings_length_ The number of bytes representing the string in _override_controller_path_settings_length_ (not including the terminating NULL).
+
 _override_controller_name_socket_ Use this as the default custom file name representing the controller program socket.
 _override_controller_name_socket_length_ The number of bytes representing the string in _override_controller_name_socket_ (not including the terminating NULL).
-_override_controller_path_socket_ Use this as the default custom directory path representing the location of the controller program socket.
-_override_controller_path_socket_length_ The number of bytes representing the string in _override_controller_path_socket_ (not including the terminating NULL).
+
+_override_controller_default_engine_     Provide a custom scripting engine name string to execute (such as php).
+_override_controller_path_pid_           Use this as the default custom directory path representing the location of the controller program pid.
+_override_controller_path_pid_prefix_    Use this as the default custom prefix prepended to the file name of the file representing the controller program pid.
+_override_controller_path_pid_suffix_    Use this as the default custom prefix prepended to the file name of the file representing the controller program pid.
+_override_controller_path_settings_      Use this as the default custom settings path, such as /etc/settings.
+_override_controller_path_socket_        Use this as the default custom directory path representing the location of the controller program socket.
 _override_controller_path_socket_prefix_ Use this as the default custom prefix prepended to the file name of the file representing the controller program socket.
-_override_controller_path_socket_prefix_length_ The number of bytes representing the string in _override_controller_path_socket_prefix_ (not including the terminating NULL).
 _override_controller_path_socket_suffix_ Use this as the default custom prefix prepended to the file name of the file representing the controller program socket.
+
+_override_controller_default_engine_length_     The number of bytes representing the string in _override_controller_default_engine_ (not including the terminating NULL).
+_override_controller_path_pid_length_           The number of bytes representing the string in _override_controller_path_pid_ (not including the terminating NULL).
+_override_controller_path_pid_prefix_length_    The number of bytes representing the string in _override_controller_path_pid_prefix_ (not including the terminating NULL).
+_override_controller_path_pid_suffix_length_    The number of bytes representing the string in _override_controller_path_pid_suffix_ (not including the terminating NULL).
+_override_controller_path_settings_length_      The number of bytes representing the string in _override_controller_path_settings_ (not including the terminating NULL).
+_override_controller_path_socket_length_        The number of bytes representing the string in _override_controller_path_socket_ (not including the terminating NULL).
+_override_controller_path_socket_prefix_length_ The number of bytes representing the string in _override_controller_path_socket_prefix_ (not including the terminating NULL).
 _override_controller_path_socket_suffix_length_ The number of bytes representing the string in _override_controller_path_socket_suffix_ (not including the terminating NULL).
-_override_control_path_settings_ Use this as the default full path to the controlsettings.
-_override_control_path_settings_length_ The number of bytes representing the string in _override_controller_path_settings_length_ (not including the terminating NULL).
 
-_pthread_attr_unsupported_ Disable non-portable functionality associated with pthread_attr.
+_pthread_attr_unsupported_     Disable non-portable functionality associated with pthread_attr.
 _pthread_sigqueue_unsupported_ Disable GNU specific sigqueue().
index affda721c7d7d411aa3d14bc021cd68466c729d0..e6df133ea0b3662f475a674cb42a1d2607ed95b2 100644 (file)
@@ -21,9 +21,9 @@ help:
 
   print
   print The following operations are available\:
-  print "  - context:'notable'help:context:'reset'               Perform the help operation, printing this message."
-  print "  - context:'notable'install:context:'reset'            A helper operation that calls the ./install.sh script for the control program."
-  print "  - context:'notable'main:context:'reset'               Compilation using the build settings mode for the control program (default)."
+  print "  - context:'notable'help:context:'reset'     Perform the help operation, printing this message."
+  print "  - context:'notable'install:context:'reset'  A helper operation that calls the ./install.sh script for the control program."
+  print "  - context:'notable'main:context:'reset'     Compilation using the build settings mode for the control program (default)."
 
   print
   print The context:'notable'install context:'reset'operation supports the context:'notable'work,context:'reset' context:'notable'verbosity,context:'reset' and context:'notable'color context:'reset'parameters.
index 5dfb9e96e713c446f0d388f3f7594b136fb09625..e341e6bb98ff1024d03e2dbd7eafdb4770d7bce2 100644 (file)
@@ -5,8 +5,8 @@
 #   - individual_thread: This is required when compiling in individual mode with "thread" mode.
 #   - level:             Compile using per level libraries.
 #   - monolithic:        Compile using per monolithic libraries.
-#   - clang:             Use clang rather than the default, which is generally gcc.
-#   - gcc:               Use gcc specific settings.
+#   - clang:             Use CLang rather than the default, which is generally GCC.
+#   - gcc:               Use GCC specific settings.
 #   - test:              Compile for a test, such as unit testing.
 #   - fanalyzer:         Compile using GCC's -fanalyzer compile time option.
 #   - coverage:          Compile for building coverage.
@@ -39,13 +39,13 @@ build_libraries-individual_thread -lf_thread
 build_libraries-level -lfll_2 -lfll_1 -lfll_0
 build_libraries-monolithic -lfll
 
-build_sources_library main/common.c main/common/define.c main/common/enumeration.c main/common/print.c main/common/string.c main/common/type.c
-build_sources_library main/print/data.c main/print/debug.c main/print/error.c main/print/message.c main/print/warning.c
-build_sources_library main/action.c main/control.c main/packet.c main/payload.c main/signal.c main/thread.c
+build_sources_library common.c common/define.c common/enumeration.c common/print.c common/string.c common/type.c
+build_sources_library print/data.c print/debug.c print/error.c print/message.c print/warning.c
+build_sources_library action.c packet.c payload.c signal.c thread.c
 
-build_sources_headers main/common.h main/common/define.h main/common/enumeration.h main/common/print.h main/common/string.h main/common/type.h
-build_sources_headers main/print/data.h main/print/debug.h main/print/error.h main/print/message.h main/print/warning.h
-build_sources_headers main/action.h main/control.h main/packet.h main/payload.h main/signal.h main/thread.h
+build_sources_headers common.h common/define.h common/enumeration.h common/print.h common/string.h common/type.h
+build_sources_headers print/data.h print/debug.h print/error.h print/message.h print/warning.h
+build_sources_headers action.h control.h packet.h payload.h signal.h thread.h
 
 build_sources_documentation man
 
@@ -63,6 +63,7 @@ path_object_static static
 path_program_script script
 path_program_shared shared
 path_program_static static
+path_sources sources/c/program/control/main
 
 has_path_standard no
 preserve_path_headers yes
index a39d0e34b721a401dac59ed8e54c5b2ed69ba6c9..0e5c5427629452ac3d759f01484c6a3c9c31b83d 100644 (file)
@@ -27,17 +27,49 @@ int main(const int argc, const f_string_t *argv, const f_string_t *envp) {
 
   data.setting.flag |= control_main_flag_interruptible_e;
 
+  data.setting.socket.domain = f_socket_protocol_family_local_e;
+  data.setting.socket.type = f_socket_type_stream_e;
+  data.setting.socket.length = sizeof(struct sockaddr_un);
+
   fll_program_standard_set_up(&data.program);
 
   f_file_umask_get(&data.program.umask);
 
-  {
-    const f_console_arguments_t arguments = macro_f_console_arguments_t_initialize_1(argc, argv, envp);
+  #ifdef _di_thread_support_
+    {
+      const f_console_arguments_t arguments = macro_f_console_arguments_t_initialize_1(argc, argv, envp);
 
-    control_setting_load(arguments, &data);
-  }
+      control_setting_load(arguments, &data);
+    }
+
+    control_process(&data);
+  #else
+    {
+      f_thread_id_t id_signal;
+
+      memset(&id_signal, 0, sizeof(f_thread_id_t));
+
+      data.setting.state.status = f_thread_create(0, &id_signal, &control_thread_signal, (void *) &data);
+
+      if (F_status_is_error(data.setting.state.status)) {
+        control_print_error(&data.program.error, macro_control_f(f_thread_create));
+      }
+      else {
+        {
+          const f_console_arguments_t arguments = macro_f_console_arguments_t_initialize_1(argc, argv, envp);
+
+          control_setting_load(arguments, &data);
+        }
+
+        if (!control_signal_check(&data)) {
+          control_process(&data);
+        }
 
-  control_process(&data);
+        f_thread_cancel(id_signal);
+        f_thread_join(id_signal, 0);
+      }
+    }
+  #endif // _di_thread_support_
 
   control_delete(&data);
 
index f9d818d86962ebfa80d64e082ca7120b516bdde6..c29a5dba811057b7212c49926199d910ee37a19c 100644 (file)
@@ -74,7 +74,7 @@ extern "C" {
 #endif // _di_control_action_type_name_
 
 #ifndef _di_control_action_verify_
-  void control_action_verify(control_main_t * const main) {
+  void control_action_verify(control_t * const main) {
 
     if (!main) return;
 
index b0d401aee71aaf543432281c422dea5ce511c24f..3917f0b60ad9b8aac0e27e988c5fa98949246981 100644 (file)
@@ -56,7 +56,7 @@ extern "C" {
  *     F_parameter (with error bit) on parameter validation/verification failure.
  */
 #ifndef _di_control_action_verify_
-  extern void control_action_verify(control_main_t * const main);
+  extern void control_action_verify(control_t * const main);
 #endif // _di_control_action_verify_
 
 #ifdef __cplusplus
index 1ef8754423dc519717f130e28da7d153b675f4d5..aab7c088383a06184e109a7ff3468cdd5b1f7b21 100644 (file)
@@ -5,7 +5,7 @@ extern "C" {
 #endif
 
 #ifndef _di_control_setting_load_
-  void control_setting_load(const f_console_arguments_t arguments, control_main_t * const main) {
+  void control_setting_load(const f_console_arguments_t arguments, control_t * const main) {
 
     if (!main) return;
 
index c6e8f21b26f6a312b1cdb2689243cfb70892fa04..e846daff426cc836c6b8b1629485c7d52fe81ca8 100644 (file)
@@ -38,7 +38,7 @@ extern "C" {
  * @see fll_program_parameter_process_context()
  */
 #ifndef _di_control_setting_load_
-  extern void control_setting_load(const f_console_arguments_t arguments, control_main_t * const main);
+  extern void control_setting_load(const f_console_arguments_t arguments, control_t * const main);
 #endif // _di_control_setting_load_
 
 #ifdef __cplusplus
index 608f3b3779a4d44fb0ea971b5db39c806de464a7..1a8c2e05049306f2cdb76e4880367e505466e0c4 100644 (file)
@@ -45,6 +45,18 @@ extern "C" {
 #endif // _di_control_default_d_
 
 /**
+ * A codes repesent different flags associated with a packet.
+ *
+ * control_packet_flag_*_d:
+ *   - binary:     Designate that the packet is in binary mode (when not set then packet is in string mode).
+ *   - endian_big: Designate that the packet is in big endian order (when not set then packet is in little endian order).
+ */
+#ifndef _di_control_packet_flag_d_
+  #define control_packet_flag_binary_d     0x80
+  #define control_packet_flag_endian_big_d 0x40
+#endif // _di_control_packet_flag_d_
+
+/**
  * The program signal defines.
  *
  * control_signal_*_d:
index 8770f679510243ed43f0510b21c76af1c6f6c3a4..8fa82863c926514b37d765a27d7e6a3220c86640 100644 (file)
@@ -19,23 +19,26 @@ extern "C" {
 /**
  * Codes representing supported actions.
  *
- * freeze:   Perform the freeze controller operation.
- * kexec:    Perform the kexec controller operation (only for init mode).
- * kill:     Perform the kill controller operation.
- * pause:    Perform the pause controller operation.
- * reboot:   Perform the reboot controller operation (only for init mode).
- * reload:   Perform the reload controller operation.
- * rerun:    Perform the rerun controller operation.
- * restart:  Perform the restart controller operation.
- * resume:   Perform the resume controller operation.
- * shutdown: Perform the shutdown controller operation (only for init mode).
- * start:    Perform the start controller operation.
- * stop:     Perform the stop controller operation.
- * thaw:     Perform the thaw controller operation.
+ * control_action_type_*_e:
+ *   - none:     No type set.
+ *   - freeze:   Perform the freeze controller operation.
+ *   - kexec:    Perform the kexec controller operation (only for init mode).
+ *   - kill:     Perform the kill controller operation.
+ *   - pause:    Perform the pause controller operation.
+ *   - reboot:   Perform the reboot controller operation (only for init mode).
+ *   - reload:   Perform the reload controller operation.
+ *   - rerun:    Perform the rerun controller operation.
+ *   - restart:  Perform the restart controller operation.
+ *   - resume:   Perform the resume controller operation.
+ *   - shutdown: Perform the shutdown controller operation (only for init mode).
+ *   - start:    Perform the start controller operation.
+ *   - stop:     Perform the stop controller operation.
+ *   - thaw:     Perform the thaw controller operation.
  */
 #ifndef _di_control_action_type_e_
   enum {
-    control_action_type_freeze_e = 1,
+    control_action_type_none_e = 0,
+    control_action_type_freeze_e,
     control_action_type_kexec_e,
     control_action_type_kill_e,
     control_action_type_pause_e,
@@ -52,33 +55,6 @@ extern "C" {
 #endif // _di_control_action_type_e_
 
 /**
- * Supported payload types.
- *
- * controller: The payload is a controller payload.
- * error:      The payload is an error payload.
- * init:       The payload is an init payload (only available when operating in "init" mode).
- */
-#ifndef _di_control_payload_type_e_
-  enum {
-    control_payload_type_controller_e = 1,
-    control_payload_type_error_e,
-    control_payload_type_init_e,
-  }; // enum
-#endif // _di_control_payload_type_e_
-
-/**
- * A codes repesent different flags associated with a packet.
- *
- * control_packet_flag_*:
- *   - binary:     Designate that the packet is in binary mode (when not set then packet is in string mode).
- *   - endian_big: Designate that the packet is in big endian order (when not set then packet is in little endian order).
- */
-#ifndef _di_control_packet_flag_e_
-  #define control_packet_flag_binary_d     0x80
-  #define control_packet_flag_endian_big_d 0x40
-#endif // _di_control_packet_flag_e_
-
-/**
  * Flags passed to the main function or program.
  *
  * control_main_flag_*_e:
@@ -87,7 +63,7 @@ extern "C" {
  *   - header:                 Enable printing of headers.
  *   - help:                   Print help.
  *   - pipe:                   Use the input pipe.
- *   - return:                 The parameter is specified.
+ *   - return:                 Print a message about the response packet.
  *   - version:                Print version.
  *   - version_copyright_help: A helper flag representing version, copyright, and help flag bits being set.
  */
@@ -104,9 +80,25 @@ extern "C" {
 #endif // _di_control_main_flag_e_
 
 /**
+ * Supported payload types.
+ *
+ * control_payload_type_*_e:
+ *   - controller: The payload is a controller payload.
+ *   - error:      The payload is an error payload.
+ *   - init:       The payload is an init payload (only available when operating in "init" mode).
+ */
+#ifndef _di_control_payload_type_e_
+  enum {
+    control_payload_type_controller_e = 1,
+    control_payload_type_error_e,
+    control_payload_type_init_e,
+  }; // enum
+#endif // _di_control_payload_type_e_
+
+/**
  * The main program parameters.
  */
-#ifndef _di_control_parameter_d_
+#ifndef _di_control_parameter_e_
   enum {
     control_parameter_name_e = f_console_standard_parameter_last_e,
     control_parameter_return_e,
@@ -125,7 +117,7 @@ extern "C" {
     }
 
   #define control_parameter_total_d (f_console_parameter_state_type_total_d + 4)
-#endif // _di_control_parameter_d_
+#endif // _di_control_parameter_e_
 
 /**
  * Flags for fine-tuned print control.
index a9ab36bceaf25a7111597eab5a9ca73054444dd3..42a41c7f647e84828ff99626388cabff9d8e8a64 100644 (file)
@@ -8,11 +8,6 @@ extern "C" {
   const f_string_static_t control_program_version_s = macro_f_string_static_t_initialize_1(CONTROL_program_version_s, 0, CONTROL_program_version_s_length);
 #endif // _di_control_program_version_s_
 
-#ifndef _di_control_program_name_s_
-  const f_string_static_t control_program_name_s = macro_f_string_static_t_initialize_1(CONTROL_program_name_s, 0, CONTROL_program_name_s_length);
-  const f_string_static_t control_program_name_long_s = macro_f_string_static_t_initialize_1(CONTROL_program_name_long_s, 0, CONTROL_program_name_long_s_length);
-#endif // _di_control_program_name_s_
-
 #ifndef _di_control_parameter_s_
   const f_string_static_t control_short_name_s = macro_f_string_static_t_initialize_1(CONTROL_short_name_s, 0, CONTROL_short_name_s_length);
   const f_string_static_t control_short_return_s = macro_f_string_static_t_initialize_1(CONTROL_short_return_s, 0, CONTROL_short_return_s_length);
index c6881588269d29a6a8006b05623b410c9bdec833..46e06f9d8ca47d7e8859f106fc525f1266f8275f 100644 (file)
@@ -4,30 +4,30 @@
 extern "C" {
 #endif
 
-#ifndef _di_control_main_delete_
-  void control_main_delete(control_main_t * const main) {
+#ifndef _di_control_delete_
+  void control_delete(control_t * const control) {
 
-    if (!main) return;
+    if (!control) return;
 
-    fll_program_data_delete(&main->program);
-    control_setting_delete(&main->setting);
+    fll_program_data_delete(&control->program);
+    control_setting_delete(&control->setting);
 
-    f_memory_array_resize(0, sizeof(f_char_t), (void **) &main->cache.large.string, &main->cache.large.used, &main->cache.large.size);
-    f_memory_array_resize(0, sizeof(f_char_t), (void **) &main->cache.small.string, &main->cache.small.used, &main->cache.small.size);
-    f_memory_array_resize(0, sizeof(f_char_t), (void **) &main->cache.packet.string, &main->cache.packet.used, &main->cache.packet.size);
+    f_memory_array_resize(0, sizeof(f_char_t), (void **) &control->cache.large.string, &control->cache.large.used, &control->cache.large.size);
+    f_memory_array_resize(0, sizeof(f_char_t), (void **) &control->cache.small.string, &control->cache.small.used, &control->cache.small.size);
+    f_memory_array_resize(0, sizeof(f_char_t), (void **) &control->cache.packet.string, &control->cache.packet.used, &control->cache.packet.size);
 
-    f_memory_array_resize(0, sizeof(f_range_t), (void **) &main->cache.objects.array, &main->cache.objects.used, &main->cache.objects.size);
-    f_memory_arrays_resize(0, sizeof(f_ranges_t), (void **) &main->cache.contents.array, &main->cache.contents.used, &main->cache.contents.size, &f_rangess_delete_callback);
+    f_memory_array_resize(0, sizeof(f_range_t), (void **) &control->cache.objects.array, &control->cache.objects.used, &control->cache.objects.size);
+    f_memory_arrays_resize(0, sizeof(f_ranges_t), (void **) &control->cache.contents.array, &control->cache.contents.used, &control->cache.contents.size, &f_rangess_delete_callback);
 
-    f_memory_array_resize(0, sizeof(f_range_t), (void **) &main->cache.packet_objects.array, &main->cache.packet_objects.used, &main->cache.packet_objects.size);
-    f_memory_arrays_resize(0, sizeof(f_ranges_t), (void **) &main->cache.packet_contents.array, &main->cache.packet_contents.used, &main->cache.packet_contents.size, &f_rangess_delete_callback);
+    f_memory_array_resize(0, sizeof(f_range_t), (void **) &control->cache.packet_objects.array, &control->cache.packet_objects.used, &control->cache.packet_objects.size);
+    f_memory_arrays_resize(0, sizeof(f_ranges_t), (void **) &control->cache.packet_contents.array, &control->cache.packet_contents.used, &control->cache.packet_contents.size, &f_rangess_delete_callback);
 
-    f_memory_array_resize(0, sizeof(f_range_t), (void **) &main->cache.header_objects.array, &main->cache.header_objects.used, &main->cache.header_objects.size);
-    f_memory_arrays_resize(0, sizeof(f_ranges_t), (void **) &main->cache.header_contents.array, &main->cache.header_contents.used, &main->cache.header_contents.size, &f_rangess_delete_callback);
+    f_memory_array_resize(0, sizeof(f_range_t), (void **) &control->cache.header_objects.array, &control->cache.header_objects.used, &control->cache.header_objects.size);
+    f_memory_arrays_resize(0, sizeof(f_ranges_t), (void **) &control->cache.header_contents.array, &control->cache.header_contents.used, &control->cache.header_contents.size, &f_rangess_delete_callback);
 
-    f_memory_array_resize(0, sizeof(f_number_unsigned_t), (void **) &main->cache.delimits.array, &main->cache.delimits.used, &main->cache.delimits.size);
+    f_memory_array_resize(0, sizeof(f_number_unsigned_t), (void **) &control->cache.delimits.array, &control->cache.delimits.used, &control->cache.delimits.size);
   }
-#endif // _di_control_main_delete_
+#endif // _di_control_delete_
 
 #ifndef _di_control_setting_delete_
   void control_setting_delete(control_setting_t * const setting) {
index fe623d4e7224e902a3eb0f92f11e704b3f1639ca..c42d46781f1a2d4cc7cb63dff5e10b638c6b9b86 100644 (file)
@@ -158,26 +158,27 @@ extern "C" {
  *   - setting: The settings data.
  *   - cache:   The cache data.
  */
-#ifndef _di_control_main_t_
+#ifndef _di_control_t_
   typedef struct {
     fll_program_data_t program;
+
     control_setting_t setting;
     control_cache_t cache;
-  } control_main_t;
+  } control_t;
 
-  #define control_main_t_initialize \
+  #define control_t_initialize \
     { \
       fll_program_data_t_initialize, \
       control_setting_t_initialize, \
       control_cache_t_initialize, \
     }
-#endif // _di_control_main_t_
+#endif // _di_control_t_
 
 /**
- * Deallocate main program data.
+ * Deallocate control data.
  *
- * @param main
- *   The main program data.
+ * @param control
+ *   The control data.
  *
  *   Must not be NULL.
  *
@@ -188,9 +189,9 @@ extern "C" {
  * @see fll_program_data_delete()
  * @see control_setting_delete()
  */
-#ifndef _di_control_main_delete_
-  extern void control_main_delete(control_main_t * const main);
-#endif // _di_control_main_delete_
+#ifndef _di_control_delete_
+  extern void control_delete(control_t * const control);
+#endif // _di_control_delete_
 
 /**
  * Delete the program main setting data.
diff --git a/sources/c/program/control/main/control.c b/sources/c/program/control/main/control.c
deleted file mode 100644 (file)
index ee0540c..0000000
+++ /dev/null
@@ -1,110 +0,0 @@
-#include "control.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#ifndef _di_control_main_
-  void control_main(control_main_t * const main) {
-
-    if (!main) return;
-    if (F_status_is_error(main->setting.state.status)) return;
-
-    main->setting.state.status = F_okay;
-
-    if (main->setting.flag & control_main_flag_version_copyright_help_e) {
-      if (main->setting.flag & control_main_flag_help_e) {
-        control_print_message_help(&main->program.message);
-      }
-      else if (main->setting.flag & control_main_flag_version_e) {
-        fll_program_print_version(&main->program.message, control_program_version_s);
-      }
-      else if (main->setting.flag & control_main_flag_copyright_e) {
-        fll_program_print_copyright(&main->program.message, fll_program_copyright_year_author_s);
-      }
-
-      return;
-    }
-
-    if (main->setting.flag & control_main_flag_pipe_e) {
-      control_print_error_pipe_supported_not(&main->program.error);
-
-      main->setting.state.status = F_status_set_error(F_support_not);
-    }
-    else if (main->setting.actions.used) {
-      main->setting.action = control_action_type_identify(main->setting.actions.array[0]);
-
-      if (main->setting.action) {
-        control_action_verify(main);
-      }
-      else {
-        control_print_error_parameter_action_not(&main->program.error, main->setting.actions.array[0]);
-
-        main->setting.state.status = F_status_set_error(F_parameter);
-      }
-
-      if (F_status_is_error_not(main->setting.state.status)) {
-        control_packet_build(main);
-
-        if (F_status_is_error(main->setting.state.status)) {
-          if (F_status_set_fine(main->setting.state.status) == F_too_large) {
-            control_print_error_request_packet_too_large(&main->program.error);
-          }
-          else {
-            control_print_error(&main->program.error, macro_control_f(control_packet_build));
-          }
-        }
-
-        if (F_status_is_error_not(main->setting.state.status)) {
-          control_packet_send(main);
-
-          if (F_status_is_error(main->setting.state.status)) {
-            control_print_error(&main->program.error, macro_control_f(control_packet_send));
-          }
-        }
-
-        if (F_status_is_error_not(main->setting.state.status)) {
-          control_payload_header_t header = control_payload_header_t_initialize;
-
-          control_packet_receive(main, &header);
-
-          if (F_status_is_error(main->setting.state.status)) {
-            if (F_status_set_fine(main->setting.state.status) == F_too_large) {
-              control_print_error_response_packet_valid_not(&main->program.error);
-            }
-            else {
-              control_print_error(&main->program.error, macro_control_f(control_packet_receive));
-            }
-          }
-          else {
-            control_packet_process(main, &header);
-
-            // Print the error message only if the error message is not already printed.
-            if (F_status_is_error(main->setting.state.status)) {
-              if (header.type != control_payload_type_error_e && (header.type != control_payload_type_controller_e || F_status_set_fine(main->setting.state.status) != header.status || (header.status != F_failure && header.status != F_busy))) {
-                control_print_error(&main->program.error, macro_control_f(control_packet_process));
-              }
-            }
-          }
-        }
-      }
-
-      if (main->setting.socket.id != -1) {
-        f_socket_disconnect(&main->setting.socket, f_socket_close_fast_e);
-      }
-    }
-    else {
-      control_print_error_parameter_actions_none(&main->program.error);
-
-      main->setting.state.status = F_status_set_error(F_data_not);
-    }
-
-    if (F_status_is_error(main->setting.state.status)) return;
-
-    main->setting.state.status = F_okay;
-  }
-#endif // _di_control_main_
-
-#ifdef __cplusplus
-} // extern "C"
-#endif
index 82e5f2e285241ff6dbc1247b9abf4d2cdb86cb09..6b88ace9f1572afe58b5ff37094f42819560a5d1 100644 (file)
 extern "C" {
 #endif
 
-/**
- * Execute main program.
- *
- * If main.signal is non-zero, then this blocks and handles the following signals:
- *   - F_signal_abort
- *   - F_signal_broken_pipe
- *   - F_signal_hangup
- *   - F_signal_interrupt
- *   - F_signal_quit
- *   - F_signal_termination
- *
- * @param main
- *   The main program data and settings.
- *
- *   This alters main.setting.state.status:
- *     F_okay on success.
- *     F_true on success when performing verification and verify passed.
- *     F_false on success when performing verification and verify failed.
- *
- *     F_interrupt (with error bit) on (exit) signal received.
- *     F_parameter (with error bit) if main is NULL or setting is NULL.
- */
-#ifndef _di_control_main_
-  extern void control_main(control_main_t * const main);
-#endif // _di_control_main_
-
 #ifdef __cplusplus
 } // extern "C"
 #endif
diff --git a/sources/c/program/control/main/main.c b/sources/c/program/control/main/main.c
deleted file mode 100644 (file)
index bfde226..0000000
+++ /dev/null
@@ -1,77 +0,0 @@
-#include "control.h"
-
-int main(const int argc, const f_string_t *argv, const f_string_t *envp) {
-
-  control_main_t data = control_main_t_initialize;
-
-  data.program.debug.flag |= control_print_flag_debug_e | control_print_flag_out_e;
-  data.program.error.flag |= control_print_flag_error_e | control_print_flag_out_e;
-  data.program.output.flag |= control_print_flag_out_e;
-  data.program.message.flag |= control_print_flag_message_e | control_print_flag_out_e;
-  data.program.warning.flag |= control_print_flag_warning_e | control_print_flag_out_e;
-  data.program.error.custom = (void *) &data;
-  data.program.debug.custom = (void *) &data;
-  data.program.message.custom = (void *) &data;
-  data.program.output.custom = (void *) &data;
-  data.program.warning.custom = (void *) &data;
-
-  f_console_parameter_t parameters[] = control_console_parameter_t_initialize;
-
-  data.program.parameters.array = parameters;
-  data.program.parameters.used = control_parameter_total_d;
-  data.program.environment = envp;
-
-  data.setting.socket.domain = f_socket_protocol_family_local_e;
-  data.setting.socket.type = f_socket_type_stream_e;
-  data.setting.socket.length = sizeof(struct sockaddr_un);
-
-  if (f_pipe_input_exists()) {
-    data.program.pipe = fll_program_data_pipe_input_e;
-  }
-
-  fll_program_standard_set_up(&data.program);
-
-  f_file_umask_get(&data.program.umask);
-
-  #ifdef _di_thread_support_
-    {
-      const f_console_arguments_t arguments = macro_f_console_arguments_t_initialize_1(argc, argv, envp);
-
-      control_setting_load(arguments, &data);
-    }
-
-    control_main(&data);
-  #else
-    {
-      f_thread_id_t id_signal;
-
-      memset(&id_signal, 0, sizeof(f_thread_id_t));
-
-      data.setting.state.status = f_thread_create(0, &id_signal, &control_thread_signal, (void *) &data);
-
-      if (F_status_is_error(data.setting.state.status)) {
-        control_print_error(&data.program.error, macro_control_f(f_thread_create));
-      }
-      else {
-        {
-          const f_console_arguments_t arguments = macro_f_console_arguments_t_initialize_1(argc, argv, envp);
-
-          control_setting_load(arguments, &data);
-        }
-
-        if (!control_signal_check(&data)) {
-          control_main(&data);
-        }
-
-        f_thread_cancel(id_signal);
-        f_thread_join(id_signal, 0);
-      }
-    }
-  #endif // _di_thread_support_
-
-  control_main_delete(&data);
-
-  fll_program_standard_set_down(&data.program);
-
-  return (F_status_is_error(data.setting.state.status) || data.setting.state.status == F_false) ? 1 : 0;
-}
diff --git a/sources/c/program/control/main/main.h b/sources/c/program/control/main/main.h
deleted file mode 100644 (file)
index f66d83a..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/**
- * FLL - Level 3
- *
- * Project: Control
- * API Version: 0.7
- * Licenses: lgpl-2.1-or-later
- *
- * This file is only ever included by main/main.c and should not normally be included anywhere else.
- * Anything that wants to include this should be providing the "control" program functionality in some manner.
- */
-#ifndef _control_main_main_h
-#define _control_main_main_h
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/**
- * Standard program entry point.
- *
- * @param argc
- *   The number of arguments.
- * @param argv
- *   The array of arguments.
- * @param envp
- *   The array of all environment variables on program start.
- *
- * @return
- *   0 on success.
- *   1 on error.
- */
-extern int main(const int argc, const f_string_t *argv, const f_string_t *envp);
-
-#ifdef __cplusplus
-} // extern "C"
-#endif
-
-#endif // _control_main_main_h
index ddb4ca5a8a0ed10babd24101479d0a8e0219767d..c149dd260897167c7fed4b0b7d0e86ab6c0133c9 100644 (file)
@@ -5,7 +5,7 @@ extern "C" {
 #endif
 
 #ifndef _di_control_packet_build_
-  void control_packet_build(control_main_t * const main) {
+  void control_packet_build(control_t * const main) {
 
     if (!main) return;
 
@@ -148,7 +148,7 @@ extern "C" {
 #endif // _di_control_packet_header_length_
 
 #ifndef _di_control_packet_receive_
-  void control_packet_receive(control_main_t * const main, control_payload_header_t * const header) {
+  void control_packet_receive(control_t * const main, control_payload_header_t * const header) {
 
     if (!main || !header) return;
 
@@ -493,7 +493,7 @@ extern "C" {
 #endif // _di_control_packet_receive_
 
 #ifndef _di_control_packet_process_
-  void control_packet_process(control_main_t * const main, control_payload_header_t * const header) {
+  void control_packet_process(control_t * const main, control_payload_header_t * const header) {
 
     if (!main || !header) return;
 
@@ -544,7 +544,7 @@ extern "C" {
 #endif // _di_control_packet_process_
 
 #ifndef _di_control_packet_send_
-  void control_packet_send(control_main_t * const main) {
+  void control_packet_send(control_t * const main) {
 
     if (!main) return;
 
index f5fdefb23e94dae63bb8ac88fe64591b51180f7f..2ef8185d9dfc052ac98d0dfcb52da9bcd07290f7 100644 (file)
@@ -38,7 +38,7 @@ extern "C" {
  * @see f_string_dynamic_append()
  */
 #ifndef _di_control_packet_build_
-  extern void control_packet_build(control_main_t * const main);
+  extern void control_packet_build(control_t * const main);
 #endif // _di_control_packet_build_
 
 /**
@@ -107,7 +107,7 @@ extern "C" {
  * @see fll_fss_basic_list_read()
  */
 #ifndef _di_control_packet_receive_
-  extern void control_packet_receive(control_main_t * const main, control_payload_header_t * const header);
+  extern void control_packet_receive(control_t * const main, control_payload_header_t * const header);
 #endif // _di_control_packet_receive_
 
 /**
@@ -128,7 +128,7 @@ extern "C" {
  *   The control payload packet header data.
  */
 #ifndef _di_control_packet_process_
-  extern void control_packet_process(control_main_t * const main, control_payload_header_t * const header);
+  extern void control_packet_process(control_t * const main, control_payload_header_t * const header);
 #endif // _di_control_packet_process_
 
 /**
@@ -145,7 +145,7 @@ extern "C" {
  * @see f_socket_write()
  */
 #ifndef _di_control_packet_send_
-  extern void control_packet_send(control_main_t * const main);
+  extern void control_packet_send(control_t * const main);
 #endif // _di_control_packet_send_
 
 #ifdef __cplusplus
index aefb4fd89378260e9f7b20adefb0c9b3309bd161..c6f74f363fc6dc12bd9f3156ce45ae84cf35fbb9 100644 (file)
@@ -27,7 +27,7 @@ extern "C" {
     if (!print || !print->custom) return F_status_set_error(F_output_not);
     if (print->verbosity < f_console_verbosity_debug_e) return F_output_not;
 
-    control_main_t * const main = (control_main_t *) print->custom;
+    control_t * const main = (control_t *) print->custom;
 
     f_file_stream_lock(print->to);
 
index 18c9ddb0be04abb534c59d24639bbc6fb02e54f7..86a2519ad01d68b65cd60349f18a34f9ede86875 100644 (file)
@@ -10,7 +10,7 @@ extern "C" {
     if (!print || !print->custom) return F_status_set_error(F_output_not);
     if (print->verbosity < f_console_verbosity_error_e) return F_output_not;
 
-    fll_error_print(print, F_status_set_fine(((control_main_t *) print->custom)->setting.state.status), function, fll_error_file_flag_fallback_e);
+    fll_error_print(print, F_status_set_fine(((control_t *) print->custom)->setting.state.status), function, fll_error_file_flag_fallback_e);
 
     return F_okay;
   }
@@ -22,9 +22,7 @@ extern "C" {
     if (!print || !print->custom) return F_status_set_error(F_output_not);
     if (print->verbosity < f_console_verbosity_error_e) return F_output_not;
 
-    control_main_t * const main = (control_main_t *) print->custom;
-
-    fll_error_file_print(print, F_status_set_fine(main->setting.state.status), function, fll_error_file_flag_fallback_e, name, operation, type);
+    fll_error_file_print(print, F_status_set_fine(((control_t *) print->custom)->setting.state.status), function, fll_error_file_flag_fallback_e, name, operation, type);
 
     return F_okay;
   }
@@ -36,7 +34,7 @@ extern "C" {
     if (!print || !print->custom) return F_status_set_error(F_output_not);
     if (print->verbosity < f_console_verbosity_error_e) return F_output_not;
 
-    control_main_t * const main = (control_main_t *) print->custom;
+    control_t * const main = (control_t *) print->custom;
 
     f_file_stream_lock(print->to);
 
@@ -66,7 +64,7 @@ extern "C" {
     if (!print || !print->custom) return F_status_set_error(F_output_not);
     if (print->verbosity < f_console_verbosity_error_e) return F_output_not;
 
-    control_main_t * const main = (control_main_t *) print->custom;
+    control_t * const main = (control_t *) print->custom;
 
     f_file_stream_lock(print->to);
 
@@ -90,17 +88,18 @@ extern "C" {
   }
 #endif // _di_control_print_error_packet_response_failure_
 
-#ifndef _di_control_print_error_parameter_actions_none_
-  f_status_t control_print_error_parameter_actions_none(fl_print_t * const print) {
+#ifndef _di_control_print_error_parameter_action_message_first_
+  f_status_t control_print_error_parameter_action_message_first(fl_print_t * const print, const f_string_static_t action) {
 
     if (!print) return F_status_set_error(F_output_not);
     if (print->verbosity < f_console_verbosity_error_e) return F_output_not;
 
-    fll_print_format("%[%QNo actions provided.%]%r", print->to, print->set->error, print->prefix, print->set->error, f_string_eol_s);
+    fl_print_format("%[%QThe action parameter '%]", print->to, print->set->error, print->prefix, print->set->error);
+    fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, action, print->set->notable);
 
     return F_okay;
   }
-#endif // _di_control_print_error_parameter_actions_none_
+#endif // _di_control_print_error_parameter_action_message_first_
 
 #ifndef _di_control_print_error_parameter_action_not_
   f_status_t control_print_error_parameter_action_not(fl_print_t * const print, const f_string_static_t action) {
@@ -128,8 +127,8 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe action parameter '%]", print->to, print->set->error, print->prefix, print->set->error);
-    fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, action, print->set->notable);
+    control_print_error_parameter_action_message_first(print, action);
+
     fl_print_format("%[' a rule base name cannot be an empty string.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
@@ -146,8 +145,8 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe action parameter '%]", print->to, print->set->error, print->prefix, print->set->error);
-    fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, action, print->set->notable);
+    control_print_error_parameter_action_message_first(print, action);
+
     fl_print_format("%[' a rule directory path cannot be an empty string.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
@@ -164,8 +163,8 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe action parameter '%]", print->to, print->set->error, print->prefix, print->set->error);
-    fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, action, print->set->notable);
+    control_print_error_parameter_action_message_first(print, action);
+
     fl_print_format("%[' a rule name cannot be an empty string.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
@@ -182,8 +181,8 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe action parameter '%]", print->to, print->set->error, print->prefix, print->set->error);
-    fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, action, print->set->notable);
+    control_print_error_parameter_action_message_first(print, action);
+
     fl_print_format("%[' requires either a full rule name or a rule directory path along with the rule base name.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
@@ -200,8 +199,8 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe action parameter '%]", print->to, print->set->error, print->prefix, print->set->error);
-    fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, action, print->set->notable);
+    control_print_error_parameter_action_message_first(print, action);
+
     fl_print_format("%[' has too few arguments.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
@@ -218,8 +217,8 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe action parameter '%]", print->to, print->set->error, print->prefix, print->set->error);
-    fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, action, print->set->notable);
+    control_print_error_parameter_action_message_first(print, action);
+
     fl_print_format("%[' when used with '%]", print->to, print->set->error, print->set->error, f_string_eol_s);
     fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, with, print->set->notable);
     fl_print_format("%[' has too few arguments.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
@@ -238,8 +237,8 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe action parameter '%]", print->to, print->set->error, print->prefix, print->set->error);
-    fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, action, print->set->notable);
+    control_print_error_parameter_action_message_first(print, action);
+
     fl_print_format("%[' has too many arguments.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
 
     f_file_stream_unlock(print->to);
@@ -256,8 +255,8 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe action parameter '%]", print->to, print->set->error, print->prefix, print->set->error);
-    fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, action, print->set->notable);
+    control_print_error_parameter_action_message_first(print, action);
+
     fl_print_format("%[' when used with '%]", print->to, print->set->error, print->set->error, f_string_eol_s);
     fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, with, print->set->notable);
     fl_print_format("%[' has too many arguments.%]%r", print->to, print->set->error, print->set->error, f_string_eol_s);
@@ -276,8 +275,8 @@ extern "C" {
 
     f_file_stream_lock(print->to);
 
-    fl_print_format("%[%QThe action parameter '%]", print->to, print->set->error, print->prefix, print->set->error);
-    fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, action, print->set->notable);
+    control_print_error_parameter_action_message_first(print, action);
+
     fl_print_format("%[' does not know the argument '%]", print->to, print->set->error, print->set->error, f_string_eol_s);
     fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, with, print->set->notable);
     fl_print_format(f_string_format_sentence_end_quote_s.string, print->to, print->set->error, print->set->error, f_string_eol_s);
@@ -288,6 +287,18 @@ extern "C" {
   }
 #endif // _di_control_print_error_parameter_action_rule_with_unknown_
 
+#ifndef _di_control_print_error_parameter_actions_none_
+  f_status_t control_print_error_parameter_actions_none(fl_print_t * const print) {
+
+    if (!print) return F_status_set_error(F_output_not);
+    if (print->verbosity < f_console_verbosity_error_e) return F_output_not;
+
+    fll_print_format("%[%QNo actions provided.%]%r", print->to, print->set->error, print->prefix, print->set->error, f_string_eol_s);
+
+    return F_okay;
+  }
+#endif // _di_control_print_error_parameter_actions_none_
+
 #ifndef _di_control_print_error_parameter_value_empty_
   f_status_t control_print_error_parameter_value_empty(fl_print_t * const print, const f_string_static_t parameter) {
 
index 1e8e6b4cdc88ba8e354990c9454a19bf82c30e7e..4c83e8e2b65ba4537b7e8e6684166e061dfa0fcb 100644 (file)
@@ -110,8 +110,12 @@ extern "C" {
 #ifndef _di_control_print_error_packet_response_failure_
   extern f_status_t control_print_error_packet_response_failure(fl_print_t * const print, const control_payload_header_t header, const f_string_static_t string_status);
 #endif // _di_control_print_error_packet_response_failure_
+
+
 /**
- * Print an error message about no actions being provided.
+ * Helper print function for printing the first part of an action message.
+ *
+ * This does not perform any locking.
  *
  * @param print
  *   The output structure to print to.
@@ -124,9 +128,9 @@ extern "C" {
  *
  *   F_output_not (with error bit) if setting is NULL.
  */
-#ifndef _di_control_print_error_parameter_actions_none_
-  extern f_status_t control_print_error_parameter_actions_none(fl_print_t * const print);
-#endif // _di_control_print_error_parameter_actions_none_
+#ifndef _di_control_print_error_parameter_action_message_first_
+  extern f_status_t control_print_error_parameter_action_message_first(fl_print_t * const print, const f_string_static_t action);
+#endif // _di_control_print_error_parameter_action_message_first_
 
 /**
  * Print an error message about the given parameter not matching the known set of controller actions.
@@ -334,6 +338,24 @@ extern "C" {
 #endif // _di_control_print_error_parameter_action_rule_with_unknown_
 
 /**
+ * Print an error message about no actions being provided.
+ *
+ * @param print
+ *   The output structure to print to.
+ *
+ *   This does not alter print.custom.setting.state.status.
+ *
+ * @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_control_print_error_parameter_actions_none_
+  extern f_status_t control_print_error_parameter_actions_none(fl_print_t * const print);
+#endif // _di_control_print_error_parameter_actions_none_
+
+/**
  * Print an error message about the parameter's associated value being an empty string.
  *
  * @param print
index ed68aff8f352bae4fd21e79e4456067f442afd96..86852426e0c5ab81b1ef4eb975b0e85a2f7375b9 100644 (file)
@@ -50,19 +50,13 @@ extern "C" {
     if (!print || !print->custom) return F_status_set_error(F_output_not);
     if (print->verbosity < f_console_verbosity_normal_e) return F_output_not;
 
-    control_main_t * const main = (control_main_t *) print->custom;
+    control_t * const main = (control_t *) print->custom;
 
     f_file_stream_lock(print->to);
 
     fl_print_format("The action '", print->to);
     fl_print_format(f_string_format_Q_single_s.string, print->to, print->set->notable, control_action_type_name(header.action), print->set->notable);
-
-    if (header.status == F_done) {
-      fl_print_format("' is performed", print->to);
-    }
-    else {
-      fl_print_format("' is successfully performed", print->to);
-    }
+    fl_print_format(header.status == F_done ? "' is performed" : "' is successfully performed", print->to);
 
     if (header.length) {
       fl_print_format(": %/Q%r", print->to, main->cache.large, main->cache.packet_contents.array[main->cache.packet_contents.used - 1].array[0], f_string_eol_s);
index 187c7ab0f31a33765cdeb9fc5065950f19cce0a2..e1e1d0398b7818163737de34c8d7f11b9f0c84a2 100644 (file)
@@ -29,17 +29,6 @@ extern "C" {
  *   F_output_not on success, but no printing is performed.
  *
  *   F_output_not (with error bit) if setting is NULL.
- *
- * @see f_file_stream_flush()
- * @see f_file_stream_lock()
- * @see f_file_stream_unlock()
- * @see f_print_dynamic_raw()
- * @see fl_print_format()
- *
- * @see fll_program_print_help_header()
- * @see fll_program_print_help_option()
- * @see fll_program_print_help_option_standard()
- * @see fll_program_print_help_usage()
  */
 #ifndef _di_control_print_message_help_
   extern f_status_t control_print_message_help(fl_print_t * const print);
index 0c95daf6985dc55baef79a8767acfe2043625df0..30dc2e3c9987a7f1a70ed3c5c58b20578a6e33c5 100644 (file)
@@ -4,6 +4,106 @@
 extern "C" {
 #endif
 
+#ifndef _di_control_process_
+  void control_process(control_t * const main) {
+
+    if (!main || F_status_is_error(main->setting.state.status)) return;
+
+    main->setting.state.status = F_okay;
+
+    if (main->setting.flag & control_main_flag_version_copyright_help_e) {
+      if (main->setting.flag & control_main_flag_help_e) {
+        control_print_message_help(&main->program.message);
+      }
+      else if (main->setting.flag & control_main_flag_version_e) {
+        fll_program_print_version(&main->program.message, control_program_version_s);
+      }
+      else if (main->setting.flag & control_main_flag_copyright_e) {
+        fll_program_print_copyright(&main->program.message, fll_program_copyright_year_author_s);
+      }
+
+      return;
+    }
+
+    if (main->setting.flag & control_main_flag_pipe_e) {
+      control_print_error_pipe_supported_not(&main->program.error);
+
+      main->setting.state.status = F_status_set_error(F_support_not);
+    }
+    else if (main->setting.actions.used) {
+      main->setting.action = control_action_type_identify(main->setting.actions.array[0]);
+
+      if (main->setting.action) {
+        control_action_verify(main);
+      }
+      else {
+        control_print_error_parameter_action_not(&main->program.error, main->setting.actions.array[0]);
+
+        main->setting.state.status = F_status_set_error(F_parameter);
+      }
+
+      if (F_status_is_error_not(main->setting.state.status)) {
+        control_packet_build(main);
+
+        if (F_status_is_error(main->setting.state.status)) {
+          if (F_status_set_fine(main->setting.state.status) == F_too_large) {
+            control_print_error_request_packet_too_large(&main->program.error);
+          }
+          else {
+            control_print_error(&main->program.error, macro_control_f(control_packet_build));
+          }
+        }
+
+        if (F_status_is_error_not(main->setting.state.status)) {
+          control_packet_send(main);
+
+          if (F_status_is_error(main->setting.state.status)) {
+            control_print_error(&main->program.error, macro_control_f(control_packet_send));
+          }
+        }
+
+        if (F_status_is_error_not(main->setting.state.status)) {
+          control_payload_header_t header = control_payload_header_t_initialize;
+
+          control_packet_receive(main, &header);
+
+          if (F_status_is_error(main->setting.state.status)) {
+            if (F_status_set_fine(main->setting.state.status) == F_too_large) {
+              control_print_error_response_packet_valid_not(&main->program.error);
+            }
+            else {
+              control_print_error(&main->program.error, macro_control_f(control_packet_receive));
+            }
+          }
+          else {
+            control_packet_process(main, &header);
+
+            // Print the error message only if the error message is not already printed.
+            if (F_status_is_error(main->setting.state.status)) {
+              if (header.type != control_payload_type_error_e && (header.type != control_payload_type_controller_e || F_status_set_fine(main->setting.state.status) != header.status || (header.status != F_failure && header.status != F_busy))) {
+                control_print_error(&main->program.error, macro_control_f(control_packet_process));
+              }
+            }
+          }
+        }
+      }
+
+      if (main->setting.socket.id != -1) {
+        f_socket_disconnect(&main->setting.socket, f_socket_close_fast_e);
+      }
+    }
+    else {
+      control_print_error_parameter_actions_none(&main->program.error);
+
+      main->setting.state.status = F_status_set_error(F_data_not);
+    }
+
+    if (F_status_is_error(main->setting.state.status)) return;
+
+    main->setting.state.status = F_okay;
+  }
+#endif // _di_control_process_
+
 #ifdef __cplusplus
 } // extern "C"
 #endif
index 57a80d3cad2f261206ca36ce3d53a8a0996af47e..da183d0e4fc898370ba11db8956029910406dd53 100644 (file)
@@ -9,15 +9,41 @@
  *
  * This is auto-included and should not need to be explicitly included.
  */
-#ifndef _control_main_process_h
-#define _control_main_process_h
+#ifndef _control_process_h
+#define _control_process_h
 
 #ifdef __cplusplus
 extern "C" {
 #endif
 
+/**
+ * Execute main program.
+ *
+ * If main.signal is non-zero, then this blocks and handles the following signals:
+ *   - F_signal_abort
+ *   - F_signal_broken_pipe
+ *   - F_signal_hangup
+ *   - F_signal_interrupt
+ *   - F_signal_quit
+ *   - F_signal_termination
+ *
+ * @param main
+ *   The main program data and settings.
+ *
+ *   This alters main.setting.state.status:
+ *     F_okay on success.
+ *     F_true on success when performing verification and verify passed.
+ *     F_false on success when performing verification and verify failed.
+ *
+ *     F_interrupt (with error bit) on (exit) signal received.
+ *     F_parameter (with error bit) if main is NULL or setting is NULL.
+ */
+#ifndef _di_control_process_
+  extern void control_process(control_t * const main);
+#endif // _di_control_process_
+
 #ifdef __cplusplus
 } // extern "C"
 #endif
 
-#endif // _control_main_process_h
+#endif // _control_process_h
index 7daac73839488e36f7d81ae1d23a3e9233e30784..442df757c90b4e48f25f1cd239d980dbbf11c547 100644 (file)
@@ -5,7 +5,7 @@ extern "C" {
 #endif
 
 #if !defined(_di_control_signal_check_) && defined(_di_thread_support_)
-  f_status_t control_signal_check(control_main_t * const main) {
+  f_status_t control_signal_check(control_t * const main) {
 
     if (!main || main->program.signal.id == -1) return F_false;
 
@@ -26,7 +26,7 @@ extern "C" {
 #endif // !defined(_di_control_signal_check_) && defined(_di_thread_support_)
 
 #if !defined(_di_control_signal_check_) && !defined(_di_thread_support_)
-  f_status_t control_signal_check(control_main_t * const main) {
+  f_status_t control_signal_check(control_t * const main) {
 
     if (!main || main->program.signal.id == -1) return F_false;
 
@@ -43,7 +43,7 @@ extern "C" {
 #endif // !defined(_di_control_signal_check_) && !defined(_di_thread_support_)
 
 #if !defined(_di_control_signal_handler_) && !defined(_di_thread_support_)
-  void control_signal_handler(control_main_t * const main) {
+  void control_signal_handler(control_t * const main) {
 
     if (!main) return;
 
index 26914d991d1262ec908cf71d56cc05710114f325..a499a49098d756ffbd2238ff456593aee3a795e3 100644 (file)
@@ -45,7 +45,7 @@ extern "C" {
  * @see fll_program_standard_signal_received()
  */
 #ifndef _di_control_signal_check_
-  extern f_status_t control_signal_check(control_main_t * const main);
+  extern f_status_t control_signal_check(control_t * const main);
 #endif // _di_control_signal_check_
 
 /**
@@ -76,7 +76,7 @@ extern "C" {
  * @see f_signal_wait()
  */
 #if !defined(_di_control_signal_handler_) && !defined(_di_thread_support_)
-  extern void control_signal_handler(control_main_t * const main);
+  extern void control_signal_handler(control_t * const main);
 #endif // !defined(_di_control_signal_handler_) && !defined(_di_thread_support_)
 
 #ifdef __cplusplus
index c9a44e2cdcfb2af8d0e6145470b764e86cdb8aa3..1ce8490404af71d78a0ff3795f08c6456adae3cb 100644 (file)
@@ -10,7 +10,7 @@ extern "C" {
     f_thread_cancel_state_set(PTHREAD_CANCEL_DEFERRED, 0);
 
     if (main) {
-      control_signal_handler((control_main_t *) main);
+      control_signal_handler((control_t *) main);
     }
 
     return 0;
index f59145c2664adeb29acb7f154fcc611aa86b6cdb..d842a8dad90159dd71123e688fa3095350b45d97 100644 (file)
@@ -9,8 +9,8 @@
  *
  * This is auto-included and should not need to be explicitly included.
  */
-#ifndef _control_main_thread_h
-#define _control_main_thread_h
+#ifndef _control_thread_h
+#define _control_thread_h
 
 /**
  * Thread handler for signals/interrupts.
@@ -26,7 +26,7 @@
  * @param main
  *   The program and settings data.
  *
- *   Must be of type control_main_t.
+ *   Must be of type control_t.
  *
  * @return
  *   0, always.
@@ -43,4 +43,4 @@
 } // extern "C"
 #endif
 
-#endif // _control_main_thread_h
+#endif // _control_thread_h