]> Kevux Git Server - fll/commitdiff
Revert: f_array_too_large already existed, its just called f_buffer_too_large
authorKevin Day <thekevinday@gmail.com>
Sat, 9 May 2020 03:42:35 +0000 (22:42 -0500)
committerKevin Day <thekevinday@gmail.com>
Sat, 9 May 2020 03:42:35 +0000 (22:42 -0500)
level_0/f_status/c/status.h
level_1/fl_status/c/status.c
level_1/fl_status/c/status.h
level_2/fll_execute/c/execute.h
level_2/fll_execute/c/private-execute.c
level_2/fll_execute/c/private-execute.h
level_2/fll_status/c/status.c

index bca64accb9e180ed15ae3bf4b5d01d54e45da4ee..e3b57d466c8d91690ce719deec2e9cc82a4bad76 100644 (file)
@@ -328,10 +328,6 @@ extern "C" {
       f_access_denied_write,
     #endif // _di_f_status_access_denied_
 
-    #ifndef _di_f_status_array_
-      f_array_too_large,
-    #endif // _di_f_status_array_
-
     // Required.
     f_status_code_last
   }; // enum
index a45791273b53b846787807887db7cc4c3f980e22..5aef3974cb3b23f359530bf226375d8d4c0877d1 100644 (file)
@@ -722,12 +722,6 @@ extern "C" {
           break;
       #endif // _di_fl_status_access_denied_
 
-      #ifndef _di_fl_status_array_
-        case f_array_too_large:
-          *string = fl_status_string_array_too_large;
-          break;
-      #endif // _di_fl_status_array_
-
       case f_status_code_last:
         *string = fl_status_string_status_code_last;
         break;
index 232ffeb1a7288a1432944939b6a2b61bdd711b31..a99fed84be8cff53a3b1dd473fd76163f1083849 100644 (file)
@@ -717,11 +717,6 @@ extern "C" {
     #define fl_status_string_access_denied_super_length 21
   #endif // _di_fl_status_access_denied_
 
-  #ifndef _di_fl_status_array_
-    #define fl_status_string_array_too_large "f_array_too_large"
-    #define fl_status_string_array_too_large_length 17
-  #endif // _di_fl_status_array_
-
   #define fl_status_string_status_code_last "f_status_code_last"
   #define fl_status_string_status_code_last_length 17
 #endif // _di_fl_status_string_
index cc8dcdebf5d5a74b3afa7f878924d87dca87e30e..67bf232696a1759f88d098e77c1f18054fcaf319 100644 (file)
@@ -50,7 +50,7 @@ extern "C" {
  *   f_invalid_parameter (with error bit) if a parameter is invalid.
  *   f_error_allocation (with error bit) on allocation error.
  *   f_error_reallocation (with error bit) on reallocation error.
- *   f_array_too_large (with error bit) if arguments array is too larger for further allocation.
+ *   f_buffer_too_large (with error bit) if arguments array is too larger for further allocation.
  */
 #ifndef _di_fll_execute_arguments_add_
   extern f_return_status fll_execute_arguments_add(const f_string source, const f_string_length length, f_string_dynamics *arguments);
@@ -88,7 +88,7 @@ extern "C" {
  *   f_invalid_parameter (with error bit) if a parameter is invalid.
  *   f_error_allocation (with error bit) on allocation error.
  *   f_error_reallocation (with error bit) on reallocation error.
- *   f_array_too_large (with error bit) if arguments array is too larger for further allocation.
+ *   f_buffer_too_large (with error bit) if arguments array is too larger for further allocation.
  */
 #ifndef _di_fll_execute_arguments_add_parameter_
   extern f_return_status fll_execute_arguments_add_parameter(const f_string prefix, const f_string_length prefix_length, const f_string name, const f_string_length name_length, const f_string value, const f_string_length value_length, f_string_dynamics *arguments);
@@ -129,7 +129,7 @@ extern "C" {
  *   f_invalid_parameter (with error bit) if a parameter is invalid.
  *   f_error_allocation (with error bit) on allocation error.
  *   f_error_reallocation (with error bit) on reallocation error.
- *   f_array_too_large (with error bit) if arguments array is too larger for further allocation.
+ *   f_buffer_too_large (with error bit) if arguments array is too larger for further allocation.
  */
 #ifndef _di_fll_execute_arguments_add_parameter_set_
   extern f_return_status fll_execute_arguments_add_parameter_set(const f_string prefix[], const f_string_length prefix_length[], const f_string name[], const f_string_length name_length[], const f_string value[], const f_string_length value_length[], const f_array_length size, f_string_dynamics *arguments);
@@ -156,7 +156,7 @@ extern "C" {
  *   f_invalid_parameter (with error bit) if a parameter is invalid.
  *   f_error_allocation (with error bit) on allocation error.
  *   f_error_reallocation (with error bit) on reallocation error.
- *   f_array_too_large (with error bit) if arguments array is too larger for further allocation.
+ *   f_buffer_too_large (with error bit) if arguments array is too larger for further allocation.
  */
 #ifndef _di_fll_execute_arguments_add_set_
   extern f_return_status fll_execute_arguments_add_set(const f_string source[], const f_string_length length[], const f_array_length size, f_string_dynamics *arguments);
@@ -179,7 +179,7 @@ extern "C" {
  *   f_invalid_parameter (with error bit) if a parameter is invalid.
  *   f_error_allocation (with error bit) on allocation error.
  *   f_error_reallocation (with error bit) on reallocation error.
- *   f_array_too_large (with error bit) if arguments array is too larger for further allocation.
+ *   f_buffer_too_large (with error bit) if arguments array is too larger for further allocation.
  */
 #ifndef _di_fll_execute_arguments_dynamic_add_
   extern f_return_status fll_execute_arguments_dynamic_add(const f_string_dynamic source, f_string_dynamics *arguments);
@@ -212,7 +212,7 @@ extern "C" {
  *   f_invalid_parameter (with error bit) if a parameter is invalid.
  *   f_error_allocation (with error bit) on allocation error.
  *   f_error_reallocation (with error bit) on reallocation error.
- *   f_array_too_large (with error bit) if arguments array is too larger for further allocation.
+ *   f_buffer_too_large (with error bit) if arguments array is too larger for further allocation.
  */
 #ifndef _di_fll_execute_arguments_dynamic_add_parameter_
   extern f_return_status fll_execute_arguments_dynamic_add_parameter(const f_string_dynamic prefix, const f_string_dynamic name, const f_string_dynamic value, f_string_dynamics *arguments);
@@ -247,7 +247,7 @@ extern "C" {
  *   f_invalid_parameter (with error bit) if a parameter is invalid.
  *   f_error_allocation (with error bit) on allocation error.
  *   f_error_reallocation (with error bit) on reallocation error.
- *   f_array_too_large (with error bit) if arguments array is too larger for further allocation.
+ *   f_buffer_too_large (with error bit) if arguments array is too larger for further allocation.
  */
 #ifndef _di_fll_execute_arguments_dynamic_add_parameter_set_
   extern f_return_status fll_execute_arguments_dynamic_add_parameter_set(const f_string_dynamic prefix[], const f_string_dynamic name[], const f_string_dynamic value[], const f_array_length size, f_string_dynamics *arguments);
@@ -272,7 +272,7 @@ extern "C" {
  *   f_invalid_parameter (with error bit) if a parameter is invalid.
  *   f_error_allocation (with error bit) on allocation error.
  *   f_error_reallocation (with error bit) on reallocation error.
- *   f_array_too_large (with error bit) if arguments array is too larger for further allocation.
+ *   f_buffer_too_large (with error bit) if arguments array is too larger for further allocation.
  */
 #ifndef _di_fll_execute_arguments_dynamic_add_set_
   extern f_return_status fll_execute_arguments_dynamic_add_set(const f_string_dynamic source[], const f_array_length size, f_string_dynamics *arguments);
index e1314caa6b6be32cd95bd03ac455bde9b49008a6..6f87b7f324791a4fdeda66a690e0e52a5198fe2d 100644 (file)
@@ -11,7 +11,7 @@ extern "C" {
 
     if (arguments->used >= arguments->size) {
       if (arguments->size + f_memory_default_allocation_step > f_array_length_size) {
-        if (arguments->size + 1 > f_array_length_size) return f_array_too_large;
+        if (arguments->size + 1 > f_array_length_size) return f_buffer_too_large;
         f_macro_string_dynamics_resize(status, (*arguments), arguments->size + 1);
       }
       else {
@@ -50,7 +50,7 @@ extern "C" {
 
     if (arguments->used + 1 >= arguments->size) {
       if (arguments->size + f_memory_default_allocation_step > f_array_length_size) {
-        if (arguments->size + 2 > f_array_length_size) return f_array_too_large;
+        if (arguments->size + 2 > f_array_length_size) return f_buffer_too_large;
         f_macro_string_dynamics_resize(status, (*arguments), arguments->size + 2);
       }
       else {
index 0c0af7ba3f84e4c8e197f23f6c0a9ecf77fc405b..1d959a331683a8ef164329905ae88ac52d8f43be 100644 (file)
@@ -49,7 +49,7 @@ extern "C" {
  *   f_invalid_parameter (with error bit) if a parameter is invalid.
  *   f_error_allocation (with error bit) on allocation error.
  *   f_error_reallocation (with error bit) on reallocation error.
- *   f_array_too_large (with error bit) if arguments array is too larger for further allocation.
+ *   f_buffer_too_large (with error bit) if arguments array is too larger for further allocation.
  *
  * @see fll_execute_arguments_add()
  * @see fll_execute_arguments_add_set()
@@ -86,7 +86,7 @@ extern "C" {
  *   f_invalid_parameter (with error bit) if a parameter is invalid.
  *   f_error_allocation (with error bit) on allocation error.
  *   f_error_reallocation (with error bit) on reallocation error.
- *   f_array_too_large (with error bit) if arguments array is too larger for further allocation.
+ *   f_buffer_too_large (with error bit) if arguments array is too larger for further allocation.
  *
  * @see fll_execute_arguments_add_parameter()
  * @see fll_execute_arguments_add_parameter_set()
index c18c28e171b6546897e5a3c791bddc880d02c22c..2a7b8e978c422b86c94043581f803d8cbe1399da 100644 (file)
@@ -1166,13 +1166,6 @@ extern "C" {
       }
     #endif // _di_fll_status_access_denied_
 
-    #ifndef _di_fll_status_array_
-      if (fl_string_compare(string, fl_status_string_array_too_large, length, fl_status_string_array_too_large_length) == f_equal_to) {
-        *code = f_array_too_large;
-        return f_none;
-      }
-    #endif // _di_fll_status_array_
-
     if (fl_string_compare(string, fl_status_string_status_code_last, length, fl_status_string_status_code_last_length) == f_equal_to) {
       *code = f_status_code_last;
       return f_none;