]> Kevux Git Server - fll/log
fll
4 years agoProgress: featureless make.
Kevin Day [Thu, 20 Aug 2020 02:59:55 +0000 (21:59 -0500)]
Progress: featureless make.

Remove the 'create' section operation, it is effectively redundant with the 'touch' section operation.
There is still potential for having both because 'touch' section operation has additional actions that could be undesired.
For keeping it simple, I have decided to not support both 'create' and 'touch' at the same time.

Implement 'delete' section operatin and update validation.
Implement 'link' section operation and update validation.

Add 'deletes' section operation that performs a "recursive" delete which allows for deleting non-empty directories.

4 years agoBugfix: directory remove is not handling all errors.
Kevin Day [Thu, 20 Aug 2020 02:18:22 +0000 (21:18 -0500)]
Bugfix: directory remove is not handling all errors.

The errno ENOTEMPTY is not being handled and is now added.
The errno EOVERFLOW is not used and is now removed.

Update the relevant documentation.

4 years agoProgress: featureless make.
Kevin Day [Wed, 19 Aug 2020 03:09:20 +0000 (22:09 -0500)]
Progress: featureless make.

Implement the compiler and linker section operations.

Rename and move the fake_build_execute() to fake_execute() to be shared among both the build and the make operations.

4 years agoProgress: implement modes operation with todo for recursion and fix documentation
Kevin Day [Fri, 14 Aug 2020 02:23:34 +0000 (21:23 -0500)]
Progress: implement modes operation with todo for recursion and fix documentation

Recursion will be written at a later date.
Just copy over the mode operation code just like it is done with owners (vs owner) and groups (vs group).

Fix a copy & paste mistake where I forgot to change the wording in the mode documentation.

4 years agoProgress: get the change file mode functions in an acceptable state.
Kevin Day [Fri, 14 Aug 2020 02:11:20 +0000 (21:11 -0500)]
Progress: get the change file mode functions in an acceptable state.

Finish writing the file change mode and related functions.
Due to significant gaps in development and the notable complexity of the ugo+rwxXst modes, this is implemented in what appears to be good enough for now.
There are likely hidden logic flaws or incomplete/missing logic.

This adds an @fixme to more thoroughly review this and possible fix this at a later date.
For now, this allows moving forward to avoid spending too much time on this one area.

4 years agoProgress: continue work on mode changes
Kevin Day [Thu, 13 Aug 2020 03:41:31 +0000 (22:41 -0500)]
Progress: continue work on mode changes

The functions were renamed and re-organized to be more consistent with the project practices.

This changeset focused on getting the number-only changes done within the time allowed.
This adds a new function for converting the f_file_mode into a mode_t for the libc chmod compatibility.

4 years agoProgress: featureless make and related
Kevin Day [Thu, 30 Jul 2020 03:26:14 +0000 (22:26 -0500)]
Progress: featureless make and related

It turns out I need custom functions for processing the mode like the chmod program works.
During the process of writing this I discovered several different ways chmod accepts arguments that I wasn't aware.
As a result I changed my logic repeatedly and this code is in a very much incomplete state.

This is being committed primarily to avoid losing any data (more so than usual).
There will be a lot of clean up when I get back to completing this.

4 years agoUpdate: rename f_file_change_owner() to f_file_change_role().
Kevin Day [Sun, 26 Jul 2020 05:45:15 +0000 (00:45 -0500)]
Update: rename f_file_change_owner() to f_file_change_role().

Change owner implies changing the owner.
This is not strictly true, due to how the chown() and similar POSIX functions works.

Instead, these change owner and/or group.
To avoid confusion with thinking this function exclusively changes owner, use a completely different word.
The chosen word is "role".

4 years agoUpdate: print the canonical path, if available, but fallback to the provided path...
Kevin Day [Fri, 24 Jul 2020 02:26:42 +0000 (21:26 -0500)]
Update: print the canonical path, if available, but fallback to the provided path if not.

The line number is printed on error, so a person can always look at the source settings to determine what the provided path is.
Providing the generated canonical path makes it clear what the generated path is.

4 years agoBugfix: logic errors in fll_path_canonical().
Kevin Day [Fri, 24 Jul 2020 02:26:19 +0000 (21:26 -0500)]
Bugfix: logic errors in fll_path_canonical().

Make sure not to include the '/' when incrementing the size_chunk.
The code starts with '/', so be sure to designate the previous_1 as '/' at the start.

4 years agoCleanup: uppercase the first letter in the messages.
Kevin Day [Fri, 24 Jul 2020 01:51:56 +0000 (20:51 -0500)]
Cleanup: uppercase the first letter in the messages.

4 years agoProgress: finish implementing UTF-8 *_is_digit().
Kevin Day [Fri, 24 Jul 2020 01:36:25 +0000 (20:36 -0500)]
Progress: finish implementing UTF-8 *_is_digit().

4 years agoCleanup: refresh dependencies.
Kevin Day [Thu, 23 Jul 2020 03:30:31 +0000 (22:30 -0500)]
Cleanup: refresh dependencies.

4 years agoUpdate: provide fll_path and fl_environment while providing an alternative to f_path_...
Kevin Day [Thu, 23 Jul 2020 01:57:02 +0000 (20:57 -0500)]
Update: provide fll_path and fl_environment while providing an alternative to f_path_real.

The realpath() function does not work on non-existent paths.
Provide an alternative, fll_path_canonical(), that works on paths without concern for some paths existence.

The f_environment_path* functions need f_path, so move them to a new fl_environment project.

4 years agoCleanup: relocate f_path_explode_* functions to f_environment project.
Kevin Day [Wed, 22 Jul 2020 02:04:31 +0000 (21:04 -0500)]
Cleanup: relocate f_path_explode_* functions to f_environment project.

These path explode functions are in regards to the environment variable PATH.
Having these functions exist in f_environment makes more sense.

4 years agoProgress: featureless make.
Kevin Day [Tue, 21 Jul 2020 04:45:24 +0000 (23:45 -0500)]
Progress: featureless make.

Initial implementation of touch operation.

4 years agoFeature: add f_directory_touch() and f_directory_touch_at().
Kevin Day [Tue, 21 Jul 2020 04:44:12 +0000 (23:44 -0500)]
Feature: add f_directory_touch() and f_directory_touch_at().

This is the same as f_file_touch() and f_file_touch_at(), except that a directory is created if the file does not exist.

4 years agoCleanup: fix typo in name.
Kevin Day [Tue, 21 Jul 2020 04:43:50 +0000 (23:43 -0500)]
Cleanup: fix typo in name.

4 years agoProgress: UTF-8.
Kevin Day [Tue, 21 Jul 2020 03:38:39 +0000 (22:38 -0500)]
Progress: UTF-8.

Add functions: *_is_ascii(), *_is_private(), *_is_unassigned().

Rewrite *_is_valid() functions to use the valid UTF-8 ranges.
Have *_is_valid() also check that the ASCII is valid.

Be more consistent with the use of uint8_t over short.
Use const where possible for width.

4 years agoProgress: wrap up emoji UTF-8.
Kevin Day [Tue, 21 Jul 2020 00:23:29 +0000 (19:23 -0500)]
Progress: wrap up emoji UTF-8.

4 years agoCleanup: featureless make skeleton fakefile tweaks.
Kevin Day [Mon, 20 Jul 2020 05:08:53 +0000 (00:08 -0500)]
Cleanup: featureless make skeleton fakefile tweaks.

Add iki-0002 to the header and add "fail exit" is global.

4 years agoProgress: featureless make.
Kevin Day [Mon, 20 Jul 2020 04:09:44 +0000 (23:09 -0500)]
Progress: featureless make.

The return code 0 should not trigger an error (I forgot to explicitly return from the function).

Implement the environment variable handling.
Now that it is implemented, do not manage the custom environment variables via the "define" mapping.
Instead, let the environment variables be the data storage.
This now updates the environment variables and reads from the environment variables as requested.

The parameter values are supposed to load from the build settings if not defined.
When the build settings are loaded, then allow loading from the build settings.

4 years agoBugfix: IKI read is not identifying cases with leading characters.
Kevin Day [Mon, 20 Jul 2020 04:06:16 +0000 (23:06 -0500)]
Bugfix: IKI read is not identifying cases with leading characters.

An IKI read string that begins with text that is potentially valid, followed by non-IKI name characters, and finally followed by a valid IKI variable name is not detected.

Example:
  Should=define:"value".

The above didn't resolve, but with this fix should now find the full IKI variable: 'define:"value"'.

4 years agoUpdate: add missing documentation for fake fakefile fail setting.
Kevin Day [Sat, 18 Jul 2020 05:08:58 +0000 (00:08 -0500)]
Update: add missing documentation for fake fakefile fail setting.

4 years agoBugfix: invalid read after buffer.
Kevin Day [Sat, 18 Jul 2020 05:08:58 +0000 (00:08 -0500)]
Bugfix: invalid read after buffer.

If arguments.used was not incremented, then the arguments.used represents the correct position.
If it was incremented, then append that value.

The following string triggered the behavior:
  print Return Code is \"parameter:"return""

4 years agoProgress: featureless make.
Kevin Day [Sat, 18 Jul 2020 05:08:58 +0000 (00:08 -0500)]
Progress: featureless make.

Finish implementing the return code processing.

Allow the return failure strategy to be tweaked via the setting 'fail' which can have one of the following:
- exit: exit program on failure.
- warn: do not exit and if in verbose mode, print warning.
- ignore: do nothing.

The reserved parameter variable "return" is populated with the return result value.
For example, you can see the return result by adding the following after a run, shell, or similar operation:
  print Return Code is parameter:"return"

Add some additional warnings when loading settings.

4 years agoFeature: add f_conversion_number_signed_to_string() and f_conversion_number_unsigned_...
Kevin Day [Sat, 18 Jul 2020 05:08:58 +0000 (00:08 -0500)]
Feature: add f_conversion_number_signed_to_string() and f_conversion_number_unsigned_to_string()

These functions handle converting a number to a string representation of that number.
The base units 2 through 16 are supported.

4 years agoProgress: featureless make.
Kevin Day [Sat, 18 Jul 2020 05:08:58 +0000 (00:08 -0500)]
Progress: featureless make.

Implement the "run" and "shell" operations.

Remove unwanted printed newlines.

4 years agoSecurity: memory leaks in execute functions.
Kevin Day [Sat, 18 Jul 2020 05:08:58 +0000 (00:08 -0500)]
Security: memory leaks in execute functions.

Use f_array_length, not f_string_length, for traversing an array.

The variable "i" is being used when it should be "j".

Add numerous missing deallocation calls.

Deallocate immediately instead of after a waitpid().

Avoid redeclaring the "i" variable.

4 years agoProgress: featureless make.
Kevin Day [Sat, 18 Jul 2020 05:08:58 +0000 (00:08 -0500)]
Progress: featureless make.

Wrap up the path change operations.

Cleanup additional print functions that are no longer needed.

4 years agoSecurity: memory leak due to using _new instead of _resize
Kevin Day [Sat, 18 Jul 2020 05:08:58 +0000 (00:08 -0500)]
Security: memory leak due to using _new instead of _resize

The array may already be initialized, so use the resize macro instead of the new macro.

4 years agoUpdate: start counting line at 1.
Kevin Day [Sat, 18 Jul 2020 05:08:58 +0000 (00:08 -0500)]
Update: start counting line at 1.

The fss files may start at 0, but report the starting line at 1 for friendliness with other programs.
I may very well need to update the fss project to consider lines starting at 1 instead of 0 for consistency.

4 years agoBugfix: extended content has wrong size.
Kevin Day [Sat, 18 Jul 2020 05:08:58 +0000 (00:08 -0500)]
Bugfix: extended content has wrong size.

This is happening because the status variable is being overwritten when allocating.
Use a separate status variable for allocation.

4 years agoCleanup: Reduce arguments by accepting the entire fake_data object
Kevin Day [Sat, 18 Jul 2020 05:08:58 +0000 (00:08 -0500)]
Cleanup: Reduce arguments by accepting the entire fake_data object

4 years agoProgress: featureless make.
Kevin Day [Sat, 18 Jul 2020 05:08:58 +0000 (00:08 -0500)]
Progress: featureless make.

I flip-flopped on how I wanted to handle the print functions and need to update/rewrite them again after this commit.
The end of an operation always prints the section, line number, etc.., so I do not need as many custom print functions as I ended up doing in this commit.

This begins processing the stack path.

The pre-process idea just will not work because the argument length is not known until after expansion.
This throws away the idea of having a pre-process validation on the operation rules, unfortunately.

There are some mistakes in the expand function when handling arguments that need to be fixed.

4 years agoBugfix: f_string_range initialize macros need to consider used = 0 case.
Kevin Day [Sat, 18 Jul 2020 05:08:06 +0000 (00:08 -0500)]
Bugfix: f_string_range initialize macros need to consider used = 0 case.

4 years agoProgress: featureless make.
Kevin Day [Fri, 17 Jul 2020 04:05:43 +0000 (23:05 -0500)]
Progress: featureless make.

Begin adding the path stack functionality.

4 years agoUpdate: directory and path changes, other fixes and changes.
Kevin Day [Fri, 17 Jul 2020 03:54:27 +0000 (22:54 -0500)]
Update: directory and path changes, other fixes and changes.

f_directory and f_path overlap.
I believe that f_path is the better choice for getting the current directory/path and related.

Add f_path_change(), f_path_change_at(), f_path_current(), and f_path_real().

Add F_absolute and F_relative status codes.

The define FL_status_string_recurse_length did not include the leading f_ in the derived length.

Minor documentation comment changes.

4 years agoProgress: featureless make.
Kevin Day [Thu, 16 Jul 2020 03:32:29 +0000 (22:32 -0500)]
Progress: featureless make.

Remove the custom color toggler based on verbosity because I changed my mind.

Allow assigning define as a fakefile operation.

Begin stubbing out the operations.
Implement the operations that can easily be implemented.

Documentation updates.

4 years agoProgress: add preprocess/process validation to featureless make fake operation operat...
Kevin Day [Tue, 14 Jul 2020 03:34:58 +0000 (22:34 -0500)]
Progress: add preprocess/process validation to featureless make fake operation operations.

4 years agoUpdate: the fake documentation and specification.
Kevin Day [Tue, 14 Jul 2020 02:39:22 +0000 (21:39 -0500)]
Update: the fake documentation and specification.

4 years agoCleanup: use 'warn' instead of 'warning'.
Kevin Day [Tue, 14 Jul 2020 02:38:53 +0000 (21:38 -0500)]
Cleanup: use 'warn' instead of 'warning'.

4 years agoProgress: featureless make iki documentation.
Kevin Day [Mon, 13 Jul 2020 03:09:34 +0000 (22:09 -0500)]
Progress: featureless make iki documentation.

4 years agoUpdate: specifications in regards to IKI, adding new ones.
Kevin Day [Mon, 13 Jul 2020 03:09:05 +0000 (22:09 -0500)]
Update: specifications in regards to IKI, adding new ones.

4 years agoProgress: featureless make.
Kevin Day [Mon, 13 Jul 2020 02:04:12 +0000 (21:04 -0500)]
Progress: featureless make.

begin validating operations.

begin adding documentation for fakefile.

Fix mistake in documentation files where incomplete/incorrect fss header is specified.

4 years agoFeature: add f_file_type() and f_file_type_at() functions.
Kevin Day [Sun, 12 Jul 2020 23:23:11 +0000 (18:23 -0500)]
Feature: add f_file_type() and f_file_type_at() functions.

4 years agoUpdate: add missing string compare functions.
Kevin Day [Sun, 12 Jul 2020 21:16:38 +0000 (16:16 -0500)]
Update: add missing string compare functions.

These should have been implemented for completeness but were not.

4 years agoProgress: featuerless make.
Kevin Day [Sun, 12 Jul 2020 18:35:09 +0000 (13:35 -0500)]
Progress: featuerless make.

Enable detection of quotes when processing extended content within the lists inside of the fakefile (except for the settings list).

fss-quoted.h must come before fss-named.h.
Be sure to include level_0/type_array.h.

Fix mistake in f_macro_uintX_tss_new() macros where the f_macro_memory_structures_new() has the wrong arguments.

Use fll_fss_snatch_map_apart() instead of fll_fss_snatch_map_mash_apart() when expanding iki variables.
The arguments need to be separated so they can potentially be passed to an exec() equivalent call as individual arguments.
Any operation that expects a single argument can still implode these strings before executing.

4 years agoCleanup: remove extra _.
Kevin Day [Sun, 12 Jul 2020 15:07:33 +0000 (10:07 -0500)]
Cleanup: remove extra _.

4 years agoUpdate: add f_fss_set_quoted.
Kevin Day [Fri, 10 Jul 2020 05:09:25 +0000 (00:09 -0500)]
Update: add f_fss_set_quoted.

An f_fss_set that includes object and content quoted type properties.

4 years agoUpdate: the fss snatch and similar functions should also optionally get the index.
Kevin Day [Fri, 10 Jul 2020 04:45:32 +0000 (23:45 -0500)]
Update: the fss snatch and similar functions should also optionally get the index.

The index will be the index where the match was found.
The objects and contents will have the same index.

4 years agoUpdate: f_fss_quoted to use the f_uint8_t types.
Kevin Day [Fri, 10 Jul 2020 03:44:06 +0000 (22:44 -0500)]
Update: f_fss_quoted to use the f_uint8_t types.

4 years agoCleanup: remove stale test code
Kevin Day [Fri, 10 Jul 2020 03:36:08 +0000 (22:36 -0500)]
Cleanup: remove stale test code

This code was used in trying to identify what ended up being an issue with macros.
Remove the commented out test code and fix the tabbing of the pointer assignments.

4 years agoFeature: provide f_cell, f_cells, and f_cellss types.
Kevin Day [Fri, 10 Jul 2020 03:15:36 +0000 (22:15 -0500)]
Feature: provide f_cell, f_cells, and f_cellss types.

The f_cell types are intended to represent a row and column position, just like with a table cell.
This is important for management arrays matrices and the like.

4 years agoUpdate: add array types for the 8t, 16t, 32t, 64t, and 128t explicit types.
Kevin Day [Fri, 10 Jul 2020 01:50:08 +0000 (20:50 -0500)]
Update: add array types for the 8t, 16t, 32t, 64t, and 128t explicit types.

For both signed and unsigned.

Add missing parameter in resize and adjust macro calls.

4 years agoCleanup: fix accidental use of - in header names
Kevin Day [Fri, 10 Jul 2020 01:16:27 +0000 (20:16 -0500)]
Cleanup: fix accidental use of - in header names

As per practice, they should be underscores.

4 years agoProgress: add support for determining quotes in use, other fixes and cleanups.
Kevin Day [Thu, 9 Jul 2020 05:13:15 +0000 (00:13 -0500)]
Progress: add support for determining quotes in use, other fixes and cleanups.

While not enthusiastic about this, I believe that I need to report the quote used to the caller.
Make this an optional parameter.

This took some significant consideration.
Not all standards utilize quotes and I also do not want to make FSS object and content types more complex than ranges.
Using a separate variable, while a bit more tedious in having to maintain consistency, is an acceptable approach.

FSS-0000 objects, FSS-0001 objects, and FSS-0001 contents all use the same logic for identifying their types.
Reduce code by using the same function.
Because FSS-0001 contents is an array of contents, move delimit processing outside of the private function.

Replace (used + 1 > size) checks with (used == size) checks to increase performance by avoiding arithmetic operations.
Replace (used <= 0) checks with (used == 0) checks to remove unnecessary checks.
Replace (used != 0) checks with (used) checks to avoid extra processor work.

When incrementing and decrementing buffer, do not report used as an error, instead just return F_data_not.

Shorten pre_allocate_size to size_allocate.

Stop setting F_unterminated_group_stop and F_unterminated_group_eos as warnings.
This was not done consistently.

Rename buffer to destination for FSS write functions.

At some point in the past I was wanting to use while loops more exclusively.
After some some significant time and consideration, I have decided to abandon that idea.
Use for loops where they make more sense over while loops.

Continue work in Featureless Make.

4 years agoBugfix: risky macro definition caused counter problems.
Kevin Day [Thu, 9 Jul 2020 03:33:46 +0000 (22:33 -0500)]
Bugfix: risky macro definition caused counter problems.

Macros should be used sparingly, if at all.
When macros are used, they should be used carefully.

In this case, I was defining a variable "i".
The substituted data also included an "i", which caused a non-obvious problem.

Use a more unique counter variable name "_macro__i" to help avoid these problems in the future.

4 years agoRevert: keep fss.h
Kevin Day [Mon, 6 Jul 2020 04:58:10 +0000 (23:58 -0500)]
Revert: keep fss.h

Not having fss.h goes against some of the basic design.
Keep fss.h, but do not provide fss.c.

4 years agoCleanup: remove empty fss.c and fss.h, add missing dependency
Kevin Day [Mon, 6 Jul 2020 04:45:28 +0000 (23:45 -0500)]
Cleanup: remove empty fss.c and fss.h, add missing dependency

Removing this exposed a missing dependency to f_file.

4 years agoProgress: featureless make.
Kevin Day [Mon, 6 Jul 2020 03:49:56 +0000 (22:49 -0500)]
Progress: featureless make.

Update appropriate f_utf_ functions.

Implement "define" and "parameter" IKI variables as per IKI-0002.
These variables will be substituted with settings value if found or removed if not found.
This expansion will happen before performing operation.

rename fake_make_load_setting() to fake_make_load_fakefile() to be more explicit.

Minor cleanups.

4 years agoFeature: add additional string comparison functions.
Kevin Day [Mon, 6 Jul 2020 03:48:43 +0000 (22:48 -0500)]
Feature: add additional string comparison functions.

Comparing a string range to a non-string range can be messy.
Provide new functions to help alleviate this mess.

4 years agoUpdate: Unicode related specification adjustments, also perform minor fixes and cleanups.
Kevin Day [Sun, 5 Jul 2020 23:59:09 +0000 (18:59 -0500)]
Update: Unicode related specification adjustments, also perform minor fixes and cleanups.

The Unicode includes some characters that violate some of the expectations of the FSS and IKI standards.

To that end, provide non-strict modes to allow for the FLL based adjustments of these standards.

There are some vertical line like characters that act as punctuation connectors.
Because they connect vertically instead of horizontally, they violate part of the inteded design of FSS and IKI where everything is on a per-line basis.
These Unicode vertical line like punctuation connectors are not to be considered punctuation connectors for the purposes of FSS and IKI processing.

There are some non-printing characters, such as invisible plus.
This is a punctuation character that is also a zero-width character.
For the purposes of FSS and IKI, these characters must not be considered punctuation characters.

Any other zero-width characters are to be considered zero-width and are not to be used for syntax and similar.
(Combining characters are a different beast to be addessed at a later time.)

Further clarify how certain Unicode characters are to be handled, in general.

Unicode dash characters are now being limited in being interpreted as a dash for the purposes of connecting words.
To this end, only the Unicode hpyhens are the allowed dash-like characters (with the ASCII dash being allowed as well for that matter).

Use const where possible.

Fix some wording in some documentation comments.

4 years agoUpdate: improve IKI syntax rules.
Kevin Day [Sun, 5 Jul 2020 22:33:03 +0000 (17:33 -0500)]
Update: improve IKI syntax rules.

This is a relaxation on the specification where previously only whitespace was required to exist before a valid variable name.

This allows punctuation to exist before the variable name.
Content such as 'A:"b"' may now be specified where A is the variable name (notice the single-quote before A which would previously prevent A from being recognized as a variable name).

4 years agoCleanup: change order of variables.
Kevin Day [Sun, 5 Jul 2020 22:30:19 +0000 (17:30 -0500)]
Cleanup: change order of variables.

4 years agoBugfix: FSS-0000 and FSS-0001 are handling not explicitly follow standard for quote...
Kevin Day [Fri, 3 Jul 2020 03:58:27 +0000 (22:58 -0500)]
Bugfix: FSS-0000 and FSS-0001 are handling not explicitly follow standard for quote delimit requirements.

In the case where a quote is provided that could potentially be a valid quote, that quote should only be considered a quote (including for delimited purposes) if a valid whitespace, end of string, or end of line is reached.
The code needs to check after the closing quote to confirm that it is actually a valid closing quote before acting on it.

Update the FSS specification to make this behavior more explicitly clear.

4 years agoCleanup: add note to todo
Kevin Day [Fri, 3 Jul 2020 03:57:55 +0000 (22:57 -0500)]
Cleanup: add note to todo

4 years agoProgress: UTF-8
Kevin Day [Thu, 2 Jul 2020 03:36:33 +0000 (22:36 -0500)]
Progress: UTF-8

More UTF-8 improvements.

The Punctuation is complete as far as the "Other" punctuation category is concerned.
(Apparently, there are more groups/sets to do!)

Create a new whitespace functions (is_whitespace_other()) to handle non-whitespace whitespace.
So far, this is only a single character: Ogham space mark ( ).
This Ogham space mark is not a whitespace, it is a graph character that is considered a whitespace.

Add some @todos.

Remove invalid whitespace character().

Add is_digit() vs is_numeric().
The traditional alnum() is referring to alphabet and digit.
With UTF-8 there are non-digit numbers, which can be classified as "numeric".
Therefore, the is_digit() functions are added and intended to be used for the traditional behavior.
The is_numeric() are intended to handle any numeric character.
The is_word() tests are for digits and not for numeric.

4 years agoUpdate: UTF-8
Kevin Day [Wed, 1 Jul 2020 05:07:33 +0000 (00:07 -0500)]
Update: UTF-8

Add more punctuation tests (there are still many more to go).

Fix an incomplete if condition in private_f_utf_character_is_whitespace().

Use width and byte_first more.

4 years agoProgress: more UTF-8 work
Kevin Day [Tue, 30 Jun 2020 00:59:12 +0000 (19:59 -0500)]
Progress: more UTF-8 work

Complete more encodings.
From the look of things, most emojis are part of symbols, so no need to check for emojis when already checking for symbols.

Add phonetic.

Progress on emojis will be slow and piecemeal.
Symbols will likely be as bad as emoji.

4 years agoBugfix: IKI Read should not always print content on substitution in whole mode.
Kevin Day [Mon, 29 Jun 2020 04:25:14 +0000 (23:25 -0500)]
Bugfix: IKI Read should not always print content on substitution in whole mode.

When printing in whole mode, it is only printing the content, even when --literal is passed.

What should happen is that when --literal is passed, the entire variable should be printed, even when substitution is used.
The substitution will still occur.

4 years agoBugfix: f_utf_is_whitespace_modifier() is incomplete.
Kevin Day [Mon, 29 Jun 2020 03:00:15 +0000 (22:00 -0500)]
Bugfix: f_utf_is_whitespace_modifier() is incomplete.

Remove "@see iscntrl()" which appears all over the place, incorrectly.
Make sure appropriate "@see" uses exist.

Remove unnecessary "== F_true" tests.

Implement is_punctuation and is_symbol discovery for ASCII characters.

Some function declarations are missing.
Some function implementations are missing.
Remove duplicate declaration of f_utf_character_is_word().

There are no whitespace modifiers in ASCII to my knowledge, and isdigit() is clearly from a copy and paste that was never completed.

Add notes about phonetic whitespaces and improve handling.

4 years agoUpdate: U+102E0 is essentually a comma and not a number.
Kevin Day [Mon, 29 Jun 2020 02:59:36 +0000 (21:59 -0500)]
Update: U+102E0 is essentually a comma and not a number.

4 years agoUpdate: finish implementing IKI Read program.
Kevin Day [Mon, 29 Jun 2020 00:09:25 +0000 (19:09 -0500)]
Update: finish implementing IKI Read program.

The resulting design made --expand redundant, so it is removed.

Substitution is implemented and works independent of the --name parameter.

Added a new macro to the FLL project called f_macro_memory_structure_macro_increment().
Too often do I have to create those structures, so here is a macro to perform the increment.
I started to update the rest of the project and then decided not to spend time on that right now.
This, therefore, primarily focuses on getting the macro working in IKI.

IKI Read is now considered usable, except for the UTF-8 support.
The UTF-8 support is dependent on updating a ton of UTF-8 codes.
This will be done at a later time.

The IKI Read program will eventually need to be reviewed for mistakes and cleanups.

4 years agoCleanup: add todo notes.
Kevin Day [Sat, 27 Jun 2020 23:22:52 +0000 (18:22 -0500)]
Cleanup: add todo notes.

4 years agoBugfix: when --line is used, lengths passed buffer size aren't handled.
Kevin Day [Sat, 27 Jun 2020 23:17:45 +0000 (18:17 -0500)]
Bugfix: when --line is used, lengths passed buffer size aren't handled.

data->line is not a position, do not use it as a position (if (data->line < data->buffer.used) { is doing this).

If the line is exceeds the buffer, return f_data_not and properly handle that return case.
For --total, this means print 0.
For just about everything else, print nothing.

4 years agoBugfix: delimit placeholder not being applied in all cases
Kevin Day [Sat, 27 Jun 2020 23:03:46 +0000 (18:03 -0500)]
Bugfix: delimit placeholder not being applied in all cases

The final exist should apply any delimits.

When determining the remaining width, make sure that the range or buffer has not yet been exceeded.
Not doing this resulted in an exit with an F_parameter error, further resulting in no delimits being applied.

4 years agoProgress: Iki Read.
Kevin Day [Sat, 27 Jun 2020 21:38:26 +0000 (16:38 -0500)]
Progress: Iki Read.

Rename raw mode to whole mode.
I believe the meaning of the word 'whole' is more correct than the word 'raw'.

Implement 'whole' mode.

4 years agoProgress: IKI Read.
Kevin Day [Sat, 27 Jun 2020 04:33:04 +0000 (23:33 -0500)]
Progress: IKI Read.

Implement the basics of raw mode.
Raw mode should instead work in conjunction with the content, literal, and object modes so redesign accordingly.

Add some additional documentation to the help section.

Expand and Substitute are mostly ignored thus far and will be implemented at a later time.
The substitution will be copied from the argv as-is, so plan on using static strings instead of dynamic strings.

There will be function argument cleaning to do once I determine how Expand and Substitute will be implemented.
Until then, the arguments are fine as-is.

4 years agoProgress: IKI Read
Kevin Day [Fri, 26 Jun 2020 05:01:32 +0000 (00:01 -0500)]
Progress: IKI Read

Continue work on implementing iki_read.

4 years agoCleanup: clarify IKI specification.
Kevin Day [Fri, 26 Jun 2020 05:00:00 +0000 (00:00 -0500)]
Cleanup: clarify IKI specification.

Any character, not just printing characters, is supported within the content of IKI.

4 years agoBugfix: read overflows the per character scanning
Kevin Day [Fri, 26 Jun 2020 02:54:12 +0000 (21:54 -0500)]
Bugfix: read overflows the per character scanning

There is a logic mistake where the buffer is incremented too many times before the next loop.
This results in skipping some of the characters in the file and if those skipped characters are part of a vocabulary and content, then it will not be detected.

4 years agoCleanup: reserve IKI-0000 and update documentation
Kevin Day [Fri, 26 Jun 2020 02:51:59 +0000 (21:51 -0500)]
Cleanup: reserve IKI-0000 and update documentation

The standard IKI-0000 is now to be used to represent anything that follows the IKI standard without explicitly descrribing what its vocabulary is.
All other IKI standards (IKI-0001 and greater) are to be used to represent a specific set of vocabulary terms.

4 years agoUpdate: dependencies changes, project level changes, and includes changes.
Kevin Day [Thu, 25 Jun 2020 04:00:41 +0000 (23:00 -0500)]
Update: dependencies changes, project level changes, and includes changes.

Review the current dependencies and fix them.
There are some cases where some dependencies are not necessary, such as f_utf.
There are some cases where some dependencies are missing (or newly added).

f_conversion split into f_conversion and fl_conversion.
Update dependencies accordingly.

For simplicity, include the core level_0 project headers, except in a small number of cases.

Add fss header comment in dependencies files.

Add comments in *_array.h headers for level_0 core projects.

Add missing header in f_string.

Replace _di_level_0_parameter_checking_ with _di_level_1_parameter_checking_ where incorrect.

The fl_fss identify functions should instead be in the fll_fss project.

Make sure the IKI projects are in the bootstrap example script.

Remove the fl_console_parameter_to_number_unsigned() and similar functions.
These are just wrappers to another call and is therefore a waste.
Instead, just call the fl_conversion_string_to_number_unsigned() and similar functions.

4 years agoBugfix: settings files are stored in 'data/settings/' not 'data/build/settings/'.
Kevin Day [Thu, 25 Jun 2020 03:49:39 +0000 (22:49 -0500)]
Bugfix: settings files are stored in 'data/settings/' not 'data/build/settings/'.

4 years agoBugfix: The setting is called 'build_sources_setting' and not 'build_sources_settings'.
Kevin Day [Thu, 25 Jun 2020 03:35:04 +0000 (22:35 -0500)]
Bugfix: The setting is called 'build_sources_setting' and not 'build_sources_settings'.

4 years agoBugfix: completely ignore comments in dependencies file
Kevin Day [Thu, 25 Jun 2020 03:33:31 +0000 (22:33 -0500)]
Bugfix: completely ignore comments in dependencies file

4 years agoProgress: IKI Read
Kevin Day [Wed, 24 Jun 2020 05:19:31 +0000 (00:19 -0500)]
Progress: IKI Read

Begin the process of adding the IKI Read program.

4 years agoCleanup: capitalize IKI
Kevin Day [Wed, 24 Jun 2020 05:19:05 +0000 (00:19 -0500)]
Cleanup: capitalize IKI

4 years agoUpdate: todo notes added
Kevin Day [Wed, 24 Jun 2020 05:18:41 +0000 (00:18 -0500)]
Update: todo notes added

4 years agoUpdate: print formatting, closing file, and returning
Kevin Day [Wed, 24 Jun 2020 05:16:10 +0000 (00:16 -0500)]
Update: print formatting, closing file, and returning

The print formatting for status should be %llu in the event that the entire status (error bits, etc..) is printed.

There were some cases where the file is not being closed.

There were some cases where the program is missing the return statement.

4 years agoUpdate: add f_macro_file_clear() and f_macro_file_reset()
Kevin Day [Wed, 24 Jun 2020 05:15:28 +0000 (00:15 -0500)]
Update: add f_macro_file_clear() and f_macro_file_reset()

4 years agoBugfix: conversion needs to properly handle '0x' and similar
Kevin Day [Wed, 24 Jun 2020 05:14:04 +0000 (00:14 -0500)]
Bugfix: conversion needs to properly handle '0x' and similar

Invalid Parameter happens when there is no following number after the x in '0x'.
This is because the start and stop range were not being checked after applying the offset.

4 years agoProgress: Featureless Make.
Kevin Day [Tue, 23 Jun 2020 03:54:54 +0000 (22:54 -0500)]
Progress: Featureless Make.

Begin working on integrating IKI into Fake.
I took advantage of the current code to do some testing with IKI and left some of the testing code for now.

In addition to IKI, I am thinking that I need to add another project for exploding a string into separate arguments with support for escapable single and double quotes.

4 years agoBugfix: iki didn't handle all cases
Kevin Day [Tue, 23 Jun 2020 02:25:27 +0000 (21:25 -0500)]
Bugfix: iki didn't handle all cases

I forgot to review the delimit cases and when I did I found the implementation a bit sloppy.
I also found some ways to improve the code.

The content slash total should start at 0 and not 1 because it increments it later on.

The fl_ik_read() needs to check the range.

4 years agoFeature: add fl_iki project.
Kevin Day [Mon, 22 Jun 2020 03:01:52 +0000 (22:01 -0500)]
Feature: add fl_iki project.

This provides fl_iki_read, a function for identifying all iki within a given range.
Whereas the f_iki_read function will only identify the first valid iki variable found within the given range.

4 years agoUpdate: add missing dependencies, changes to iki
Kevin Day [Mon, 22 Jun 2020 02:58:21 +0000 (21:58 -0500)]
Update: add missing dependencies, changes to iki

In a previous commit I seem to have forgotten to include the build settings changes.

Fix some minor mistakes in iki.
In particular, I forgot to increment the range->start after identifying where content would begin (which prevented it from working at all).

Add f_iki_variable to store the range for the entire variable.
This will allow for easy removal when substituting (which is one of the design intentions, so I need to cover this use case!).

4 years agoProgress: Featureless Make and IKI.
Kevin Day [Sun, 21 Jun 2020 23:47:25 +0000 (18:47 -0500)]
Progress: Featureless Make and IKI.

Continue work progressing Featureless Make 'make' and the newly implemented 'Iki' standard.

4 years agoUpdate: UTF-8 improvements
Kevin Day [Sun, 21 Jun 2020 23:43:01 +0000 (18:43 -0500)]
Update: UTF-8 improvements

Move some FSS UTF-8 processing code into UTF-8 as it should be more generic.

Add more UTF-8 functions (or at least the stubs).
Begin adding emoji, which is all over the place.

Staring at so many codes, it will be easy to make a mistake.
After all of the UTF-8 functions are believed to be fully implemented an extensive review needs to happen.

4 years agoCleanup: fix comments
Kevin Day [Sun, 21 Jun 2020 23:42:09 +0000 (18:42 -0500)]
Cleanup: fix comments