]> Kevux Git Server - fll/log
fll
15 months agoFeature: Add f_simple_packet_t for holding the packet data.
Kevin Day [Sat, 5 Aug 2023 19:44:08 +0000 (14:44 -0500)]
Feature: Add f_simple_packet_t for holding the packet data.

The f_simple_packet_range_t holds ranges within a string.

This f_simple_packet_t holds the actual values for the packet rather than ranges mapped to some string.

I am omitting unit tests at this time because I am going to do some additional changes involving the allocation and deallocation code project wide.

15 months agoBugfix: The socket id is not the same descriptor for reading.
Kevin Day [Sat, 5 Aug 2023 15:40:14 +0000 (10:40 -0500)]
Bugfix: The socket id is not the same descriptor for reading.

When binding and listening on some socket id, the accept call on that socket creates a new descriptor.
That descriptor is not the same as the original socket id.

Add a new id_data to the socket structure to represent the data transfer file descriptor that is created via the accept() call.
Add a new f_file_close_id() to close the file by the id in case the f_file_t is not available or in use.

15 months agoFeature: Add f_time project, adding functions for safely handling struct timespec.
Kevin Day [Sat, 5 Aug 2023 05:16:18 +0000 (00:16 -0500)]
Feature: Add f_time project, adding functions for safely handling struct timespec.

This adds f_time_spec_millisecond() and f_time_spec_nanosecond() for safely handling overflow and underflow when using standard FLL f_number_unsigned_t numbers.

Unit tests are added.

A comment in the controller prrogram is added to designate that the controller-specific functions should be updated to call these functions.

15 months agoCleanup: Style in this f_print source file.
Kevin Day [Sat, 5 Aug 2023 00:47:28 +0000 (19:47 -0500)]
Cleanup: Style in this f_print source file.

15 months agoUpdate: Wrap the static inline functions private_inline_f_print_to_error in custom...
Kevin Day [Sat, 5 Aug 2023 00:36:26 +0000 (19:36 -0500)]
Update: Wrap the static inline functions private_inline_f_print_to_error in custom disable macros.

As an exception case, wrap the private_inline_f_print_to_error() in _di_private_inline_private_f_print_to_error_ and _di_private_inline_f_print_to_error_ as appropriate.
Using a define condition on all of the possible cases would be difficult to manage.

An explicit define is simpler and easier in this exceptional case.

15 months agoCleanup: Reduce usage of static in functions.
Kevin Day [Sat, 5 Aug 2023 00:33:55 +0000 (19:33 -0500)]
Cleanup: Reduce usage of static in functions.

Remove the static from variables in functions that are not likely to be called multiple times and are not expected to be recursive.

I am backing off the experiment into this optimization for now.

15 months agoCleanup: Add extra parenthesis to prevent warning from clang.
Kevin Day [Sat, 5 Aug 2023 00:33:08 +0000 (19:33 -0500)]
Cleanup: Add extra parenthesis to prevent warning from clang.

15 months agoUpdate: Stand alone Featureless Make build settings.
Kevin Day [Fri, 4 Aug 2023 05:37:43 +0000 (00:37 -0500)]
Update: Stand alone Featureless Make build settings.

15 months agoCleanup: Remove the FSS Embedded List Program.
Kevin Day [Fri, 4 Aug 2023 05:00:15 +0000 (00:00 -0500)]
Cleanup: Remove the FSS Embedded List Program.

This embedded_list in fss_read should be used going forward.
The embedded_list in fss_read is not working yet and is just a copy of extended_list.
I will eventually get around to updating the embedded_list in fss_read to work as intended and expected.

15 months agoUpdate: Set the pipe flag consistely across programs.
Kevin Day [Fri, 4 Aug 2023 04:57:57 +0000 (23:57 -0500)]
Update: Set the pipe flag consistely across programs.

Use the same practice of designating the pipe as a main flag, even if the program isn't using the input pipe.

For the fss_read programs that use the word "pipe" in a main flag are renamed to "pipe" "format".

15 months agoUpdate: Control program to latest design practices, migrating from 0.6.x to 0.7.x...
Kevin Day [Fri, 4 Aug 2023 04:54:38 +0000 (23:54 -0500)]
Update: Control program to latest design practices, migrating from 0.6.x to 0.7.x design.

This gets the control program to compile under the latest design practices.

I did not to an in depth review as this program does not currently do anything.
Once the controller program is updated I will eventually come back to this.

15 months agoUpdate: Move standard console parameters enumeration into a standard enumeration...
Kevin Day [Thu, 3 Aug 2023 02:32:26 +0000 (21:32 -0500)]
Update: Move standard console parameters enumeration into a standard enumeration set and provide appropriate functions.

This should make the commonly used code slightly easier to maintain.

The control project is omitted because I am in the process of migrating it.
The migrated version will contain the appropriate changes from this.

15 months agoCleanup: Byte Dump program defines and comment.
Kevin Day [Tue, 1 Aug 2023 03:37:37 +0000 (22:37 -0500)]
Cleanup: Byte Dump program defines and comment.

15 months agoBugfix: The Byte Dump program prints extra new lines.
Kevin Day [Tue, 1 Aug 2023 01:57:54 +0000 (20:57 -0500)]
Bugfix: The Byte Dump program prints extra new lines.

Migrating from the old way to the new way results in extra new lines because of the first and last new line being printed.
Remove the extra new line being printed but still print in all other cases.

15 months agoBugfix: Byte Dump program 6-space string has only 5 spaces.
Kevin Day [Fri, 28 Jul 2023 03:33:41 +0000 (22:33 -0500)]
Bugfix: Byte Dump program 6-space string has only 5 spaces.

Add missing space.

15 months agoFeature: Add f_select_signal() and update unit tests.
Kevin Day [Fri, 28 Jul 2023 02:59:26 +0000 (21:59 -0500)]
Feature: Add f_select_signal() and update unit tests.

This adds the missing pselect() wrapper, f_select_signal().

15 months agoWorkaround: Clang compiler problems, add _clang_not_a_compile_time_constant_workaroun...
Kevin Day [Thu, 27 Jul 2023 04:03:42 +0000 (23:03 -0500)]
Workaround: Clang compiler problems, add _clang_not_a_compile_time_constant_workaround_ define in Byte Dump program.

CLang fails to handle this well and errors out with: "initializer element is not a compile-time constant".

Provide a custom define _clang_not_a_compile_time_constant_workaround_ to be used as a work-around for the problematic CLang compiler.

15 months agoBugfix: Add missing return statement in Byte Dump function.
Kevin Day [Thu, 27 Jul 2023 04:03:03 +0000 (23:03 -0500)]
Bugfix: Add missing return statement in Byte Dump function.

15 months agoUpdate: Remove unused fl_signal and fl_signal_state_interrupt.
Kevin Day [Thu, 27 Jul 2023 03:44:21 +0000 (22:44 -0500)]
Update: Remove unused fl_signal and fl_signal_state_interrupt.

The fl_signal_state_interrupt() function is not used and is replaced by fll_program_standard_signal_received().

The entire fl_signal can be and is removed.

15 months agoBugfix: Byte Dump program binary mode is printing wrong number of padding.
Kevin Day [Thu, 27 Jul 2023 02:38:14 +0000 (21:38 -0500)]
Bugfix: Byte Dump program binary mode is printing wrong number of padding.

15 months agoCleanup: Set named 0 enumeration in Byte Dump program.
Kevin Day [Thu, 27 Jul 2023 02:32:00 +0000 (21:32 -0500)]
Cleanup: Set named 0 enumeration in Byte Dump program.

15 months agoUpdate: Relocate several static stings into single location for Byte Dump program.
Kevin Day [Thu, 27 Jul 2023 02:31:05 +0000 (21:31 -0500)]
Update: Relocate several static stings into single location for Byte Dump program.

15 months agoBugfix: Fix new lines when printing help.
Kevin Day [Wed, 26 Jul 2023 04:26:15 +0000 (23:26 -0500)]
Bugfix: Fix new lines when printing help.

I noticed a couple of programs are missing the correct new lines when printing the help.

15 months agoUpdate: Minor fixes and consistency changes.
Kevin Day [Wed, 26 Jul 2023 04:18:47 +0000 (23:18 -0500)]
Update: Minor fixes and consistency changes.

Fix some small things that I noticed while I was migrating the byte_dump program.

15 months agoUpdate: Byte Dump program structure, following newer standards.
Kevin Day [Wed, 26 Jul 2023 04:16:52 +0000 (23:16 -0500)]
Update: Byte Dump program structure, following newer standards.

I noticed two things while working on this that need to be addressed for all programs.
1) When using threads, the signal for piping data (such as byte_dump /bin/bash | head) does not trigger.
2) The color code modes are not being processed correctly.

These observed bugs will be fixed in some other commit.

16 months agoUpdate: Finish memory array related changes.
Kevin Day [Sun, 23 Jul 2023 19:26:19 +0000 (14:26 -0500)]
Update: Finish memory array related changes.

There are still the append() and append_all() function to change but I am going to leave that for another time.
This finishes the recent set of Progress commits addressing the memory array related code.

I have observed a notable reduction in binary size but the primary goal here is reduction of duplicate code and simplification of code.

I should eventually be able to re-introduce macros to map these helper functions back to the base array type to reduce binary size by a significant amount.
This should only be done once the API has stabilized more.

16 months agoProgress: Continue memory array related changes.
Kevin Day [Sat, 22 Jul 2023 15:38:57 +0000 (10:38 -0500)]
Progress: Continue memory array related changes.

I noticed that I could also implement f_memory_array_append() and f_memory_array_append_all() methods if I used memcpy() and a multiplication over the type size.

This:
    const f_status_t status = f_memory_array_increase_by(source.used, sizeof(f_socket_t), (void **) &destination->array, &destination->used, &destination->size);
    if (F_status_is_error(status)) return status;

    for (f_number_unsigned_t i = 0; i < source.used; ++i) {
      destination->array[destination->used++] = source.array[i];
    } // for

    return F_none;

Could instead become:

    const f_status_t status = f_memory_array_increase_by(source.used, sizeof(f_socket_t), (void **) &destination->array, &destination->used, &destination->size);
    if (F_status_is_error(status)) return status;

    memcpy(destination->array, source.array, sizeof(f_socket_t) * source.used);

    return F_none;

This could then be logic could then be moved into something like f_memory_array_append_all(), further simplifying the code into:
    return f_memory_array_append(source.array, source.used, sizeof(f_socket_t), (void **) &destination->array, &destination->used, &destination->size);

I need to think of the function structure that I want and so I only decided to comment in this commit.
Such a change is not implemented yet but may be done at some later time.

16 months agoProgress: Continue memory array related changes.
Kevin Day [Sat, 22 Jul 2023 03:46:36 +0000 (22:46 -0500)]
Progress: Continue memory array related changes.

16 months agoProgress: Continue memory array related changes.
Kevin Day [Fri, 21 Jul 2023 03:10:39 +0000 (22:10 -0500)]
Progress: Continue memory array related changes.

This converts a lot of the projects to use the f_memory_array_*() functions.

Break the f_thread private functions into their own files.

16 months agoProgress: Continue memory array related changes, replacing the f_memory_structure...
Kevin Day [Wed, 19 Jul 2023 04:11:32 +0000 (23:11 -0500)]
Progress: Continue memory array related changes, replacing the f_memory_structure entirely.

The f_memory_array set of functions now fully replaces the f_memory_structure functions and related macros.
I think those structure macros are nifty but they are not in use enough anymore and the f_memory_array structure is what I am going forward with.

There is still an enormouse amount of changes to do.

16 months agoProgress: Add memory array allocation functionality and begin to use it where possible.
Kevin Day [Tue, 18 Jul 2023 04:56:33 +0000 (23:56 -0500)]
Progress: Add memory array allocation functionality and begin to use it where possible.

The pattern for handling the standard array structure is now well established.
Provide a memory array functionality for handling the most basic form.

This should reduce repeated code where possible.
It would be interesting if this reduces the size of the resulting binary but with inline optimizations it may be possible that this actually increases the size of the resulting binary.

Update the comments and tests.

There are a lot of files that will need to be updated to use these new functions.
Most of these are in the f_type_array project.

16 months agoUpdate: Add FSS Simple Packet related functionality and remove delimit and comment...
Kevin Day [Mon, 17 Jul 2023 05:24:37 +0000 (00:24 -0500)]
Update: Add FSS Simple Packet related functionality and remove delimit and comment types.

The FSS Simple Packet functionality is added, to provide for processing of the FSS Simple Packet.
The f_fss_simple_packet_ranges_t represents a set of ranges for designating where/how the packet is defined within some string.

The delimit and comment types are just helper type definitions for existing number types.
Simplify the design by getting rid of those, replacing them with the type that they effectively represent.
A lot of code is updated to reflect this change.

16 months agoFeature: Add specification FSS-0010 "Encrypted Simple Packet".
Kevin Day [Sun, 16 Jul 2023 22:52:42 +0000 (17:52 -0500)]
Feature: Add specification FSS-0010 "Encrypted Simple Packet".

This is an encrypted variation of the FSS-000F "Simple Packet" specification.
The third control bit (from the left) represents that the Simple Packet is encrypted.

The requirements for the format of the actual contents of Payload Block is further relaxed due encrypted data needing to be private (for what should be obvious reasons).

16 months agoUpdate: FSS-000f specification, adding reasoning and improve the wording.
Kevin Day [Sun, 16 Jul 2023 22:48:54 +0000 (17:48 -0500)]
Update: FSS-000f specification, adding reasoning and improve the wording.

Add a simple paragraph about the reason why the size bit includes the Control Block and the Size Block in its size representation.

Fix a mistake in the words where the standard has "...of that that...".
The back to back use of "that" is confusing and probably a typo.

16 months agoCleanup: Remove extra space in documentation comment of the standard.
Kevin Day [Sun, 16 Jul 2023 22:43:25 +0000 (17:43 -0500)]
Cleanup: Remove extra space in documentation comment of the standard.

This does not alter the standard itself and so the version date is left unchanged.

16 months agoCleanup: Documentation comments regarding structures.
Kevin Day [Sun, 16 Jul 2023 00:56:12 +0000 (19:56 -0500)]
Cleanup: Documentation comments regarding structures.

Add "Properties: " and related styling to the documentation comments for type definition structures.

Fix capitalization and other formatting issues that I noticed.

I did not focus on any of the programs.
However, some program related files happened to be open and so I updated those out of convenience.
A follow up commit will be needed to address the programs and any other files in which I may have missed in this pass.

16 months agoUpdate: Specifications, adding explicit version date and change license line format.
Kevin Day [Sat, 15 Jul 2023 03:00:11 +0000 (22:00 -0500)]
Update: Specifications, adding explicit version date and change license line format.

Add a version, which contains the date of the last change to each of the specifications.
There will eventually be a specification version number such as "1.2.3".

The license line in the comments at the top of each specification is of this form: "license: ".
Remove the colon so that the comment, if extracted, could be processed as something simple like FSS-0000.

16 months agoUpdate: Specifications, replacing "emphasis" with "italic".
Kevin Day [Sat, 15 Jul 2023 02:50:59 +0000 (21:50 -0500)]
Update: Specifications, replacing "emphasis" with "italic".

16 months agoUpdate: FSS-000F (Simple Packet) Specification.
Kevin Day [Sat, 15 Jul 2023 02:47:06 +0000 (21:47 -0500)]
Update: FSS-000F (Simple Packet) Specification.

I have decided that the endianness bit must be first.
The String/Binary bit is now the second bit.
The remaining 6 Control bits are left undefined.

Do some cleanup up in the text.
Improve the language.
Make sure "italic" is used instead of "emphasis".

16 months agoFeature: Add fll_program_print_error_parameter_integer_less_than() and fll_program_pr...
Kevin Day [Fri, 14 Jul 2023 03:49:22 +0000 (22:49 -0500)]
Feature: Add fll_program_print_error_parameter_integer_less_than() and fll_program_print_error_parameter_integer_more_than().

The less than and more than (greater than) are likely a common enough check to create standard functions for.

16 months agoUpdate: Conversion should return F_number_positive and F_number_negative without...
Kevin Day [Fri, 14 Jul 2023 03:07:57 +0000 (22:07 -0500)]
Update: Conversion should return F_number_positive and F_number_negative without error bit and do some clean up.

Do not treat F_number_positive and F_number_negative as an error.
The "unsigned" concept should be internal to the function and not whether or not the user input has a sign.

If F_number_negative is returned, the value can still be of type f_number_unsigned_t.
This is because the return status designates the effective sign.
The caller can then decide whether or not this is an error.

16 months agoUpdate: Use status_signal instead of status_thread.
Kevin Day [Thu, 13 Jul 2023 03:24:07 +0000 (22:24 -0500)]
Update: Use status_signal instead of status_thread.

The status_thread is being used specifically for the signal thread.
Change the standard practice to have this renamed to status_signal.

This then helps make other status names make more sense.
Rather than have status_thread, status_thread_a, and status_thread_b, instead have status_signal, status_a, and status_b.

16 months agoCleanup: Use present tense in documentation comments regarding F_interrupt.
Kevin Day [Thu, 13 Jul 2023 03:23:32 +0000 (22:23 -0500)]
Cleanup: Use present tense in documentation comments regarding F_interrupt.

16 months agoUpdate: The build disable files and stand alone setting files.
Kevin Day [Tue, 11 Jul 2023 02:58:28 +0000 (21:58 -0500)]
Update: The build disable files and stand alone setting files.

16 months agoUpdate: Add poll enumerations for f_poll_t.
Kevin Day [Tue, 11 Jul 2023 02:54:29 +0000 (21:54 -0500)]
Update: Add poll enumerations for f_poll_t.

This also includes a few enumerations based on GNU poll flags.

16 months agoCleanup: Fix socket documentation comment, where type is the actual socket type.
Kevin Day [Tue, 11 Jul 2023 01:52:44 +0000 (20:52 -0500)]
Cleanup: Fix socket documentation comment, where type is the actual socket type.

The socket.type is not the address type, it is the socket type.

The socket type is something like SOCK_STREAM or f_socket_type_stream_e.

16 months agoUpdate: Network additions and improvements, minor documentation comment clean ups.
Kevin Day [Sun, 9 Jul 2023 16:33:46 +0000 (11:33 -0500)]
Update: Network additions and improvements, minor documentation comment clean ups.

Add f_network_is_ip_address() along with appropriate unit tests.
The unit test are not as thorough as they could be.
I did not fully review the IPv6 standard, which has a rather absurd design.
There are likely things that I do not yet know about that are not supported.
Specifically do not support port number on any IPv6 address without brackets.
(The IPv6 address notation standard is horribly written.)

16 months agoUpdate: Add F_network_version_four, F_network_version_four_not, F_network_version_six...
Kevin Day [Sun, 9 Jul 2023 16:33:16 +0000 (11:33 -0500)]
Update: Add F_network_version_four, F_network_version_four_not, F_network_version_six, and F_network_version_six_not status codes.

The IPv4 and IPv6 situation is common enough to merit explicit status codes.

16 months agoCleanup: Conversion header comments.
Kevin Day [Sun, 9 Jul 2023 16:32:44 +0000 (11:32 -0500)]
Cleanup: Conversion header comments.

16 months agoCleanup: Documentation comments regarding "This alters setting.status" in programs.
Kevin Day [Sun, 9 Jul 2023 16:32:16 +0000 (11:32 -0500)]
Cleanup: Documentation comments regarding "This alters setting.status" in programs.

In such programs, this is comment is no longer accurate.

16 months agoUpdate: Socket bind functions, socket address family enumeration, and rename max_backlog.
Kevin Day [Sat, 8 Jul 2023 03:36:17 +0000 (22:36 -0500)]
Update: Socket bind functions, socket address family enumeration, and rename max_backlog.

Change the f_socket_bind_local() bind function to not call memset() and use the new address structure.
Add f_socket_bind_inet4() and f_socket_bind_inet6() bind functions in a similar way to f_socket_bind_local().

Update the appropriate documentation.
Add the appropriate unit tests.

The name max_backlog for f_socket_listen() is better named backlog_max as per the FLL style practices.

16 months agoUpdate: The f_socket enumerations and comments, the f_socket_t structure, the f_socke...
Kevin Day [Fri, 7 Jul 2023 03:37:08 +0000 (22:37 -0500)]
Update: The f_socket enumerations and comments, the f_socket_t structure, the f_socket build settings, and the f_socket unit tests.

The _di_f_socket_protocol_e_ enumerations are missing the trailing "_e" in the name.

As stated in a previous commit (90d0f47999fd5615f2f3550d688f63d49e590482), update the documentation comments for the f_socket_protocol_family_e enumerations.

Change the ordering of properties in the f_socket_t to have length property after the address property.

Set the default string for the name property to be f_string_static_t_initialize instead of f_string_empty_s.

Disable the braces warning in f_console.
The brace usage here is correct, and so the warning is disabled.

Fix the unit tests as they were not updated after changes in the previous commit (90d0f47999fd5615f2f3550d688f63d49e590482) and in this commit.

16 months agoCleanup: Use the signal check functions in progams.
Kevin Day [Fri, 7 Jul 2023 03:35:31 +0000 (22:35 -0500)]
Cleanup: Use the signal check functions in progams.

There already are signal check programs here.
Use those instead of manually performing the signal check actions.

16 months agoUpdate: Socket improvements regarding structure and styling.
Kevin Day [Thu, 6 Jul 2023 03:38:12 +0000 (22:38 -0500)]
Update: Socket improvements regarding structure and styling.

The f_socket_t structure has "struct sockaddr" as a pointer.
This means mass allocation becomes less practical due to needing to create the actual "struct sockaddr" as needed.
Implement an f_socket_address_t union that accepts the cost of less memory efficiency to improve the usability.

This now allows for mixed types to be stored in the array without needing complicated code to manage different arrays.
The caller will have to be responsible for properly setting the appropriate structure as needed.

Organize the code styling to be more consistent with alphabetical ordering.
I likely have some of the comments to update as well (a follow up commit will be necessary).

16 months agoUpdate: Socket file settings, use enumerations rather than defines, and add family...
Kevin Day [Thu, 6 Jul 2023 01:37:53 +0000 (20:37 -0500)]
Update: Socket file settings, use enumerations rather than defines, and add family enumerations.

This expands the socket family and makes their use more correct and consistent with existing ones.

The socket domain is renamed where possible to be protocol family or address family.

Bring in a lot of the existing family type codes (both protocol family and address family).

16 months agoUpdate: Add missing fakefiles for stand alone builds.
Kevin Day [Thu, 6 Jul 2023 01:37:21 +0000 (20:37 -0500)]
Update: Add missing fakefiles for stand alone builds.

16 months agoUpdate: The defines in cygwin.txt documentation are out of date.
Kevin Day [Thu, 6 Jul 2023 01:31:12 +0000 (20:31 -0500)]
Update: The defines in cygwin.txt documentation are out of date.

16 months agoCleanup: Add "write" to the open modes involving write.
Kevin Day [Tue, 4 Jul 2023 04:10:41 +0000 (23:10 -0500)]
Cleanup: Add "write" to the open modes involving write.

The "append" and "truncate" are not verbose enough.
Prepend "write_" to each of these to make the purpose and intent more obvious.

16 months agoUpdate: The stand alone Featureless Make config.h.
Kevin Day [Tue, 4 Jul 2023 03:57:58 +0000 (22:57 -0500)]
Update: The stand alone Featureless Make config.h.

Re-synchronize this file with all of the latest changes.
The stand alone build should now compile again.

16 months agoCleanup: There is no f_print_except_dynamic_in_safely() anymore.
Kevin Day [Tue, 4 Jul 2023 03:56:53 +0000 (22:56 -0500)]
Cleanup: There is no f_print_except_dynamic_in_safely() anymore.

There are no existing references to f_print_except_dynamic_in_safely() so remove the disable macro.

I don't remember removing f_print_except_dynamic_in_safely() so hopefully it is intentionally removed.

16 months agoUpdate: Add f_sockets_t, add f_socketss_t, and other f_socket changes.
Kevin Day [Tue, 4 Jul 2023 03:06:35 +0000 (22:06 -0500)]
Update: Add f_sockets_t, add f_socketss_t, and other f_socket changes.

The socket.name is better as an f_string_static_t.

Fix the outdated and incorrect documentation comments for f_socket_t.

Add additional macro functions for initializing the f_socket_t.

16 months agoCleanup: Don't bother with != for existence modulus checks.
Kevin Day [Tue, 4 Jul 2023 03:05:03 +0000 (22:05 -0500)]
Cleanup: Don't bother with != for existence modulus checks.

The 'X % 2' and 'X % 3' will be non-zero with they are not divisible by the given unit.
The '!= 0' check is not necessary.

16 months agoBugfix: The boostrap script should not fail if documentation directory is empty.
Kevin Day [Sun, 2 Jul 2023 04:07:02 +0000 (23:07 -0500)]
Bugfix: The boostrap script should not fail if documentation directory is empty.

Instead of failing, print a warning and continue onward.

16 months agoCleanup: Minor syntax mistakes in the documentation comments.
Kevin Day [Sun, 2 Jul 2023 02:40:51 +0000 (21:40 -0500)]
Cleanup: Minor syntax mistakes in the documentation comments.

These were randomly discovered while I was working on the 0.6 branch man pages.

16 months agoBugfix: The build scripts are not handling documentation directory.
Kevin Day [Sun, 2 Jul 2023 02:37:03 +0000 (21:37 -0500)]
Bugfix: The build scripts are not handling documentation directory.

The man pages are not being correctly copied over, if at all.

16 months agoUpdate: Add documentation comments regarding problems observed with gethostbyaddr...
Kevin Day [Fri, 30 Jun 2023 02:50:36 +0000 (21:50 -0500)]
Update: Add documentation comments regarding problems observed with gethostbyaddr() and gethostbyname().

Valgrind reported still reachable memory under a Glibc system when the network is not connected while performing a DNS resolution operation.

There is nothing I can do about this other than recommending to use something other than Glibc such as musl-libc.

16 months agoCleanup: Restructure time related types and add f_date_spec_t.
Kevin Day [Fri, 30 Jun 2023 02:49:14 +0000 (21:49 -0500)]
Cleanup: Restructure time related types and add f_date_spec_t.

Make the time based types more interchangeable by using f_time_t.

Create a new time type called f_date_spec_t that utilizes f_time_spec_t instead of f_time_t for the time property.

16 months agoUpdate: Relax the requirement in the license to be less verbose.
Kevin Day [Thu, 29 Jun 2023 04:38:30 +0000 (23:38 -0500)]
Update: Relax the requirement in the license to be less verbose.

Do not specifically use my name "Kevin Day".
Instead refer to the "original license owner" or some authorized party.
This will make the license more flexible.

16 months agoFeature: Add f_network_from_ip_address() and f_network_from_ip_name().
Kevin Day [Thu, 29 Jun 2023 02:24:14 +0000 (21:24 -0500)]
Feature: Add f_network_from_ip_address() and f_network_from_ip_name().

These are added to provide wrappers to gethostbyaddr() and gethostbyname().

Update the unit tests.

16 months agoBugfix: FSS Identify code accidentally got insert into the UTF8 program.
Kevin Day [Wed, 28 Jun 2023 02:23:13 +0000 (21:23 -0500)]
Bugfix: FSS Identify code accidentally got insert into the UTF8 program.

Probably an accidental mass find and replace somehow made its way into this file.

16 months agoUpdate: Add unit tests for f_files_t and f_filess_t.
Kevin Day [Tue, 27 Jun 2023 02:41:15 +0000 (21:41 -0500)]
Update: Add unit tests for f_files_t and f_filess_t.

I forgot to add the unit tests with the commit fc1d33e993e99e8ff34d82be7fabadf7608d9c6d.

This also addresses a define name design problem where I have two cases that _F_type_array_file_h would be defined.
For now, just rename the _F_type_array_file_h to _F_type_array__file_h for the top-level file.

16 months agoCleanup: Remove unused files.
Kevin Day [Tue, 27 Jun 2023 01:45:44 +0000 (20:45 -0500)]
Cleanup: Remove unused files.

16 months agoFeature: Add f_files_t and f_filess_t.
Kevin Day [Tue, 27 Jun 2023 01:43:18 +0000 (20:43 -0500)]
Feature: Add f_files_t and f_filess_t.

Provide arrays of f_file_t.

16 months agoBugfix: The level and monolithic build settings files are missing the poll source...
Kevin Day [Tue, 27 Jun 2023 01:20:30 +0000 (20:20 -0500)]
Bugfix: The level and monolithic build settings files are missing the poll source and header files.

16 months agoCleanup: Remove 'data_make.' from documentation comments in projects that do not...
Kevin Day [Tue, 27 Jun 2023 00:04:07 +0000 (19:04 -0500)]
Cleanup: Remove 'data_make.' from documentation comments in projects that do not use data_make.

16 months agoBugfix: Incorrect wrapping disable macro names for main functions.
Kevin Day [Tue, 27 Jun 2023 00:01:21 +0000 (19:01 -0500)]
Bugfix: Incorrect wrapping disable macro names for main functions.

The "_data_" should not be part of the macro name when it is not in the function name.

16 months agoUpdate: Reduce NULL parameter requirements in f_file_select() regarding timeout.
Kevin Day [Mon, 26 Jun 2023 23:12:06 +0000 (18:12 -0500)]
Update: Reduce NULL parameter requirements in f_file_select() regarding timeout.

The man pages state that the read, write, and except can all be NULL if timeout is not NULL.
Change the behavior of f_file_select() to allow this.

16 months agoUpdate: The FSS Identify program to the latest practices.
Kevin Day [Sun, 25 Jun 2023 03:15:39 +0000 (22:15 -0500)]
Update: The FSS Identify program to the latest practices.

16 months agoCleanup: Documentation comments, adding missing colon and fixing word usage.
Kevin Day [Sat, 24 Jun 2023 22:36:59 +0000 (17:36 -0500)]
Cleanup: Documentation comments, adding missing colon and fixing word usage.

16 months agoFeature: Add f_file_select() for select().
Kevin Day [Sat, 24 Jun 2023 20:58:06 +0000 (15:58 -0500)]
Feature: Add f_file_select() for select().

This is more of a wrapper around select() (unlike f_file_poll() which is a bit more than a wrapper around poll()).
The arguments would be more difficult than worth it to simplify and normalize in the FLL typedef style.

16 months agoCleanup: Add quotes to testfile LD_LIBRARY_PATH assignment.
Kevin Day [Sat, 24 Jun 2023 20:26:28 +0000 (15:26 -0500)]
Cleanup: Add quotes to testfile LD_LIBRARY_PATH assignment.

Do this for consistency with the pattern of the rest of the testfile.

17 months agoFeature: Add additional network and socket related functions.
Kevin Day [Sat, 24 Jun 2023 03:08:45 +0000 (22:08 -0500)]
Feature: Add additional network and socket related functions.

Add the following:
- f_file_poll() for poll().
- f_socket_read_stream() for recv().
- f_socket_write_stream() for send().

Add f_poll_t, f_polls_t, and f_pollss_t typedefs.
This adds the appropriate array management functions.
To be consistent with type_file.h a new type_array_file.h is created to manage these.

Update the existing f_signal_read() to use the new typdef f_poll_t.

This includes unit tests as appropriate.

17 months agoCleanup: Add environment to all unit test settings files.
Kevin Day [Sat, 24 Jun 2023 02:54:17 +0000 (21:54 -0500)]
Cleanup: Add environment to all unit test settings files.

17 months agoFeature: Add f_network_to_ip_string() and f_network_from_ip_string() functions.
Kevin Day [Thu, 22 Jun 2023 03:26:54 +0000 (22:26 -0500)]
Feature: Add f_network_to_ip_string() and f_network_from_ip_string() functions.

Provide support for inet_ntop() and inet_pton().

String are handling in FLL via f_string_static_t and f_string_dynamic_t.
The functions f_network_to_ip_string() and f_network_from_ip_string() are written to convert to these string types.

This implements a custom f_network_family_ip_t type to pass the digit IP address.
The idea here is to help reduce how much the FLL API is locked into the "libc" or POSIX API.

The structures are allocated using "{ 0 }" to take advantage of the supposed relatively new feature that treats this as an initialize all to NULL.

17 months agoCleanup: Fix documentation comment in f_memory.
Kevin Day [Thu, 22 Jun 2023 03:26:23 +0000 (22:26 -0500)]
Cleanup: Fix documentation comment in f_memory.

17 months agoUpdate: Remove unneeded variable storage and explicitly check for "-1" rather than...
Kevin Day [Thu, 22 Jun 2023 03:25:14 +0000 (22:25 -0500)]
Update: Remove unneeded variable storage and explicitly check for "-1" rather than "< 0".

17 months agoUpdate: Rebuild the "disable" build files.
Kevin Day [Wed, 21 Jun 2023 03:16:41 +0000 (22:16 -0500)]
Update: Rebuild the "disable" build files.

This needs to be done periodically when there are changes to functions.
Following the addition of f_network is a good point in time to do this.

17 months agoFeature: Add f_network level 0 project, starting with host to/from network byte order...
Kevin Day [Wed, 21 Jun 2023 02:58:22 +0000 (21:58 -0500)]
Feature: Add f_network level 0 project, starting with host to/from network byte order functions.

As with most such level 0 projects these are just wrappers to the standard htonl() and similar functions.

This also updates the build settings and other related files.

The f_type_array also has some problems in the level and monolithic build settings fixed.

17 months agoCleanup: Fix incorrect comment in f_limit.
Kevin Day [Wed, 21 Jun 2023 02:07:16 +0000 (21:07 -0500)]
Cleanup: Fix incorrect comment in f_limit.

17 months agoFeature: Add f_file_manipulate() as a wrapper for fcntl().
Kevin Day [Wed, 21 Jun 2023 01:54:31 +0000 (20:54 -0500)]
Feature: Add f_file_manipulate() as a wrapper for fcntl().

This also adds the unit tests.
The unit tests includes additional fixes where several of the wrapped functions are not being setup properly.
The fact that has not triggered an error in the past is concerning.

17 months agoFeature: Add F_again and F_again_not status codes.
Kevin Day [Wed, 21 Jun 2023 01:51:05 +0000 (20:51 -0500)]
Feature: Add F_again and F_again_not status codes.

The fcntl() function uses two forms of privilege failures.
The EPERM is already translated to F_prohibited.
Therefore, add F_again (and F_again_not) so that EAGAIN can be used for that.

17 months agoFeature: Add f_socket_name_host() and f_socket_name_peer().
Kevin Day [Tue, 20 Jun 2023 02:52:12 +0000 (21:52 -0500)]
Feature: Add f_socket_name_host() and f_socket_name_peer().

Add missing network socket related functions for getting the "name" of the local or remote connections.

The local name is retuned as a string.

The remote name is returned on the f_socket_t structure.
I considered doing the work necessary to better generalize this but I decided not to.
I can leave that for once I am better experience in the network programming.

17 months agoCleanup: Rename *_total_parameters_d to *_parameter_total_d.
Kevin Day [Tue, 20 Jun 2023 02:51:00 +0000 (21:51 -0500)]
Cleanup: Rename *_total_parameters_d to *_parameter_total_d.

The naming scheme for the total parameters define is out of synchronization with the practices.
Rename this to be more in line with the current practices.

17 months agoCleanup: Add missing f_thread dependency.
Kevin Day [Tue, 20 Jun 2023 02:50:29 +0000 (21:50 -0500)]
Cleanup: Add missing f_thread dependency.

17 months agoFeature: Add list support for directory recurse processing.
Kevin Day [Mon, 19 Jun 2023 19:42:19 +0000 (14:42 -0500)]
Feature: Add list support for directory recurse processing.

The fl_directory_do() now provides support for the callback to handle the directory list process.

17 months agoCleanup: Documentation comments in fss_read.
Kevin Day [Mon, 19 Jun 2023 03:32:10 +0000 (22:32 -0500)]
Cleanup: Documentation comments in fss_read.

The F_interrupt comments are now more correct.

17 months agoBugfix: Object files are not being added for shared program.
Kevin Day [Mon, 19 Jun 2023 03:30:41 +0000 (22:30 -0500)]
Bugfix: Object files are not being added for shared program.

I overlooked replacing this variable when I refactored the code some time ago.

17 months agoBugfix: Featureless Make is not operating properly due to failure to clear cache.
Kevin Day [Mon, 19 Jun 2023 03:04:00 +0000 (22:04 -0500)]
Bugfix: Featureless Make is not operating properly due to failure to clear cache.

Handle some cases where the cache is not being cleared.

17 months agoFeature: Support error file type "link".
Kevin Day [Sun, 18 Jun 2023 17:00:16 +0000 (12:00 -0500)]
Feature: Support error file type "link".

I may add all the others in the future but for now all I need is is to add "link".

17 months agoCleanup: Remove incorrect documentation content about return type.
Kevin Day [Sun, 18 Jun 2023 16:59:41 +0000 (11:59 -0500)]
Cleanup: Remove incorrect documentation content about return type.

The comment no longer applies as the functions return void.