]> Kevux Git Server - fll/log
fll
3 years agoCleanup: further utilize static stringss and correct the FSS Extended read function...
Kevin Day [Sun, 13 Dec 2020 04:20:39 +0000 (22:20 -0600)]
Cleanup: further utilize static stringss and correct the FSS Extended read function documentation.

3 years agoProgress: contoller program.
Kevin Day [Sun, 13 Dec 2020 04:09:40 +0000 (22:09 -0600)]
Progress: contoller program.

This focuses on getting the simulation code working as desired.

While --test is what triggers simulation mode, if --validate is specified, then additional information on rules are provided.

Break apart the default pid file name to operate on a per entry basis.
This will allow for multiple controllers to co-exist with different pid files (and likewise eventually socket files).

This fixes a lot of bugs/mistakes that cropped up during the previous codestorming as well as restructures some of the data types.

3 years agoCleanup: use "triple" instead of "tuple".
Kevin Day [Sat, 12 Dec 2020 03:01:53 +0000 (21:01 -0600)]
Cleanup: use "triple" instead of "tuple".

In mathematics, a "tuple" is an ordered set of some length.
Here I was using a "tuple" specifically as a 3-tuple, which is wrong.

Rename "tuple" to "triple" in these cases because a "triple" is the proper terminology for a 3-tuple.

3 years agoFeature: Provide a tuple of string structure.
Kevin Day [Fri, 11 Dec 2020 05:49:29 +0000 (23:49 -0600)]
Feature: Provide a tuple of string structure.

3 years agoProgress: controller program.
Kevin Day [Fri, 11 Dec 2020 04:52:05 +0000 (22:52 -0600)]
Progress: controller program.

This fixes some of the problems, but there are several more to go.

This includes some tweaks to the FSS defines.

3 years agoBugfix: fl_string_dynamic_rip() and fl_string_dynamic_rip_nulless() are wrong.
Kevin Day [Fri, 11 Dec 2020 04:49:12 +0000 (22:49 -0600)]
Bugfix: fl_string_dynamic_rip() and fl_string_dynamic_rip_nulless() are wrong.

The dynamic rip functions are not actually performing a rip.
Instead, they are performing just a simple append.

Fix this behavior to have these functions actually perform a rip.

Add additional parameter checks.

Cleanup private_fl_string_append_nulless(), improving the structure of that function.

3 years agoProgress: controller program.
Kevin Day [Thu, 10 Dec 2020 04:14:45 +0000 (22:14 -0600)]
Progress: controller program.

This includes changes using static variables that was introduced in a previous commit at the entire fll project level.

Begin implementing the simulation execution.
There is much to do here and the simulation is already showing problems that need to be resolved (such as in the rule loading process).

3 years agoUpdate: Add missing header and add/update static variables relating to strings.
Kevin Day [Thu, 10 Dec 2020 04:09:41 +0000 (22:09 -0600)]
Update: Add missing header and add/update static variables relating to strings.

The string.h header is not being directly included by f_color and should be.
Also add the missing dependency.

This adds a small amount of static variables.
There is more work to do in this regard, such as with f_file related strings.

Replace fll_error_string_null_s with f_color_set_string_null_s.
Utilize f_string_empty_s in place of "".

This skips making changes in controller.
The appropriate changes will be made in the appropriate work in Progress commit.

3 years agoCleanup: use const more, but in a way that works with pointers.
Kevin Day [Thu, 10 Dec 2020 01:39:57 +0000 (19:39 -0600)]
Cleanup: use const more, but in a way that works with pointers.

The standard practice is to specify const first.
In the case of pointers, anything to the left of such a declaration represents what is being pointed to.
This means const cannot be used in this case unless the pointer is intending to point to a constant.

The const qualifier may instead be put after the pointer symbol '*' to designate that the pointer and not what is being pointed to is to be a constant.

It seems that I tend to forget this behavior.
This makes a pass at existing uses of such pointers, adding const in the appropriate way.

3 years agoProgress: controller program.
Kevin Day [Wed, 9 Dec 2020 04:39:15 +0000 (22:39 -0600)]
Progress: controller program.

3 years agoFeature: add F_ready, F_ready_not, F_wait, and F_wait_not statuses.
Kevin Day [Wed, 9 Dec 2020 04:38:29 +0000 (22:38 -0600)]
Feature: add F_ready, F_ready_not, F_wait, and F_wait_not statuses.

3 years agoProgress: controller program.
Kevin Day [Tue, 8 Dec 2020 04:02:23 +0000 (22:02 -0600)]
Progress: controller program.

3 years agoFeature: add date and time related types.
Kevin Day [Tue, 8 Dec 2020 03:57:24 +0000 (21:57 -0600)]
Feature: add date and time related types.

3 years agoCleanup: remove spurious space.
Kevin Day [Tue, 8 Dec 2020 03:06:31 +0000 (21:06 -0600)]
Cleanup: remove spurious space.

3 years agoCleanup: replace 'file' with replacement character '%s'.
Kevin Day [Mon, 7 Dec 2020 04:37:32 +0000 (22:37 -0600)]
Cleanup: replace 'file' with replacement character '%s'.

3 years agoProgress: controller program.
Kevin Day [Sun, 6 Dec 2020 23:45:41 +0000 (17:45 -0600)]
Progress: controller program.

Add the daemon mode where controller does not act like an init program.

3 years agoUpdate: provide F_minor and F_moderate to complement the F_critical status code.
Kevin Day [Sun, 6 Dec 2020 23:45:10 +0000 (17:45 -0600)]
Update: provide F_minor and F_moderate to complement the F_critical status code.

3 years agoProgress: controller program.
Kevin Day [Sun, 6 Dec 2020 04:48:43 +0000 (22:48 -0600)]
Progress: controller program.

Change "timeout" property to the more generic "number".
This can then be used for types "timeout" and "item", whereas the "item" number represents the location within the items list.
This is not known until all entry items are loaded and is therefore updated during the pre-process phase.

This implements the pre-process phase after the load phase.
The pre-process will perform additional checks, such as determining if "ready" is set somewhere in the active chain.
This makes sure recursion to an item already on the stack is not allowed.

Do some cleanups, reducing the if/then nesting by adding "do nothing" comment and letting the "else" condition handle the case appropriately.

Internally, line counting starts at 0, but when dealing with presenting the lines to users, the lines start at 1.
Change the behavior to increase the line number appropriately for entries.
The same will likely need to be done for rules.

Have the default.entry provide "ready".

3 years agoCleanup: the fl_type functions should have "_type".
Kevin Day [Fri, 4 Dec 2020 05:22:37 +0000 (23:22 -0600)]
Cleanup: the fl_type functions should have "_type".

I completely overlooked this.
To follow the correct practice, make sure that "_type" is on each function.

3 years agoCleanup: _F_types_h should be _F_type_h and some macros have misplaces the "s".
Kevin Day [Fri, 4 Dec 2020 05:08:59 +0000 (23:08 -0600)]
Cleanup: _F_types_h should be _F_type_h and some macros have misplaces the "s".

The f_type project is singular, so do not use an "s" in the name.

Some of the macros in the type_array.h file were not converted from having the "s" after the _t to more accurately matching the type name.
For example uint8s_t should have macros using uint8s_t instead of uint8_ts.

3 years agoFeature: add fl_type project to provide increase() and increase_by() functions.
Kevin Day [Fri, 4 Dec 2020 05:07:46 +0000 (23:07 -0600)]
Feature: add fl_type project to provide increase() and increase_by() functions.

There will likely be additions to this project in the future to provide decrease() and decrease_by() functions.

3 years agoBugfix: use f_array_length_t and not f_string_length_t.
Kevin Day [Fri, 4 Dec 2020 04:58:20 +0000 (22:58 -0600)]
Bugfix: use f_array_length_t and not f_string_length_t.

3 years agoProgress: controller program.
Kevin Day [Thu, 3 Dec 2020 04:34:37 +0000 (22:34 -0600)]
Progress: controller program.

Move some code into a private common header.

Merge the entry and items cache into a single cache.

3 years agoUpdate: controller program should better handle code bits and also clear used.
Kevin Day [Thu, 3 Dec 2020 03:26:45 +0000 (21:26 -0600)]
Update: controller program should better handle code bits and also clear used.

Fix a problem where the bitwise code test needs to be inverted to be logically correct.

When skipping position 0 for main in entry item read, ensure that the string is not used.

3 years agoCleanup: move "macro_" prefix to after program name.
Kevin Day [Thu, 3 Dec 2020 02:55:54 +0000 (20:55 -0600)]
Cleanup: move "macro_" prefix to after program name.

With the macro_ being defined after f_, fl_, and fll_, it makes more sense to follow the same logic with programs.
For example, macro_iki_read_X() is now iki_read_macro_X().
This more accurately associates the macro with the program via styling practices.

3 years agoUpdate: memory changes, memory bugfixes, and minor controller program fixes.
Kevin Day [Thu, 3 Dec 2020 01:01:29 +0000 (19:01 -0600)]
Update: memory changes, memory bugfixes, and minor controller program fixes.

Do some minor cleanup with the allocation functions.

The *_delete_simple() and *_destroy_simple() macros need to always set size to 0, because they are always ignoring the return status.
Also move the relating check outside of the for loop for performance reasons.

Minor cleanups in memory functions.

Add additional parameter checks to the memory create functions.
Add additional size and length checks in the memory delete and destroy functions.

Fix bug in f_macro_memory_structure_macro_increment() where if condition is obviously wrong (two '>' checks are used against each other!).

Change behavior to increment against "used" instead of "size", more consistently.

Rewrite the *_increase() and *_increase_by() functions due to bugs and inconsistencies.
Only use variables when needed for performance and resource reasons.
Get rid of the F_array_too_large on success behavior as the current design doesn't handle the cases where both F_array_too_large and an error occurs afterwards.

Fix mistake in controller program where I forgot to actually set the allocated sizes.

Use counter instead of pointer for entry item in controller program.
In some cases, use fl_string_dynamic_terminate_after() instead of fl_string_dynamic_terminate() (there will likely be more of these changes).

3 years agoProgress: controller program.
Kevin Day [Tue, 1 Dec 2020 05:05:10 +0000 (23:05 -0600)]
Progress: controller program.

3 years agoUpdate: provide file mode macros in f_file.
Kevin Day [Tue, 1 Dec 2020 03:48:15 +0000 (21:48 -0600)]
Update: provide file mode macros in f_file.

I would rather provide static constant strings, but the Posix file string functions that use this expect a non-constant string.
This is unsafe, so just stick with macros.

3 years agoCleanup: f_account should use "account" and not "pipe".
Kevin Day [Tue, 1 Dec 2020 02:29:34 +0000 (20:29 -0600)]
Cleanup: f_account should use "account" and not "pipe".

This is likely a copy and paste mistake where I forgot to fully update the comments.

3 years agoUpdate: status code changes, adding "_not" in more places.
Kevin Day [Tue, 1 Dec 2020 02:21:57 +0000 (20:21 -0600)]
Update: status code changes, adding "_not" in more places.

I am not a fan of having so many "_not".
I believe I even made efforts to reduce its usage in the past.

Having said that, there ended up being too many different cases where "_not" makes sense.
I want things to be consistent, so this commit introduces "_not" more thoroughly unless it makes sense not to.

There are also cases where I have prefixes, such as "un" in unknown.
Change this to be consistent with the "_not" logic.
This results in changes like F_unknown -> F_known_not.

Other minor cleanups exist, such as F_interrupted -> F_interrupt.

I expect down the road there will be changes where these "_not" are used in functions where the "_not" is not used.
(Example: it may be that a function returns F_number (with error bit set) on invalid number, but it may be better to now use F_number_not.)

3 years agoProgress: controller program.
Kevin Day [Mon, 30 Nov 2020 03:45:02 +0000 (21:45 -0600)]
Progress: controller program.

3 years agoUpdate: add support for file error F_file_type_not_directory.
Kevin Day [Mon, 30 Nov 2020 03:43:52 +0000 (21:43 -0600)]
Update: add support for file error F_file_type_not_directory.

3 years agoBugfix: provide static variable "fll_error_string_null_s".
Kevin Day [Mon, 30 Nov 2020 03:38:36 +0000 (21:38 -0600)]
Bugfix: provide static variable "fll_error_string_null_s".

When using the fl_color_print functions, the context before and after pointers may safely be NULL.
When using the printf functions, the context before and after pointers cannot safely be NULL.

In the second case, a global static is now provided that is essentially a NULL string of a compatible type.

3 years agoBugfix: featureless make is not copying settings directory.
Kevin Day [Sun, 29 Nov 2020 06:58:58 +0000 (00:58 -0600)]
Bugfix: featureless make is not copying settings directory.

The contents of the directory are being copied instead of the directory itself.
Change the behavior to instead copy the entire directory and not just its contents.

Also move the directory check into its own line instead of inline inside of an if condition.
The signal check is moved with it.

3 years agoProgress: controller program and add F_encoding and F_encoding_not status codes.
Kevin Day [Sun, 29 Nov 2020 06:06:47 +0000 (00:06 -0600)]
Progress: controller program and add F_encoding and F_encoding_not status codes.

3 years agoProgress: controller program.
Kevin Day [Sat, 28 Nov 2020 02:41:28 +0000 (20:41 -0600)]
Progress: controller program.

4 years agoProgress: controller program.
Kevin Day [Mon, 23 Nov 2020 03:56:11 +0000 (21:56 -0600)]
Progress: controller program.

Wrap up some of the existing rules code.
Begin writing the entry code.

This seems like a good time to start using and referencing my unit of time called "Time".
Use MegaTime (aka: milliseconds) to handle the time, which will be stored in a 64bit unsigned integer as units of Time.

4 years agoCleanup: fix comment in featureless make program.
Kevin Day [Mon, 23 Nov 2020 03:54:32 +0000 (21:54 -0600)]
Cleanup: fix comment in featureless make program.

Add a @fixme for UTF-8 because I noticed that I was not using UTF-8 character support.
If environment variables should only be ASCII, update the documentation to better reflect this.

4 years agoUpdate: handle F_incomplete_utf status.
Kevin Day [Mon, 23 Nov 2020 03:53:57 +0000 (21:53 -0600)]
Update: handle F_incomplete_utf status.

4 years agoProgress: controller.
Kevin Day [Sun, 22 Nov 2020 03:44:11 +0000 (21:44 -0600)]
Progress: controller.

In particular, this adds most of the settings loading information.
There is more work to do in this regard.

4 years agoUpdate: add f_string_maps_t increase and decrease functions and FLL documentation...
Kevin Day [Sun, 22 Nov 2020 03:42:09 +0000 (21:42 -0600)]
Update: add f_string_maps_t increase and decrease functions and FLL documentation cleanup.

Add the appropriate functions.
This file will need to be reviewed to have increase and decrease functions for all of the string types.

Fix documentation for FSS Basic and FSS Extended, which should state that the parameter is optional.

4 years agoProgress: controller.
Kevin Day [Sat, 21 Nov 2020 22:09:10 +0000 (16:09 -0600)]
Progress: controller.

Minor tweaks.
Add new parameters and rule settings.

4 years agoCleanup: add F_memory, F_resource, and F_resource_not; rename F_memory_out to F_memor...
Kevin Day [Sat, 21 Nov 2020 21:54:31 +0000 (15:54 -0600)]
Cleanup: add F_memory, F_resource, and F_resource_not; rename F_memory_out to F_memory_not.

4 years agoProgress: controller program.
Kevin Day [Fri, 20 Nov 2020 04:15:16 +0000 (22:15 -0600)]
Progress: controller program.

Update cache usage.
Begin working on the rule settings, adding missing information and documentation.

Combine the rule items and rule settings into a single rule structure.

4 years agoUpdate: add F_file_not and F_link_not status codes.
Kevin Day [Fri, 20 Nov 2020 04:14:15 +0000 (22:14 -0600)]
Update: add F_file_not and F_link_not status codes.

4 years agoBugfix: f_type_warn does not exist, instead use f_type_warning.
Kevin Day [Thu, 19 Nov 2020 05:16:33 +0000 (23:16 -0600)]
Bugfix: f_type_warn does not exist, instead use f_type_warning.

4 years agoProgress: controller program.
Kevin Day [Thu, 19 Nov 2020 04:30:45 +0000 (22:30 -0600)]
Progress: controller program.

Wrap up the current implementation of the rule read functions.

Utilize a (private) cache, reducing the parameters and reducing the amount of allocations.
How I am using the cache changed as I went and I need to come back and review it again before completing this program.

4 years agoCleanup: the FSS read functions no longer need the buffer to be a pointer.
Kevin Day [Thu, 19 Nov 2020 02:50:16 +0000 (20:50 -0600)]
Cleanup: the FSS read functions no longer need the buffer to be a pointer.

The delimits are no longer modified in place.
Make the buffer a constant static dynamic string.

Remove comment about updating the buffer, which is no longer correct.

4 years agoCleanup: parameters should be objects_quoted instead of quoted_objects as well as...
Kevin Day [Wed, 18 Nov 2020 00:59:35 +0000 (18:59 -0600)]
Cleanup: parameters should be objects_quoted instead of quoted_objects as well as for contents_quoted.

Also update the documentation for these to be more clear on how these parameters are populated.

4 years agoProgress: controller.
Kevin Day [Tue, 17 Nov 2020 04:44:17 +0000 (22:44 -0600)]
Progress: controller.

4 years agoUpdate: add "DEBUG: " support to the common errors.
Kevin Day [Tue, 17 Nov 2020 04:43:42 +0000 (22:43 -0600)]
Update: add "DEBUG: " support to the common errors.

4 years agoBugfix: Embedded List is not properly handling delimits on write.
Kevin Day [Sun, 15 Nov 2020 23:36:55 +0000 (17:36 -0600)]
Bugfix: Embedded List is not properly handling delimits on write.

This is hard to observe because of how bash handles newlines.
For example:
  echo "$(echo -e "  To {\n    World\n  \\\\\\\\\\\\\\{\n")"

Would produce a string where the slashes after world actually represent a total of 4 slashes.
The problem with bash is that it "guesses" the number of slashes.
Another concern is that there are two quotes, so a slash has to be escaped twice for such a string in bash.

As a more complex example, see:
  # echo  "$(echo -e "\\\\\\\\\\\\\\")" | byte_dump -tcw 5

  Piped Byte Dump: (in Hexidecimal)
  0000000000000000  5c 5c 5c 5c 0a  | \\\\␤ |

  # echo  "$(echo -e "\\\\\\\\\\")" | byte_dump -tcw 5

  Piped Byte Dump: (in Hexidecimal)
  0000000000000000  5c 5c 5c 0a     | \\\␤  |

Once past the confusing behavior of backslash escaping in Bash, one can then observe that this project is incorrectly escaping backslashes.
In the case of Embedded List close character (the close brace '}') only the first backslash needs to be escaped.
In the case of Embedded List open character (the open brace '{') every even backslash must be escaped (and there should only be a single unescaped odd backslash).
The problem is that the code is treating the close brace as an open brace, resulting in too many backslashes.

There is also an ends of EOL boolean that appears to be being incorrectly set.
The EOL is detected at range->start position, but the position is being reset to the saved "start" position.

4 years agoUpdate: FSS Extended List should be non-recursive.
Kevin Day [Sun, 15 Nov 2020 22:16:17 +0000 (16:16 -0600)]
Update: FSS Extended List should be non-recursive.

Update specification to make this more clear.

The Extended List read functions are updated to handle this.
The Extended List read program is essentially copied from the Basic List read program and then updated accordingly.
The Extended List write functions and programs need to not escape the opening brace inside a content.

4 years agoUpdate: create FSS Embedded List and other minor fixes.
Kevin Day [Sat, 14 Nov 2020 05:33:15 +0000 (23:33 -0600)]
Update: create FSS Embedded List and other minor fixes.

The FSS-0008 Embedded List is just copied from FSS-0003 Extended List.

Fix some minor problems observed during this transition.

I will need to follow up with rewriting the FSS-0003 Extended List code.
I will probably just use FSS-0002 Basic List as a fresh starting point given that list is not recursive.

4 years agoProgress: controller.
Kevin Day [Sat, 14 Nov 2020 05:03:51 +0000 (23:03 -0600)]
Progress: controller.

Begin prototyping and writing the controller code.
While working on this I suddenly realized that I accidentally treated FSS-0003 (Extended List) as FSS-0008 (Embedded List)!
This needs to be fixed so I am saving the progress as-is with all the note and other mess and will correct the FSS-0003 accident.

4 years agoCleanup: add F_array and similar status codes.
Kevin Day [Sat, 14 Nov 2020 02:16:24 +0000 (20:16 -0600)]
Cleanup: add F_array and similar status codes.

I originally tried to simplify things and have only F_array or F_buffer.
I have found myself wanting to use F_array, naturally, more and more.

Furthermore, the semantics of "array" and "buffer" are similar but not the same.
Add the F_array (and similar status codes).

Update existing code that should be using F_array instead of F_buffer.

4 years agoUpdate: add missing 'const'.
Kevin Day [Fri, 13 Nov 2020 02:33:01 +0000 (20:33 -0600)]
Update: add missing 'const'.

4 years agoUpdate: next micro version (0.5.2).
Kevin Day [Fri, 13 Nov 2020 01:26:04 +0000 (19:26 -0600)]
Update: next micro version (0.5.2).

I missed the program micro version numbers in the previous commit that was supposed to do this.

4 years agoProgress: begin adding the controller program, starting with the specification and...
Kevin Day [Thu, 12 Nov 2020 04:43:31 +0000 (22:43 -0600)]
Progress: begin adding the controller program, starting with the specification and relating documentation.

This is the first pass at the specification, based off of the previous "init" implicit specification.

Two new FSS specifications added but not yet documented.

4 years agoUpdate: make fl_fss _increase() and _increase_by() functions similar to the fl_string...
Kevin Day [Wed, 11 Nov 2020 05:53:59 +0000 (23:53 -0600)]
Update: make fl_fss _increase() and _increase_by() functions similar to the fl_string equivalents.

4 years agoUpdate: add fl_string based _increase, _increase_by, _decrease, and decrease_by funct...
Kevin Day [Wed, 11 Nov 2020 05:37:31 +0000 (23:37 -0600)]
Update: add fl_string based _increase, _increase_by, _decrease, and decrease_by functions.

The existing _size_increase() functions are renamed to _increase_by().
The existing _size_decrease() functions are renamed to _decrease_by().

4 years agoProgress: init.
Kevin Day [Tue, 10 Nov 2020 02:21:04 +0000 (20:21 -0600)]
Progress: init.

Begin preparations for implementing this.
After review, I suspect this will be more complex than the control and controller programs.
To that end, I am switching focus to those two programs.

4 years agoCleanup: remove unnecessary tabbing and move newline.
Kevin Day [Tue, 10 Nov 2020 02:19:03 +0000 (20:19 -0600)]
Cleanup: remove unnecessary tabbing and move newline.

Move the newline to its own printf function that is after any color codes.

4 years agoUpdate: relax parameter restrictions in f_iki_read().
Kevin Day [Tue, 10 Nov 2020 02:15:20 +0000 (20:15 -0600)]
Update: relax parameter restrictions in f_iki_read().

Return f_data_not, F_data_not_stop, or F_data_not_eos if there is no data instead of F_parameter with an error bit.

4 years agoCleanup: remove extra parameter in printf().
Kevin Day [Fri, 6 Nov 2020 04:45:00 +0000 (22:45 -0600)]
Cleanup: remove extra parameter in printf().

There is only a single '%c' so the second parameter is ignored.

4 years agoFeature: Stub out the Control program.
Kevin Day [Thu, 5 Nov 2020 03:12:05 +0000 (21:12 -0600)]
Feature: Stub out the Control program.

This is a part of the traditional "init" process, such as those done in sysvinit or initng.
Unlike those, this only communicates with the "Controller" program to give the "Controller" program commands.
For the booting part of the process, see the "Init" program.

This is also intended to be control from service "Controller" program.

4 years agoFeature: Stub out the Controller program.
Kevin Day [Thu, 5 Nov 2020 03:10:06 +0000 (21:10 -0600)]
Feature: Stub out the Controller program.

This is a part of the traditional "init" process, such as those done in sysvinit or initng.
Unlike those, this only performs tasks and manages services.
For the booting part of the process, see the "Init" program.
This is also intended to be controlled from user space via the "Control" program.

4 years agoUpdate: Re-create Init program with barebones source structure.
Kevin Day [Thu, 5 Nov 2020 02:22:19 +0000 (20:22 -0600)]
Update: Re-create Init program with barebones source structure.

The Init program will instead be developed as an init-only program.
The goal will be to not implement any service management.
This means that another progrram will be written for that purpose (which will be called something like "control" and/or "controller").

4 years agoBugfix: color print is bleeding into GCC messages.
Kevin Day [Thu, 5 Nov 2020 02:05:07 +0000 (20:05 -0600)]
Bugfix: color print is bleeding into GCC messages.

When GCC has an error or warning, the print messages end up discolored.

This seems to be an artifact of how streams work and the newline.
Move all final newlines out of the color context printing and print the newlines in a separate command.
This appears to avoid the mentioned problem.

4 years agoBugfix: Fake building monolithic FLL is not compiling due to header directory structu...
Kevin Day [Wed, 4 Nov 2020 06:32:04 +0000 (00:32 -0600)]
Bugfix: Fake building monolithic FLL is not compiling due to header directory structure problems.

The header directory structure is being preserved by the bootstrap.sh but not by Fake.

Introduce a new setting, 'path_headers_preserve' as a yes/no boolean.
This designates that the path for headers should be preserved or not.
In the case of the monolithic build, path_headers_preserve must be 'yes'.

Provide a new function fl_directory_create() to make it easy to create an entire directory tree.

Fake is now aware of this new 'path_headers_preserve', setting.
When supplied, it will make sure to preserve the directory tree, such as 'level_0/' in the monolithic build header file 'level_0/color.h'.

Both Fake and the bootstrap script should now behave the same in this respect.

The changes in this commit have been quickly thrown together.
This will need additional reviewing.

4 years agoCleanup: Fake should handle file specific errors for the clean operation.
Kevin Day [Wed, 4 Nov 2020 02:53:19 +0000 (20:53 -0600)]
Cleanup: Fake should handle file specific errors for the clean operation.

The clean operation should use fll_error_file_print() instead of fll_error_print() for better error output for file related operations.

4 years agoBugfix: Fake incorrectly builds header file names.
Kevin Day [Wed, 4 Nov 2020 02:32:14 +0000 (20:32 -0600)]
Bugfix: Fake incorrectly builds header file names.

The NULL terminating character is not appended after each new header name.
This resulted in garbled header names due to existing content in the buffer.

4 years agoCleanup: default to monolithic build.
Kevin Day [Wed, 4 Nov 2020 02:17:28 +0000 (20:17 -0600)]
Cleanup: default to monolithic build.

For simplicity purposes, I am just building and releasing the monolothic build of FLL.
It makes more sense to me then to change the default to use this monolithic build.

4 years agoBugfix: contents_delimits is supposed to be optional.
Kevin Day [Tue, 3 Nov 2020 05:40:16 +0000 (23:40 -0600)]
Bugfix: contents_delimits is supposed to be optional.

I probably accidentally "fixed" this thinking the parameter was not being checked by accident.
In reality, the parameter shouldn't be checked if the pointer is NULL because it is supposed to be optional.

This resulted in the fake program from not working as of release 0.5.1.

4 years agoUpdate: next micro version (0.5.2).
Kevin Day [Sat, 31 Oct 2020 02:51:24 +0000 (21:51 -0500)]
Update: next micro version (0.5.2).

4 years agoBugfix: dependency generation is incorrect. 0.5.1
Kevin Day [Sat, 31 Oct 2020 02:32:19 +0000 (21:32 -0500)]
Bugfix: dependency generation is incorrect.

The recent rewrite of the dependencies resulted in the higher level files being after the lower level files.
Normally this is not a problem, but when it comes to compiling static programs depending on this, the linking fails.
This becomes more confusing in that, in my case the GNU Linker, says that functions do not exist when you can see that they, in fact, do exist.

By changing the order, with the higher levels before the lower levels, static compilation works without any such issues.

4 years agoBugfix: add missing project to bootstrap-example.sh: fll_error.
Kevin Day [Sat, 31 Oct 2020 02:31:30 +0000 (21:31 -0500)]
Bugfix: add missing project to bootstrap-example.sh: fll_error.

4 years agoBugfix: FSS Extended List did not actually record parent path, prevented nests from...
Kevin Day [Sat, 31 Oct 2020 01:25:41 +0000 (20:25 -0500)]
Bugfix: FSS Extended List did not actually record parent path, prevented nests from being processable.

It seems that I completely forgot to actually save the parent location.
Without this there is no way to map one nested item to its parent.

4 years agoUpdate: FSS Extended List should now support multiple depth parameters.
Kevin Day [Sat, 31 Oct 2020 01:01:49 +0000 (20:01 -0500)]
Update: FSS Extended List should now support multiple depth parameters.

Recursively parses the parameters determining what data should or should not be processed.

For example, take the following file "example.fss":
a {
  a.0 {
    a.0.0 {
     a's final content.
    }
  }
}
b {
  b.0 {
   b's first final content.
  }
  b.1 {
   b's second final content.
  }
}

TO only display "b's first final content.", the following is done:
  fss_extended_list_read example.fss -n 'b ' -d 1 -a 0

Which works by at depth 0, looks for the list name 'b ', then at depth 1, looks at position 0.

The --at and --name parameters are using the wrong variable in their logic (using 'j' when it should be 'i').
This resulted in an incorrect parsing of the parameters.

4 years agoUpdate: implement recursive depth handling for FSS Extended List Read.
Kevin Day [Thu, 29 Oct 2020 02:08:07 +0000 (21:08 -0500)]
Update: implement recursive depth handling for FSS Extended List Read.

4 years agoUpdate: redesign Extended List Read --at, --depth, and --name parameter handling.
Kevin Day [Wed, 28 Oct 2020 23:16:50 +0000 (18:16 -0500)]
Update: redesign Extended List Read --at, --depth, and --name parameter handling.

Make the program aware of the order in which these are applied.
Such that, for example:
  --at 0 --name 'my_list' would first select list index 0 and then try to match the list name against 'my_list'.
Whereas, for example:
  --name 'my_list' --at 0 would try to match the list name against 'my_list', and then from that matching result set, select index 0.

This supports the ability to also do the following:
 --depth 0 --at 0 --depth 1 --at 2
Such that this will traverse, at depth 0, the list at index 0 then within that result, at depth 1, get the list at index 2.
This however, while supported, is not currently implemented with this commit.
A commit will follow to ideally focus exclusively on this behavior.

These changes in design also conveniently resulted in smaller (and hopefully simpler) code.

4 years agoBugfix: trinned string compare functions incorrectly match different strings.
Kevin Day [Wed, 28 Oct 2020 23:14:18 +0000 (18:14 -0500)]
Bugfix: trinned string compare functions incorrectly match different strings.

This is happening due to an accidental treatment of the 'last' positions as exclusive stops instead of as inclusive stops.
When they are setup, they are set as the last valid character before whitespace at the end.
Change the logic to make last1 and last2 inclusive stop positions.

4 years agoBugfix: firewall and fake were not updated to utilize f_fss_comments_t.
Kevin Day [Wed, 28 Oct 2020 03:56:10 +0000 (22:56 -0500)]
Bugfix: firewall and fake were not updated to utilize f_fss_comments_t.

Being out of date with the latest API changes prevents them from compiling.

4 years agoCleanup: use 'values' instead of 'additional' for console.
Kevin Day [Wed, 28 Oct 2020 03:54:48 +0000 (22:54 -0500)]
Cleanup: use 'values' instead of 'additional' for console.

The word 'value' makes more sense here than the word 'additional'.

4 years agoBugfix: FSS Extended List object detection is invalid.
Kevin Day [Wed, 28 Oct 2020 02:50:53 +0000 (21:50 -0500)]
Bugfix: FSS Extended List object detection is invalid.

Not sure how I let this one slip through.
The code is checking for an EOL if found checks to see if that EOL is a graph...which is never the case.

What I meant to do is more likely breaking on EOL or breaking on graph.

4 years agoUpdate: relax parameter checks in f_utf_buffer_decrement() and f_utf_buffer_increment().
Kevin Day [Mon, 26 Oct 2020 04:14:10 +0000 (23:14 -0500)]
Update: relax parameter checks in f_utf_buffer_decrement() and f_utf_buffer_increment().

Return F_data_not instead of an error of F_parameter.

4 years agoUpdate: Better handle comments in FSS and fix problems.
Kevin Day [Mon, 26 Oct 2020 00:18:41 +0000 (19:18 -0500)]
Update: Better handle comments in FSS and fix problems.

Comments may exist inside of an FSS Basic List and FSS Extended List.
Handle the comments.

The FSS Basic List Read and FSS Extended List read both need to print the ignore character around content in pipe mode.
The FSS Extended List needs to specifically not do this for individual nested objects.

Fix problems in the FSS Basic List read content handling when an object is found such that content is empty.
Clean up some of the code, doing some basic code simplification.
The FSS Basic List Read should always return a range and should not exclusively end always at an EOL.

Fix a case where not enough memory is allocated for delimits in FSS Basic List.

Add missing/incomplete parameter checks.

4 years agoUpdate: todo.txt.
Kevin Day [Sun, 25 Oct 2020 00:26:53 +0000 (19:26 -0500)]
Update: todo.txt.

I noticed that I haven't looked at this in a while.
These changes are just at glance, this todo needs to be cleaned out and refreshed more.
But that is for another time.

4 years agoBugfix: Byte Dump start point needs to actually seek the requested start point.
Kevin Day [Sat, 24 Oct 2020 23:57:56 +0000 (18:57 -0500)]
Bugfix: Byte Dump start point needs to actually seek the requested start point.

The start point is correctly being calculated but the initial read is not being performed.
This results in an incorrect display.

4 years agoUpdate: print the open/closing for the FSS Basic List Read and FSS Extended List...
Kevin Day [Sat, 24 Oct 2020 23:45:22 +0000 (18:45 -0500)]
Update: print the open/closing for the FSS Basic List Read and FSS Extended List Read.

When both -o/--object and -c/--content parameters are specified, print the relevant open and close parts.

4 years agoUpdate: remove explicit FSS JSON specification.
Kevin Day [Sat, 24 Oct 2020 23:08:19 +0000 (18:08 -0500)]
Update: remove explicit FSS JSON specification.

The JSON format is specifically different in certain ways.
The Extended List is already as close as can be, so use that instead.

This moves IKI Text from FSS-000D to FSS-000C.

4 years agoCleanup: FSS Program documentation.
Kevin Day [Sat, 24 Oct 2020 23:02:08 +0000 (18:02 -0500)]
Cleanup: FSS Program documentation.

4 years agoFeature: add support for specifying delimits via -D/--delimit to FSS read program...
Kevin Day [Sat, 24 Oct 2020 23:01:47 +0000 (18:01 -0500)]
Feature: add support for specifying delimits via -D/--delimit to FSS read program, specifically completing FSS Extended List Read.

This implements the required logic to properly handle the recursive behavior of FSS-0003 when processing delimits.

4 years agoFeature: add suppot for specifying delimits via -D/--delimit to FSS read programs.
Kevin Day [Sat, 24 Oct 2020 16:55:14 +0000 (11:55 -0500)]
Feature: add suppot for specifying delimits via -D/--delimit to FSS read programs.

The -D/--delimit parameter accepts multiple types of values:
- "all": apply all delimits.
- "none": do not apply delimits.
- 1: apply limits at depth 1 (this can be any supported whole number and not just 1).
- 1-: apply limits at depth 1 or lesser (this can be any supported whole number and not just 1).
- 1+: apply limits at depth 1 or greater (this can be any supported whole number and not just 1).

The appropriate FSS functions need to be updated to not auto-apply delimits.
Instead, these now pass the delimits array back to the caller.

The FSS Extended List Read program delimits support is currently incomplete.
- A considerable amount of changes are needed to adequately support this.
- A follow up commit will address this issue.

4 years agoFeature: provide string "except" functions.
Kevin Day [Sat, 24 Oct 2020 13:36:54 +0000 (08:36 -0500)]
Feature: provide string "except" functions.

The FSS Read functions utilize matching and printing on potentially delimited data.
If the delimits are not applied, then the matches and prints will be incorrect.
To avoid this, it seems that I need some way to not print the delimited data.

Provide "except" functions that accept and "except" array of strings representing locations within some string that are to be ignored.
The printing functions and comparison functions now have "except" equivalents.

The level_1 fl_print project appears outdated and needed updating anyway.
Restructure this project to use the private function practice, hopefully reducing the code size (and ideally binary size).
The "_string" part can be removed from the fl_print function names.
The parameter checks are loosened and now more closely match the approaches used in level_0 f_print.

4 years agoBugfix: incorrect parameter check != should instead be ==.
Kevin Day [Sat, 24 Oct 2020 13:30:51 +0000 (08:30 -0500)]
Bugfix: incorrect parameter check != should instead be ==.

When id == -1, this should be invalid, not the opposite.

4 years agoUpdate: level_0 print functions.
Kevin Day [Fri, 23 Oct 2020 03:05:17 +0000 (22:05 -0500)]
Update: level_0 print functions.

Relax the parameter checks and have them return F_data_not when length is 0 or string is unavailable.
- Based on existing documentation, it seems this behavior was intended at some point anyway.
- The range is capped to buffer.used now.

The f_print_to* functions are rewritten to print as much of the string in as few calls to write() as possible.
- It is likely possible to utilize more complicated logic to further reduce the calls to write() but this is good enough for now.
- Reducing the calls to write(), in theory, should improve performance.

Add checks to f_print_to* functions to do nothing if the id is -1 (aka: an invalid/closed file descriptor).

Add *_except* print functions to print all characters except those specified in the "except" variable as well as not printing NULLs.

4 years agoBugfix: consistently use the data.output file for standard output printing.
Kevin Day [Fri, 23 Oct 2020 01:28:41 +0000 (20:28 -0500)]
Bugfix: consistently use the data.output file for standard output printing.

There are still places that need to be converted from f_type_output and printf() to use this data.output file.
With this change, the data.output will be used and can more readily be updated to point to some file other than standard output.

The fss_*_read programs are not updated with this commit due to having additional changes.
These changes will also be applied to those programs in another commit.

4 years agoBugfix: actually finish implementing delimit changes.
Kevin Day [Wed, 21 Oct 2020 23:30:45 +0000 (18:30 -0500)]
Bugfix: actually finish implementing delimit changes.

It seems that I forgot to check the other programs and update them to work with the new delimit handling behavior in the appropriate FSS processing functions.

4 years agoUpdate: FSS should allow caller to determine when to apply delimits.
Kevin Day [Tue, 20 Oct 2020 04:55:53 +0000 (23:55 -0500)]
Update: FSS should allow caller to determine when to apply delimits.

Instead of automatically applying the delimits, pass the delimits to the caller.
Let the caller decide when or when not to apply the delimits.
Provide functions to help in this regard.

The FSS read programs will need a new parameter to allow for designating to or not to apply delimits.
This is particularly complex when it comes to FSS-0003 (Extended List) due to the nesting.

This change gave me the opportunity to review the FSS read functions, to a certain extent.
Code cleanup changes are included in this commit.

Also add status codes: F_rrange, F_range_not, and F_utf_not.