]> Kevux Git Server - fll/log
fll
3 weeks agoCleanup: Remove redundant resetting of directory used length.
Kevin Day [Sun, 9 Mar 2025 22:02:40 +0000 (17:02 -0500)]
Cleanup: Remove redundant resetting of directory used length.

3 weeks agoSecurity: Incorrect variable printed in private_fl_directory_do_recurse().
Kevin Day [Sun, 9 Mar 2025 20:57:58 +0000 (15:57 -0500)]
Security: Incorrect variable printed in private_fl_directory_do_recurse().

This bug is considered a security issue because it is printing potentially unused memory addresses.

3 weeks agoFeature: Add F_test status codes.
Kevin Day [Sat, 8 Mar 2025 05:30:20 +0000 (23:30 -0600)]
Feature: Add F_test status codes.

These codes are notably useful during the unit and runtime testing.

3 weeks agoCleanup: Remove unused variables created via a copy and paste mistake.
Kevin Day [Sat, 8 Mar 2025 05:14:43 +0000 (23:14 -0600)]
Cleanup: Remove unused variables created via a copy and paste mistake.

3 weeks agoCleanup: Make the object parameter array a constant pointer.
Kevin Day [Sat, 8 Mar 2025 03:41:02 +0000 (21:41 -0600)]
Cleanup: Make the object parameter array a constant pointer.

3 weeks agoCleanup: Fix incorrect statement in documentation.
Kevin Day [Sat, 8 Mar 2025 03:35:06 +0000 (21:35 -0600)]
Cleanup: Fix incorrect statement in documentation.

The statement of "This is different from code:"build_sources_object"" for the build_sources_object documentation makes no sense.
Remove that part of the statement.
There are no functional changes to the specification, so the version date is unchanged.

4 weeks agoBugfix: Incorrect counter resets and related clean ups.
Kevin Day [Fri, 7 Mar 2025 06:23:06 +0000 (00:23 -0600)]
Bugfix: Incorrect counter resets and related clean ups.

I overlooked some cases where the counter is not reset at the start of the loop.

Do some variable clean ups for code following similar logic.

4 weeks agoBugfix: Static build is not working, 'rcs' is not being appended.
Kevin Day [Fri, 7 Mar 2025 06:20:48 +0000 (00:20 -0600)]
Bugfix: Static build is not working, 'rcs' is not being appended.

I overlooked a case where the counter is not reset at the start of the loop.

I did some additional reviews of similar cases in the code and applied similar fixes.

4 weeks agoCleanup: Remove ':' from documentation line with "license".
Kevin Day [Fri, 7 Mar 2025 06:05:24 +0000 (00:05 -0600)]
Cleanup: Remove ':' from documentation line with "license".

The documentation comments should be written in a way that would be complaint with the FSS Basic or FSS Extended if they were not commented out.

4 weeks agoFeature: Add more fine tuned build_name options.
Kevin Day [Fri, 7 Mar 2025 06:05:05 +0000 (00:05 -0600)]
Feature: Add more fine tuned build_name options.

The build names should support shared, static, program, object, and library.
Some of these may not be directly used.
They should still be loaded.
This is done to make the project compliant with the standard while allowing extendability/hackability.

4 weeks agoUpdate: Bootstrap script needs iki_read and iki_write for fake_programs.
Kevin Day [Thu, 6 Mar 2025 02:26:50 +0000 (20:26 -0600)]
Update: Bootstrap script needs iki_read and iki_write for fake_programs.

4 weeks agoBugfix: The sources and under parameters can have invalid slashes.
Kevin Day [Thu, 6 Mar 2025 02:05:03 +0000 (20:05 -0600)]
Bugfix: The sources and under parameters can have invalid slashes.

The directory path cleanup function is not being called for these due to an incorrect boolean value.

Rename `cleanups` to `directory` to make this more clear that this is about being a directory more so than it is about cleanups.

Fix out of date parameter type documentation comment.

Remove old todo comment.

4 weeks agoUpdate: Add help message for fakefiles and testfiles.
Kevin Day [Tue, 4 Mar 2025 05:12:59 +0000 (23:12 -0600)]
Update: Add help message for fakefiles and testfiles.

Add a fakefile option for printing help.
I used a generic and easy to copy and paste message.

6 weeks agoUpdate: Implement the static string array for the fll_error program.
Kevin Day [Fri, 21 Feb 2025 03:03:57 +0000 (21:03 -0600)]
Update: Implement the static string array for the fll_error program.

This provides some centralization to the static strings to a single global array.
This uses an enumeration similar to the way the function strings in the programs are handled.
This enumeration does come with a cost.
However, adding all the strings together in a single location should have some technical benefits.

6 weeks agoUpdate: Add programs to bootstrap script.
Kevin Day [Fri, 21 Feb 2025 03:02:46 +0000 (21:02 -0600)]
Update: Add programs to bootstrap script.

Add several programs to the bootstrap program for the stand alone build.

Fix a comment.

6 weeks agoCleanup: Reduce duplicate code in the fll_error print functions.
Kevin Day [Thu, 20 Feb 2025 05:12:08 +0000 (23:12 -0600)]
Cleanup: Reduce duplicate code in the fll_error print functions.

Populate the `type_name` via a nested ternary instead of an if else if blocks.
The if else if blocks are cleaner but I want to have the `type_name` be a constant variable.
This should help the compiler optimize the variable.

Replace a lot of the repeated styles with new private functions.
This reduces quite a bit of repeated lines of code based on common patterns.

I do intend to follow this up at a later date with a commit that moves all of the static strings into a global array.

6 weeks agoCleanup: Use the f_string_static_t macros for the f_string_dynamic_t macros.
Kevin Day [Thu, 20 Feb 2025 03:59:53 +0000 (21:59 -0600)]
Cleanup: Use the f_string_static_t macros for the f_string_dynamic_t macros.

The `macro_f_string_dynamic_t_initialize_1` and `macro_f_string_dynamic_t_initialize_2` should be using the word `string` rather than `array` for the first argument.
call the `f_string_static_t` macros for the respective `f_string_dynamic_t` macros.

6 weeks agoFeature: Add F_add and F_remove status codes.
Kevin Day [Wed, 19 Feb 2025 02:38:08 +0000 (20:38 -0600)]
Feature: Add F_add and F_remove status codes.

6 weeks agoUpdate: IKI Write from main/data.callback to main/data.call.
Kevin Day [Wed, 19 Feb 2025 00:52:11 +0000 (18:52 -0600)]
Update: IKI Write from main/data.callback to main/data.call.

Rename `callback` to `call` to e consistent with recent naming changes.

6 weeks agoUpdate: IKI Read documentation comments should use main.call.
Kevin Day [Wed, 19 Feb 2025 00:49:34 +0000 (18:49 -0600)]
Update: IKI Read documentation comments should use main.call.

The `main.callback` was recently replaced with `main.call`.
These documentation comments were overlooked or otherwise missed.

7 weeks agoUpdate: Help printing functions and callbacks.
Kevin Day [Fri, 14 Feb 2025 04:17:50 +0000 (22:17 -0600)]
Update: Help printing functions and callbacks.

Have most of the help printing functions that might be used as `fl_print_call_t` be consistent with that prototype structure.

Fix some issues where `data.callback` is still used and should now instead be `data.call`.

7 weeks agoUpdate: Use f_console_parameters_t as a pointer and document fll_program_parameter_pr...
Kevin Day [Fri, 14 Feb 2025 04:01:26 +0000 (22:01 -0600)]
Update: Use f_console_parameters_t as a pointer and document fll_program_parameter_process_context_standard().

Make the use of `f_console_parameters_t` as a pointer for consistency purposes.

Some programs did this whereas other programs repeatedly called `main->program.parameters`.
This should no longer be the case.

The documentation comments should be referencing `fll_program_parameter_process_context_standard()` and now do.

7 weeks agoUpdate: Switch from memcpy() to memmove() just in case.
Kevin Day [Fri, 14 Feb 2025 02:46:11 +0000 (20:46 -0600)]
Update: Switch from memcpy() to memmove() just in case.

This is a library and cannot guarantee that the sources do not overlap.
Change to `memmove()` to play it safe.

7 weeks agoUpdate: Use *_settings_load_call_t for callbacks.
Kevin Day [Fri, 14 Feb 2025 02:29:43 +0000 (20:29 -0600)]
Update: Use *_settings_load_call_t for callbacks.

Switch these callbacks to use the typedef design.

7 weeks agoFeature: Allow for the group and user functions to not require a write value.
Kevin Day [Wed, 12 Feb 2025 01:56:07 +0000 (19:56 -0600)]
Feature: Allow for the group and user functions to not require a write value.

Several of these functions can be used to just check the validity of an ID or name.
Use the NULL pointer case to support this rather than writing a completely new functions for this logic.

For example, the `f_account_group_id_by_name()` function can have NULL for the `id` parameter.
In this case, nothing is written for the `id` and the function does not error out on invalid parameter (for when `id` is NULL).
The same logic is applied for the `f_account_group_name_by_id()` for the `name` parameter.

The same logic is applied for both user functions.

The account by functions are not updated as this is not needed.
Update the documentation for the account by functions, documenting that NULL is not allowed.

7 weeks agoUpdate: Use a constant for the argv in fss_write.
Kevin Day [Sun, 9 Feb 2025 06:27:54 +0000 (00:27 -0600)]
Update: Use a constant for the argv in fss_write.

7 weeks agoUpdate: Callback changes and improvements.
Kevin Day [Sun, 9 Feb 2025 06:20:23 +0000 (00:20 -0600)]
Update: Callback changes and improvements.

The `void *(*)(void *)` function structure is being used so add that as a function callback type `f_void_pointer_call_t`.

Add `fl_print_call_t` function callback type.

Rename the console parameter callback from `callback` to `on_match`.
Add `f_console_parameters_call_t` function callback type.
Fix documentation comment where `length` should instead be `used`.

The `void_main` are now replaced with literal `main` type now that the typedef structure improvements are in place.

Shorten the `callback` name to `call`.
Use more typedefs for functions.
This better takes advantage of how functions are a "first class citizen" in C.

7 weeks agoBugfix: Individual build problems with incorrect settings and dependencies.
Kevin Day [Sun, 9 Feb 2025 05:08:51 +0000 (23:08 -0600)]
Bugfix: Individual build problems with incorrect settings and dependencies.

The `f_abstruse` is not being included in some cases.

The `individual_thread` is not being used in some cases and instead `individual-thread` is being used.
Make sure `individual_thread` is the only form used.

Remove `f_parse` inclusion where it is not needed.

Add missing `-lf_compare`.

7 weeks agoBugfix: Incorrect ifndef for f_capability_user_set().
Kevin Day [Sat, 8 Feb 2025 23:55:52 +0000 (17:55 -0600)]
Bugfix: Incorrect ifndef for f_capability_user_set().

7 weeks agoCleanup: Fix spelling of comment.
Kevin Day [Sat, 8 Feb 2025 23:55:08 +0000 (17:55 -0600)]
Cleanup: Fix spelling of comment.

Full sentences should have the first letter upper case.

7 weeks agoBugfix: Incorrect clear macro on f_account_t().
Kevin Day [Sat, 8 Feb 2025 23:54:40 +0000 (17:54 -0600)]
Bugfix: Incorrect clear macro on f_account_t().

The `macro_f_account_t_clear()` is calling its own macro for the dynamic string values.
This is entirely incorrect.

Use the proper `macro_f_string_dynamic_t_clear()` macro calls.

7 weeks agoUpdate: Add f_id_t, f_uid_t, and f_gid_t type helpers for uid_t and gid_t.
Kevin Day [Sat, 8 Feb 2025 22:12:11 +0000 (16:12 -0600)]
Update: Add f_id_t, f_uid_t, and f_gid_t type helpers for uid_t and gid_t.

The `uid_t` and `gid_t` don't readily map to each other.

I would love to simplify the code and have a single function call in several cases when using both `uid_t` and `gid_t`.

This provides interchangeable types `f_id_t`, `f_uid_t`, and `f_gid_t`.
The standard behavior is that `f_uid_t` and `f_gid_t` are both sub-types of `f_id_t`.
The `f_id_t` is by default an unsigned 32-bit integer.

7 weeks agoFeature: Add f_void_call_t as a standard function callback.
Kevin Day [Sat, 8 Feb 2025 22:09:32 +0000 (16:09 -0600)]
Feature: Add f_void_call_t as a standard function callback.

This is likely to be very common.
Set this up to make the code cleaner when using this callback.

There are no plans to implement any other types of callbacks as a standard.

2 months agoUpdate: Improve directory recursion and its documentation.
Kevin Day [Fri, 31 Jan 2025 03:45:53 +0000 (21:45 -0600)]
Update: Improve directory recursion and its documentation.

Fix some problems in the `fl_directory_do()` documentation.
Extend the documentation adding more details of the process.

Remove redundant "is not error" status checks.

The checks like `if (flag_actions[j])` and `if (!flag_actions[j])` are now changed to respect the recently added `f_directory_recurse_do_flag_action_e` flag.

2 months agoUpdate: Switch to typedef struct approach for safer callbacks inside structure f_dire...
Kevin Day [Thu, 30 Jan 2025 05:45:55 +0000 (23:45 -0600)]
Update: Switch to typedef struct approach for safer callbacks inside structure f_directory_recurse_do_t.

Update all of the files and callbacks.

2 months agoCleanup: Add new line after typedef.
Kevin Day [Thu, 30 Jan 2025 05:45:09 +0000 (23:45 -0600)]
Cleanup: Add new line after typedef.

2 months agoUpdate: Add specific action flag for directory do recursion and fix integer type.
Kevin Day [Thu, 30 Jan 2025 05:12:23 +0000 (23:12 -0600)]
Update: Add specific action flag for directory do recursion and fix integer type.

Add a specific action flag to make it easier to explicitly test if this is the action pass of say `fl_directory_do()`.

Use  `uint16_t` to directly map to the flag integer type.

2 months agoUpdate: Improve signal handling code.
Kevin Day [Tue, 28 Jan 2025 04:31:23 +0000 (22:31 -0600)]
Update: Improve signal handling code.

Add a new line before printing the standard "Received signal code" message to ensure that it is always reasonably separated from the output being interrupted.

Simplify the verbosity variable check to a less than because the verbosity list is an enumeration.

Move the `fll_program_print_signal_received()` calls to the main program to help ensure consistent printing at the end of the program.
- Note: I am not certain if I want this instead in the main() function or not and I opted not to do so for now.

Fix some cases where the manual signal checks are still being performed to use the function instead.

2 months agoUpdate: Document that the NULL characters are removed by fl_path_clean().
Kevin Day [Tue, 28 Jan 2025 02:37:09 +0000 (20:37 -0600)]
Update: Document that the NULL characters are removed by fl_path_clean().

2 months agoUpdate: The threaded signal handler to avoid signal id races.
Kevin Day [Fri, 24 Jan 2025 02:57:11 +0000 (20:57 -0600)]
Update: The threaded signal handler to avoid signal id races.

Apply the same anti-race improvements implemented on the non-threaded signal checker to the threaded signal checker.

Still check for a negative id to prevent the signal message from being printed more than once.

2 months agoFeature: Implement fll_program_standard_signal_received_wait().
Kevin Day [Thu, 23 Jan 2025 06:53:25 +0000 (00:53 -0600)]
Feature: Implement fll_program_standard_signal_received_wait().

The `fll_program_standard_signal_received_wait()` is now added because a lot of this code is repeated forr every single FLL program.

The `fll_program_standard_signal_received()` is refactored to return a status code to match the newly added `ll_program_standard_signal_received_wait()`.

The `status_signal` can now be moved into the main program settings structure.
The `status_signal` is renamed to `signal_status` to keep the naming more consistent.

This also exposes and fixes a race condition in how the pre-existing threaded signal handling is being used.
The check for `program.signal.id` that then opens a signal via `f_signal_open()` in the thread is not necessary because the signal id from the parent thread is preserved.
The `f_signal_close()` in the thread ends up prematurely closing the signal because the parent thread signal id is passed to the child thread.
The `main->program.signal.id == -1` checks in the signal check functions end up preventing the interrupt cancel from being triggered because of the `f_signal_close()` being called in a separate thread that shares the same signal id.

2 months agoFeature: Add F_maximum and F_minimum status codes.
Kevin Day [Thu, 23 Jan 2025 05:36:01 +0000 (23:36 -0600)]
Feature: Add F_maximum and F_minimum status codes.

2 months agoBugfix: f_signal_close() should be setting signal id to -1 and not 0.
Kevin Day [Thu, 23 Jan 2025 04:46:54 +0000 (22:46 -0600)]
Bugfix: f_signal_close() should be setting signal id to -1 and not 0.

The signal id is a file descriptor and a non-valid file descriptor is -1 instead of 0.

2 months agoFeature: Add fl_path_clean() for stripping out NULLs and redundant slashes.
Kevin Day [Wed, 22 Jan 2025 04:09:22 +0000 (22:09 -0600)]
Feature: Add fl_path_clean() for stripping out NULLs and redundant slashes.

2 months agoUpdate: The fl_path_canonical() should handle the NULL cases.
Kevin Day [Wed, 22 Jan 2025 02:48:30 +0000 (20:48 -0600)]
Update: The fl_path_canonical() should handle the NULL cases.

Allow for NULL within the strings.
Update the processing code and add some unit tests.

The documentation comment about canonical->used being reset to 0 before processing is incorrect and is now removed.

2 months agoUpdate: Use the pre-defined typedef structure style for the main program type.
Kevin Day [Mon, 20 Jan 2025 23:59:19 +0000 (17:59 -0600)]
Update: Use the pre-defined typedef structure style for the main program type.

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.

2 months agoCleanup: Fix function alphabetic ordering in unit tests.
Kevin Day [Mon, 20 Jan 2025 03:54:42 +0000 (21:54 -0600)]
Cleanup: Fix function alphabetic ordering in unit tests.

Several of the test files have the parameter_checking function out of order.
I also happened to notice that the work test in some cases are also out of order.

This out of order is likely a problem caused by early day mass test generation.

2 months agoUpdate: use directory back and current strings.
Kevin Day [Mon, 20 Jan 2025 03:24:00 +0000 (21:24 -0600)]
Update: use directory back and current strings.

These should be used rather than the inline strings.

2 months agoFeature: Add several reverse string search functions.
Kevin Day [Mon, 20 Jan 2025 03:01:31 +0000 (21:01 -0600)]
Feature: Add several reverse string search functions.

These "_back" functions work based on the stop position of the range.

2 months agoUpdate: Add missing constant qualifiers and update function comments.
Kevin Day [Sun, 19 Jan 2025 23:03:36 +0000 (17:03 -0600)]
Update: Add missing constant qualifiers and update function comments.

Some functions are missing the standard constant qualifier on the pointer parameters.

Improve grammar in some of the documentation comments.

2 months agoFeature: Add new function fl_directory_empty().
Kevin Day [Fri, 17 Jan 2025 05:04:47 +0000 (23:04 -0600)]
Feature: Add new function fl_directory_empty().

Simplify the process of determining if the directory is empty.
The entire list of directories do not need to be processed in this case.
Only check if the first child in the directory exists.

2 months agoCleanup: Typo in documentation comments and add missing status codes to fl_directory_...
Kevin Day [Fri, 17 Jan 2025 05:03:52 +0000 (23:03 -0600)]
Cleanup: Typo in documentation comments and add missing status codes to fl_directory_list().

2 months agoBugfix: Add missing disable define for private_fll_execute_path_arguments_fixate().
Kevin Day [Fri, 17 Jan 2025 05:03:15 +0000 (23:03 -0600)]
Bugfix: Add missing disable define for private_fll_execute_path_arguments_fixate().

2 months agoCleanup: private_fl_payload_header_map_multis() needs _di_fl_fss_payload_header_map_...
Kevin Day [Mon, 13 Jan 2025 03:32:42 +0000 (21:32 -0600)]
Cleanup: private_fl_payload_header_map_multis() needs _di_fl_fss_payload_header_map_ instead of _di_fl_fss_payload_header_maps_.

2 months agoCleanup: Remove extra "_map" from private function name.
Kevin Day [Mon, 13 Jan 2025 03:28:39 +0000 (21:28 -0600)]
Cleanup: Remove extra "_map" from private function name.

2 months agoBugfix: The IKI and EKI specifications do not require escaping inside of Content.
Kevin Day [Sat, 11 Jan 2025 16:38:02 +0000 (10:38 -0600)]
Bugfix: The IKI and EKI specifications do not require escaping inside of Content.

This is an oops on my part.
I thought I was correcting something that I missed and I ended up causing a problem.
I think this problem was introduced in this commit: e9621b09db34cfd9ac6264c77068c34afa5bfb17.

2 months agoBugfix: Specification files need proper escaping for example code.
Kevin Day [Fri, 10 Jan 2025 05:30:01 +0000 (23:30 -0600)]
Bugfix: Specification files need proper escaping for example code.

The IKI/EKI need to be properly escaped inside the example so that when the specification file itself is processed, the examples do not get substituted.

The examples that have what would be valid FSS Basic Lists also need to be escaped for the same reason.

2 months agoCleanup: Comments in examples in specifications must be escaped.
Kevin Day [Fri, 10 Jan 2025 01:28:23 +0000 (19:28 -0600)]
Cleanup: Comments in examples in specifications must be escaped.

These comments are intended to be printed so that they can be shown as an example.
Escape them.

2 months agoUpdate: Next micro version (0.7.1).
Kevin Day [Thu, 9 Jan 2025 04:40:37 +0000 (22:40 -0600)]
Update: Next micro version (0.7.1).

The following are the commands that I ran to make this change:
  # find build/ level_? specifications/ documents/ licenses/ -type f -exec sed -i -e 's|0\.7\.0|0.7.1|g' '{}' ';'
  # find build/ level_? specifications/ documents/ licenses/ -type f -exec sed -i -e 's|^version_micro 0|version_micro 1|g' '{}' ';'
  # find level_3/ -name *.h -exec sed -i -e 's|_program_version_micro_s F_string_ascii_0_s|_program_version_micro_s F_string_ascii_1_s|g' '{}' ';'
  # find level_3/ -name *.h -exec sed -i -e 's|_program_version_micro_s_length F_string_ascii_0_s_length|_program_version_micro_s_length F_string_ascii_1_s_length|g' '{}' ';'

2 months agoBugfix: Runtime tests are missing the main programs. 0.7.0
Kevin Day [Thu, 9 Jan 2025 01:05:41 +0000 (19:05 -0600)]
Bugfix: Runtime tests are missing the main programs.

Add the appropriate programs to the `testfile`.
I probably overlooked this because the programs likely already exist in my PATH.

2 months agoUpdate: The eki_read runtime tests.
Kevin Day [Tue, 7 Jan 2025 02:34:12 +0000 (20:34 -0600)]
Update: The eki_read runtime tests.

I review a number of the tests but not all of them.
They look correct as far as I can tell.

2 months agoUpdate: Finish fixing iki_read for runtime tests.
Kevin Day [Tue, 7 Jan 2025 01:38:49 +0000 (19:38 -0600)]
Update: Finish fixing iki_read for runtime tests.

The iki_read must still print the unmatched variables.

The `iki_read_process_line()` is indeed still valid to have.

The total should still be printed even when there is no data or the start range is out of range.
This ensures that a 0 is printed in these situations.

There may or may not be eki_read fixes needed but runtime tests do not exist for that yet.
A follow up commit shall address this.

2 months agoUpdate: Clarify precedence of the --select for IKI Read.
Kevin Day [Sun, 5 Jan 2025 20:32:53 +0000 (14:32 -0600)]
Update: Clarify precedence of the --select for IKI Read.

The `--select` parameter is processed after the `--line` parameter.

2 months agoUpdate: Clarify precedence of the --name, --at, and --line for IKI Read.
Kevin Day [Sun, 5 Jan 2025 16:34:20 +0000 (10:34 -0600)]
Update: Clarify precedence of the --name, --at, and --line for IKI Read.

Add description of the order of operations, or precedence, for the `--name`, `--at`, and the `--line` parameters.

3 months agoProgress: Continue fixing iki_read (and eki_read) for runtime tests.
Kevin Day [Thu, 2 Jan 2025 04:28:35 +0000 (22:28 -0600)]
Progress: Continue fixing iki_read (and eki_read) for runtime tests.

Minor changes that I started working on before vacation.
I forgot to write the notes and make a commit.

I appear to have changed some of the name parameter handling.
There is a clear bug where I mistakingly used the wrong array for a range check in a loop.

Use the state status rather than a custom status for managing the status.

Some of the print parameters are using the output.to directly rather than the print variable passed to the function.

Correct some of the function documentation.

there are still 165 test failures that I need to review.

3 months agoProgress: Continue fixing iki_read (and eki_read) for runtime tests.
Kevin Day [Wed, 18 Dec 2024 01:43:14 +0000 (19:43 -0600)]
Progress: Continue fixing iki_read (and eki_read) for runtime tests.

Some of the non-whole (as in the `--whole` parameter) runtime tests are actually invalid.
Update them with the correct results.
I manually reviewed most of these and found that the update is more correct.

I will back port these tests and fix the 0.6.x branch accordingly.

3 months agoProgress: Continue fixing iki_read (and eki_read).
Kevin Day [Tue, 17 Dec 2024 03:37:55 +0000 (21:37 -0600)]
Progress: Continue fixing iki_read (and eki_read).

This addresses some of the `--total` processing.
It looks like I had not completed a lot of that code.
Much of that is added back.

I also noticed that I need to keep tabs on the `--select` parameter.
I will need tests for this and I may have missed some logic cases.
My first objective is to just get the 0.6.x runtime tests to work in 0.7.x.
(Or, I need to fix the 0.6.x tests to be correct.)

The expected next steps:
- Review and address what is left for IKI Read that is incorrect.
- For anything identified in the 0.6.x runtime tests that is invalid shall be fixed in 0.6.x.
- Update the EKI Read with all of the changes from IKI Read.
- Make a copy of the IKI Read runtime tests and see how EKI Read passes or fails.
- Address unexpected failures.
- Fix the tests for expected failures, which would be relating to having multiple Vocabularies/Objects.
- Write all of the new runtime tests for EKI Read.
- Make sure everything all passes.
- I probably need to update the help and describe the order of operations for some parameters.

3 months agoProgress: Continue fixing iki_read (and eki_read).
Kevin Day [Mon, 16 Dec 2024 04:00:04 +0000 (22:00 -0600)]
Progress: Continue fixing iki_read (and eki_read).

I am using the 0.6.x iki_read runtime tests files to help identify problems.
This will also help identify problems with the 0.6.x iki_read.
(Of which I believe that there are some.)

This has a huge focus on addressing the `--line` and `--total`.
There are still known problems to solve, such as:
```
iki_read tests/runtime/iki/source/test-0000-basic.iki -L -a 1 -n hello
iki_read tests/runtime/iki/source/test-0000-basic.iki -L -a 1 -n hello -t
```

The EKI code is being partially updated while I am working on the IKI code.
However, big parts of it that are outdated are being left alone until I have IKI working correctly.
I will then update EKI accordingly and write the appropriate runtime tests.

3 months agoProgress: Continue fixing iki_read (and eki_read).
Kevin Day [Thu, 12 Dec 2024 04:35:34 +0000 (22:35 -0600)]
Progress: Continue fixing iki_read (and eki_read).

There is overlap between how `--at` and `--line` work when not using `--whole`.
Do not treat using both as an error.
Instead, just have `--at` be the higher priority and then perform `--line`.
This results in a `--line` that can only potentially print something if it has a value of 0.

This is only the case for `--object`.
Both the `--content` and the `--literal` may potentially have multiple lines.

I removed the existing `--line` logic.
I will rewrite the logic for determining the number of lines when printing the `--literal` or the `--content`.
There will also need to be another file that haas multiple iki lines.

I was adding the line break behavior to break out of the loop when the line matches.
Much of that, but not all of that, has been removed until I come back to write the new logic.

The runtime tests are not yet updated.

3 months agoProgress: Continue fixing iki_read (and eki_read).
Kevin Day [Wed, 11 Dec 2024 05:49:48 +0000 (23:49 -0600)]
Progress: Continue fixing iki_read (and eki_read).

This brings in the recently added 0.6.x runtime tests as-is.

Address some of the failures, such as the `--total` parameter.

I expected failures due to the incomplete state of the 0.7.x iki_read code (as a result of recent changes).

I will then need to add the eki_read runtime tests and add the `-s`/`--select` runtime tests once the existing problems are resolved.

3 months agoCleanup: Improve spacing style for fss_read generate.sh test script.
Kevin Day [Tue, 10 Dec 2024 04:40:12 +0000 (22:40 -0600)]
Cleanup: Improve spacing style for fss_read generate.sh test script.

Add spacing to allow for lining up the lines to make it much easier to scan through with human eyes.

3 months agoUpdate: IKI Read help message regarding --line parameter.
Kevin Day [Tue, 10 Dec 2024 04:39:33 +0000 (22:39 -0600)]
Update: IKI Read help message regarding --line parameter.

Make the `--line` parameter help message consistent with recent changes from the 0.6.x stable branch.

3 months agoUpdate: Improve error reporting in runtime tests during generation.
Kevin Day [Mon, 9 Dec 2024 02:29:09 +0000 (20:29 -0600)]
Update: Improve error reporting in runtime tests during generation.

The generation now prints the specific command that failed.

3 months agoProgress: Begin fixing iki_read (and eki_read).
Kevin Day [Sun, 8 Dec 2024 19:52:41 +0000 (13:52 -0600)]
Progress: Begin fixing iki_read (and eki_read).

I noticed a lot of issues and fixed the problems on the 0.6 branch first.
This caused me to jump around back and forth a lot for the 0.7 branch.

This disoriented me.
I decided that I am going to commit this current state as a progress commit.
I will write the runtime tests for the 0.6 branch.
Then I will port those over to this.
Then I will use the runtime tests to help identify where I last was and what I need to change or finish changing.

The `--select` settings also need to be updated with regards to this.

3 months agoFeature: Add support for eki_read program by extending iki_read, also adding --select...
Kevin Day [Sun, 8 Dec 2024 00:56:30 +0000 (18:56 -0600)]
Feature: Add support for eki_read program by extending iki_read, also adding --select and changing --substitute.

The eki_read is a variation of iki_read that instead supports the Extended IKI standard, known as EKI.

The iki_read and eki_read share common code.

This introduces a new parameter called `--select` or `-s`.
This allows for selecting the Vocabulary name (Object) at a given index.
I specifically chose `-s` to make the behavior more closely in line with the `-s` and `--select` from the fss_read programs.
The only difference being that the fss_read programs operate on the Content rather than the Object.

This decision forces the `--substitute` to now use `-S` instead of `-s`.
This is a breaking change that I will not back port.
The use of `--substitute` will still work with the 0.7 and 0.6 releases.

This completes the following progress commits:
21ae35744a1cfc7703fe3ac13b25ff7a71fa2d59
dbc2fc03c4edd96611e07317a2c876f412017d2c
21ae35744a1cfc7703fe3ac13b25ff7a71fa2d59

3 months agoProgress: Continue eki_read program by extending iki_read.
Kevin Day [Sat, 7 Dec 2024 02:35:37 +0000 (20:35 -0600)]
Progress: Continue eki_read program by extending iki_read.

IKI/EKI Vocabularies (Objects) may not have spaces.
This means that I can safely print the list of Objects with a space between.
All Objects on a single line in `--object` mode will represent the objects assigned to that particular IKI/EKI variable.

3 months agoProgress: Continue eki_read program by extending iki_read.
Kevin Day [Sat, 7 Dec 2024 02:21:32 +0000 (20:21 -0600)]
Progress: Continue eki_read program by extending iki_read.

This refactors iki_read in regards to the wraps and replaces.
I have not done any testing of the wraps and the replaces yet.
I also need to consider exactly how I want the multiple parameters to be handled.

I need to think about how I want to handle printing Objects (`--object`) with EKI when there is more than one Object for a single Variable.

3 months agoProgress: Begin adding eki_read program by extending iki_read.
Kevin Day [Wed, 4 Dec 2024 02:37:07 +0000 (20:37 -0600)]
Progress: Begin adding eki_read program by extending iki_read.

Setup the most basic functionality.

Currently they are both performing iki_read functionality.

The two programs require a different data structure.
I need to plan on how to handle this.
I may end up using callbacks and possibly a void pointer for data.

3 months agoUpdate: Simplify code slightly aad remove redundant `fll_program_print_help_header...
Kevin Day [Wed, 4 Dec 2024 02:05:22 +0000 (20:05 -0600)]
Update: Simplify code slightly aad remove redundant `fll_program_print_help_header()` call.

Use the variable for `parameters` to simplify code.
This simplifies the code at the cost of using a variable.

Remove include that is not needed from the c files.

Update the documentation comments to have `Properties: `.

Remove redundant `fll_program_print_help_header()` call.

3 months agoCleanup: Use parameters pointer and relocate output.to assignment.
Kevin Day [Tue, 3 Dec 2024 05:29:45 +0000 (23:29 -0600)]
Cleanup: Use parameters pointer and relocate output.to assignment.

Relocate the `main->program.output.to` assignment to the top of the load settings functions.
This should better allow for printing to be properly used, sooner.

Setup the `parameters` as a pointer to `&main->program.parameters`.
This should help made the code easier to read by reducing the size of the code needed.

4 months agoCleanup: Add missing documentation comment and fix structure ordering.
Kevin Day [Sat, 30 Nov 2024 16:39:14 +0000 (10:39 -0600)]
Cleanup: Add missing documentation comment and fix structure ordering.

Use alphabetic ordering when the dependencies are not forcing the order.

4 months agoCleanup: Build settings structure for iki_write.
Kevin Day [Sat, 30 Nov 2024 15:13:46 +0000 (09:13 -0600)]
Cleanup: Build settings structure for iki_write.

4 months agoCleanup: Add new line in build settings files.
Kevin Day [Sat, 30 Nov 2024 13:46:40 +0000 (07:46 -0600)]
Cleanup: Add new line in build settings files.

4 months agoUpdate: Add clarifying documentation to some memory allocation functions.
Kevin Day [Sat, 30 Nov 2024 13:45:27 +0000 (07:45 -0600)]
Update: Add clarifying documentation to some memory allocation functions.

4 months agoFeature: Add eki_write program.
Kevin Day [Sat, 30 Nov 2024 12:58:15 +0000 (06:58 -0600)]
Feature: Add eki_write program.

The eki_write program is now added and complete.

This resolves the progress commits for this, such as 740d5fc88d6e05edf2a7267c422642bd14cc473c.

There are no iki_write runtime tests yet, so this does not add any yet.

4 months agoUpdate: The fss_read has missing our out of date information.
Kevin Day [Tue, 26 Nov 2024 06:02:43 +0000 (00:02 -0600)]
Update: The fss_read has missing our out of date information.

Add the android settings like is done for other settings files.

Use the hex digits rather than `f_true` and `f_false`.

The `fss_read_main_setting_load_as` callback appears to be missing.
I need to review the code to confirm/deny this particular behavior.

4 months agoProgress: Begin adding the eki_write program by extending iki_write.
Kevin Day [Tue, 26 Nov 2024 06:01:15 +0000 (00:01 -0600)]
Progress: Begin adding the eki_write program by extending iki_write.

This is a bit rushed, so I will have additional passes to make.

4 months agoUpdate: Improved documentation comments in f_memory functions.
Kevin Day [Tue, 26 Nov 2024 05:53:05 +0000 (23:53 -0600)]
Update: Improved documentation comments in f_memory functions.

I sometimes forget whether or not which type the "width" should be.
This adds additional documentation to hopefully make it more clear.

4 months agoUpdate: Switch iki_write to using f_iki_write().
Kevin Day [Sun, 24 Nov 2024 04:43:40 +0000 (22:43 -0600)]
Update: Switch iki_write to using f_iki_write().

The old iki_write is using the simple processing functions.
Switch to using the dedicated `f_iki_write()` function.

Switch to using the main cache design.

4 months agoCleanup: Fix incorrect documentation comment for fss_read function.
Kevin Day [Sun, 24 Nov 2024 04:43:07 +0000 (22:43 -0600)]
Cleanup: Fix incorrect documentation comment for fss_read function.

4 months agoFeature: Add fl_iki_eki_read(), add unit tests, and update existing stand alone builds.
Kevin Day [Sun, 24 Nov 2024 03:43:01 +0000 (21:43 -0600)]
Feature: Add fl_iki_eki_read(), add unit tests, and update existing stand alone builds.

4 months agoCleanup: Remove unused header include fo f_abstruse unit tests.
Kevin Day [Sun, 24 Nov 2024 03:42:34 +0000 (21:42 -0600)]
Cleanup: Remove unused header include fo f_abstruse unit tests.

4 months agoUpdate: The time specification, making it more flexible.
Kevin Day [Sat, 23 Nov 2024 22:33:22 +0000 (16:33 -0600)]
Update: The time specification, making it more flexible.

Improve the time specification to grant better control and flexibility on what it means to those implementing and using it.
Provide suggestions regarding IKI and EKI.
Remember, these are suggestions and are not requirements.

4 months agoBugfix: FSS Read unit tests, fix file names, and fix FSS-0008 test files.
Kevin Day [Sat, 23 Nov 2024 22:26:01 +0000 (16:26 -0600)]
Bugfix: FSS Read unit tests, fix file names, and fix FSS-0008 test files.

I noticed that I had several of the test files misnamed.
Many of the test files should have a prefix of `name_` in from of parts of the file name relating to the name parameter.

I had originally created the test data for FSS-0008, FSS Embedded List Read, tests just using the output data as generated.
I knew that there was a good chance that any mistakes would be treated as valid.
This saved time and allowed me to work towards improvements.
I have identified and fixed several bugs.
This has then revealed that several of the tests have invalid data.
I manually reviewed several of these and confirmed that the newly generated code looks more correct.
There is still an opportunity for an oversight or mistake but I believe this is more progress forward.
My goal is not to spend too much time directly on this with the expectation that I will test and resolve these problems over time before a stable release.
This is more of a matter of time allocation and priorities rather than a technical correctness and accuracy issue.

4 months agoBugfix: Incorrect handling of "at" positions in FSS Embedded List Read.
Kevin Day [Sat, 23 Nov 2024 06:27:55 +0000 (00:27 -0600)]
Bugfix: Incorrect handling of "at" positions in FSS Embedded List Read.

The "at" position needs to be counted during all iterations.

4 months agoBugfix: The FSS Read process at should only process if index_at is non-zero.
Kevin Day [Sat, 23 Nov 2024 03:08:58 +0000 (21:08 -0600)]
Bugfix: The FSS Read process at should only process if index_at is non-zero.

The FSS Embedded Read recursive logic exposes this problem.

The at flag bit is set when the at parameter is passed.
The at parameter being passed when there are multiple depths does not mean that the specific depth in question should be using the at position.
Add a check that ensures that the current depth needs the at position processed.

4 months agoBugfix: Do not treat out of range depth as an error.
Kevin Day [Sat, 23 Nov 2024 01:54:07 +0000 (19:54 -0600)]
Bugfix: Do not treat out of range depth as an error.

The FSS Embedded List Read should not treat out of range depth as an error.
This simply should return no results.

4 months agoUpdate: Refresh the stand alone builds.
Kevin Day [Fri, 22 Nov 2024 05:53:50 +0000 (23:53 -0600)]
Update: Refresh the stand alone builds.

I ran the commands as written in the commented out parts of the config.h files.
The order of the defines somehow changed.

I must either have done something weird, wrong, or different last time to result in the differences.
To save time, I short circuited some of the process.
This means that there is a chance that I commented out defines that don't need to be commented out.

I've tested and confirmed that these compiles.
I have not checked the before and after sizes or symbols.

4 months agoBugfix: Add missing _di_f_print_except_in_dynamic_safely_ to private_f_print_except_i...
Kevin Day [Fri, 22 Nov 2024 05:53:35 +0000 (23:53 -0600)]
Bugfix: Add missing _di_f_print_except_in_dynamic_safely_ to private_f_print_except_in_safely().

4 months agoUpdate: Fix IKI write and add EKI write functions for f_iki.
Kevin Day [Thu, 21 Nov 2024 05:24:17 +0000 (23:24 -0600)]
Update: Fix IKI write and add EKI write functions for f_iki.

Fix the backslash handling now that I have figured that whole situation out and updated the specifications.

Adding support for the EKI write.

Add more extensive unit tests for both IKI write and EKI write.

I am trying to keep both the IKI write and the IKI write works functions as similar as possible.
The "works" write tests are already big enough anyway.
Implement a separate test for EKI, called `test__f_iki_eki_write__works_for_multiple`, to handle the multiple vocabularies case.
This will be structurally identical to the regular works tests but instead has multiple vocabularies.