]> Kevux Git Server - fll/log
fll
4 years agoUpdate: package.sh clean should operate like build
Kevin Day [Thu, 18 Jun 2020 05:24:29 +0000 (00:24 -0500)]
Update: package.sh clean should operate like build

The clean operation should respect the mode parameters in the same way build does.

4 years agoBugfix: invalid memory management in fll_fss_snatch_apart() and fll_fss_snatch_mash_a...
Kevin Day [Tue, 16 Jun 2020 03:08:16 +0000 (22:08 -0500)]
Bugfix: invalid memory management in fll_fss_snatch_apart() and fll_fss_snatch_mash_apart().

Not sure what I was doing, but the logic is just plain wrong.

4 years agoCleanup: use the not status macro instead of the status macro with !
Kevin Day [Mon, 15 Jun 2020 05:00:29 +0000 (00:00 -0500)]
Cleanup: use the not status macro instead of the status macro with !

4 years agoFeature: add fss_named and fss_set structures and re-organize the fss headers
Kevin Day [Mon, 15 Jun 2020 04:58:02 +0000 (23:58 -0500)]
Feature: add fss_named and fss_set structures and re-organize the fss headers

Provide fss_named and fss_set structures (and their respective array structures).
These are useful when using FSS types nested within another set (not to be confused with fss_nest which is for a single type with recursion).

There are just too many things in fss.h.
Break it out into multiple headers that are auto-included.

4 years agoFeature: add macro initializers for static string and string ranges
Kevin Day [Mon, 15 Jun 2020 04:54:58 +0000 (23:54 -0500)]
Feature: add macro initializers for static string and string ranges

Creating defines with present lengths and them using these in static strings, sometimes with ranges, has become more common.
Provide the macros to make this simpler and ever be more usable for creating constant static strings and constant string ranges.

4 years agoUpdate: ignore comment lines when processing package dependencies
Kevin Day [Sat, 13 Jun 2020 23:27:07 +0000 (18:27 -0500)]
Update: ignore comment lines when processing package dependencies

4 years agoBugfix: incorrect invalid parameter check for file write for used to size comparison
Kevin Day [Sat, 13 Jun 2020 21:37:55 +0000 (16:37 -0500)]
Bugfix: incorrect invalid parameter check for file write for used to size comparison

The used may equal size, do not trigger an error.
Change un-reallocated dynamic strings to static strings.

4 years agoProgess: begin working on featureless make 'make' operation
Kevin Day [Sat, 13 Jun 2020 04:47:06 +0000 (23:47 -0500)]
Progess: begin working on featureless make 'make' operation

This adds my initial draft of the header.

4 years agoUpdate: finish updating comment documentation and fixing any observed issues
Kevin Day [Fri, 12 Jun 2020 23:28:52 +0000 (18:28 -0500)]
Update: finish updating comment documentation and fixing any observed issues

This completes my maintenance pass that needed to be done following the significant changes introduced after developing the fake build process.

4 years agoUpdate: only print depedencies list in verbose mode
Kevin Day [Fri, 12 Jun 2020 03:10:12 +0000 (22:10 -0500)]
Update: only print depedencies list in verbose mode

4 years agoCleanup: remove stale fll_directory project
Kevin Day [Fri, 12 Jun 2020 03:06:11 +0000 (22:06 -0500)]
Cleanup: remove stale fll_directory project

This project is no longer used and is empty.

4 years agoProgress: UTF-8 file write should handle case where expanded character is larger...
Kevin Day [Fri, 12 Jun 2020 02:49:46 +0000 (21:49 -0500)]
Progress: UTF-8 file write should handle case where expanded character is larger than write max

When the 4-byte wide UTF-8 character is expanded into potentally 4 1-byte wide UTF-8 characters, the available bytes being expanded need to fit in the output buffer.

4 years agoUpdate: Improve verbiage in package.sh and output current project being built in...
Kevin Day [Fri, 12 Jun 2020 02:46:49 +0000 (21:46 -0500)]
Update: Improve verbiage in package.sh and output current project being built in bootstrap.sh

The package.sh script should instead say "Packaging Project".

The bootstrap.sh script should output that it is building or cleaning a project and display the current project name and version if available.

4 years agoUpdate: add support for ++quiet and ++verbose in the scripts
Kevin Day [Fri, 12 Jun 2020 02:09:00 +0000 (21:09 -0500)]
Update: add support for ++quiet and ++verbose in the scripts

4 years agoProgess: continue work in cleaning up UTF-8 and strings
Kevin Day [Thu, 11 Jun 2020 04:19:16 +0000 (23:19 -0500)]
Progess: continue work in cleaning up UTF-8 and strings

Work relating to UTF-8 file related functions.

I also noticed that the *_delete_simple() and *_destroy_simple() macros are missing for the UTF-8 dynamic strings.

4 years agoProgress: continue work in update UTF-8 functions and string functions
Kevin Day [Thu, 11 Jun 2020 01:24:06 +0000 (20:24 -0500)]
Progress: continue work in update UTF-8 functions and string functions

The UTF-8 functions have become out of date.
This is part of a series of commits to get it up to date and fix problems.

Fix problems with the string functions observed while performing this update.

4 years agoCleanup: Conditionally print color based on verbosity mode in certain messages in...
Kevin Day [Tue, 9 Jun 2020 03:41:59 +0000 (22:41 -0500)]
Cleanup: Conditionally print color based on verbosity mode in certain messages in Fake.

4 years agoUpdate: Move common fl_fss functions to f_fss where possible, also add private-fss...
Kevin Day [Tue, 9 Jun 2020 03:23:06 +0000 (22:23 -0500)]
Update: Move common fl_fss functions to f_fss where possible, also add private-fss.{c,h}.

Some of the fl_fss functions can be moved to f_fss, now that f_utf is considered an exception-case core library.

Some of the fl_fss functions are being used within itself.
Use private functions to do this.

4 years agoUpdate: fl_serialized to f_serialize, renaming f_serialized to f_serialize
Kevin Day [Mon, 8 Jun 2020 23:29:15 +0000 (18:29 -0500)]
Update: fl_serialized to f_serialize, renaming f_serialized to f_serialize

There is nothing forcing the current functions in fl_serialized from being in f_serialize.

Renamed f_serialized to f_serialize to be more consistent with the function names.
To that end, I have renamed the functions like f_unserialize* to f_serialize_un.
I have been unable to come up with a better name that is also reasonably short.

4 years agoUpdate: move fl_socket to f_socket
Kevin Day [Mon, 8 Jun 2020 23:06:30 +0000 (18:06 -0500)]
Update: move fl_socket to f_socket

There is nothing forcing the current functions in fl_socket from being in f_socket.

4 years agoProgress: continue cleaning up comment documentation, fixing discovered problems
Kevin Day [Mon, 8 Jun 2020 21:53:27 +0000 (16:53 -0500)]
Progress: continue cleaning up comment documentation, fixing discovered problems

In particular, the fl_socket (which needs to be reviewed for being moved into f_socket) needed to be documented and had some issues to resolve.

4 years agoBugfix: individual bootstrap example does not handle errors properly
Kevin Day [Mon, 8 Jun 2020 20:18:52 +0000 (15:18 -0500)]
Bugfix: individual bootstrap example does not handle errors properly

Double-Ampersand before a for loop does not work well in bash.
Instead, return result to detect error before attempting to operate for loop.

4 years agoProgress: remove fl_file, more comment documentation cleanup and fixes
Kevin Day [Mon, 8 Jun 2020 16:09:47 +0000 (11:09 -0500)]
Progress: remove fl_file, more comment documentation cleanup and fixes

The fl_file project has been empty for some time, fully remove it.

Continue the work on updating the comment documentation.
Fix any observed problems.

Begin using the "Errors from .." style to simplify comment documentation maintainability.

Update the bootstrap-example.sh script, adding support for building the fake project as an example.

4 years agoCleanup: add .txt extension to documentation
Kevin Day [Mon, 8 Jun 2020 14:09:43 +0000 (09:09 -0500)]
Cleanup: add .txt extension to documentation

This will make it convenient as well as consistent as the other documentation that also uses the .txt extension.

4 years agoUpdate: allow multiple modes to be specified in the package.sh script
Kevin Day [Mon, 8 Jun 2020 04:41:05 +0000 (23:41 -0500)]
Update: allow multiple modes to be specified in the package.sh script

4 years agoUpdate: documentation cleanups, fix observed problems, retun F_data_not without error bit
Kevin Day [Mon, 8 Jun 2020 04:34:49 +0000 (23:34 -0500)]
Update: documentation cleanups, fix observed problems, retun F_data_not without error bit

Organize the return codes.
Fix any probles in the commend documentation that I happened to notice.
This is not complete, there will be follow up commits to address more cleanups.

I noticed that there were some public directory functions incorrectly have 'private_' in their name.

The conversion functions should no longer consider no data an error.
Just report that there was nothing to do.

4 years agoUpdate: documentation, also use fss-0002
Kevin Day [Mon, 8 Jun 2020 02:16:51 +0000 (21:16 -0500)]
Update: documentation, also use fss-0002

Fix the documentation to clarify that the --work paramter is, in fact, more different than --prefix parameter.
Update the tree examples to show both the build directory tree and work directory tree.

Switch to using the fss-0002 format for all of the documentation files and specification files.

4 years agoUpdate: main readme documentation.
Kevin Day [Mon, 8 Jun 2020 01:15:51 +0000 (20:15 -0500)]
Update: main readme documentation.

This documentation is in an FSS format.
The other documentation files will likely be converted to the same FSS format in the near future.

4 years agoBugfix: build directory should be created if needed and not pre-required in all cases
Kevin Day [Sun, 7 Jun 2020 22:04:09 +0000 (17:04 -0500)]
Bugfix: build directory should be created if needed and not pre-required in all cases

Don't optionally required the build directory.
Always create it when needed, so do not require it.

4 years agoUpdate: implement --process parameter
Kevin Day [Sun, 7 Jun 2020 21:40:24 +0000 (16:40 -0500)]
Update: implement --process parameter

Looks like I forgot to implement this.
The --process parameter is a process name that is prepended to stage file names for the purpose of granting the caller additional flexibility.

4 years agoUpdate: add Featureless Make documentation and specifications
Kevin Day [Sun, 7 Jun 2020 21:11:50 +0000 (16:11 -0500)]
Update: add Featureless Make documentation and specifications

This is a good starting point for the documentation.
I may or may not add more at a later time.

4 years agoCleanup: fix ordering of path_language
Kevin Day [Sun, 7 Jun 2020 21:11:28 +0000 (16:11 -0500)]
Cleanup: fix ordering of path_language

4 years agoCleanup: remove project_level setting
Kevin Day [Sun, 7 Jun 2020 19:59:08 +0000 (14:59 -0500)]
Cleanup: remove project_level setting

Remove this stale code.
This was mostly removed already in previous commits from the settings.
This was replaced by the path_headers setting.

4 years agoBugfix: mispelling in search_exclusive
Kevin Day [Sun, 7 Jun 2020 19:41:14 +0000 (14:41 -0500)]
Bugfix: mispelling in search_exclusive

4 years agoUpdate: bootstrap dependency functionality, fix missing dependencies, also ensure...
Kevin Day [Sun, 7 Jun 2020 19:05:29 +0000 (14:05 -0500)]
Update: bootstrap dependency functionality, fix missing dependencies, also ensure level and monolithic

It seems I wrote a dependency generator to make my life easier and then I went and forgot about it.
Update this to work with the more recent changes to the build settings structure.

While I am at it, generate all of the dependencies and save the generated dependencies.

This exposed a typoe in the dependencies file, now fixed.

Might as well make sure the level and monolithic dependencies are generated as well.

4 years agoUpdate: add documentation note about the bootstrap-example.sh script
Kevin Day [Sun, 7 Jun 2020 15:31:36 +0000 (10:31 -0500)]
Update: add documentation note about the bootstrap-example.sh script

4 years agoCleanup: rename generate.sh to bootstrap.sh
Kevin Day [Sun, 7 Jun 2020 15:27:27 +0000 (10:27 -0500)]
Cleanup: rename generate.sh to bootstrap.sh

The generate.sh is a bootstrap for each individual project.
Officially calling it the bootstrap just makes sense.

4 years agoCleanup: rename bootstrap.sh to boostrap-example.sh
Kevin Day [Sun, 7 Jun 2020 15:27:02 +0000 (10:27 -0500)]
Cleanup: rename bootstrap.sh to boostrap-example.sh

4 years agoCleanup: rename generate to bootstrap
Kevin Day [Sun, 7 Jun 2020 15:24:48 +0000 (10:24 -0500)]
Cleanup: rename generate to bootstrap

The generate script is now officially a bootstrap script.

4 years agoUpdate: add new documentation, improve existing documentation
Kevin Day [Sun, 7 Jun 2020 15:19:36 +0000 (10:19 -0500)]
Update: add new documentation, improve existing documentation

4 years agoCleanup: rename work_directory to work
Kevin Day [Sun, 7 Jun 2020 14:35:57 +0000 (09:35 -0500)]
Cleanup: rename work_directory to work

This makes the parameter consistent with the generate.sh script.

4 years agoUpdate: rename readme to readme.bootstrap
Kevin Day [Sun, 7 Jun 2020 14:35:23 +0000 (09:35 -0500)]
Update: rename readme to readme.bootstrap

4 years agoCleanup: ordering of function names and add spaces before function instantiation...
Kevin Day [Sun, 7 Jun 2020 14:11:55 +0000 (09:11 -0500)]
Cleanup: ordering of function names and add spaces before function instantiation open brace

4 years agoUpdate: support copying documents, licenses, and specifications per project and do...
Kevin Day [Sun, 7 Jun 2020 14:07:06 +0000 (09:07 -0500)]
Update: support copying documents, licenses, and specifications per project and do some cleanups

Individual projects, specifically programs (level_3), may have custom documentation, licenses, and specifications.
(With custom licenses being least likely because this project in its entirety is under lgpl.)

Add support to all projects just for good practice.

Cleanup ordering of function names and add spaces before function instantiation open brace.

4 years agoUpdate: Featureless Make needs to handle the -d/--define parameter
Kevin Day [Sun, 7 Jun 2020 03:30:17 +0000 (22:30 -0500)]
Update: Featureless Make needs to handle the -d/--define parameter

Rename the parameter from defines to define, because it acts on only a single parameter at a time.
The -d must be specified multiple times to get multiple defines.

When -d/--define is specified, the defines provided by the settings file get ignored.

Continue to pass the defines from the console parameters to the process scripts.

4 years agoUpdate: add missing handling of defines_all, defines_shared, and defines_static
Kevin Day [Sun, 7 Jun 2020 02:45:35 +0000 (21:45 -0500)]
Update: add missing handling of defines_all, defines_shared, and defines_static

4 years agoBugfix: shared library link names are incorrect
Kevin Day [Sun, 7 Jun 2020 02:32:27 +0000 (21:32 -0500)]
Bugfix: shared library link names are incorrect

The standard link names are:
  libfake.so -> libfake.so.0
  libfake.so.0 -> libfake.so.0.5.0

Instead, I had:
  libfake.so.0 -> libfake.so.0.5
  libfake.so.0.5 -> libfake.so.0.5.0

While I am at it, make these links reflect the version_target setting.
If target is major, then standard link names above are followed.
If target is minor, then:
  libfake.so -> libfake.so.0.5
  libfake.so.0.5 -> libfake.so.0.5.0
If target is micro, then:
  libfake.so -> libfake.so.0.5.0

4 years agoCleanup: add build_language setting
Kevin Day [Sun, 7 Jun 2020 01:58:27 +0000 (20:58 -0500)]
Cleanup: add build_language setting

This defaults to C, so there is no issue if it is not defined.
Still, it should be provided as the default in the FLL project.

4 years agoCleanup: remove unnecessary S from function names
Kevin Day [Sun, 7 Jun 2020 01:28:16 +0000 (20:28 -0500)]
Cleanup: remove unnecessary S from function names

The building only builds a single program and a single library.
The building of objects builds multiple objects, so the S remains for that function.

4 years agoFeature: add version_target setting to Featureless Make and FLL generate script
Kevin Day [Sun, 7 Jun 2020 01:21:26 +0000 (20:21 -0500)]
Feature: add version_target setting to Featureless Make and FLL generate script

I noticed that I had a different linker version string between Featureless Make and the FLL generate script.
After reviewing and fixing, I decided to make this a customizable option now called version_target.
The default, traditional behavior, is to use only the major version.

A major version target would link like "-Wl,-soname,libfake.so.0".
A minor version target would link like "-Wl,-soname,libfake.so.0.5".
A micro version target would link like "-Wl,-soname,libfake.so.0.5.0".

4 years agoUpdate: change settings structure to follow the Featureless Make structure
Kevin Day [Sun, 7 Jun 2020 00:41:06 +0000 (19:41 -0500)]
Update: change settings structure to follow the Featureless Make structure

The existing design is based on the bootstrap scripts.
The bootstrap script is now updated to the new design so these scripts can now be updated to the new design.

4 years agoUpdate: readme
Kevin Day [Sun, 7 Jun 2020 00:40:36 +0000 (19:40 -0500)]
Update: readme

4 years agoUpdate: redesign to follow the Featureless Make design
Kevin Day [Sun, 7 Jun 2020 00:38:06 +0000 (19:38 -0500)]
Update: redesign to follow the Featureless Make design

Use the setting names specified by Featureless Make, which are a bit more generalized than the current generate.sh design.

This does not fully follow all of the Featureless Make functions.
Only what is necessary (or already implemented) to bootstrap the entire FLL project is done.

4 years agoCleanup: remove redundant adding of library_flags setting
Kevin Day [Sun, 7 Jun 2020 00:35:27 +0000 (19:35 -0500)]
Cleanup: remove redundant adding of library_flags setting

This should have been removed when I moved the code into fake_build_arguments_standard_add().

4 years agoUpdate: implement the bootstrap.sh
Kevin Day [Sun, 7 Jun 2020 00:32:18 +0000 (19:32 -0500)]
Update: implement the bootstrap.sh

4 years agoBugfix: incorrect is_library boolean during build process
Kevin Day [Sun, 7 Jun 2020 00:31:14 +0000 (19:31 -0500)]
Bugfix: incorrect is_library boolean during build process

These are set incorrectly, resulting in using program_flags for library and library_flags for program.

4 years agoBugfix: don't produce extra errors on certain build errors
Kevin Day [Sun, 7 Jun 2020 00:01:26 +0000 (19:01 -0500)]
Bugfix: don't produce extra errors on certain build errors

4 years agoCleanup: switch to simpler color context strategy
Kevin Day [Sat, 6 Jun 2020 22:10:07 +0000 (17:10 -0500)]
Cleanup: switch to simpler color context strategy

Use a simpler color context strategy.
This helps avoid the need to alter the recursive function output.

4 years agoCleanup: typo in directory
Kevin Day [Sat, 6 Jun 2020 21:58:51 +0000 (16:58 -0500)]
Cleanup: typo in directory

4 years agoBugfix: do not consider a non-existent build directory an error during clean operation
Kevin Day [Sat, 6 Jun 2020 21:46:26 +0000 (16:46 -0500)]
Bugfix: do not consider a non-existent build directory an error during clean operation

The clean only cares about deleting all of the files in the build directory.
If that directory does not exist, then there is no issue.
When in verbose mode, print a message about the directory not existing.

4 years agoBugfix: filename without extension not terminated and compiled objects need subdirect...
Kevin Day [Sat, 6 Jun 2020 19:46:02 +0000 (14:46 -0500)]
Bugfix: filename without extension not terminated and compiled objects need subdirectories

When generating the filename without the file extension, terminate the string.

When library sources are specified using subdirectory paths, object files should have the same subdirectory structure.
This only applies to object files because they are compiled using the same naming structure as the sources.
The rest of the compiled code is compiled into a new structure, which is generally a single library or program.

4 years agoBugfix: invalid memory access and only process if not empty
Kevin Day [Sat, 6 Jun 2020 16:43:39 +0000 (11:43 -0500)]
Bugfix: invalid memory access and only process if not empty

If the path_headers is not defined, an invalid memory read was triggered.
This happens because I was only assigning path_headers variable when path_heades setting was defined but I was still attempting to copy that path regardless.

Make sure to not bother attempting any copy or compile build operations if that setting has not properties (such as build_sources_program being empty).

4 years agoCleanup: remove no longer used scripts
Kevin Day [Sat, 6 Jun 2020 16:42:53 +0000 (11:42 -0500)]
Cleanup: remove no longer used scripts

4 years agoProgress: featureless make
Kevin Day [Fri, 5 Jun 2020 05:27:26 +0000 (00:27 -0500)]
Progress: featureless make

Finish writing static compiling.

Simplify some of the code, moving repeated code into functions.

Get rid of process build path, it is no longer to be used.

4 years agoCleanup: remove unnecessary -lfake in flags_program
Kevin Day [Fri, 5 Jun 2020 00:31:14 +0000 (19:31 -0500)]
Cleanup: remove unnecessary -lfake in flags_program

The recent fixes made this unnecessary.

4 years agoProgress: featureless make
Kevin Day [Fri, 5 Jun 2020 00:21:30 +0000 (19:21 -0500)]
Progress: featureless make

This gets the shared library and shared program compiling working.
The fake program can compile the fake binary and that fake binary can do the same.
This is great progress.

4 years agoBugfix: do not embed libraries into program
Kevin Day [Fri, 5 Jun 2020 00:18:50 +0000 (19:18 -0500)]
Bugfix: do not embed libraries into program

The generate.sh script design seems to be adding the library sources into the program.
This effectively makes the linked library.
This is a bad compiling and linking design and a waste of space.

Instead, add a link option to the project name so that the library gets linked to by the program.

4 years agoProgress: Featureless Make
Kevin Day [Thu, 4 Jun 2020 03:33:15 +0000 (22:33 -0500)]
Progress: Featureless Make

Remove no-longer used or planned to be used defines.

Switch to fl_string_dynamic_terminate_after().

Add color context to certain verbose messages.
(The recursive remove needs to replaced due to nftw() being too limited.)

Complete the compile shared library function.

4 years agoBugfix: correctly calculate terminating null for fl_string_dynamic_terminate_after()
Kevin Day [Thu, 4 Jun 2020 03:32:20 +0000 (22:32 -0500)]
Bugfix: correctly calculate terminating null for fl_string_dynamic_terminate_after()

4 years agoBugfix: memory leak in f_execute_*_environment() functions, handle no-slash case...
Kevin Day [Wed, 3 Jun 2020 05:01:16 +0000 (00:01 -0500)]
Bugfix: memory leak in f_execute_*_environment() functions, handle no-slash case, fix memcpy()

I failed to clear memory on some return on error cases.

Using "sizeof(f_string_length) *" in memcpy is nonsense here, its a char, which is size 1!

When there is no '/' in the path, strrchr() return 0.
In this situation, just consider the entire path the file name.

4 years agoUpdate: add f_path_extension_separator
Kevin Day [Wed, 3 Jun 2020 05:00:54 +0000 (00:00 -0500)]
Update: add f_path_extension_separator

4 years agoProgress: featureless make
Kevin Day [Tue, 2 Jun 2020 04:43:08 +0000 (23:43 -0500)]
Progress: featureless make

Handle the script sources differently than the bash sources.
The bash sources, a scrript, is for generated/processed (and the how is yet to be defined).
The more general scripts are meant for already prepared scripts not modified by this program (unless modified by some pre-process or post-process script).
The more general scripts does not care what the file is, it just gets copied over into the build scripts program path.

Add build_script yes/no setting to conditional include the general scripts when building.

Slightly rework the logic when processing the build operation functions.
Add the planned functions as stubs, to be completed in a future commit.

4 years agoProgress: featureless make
Kevin Day [Mon, 1 Jun 2020 04:02:50 +0000 (23:02 -0500)]
Progress: featureless make

Add stage files where stages are recorded to allow very basic build resuming.

Prepare the code for doing the build.

4 years agoUpdate: f_file, add f_file_touch() and f_file_touch_at(), F_search error
Kevin Day [Mon, 1 Jun 2020 04:00:59 +0000 (23:00 -0500)]
Update: f_file, add f_file_touch() and f_file_touch_at(), F_search error

Minor updates to f_file project.

Add the f_file_touch() and f_file_touch_at() functions.

Add the status code F_search (used by f_file_touch() and f_file_touch_at()).

4 years agoProgress: featureless make
Kevin Day [Sun, 31 May 2020 04:41:33 +0000 (23:41 -0500)]
Progress: featureless make

Fix a mistake in the naming conflict for with the language enum and language defines.

Implement a more generic build copy function.
Improve file copying support.
Add verbose copy messages.
Copy the C and C++ header files.
Rename fake_build_settings to fake_build_setting to properly follow this projects naming convention.
Add missing dependency for fl_directory.

Language-specific support setting "build_language" is implemented and provides a way to specific which language to use.
This will default to C.

4 years agoUpdate: ensure string parameter tests exist and add f_file_name_base() and f_file_nam...
Kevin Day [Sun, 31 May 2020 04:37:30 +0000 (23:37 -0500)]
Update: ensure string parameter tests exist and add f_file_name_base() and f_file_name_directory() functions

I seem to have forgotten that f_string is a char * and should be checked to not be NULL.
I think I removed these during a cleanup process, so add them back.

The basename() and dirname() functions need to be suppoted.
They require extra effort because as per the POSIX standard, parameters are modified.
This is undesirable so protect the parameters when calling.

4 years agoCleanup: make f_string_eol and f_string_placeholder a string instead of a char
Kevin Day [Sat, 30 May 2020 22:42:26 +0000 (17:42 -0500)]
Cleanup: make f_string_eol and f_string_placeholder a string instead of a char

In the back of my mind I keep reading f_string_eol as a string.
It is not.
Instead, it is a character.

To prevent this potential confusion, just make it a string and require the use of f_string_eol[0].
Make the same kind of change to f_string_placeholder as well.

4 years agoProgress: featureless make
Kevin Day [Sat, 30 May 2020 22:36:40 +0000 (17:36 -0500)]
Progress: featureless make

Move the print functions to their own private files (private-print.c and private-print.h).

Have the build operation create the build directory skeleton.
Have the build operation copy the settings files over, if specified in the build settings.

Update the code to be in sync with recent FLL changes.

4 years agoUpdate: pipe and fifo, replace f_directory_mode with f_mode, f_file_copy()
Kevin Day [Sat, 30 May 2020 22:33:09 +0000 (17:33 -0500)]
Update: pipe and fifo, replace f_directory_mode with f_mode, f_file_copy()

Stick to only using fifo terminology in file types.

Replace f_directory_mode with f_mode, a global type to be shared between f_file, f_directory, and anything else.

Update f_file_copy() to use f_mode instead of mode_t.
This allows the caller to just send the mode.
The copy function already stats the file and processes it per file type, so it can make the decision on which mode to use.
This alleviates the need for the caller to also perform a file type stat check.

4 years agoUpdate: todo documentation, directory copy and clone functions, update comment docume...
Kevin Day [Sat, 30 May 2020 01:00:41 +0000 (20:00 -0500)]
Update: todo documentation, directory copy and clone functions, update comment documentation

Update the todo.txt documentation.

There needs to be directory copy and clone functions for copy the contents of a source directory and not the directory itself.
To that end, add new *_contents() copy functions.

The comment documentation for clone was never updated and is incorrect.

4 years agoProgress: add more directory and file related functions, other changes
Kevin Day [Fri, 29 May 2020 00:23:59 +0000 (19:23 -0500)]
Progress: add more directory and file related functions, other changes

This was started with the intention of providing all of the *_at() functions.
However, the POSIX spec seems to fall short in many areas making this more difficult than this should be.
I partially rolled back some of the planned changes and this changeset is the result.

I have observed that the function return documentation needs to be updated, but this will be done at a later time.
There will need to be some intensive testing later on but for now I am committing and moving forward.

4 years agoProgress: featureless make
Kevin Day [Wed, 27 May 2020 04:52:02 +0000 (23:52 -0500)]
Progress: featureless make

Get umask at start (done at start to limit the non-atomic nature of the poorly defined POSIX umask()).

Begin setting up for directory copy operations.

f_file_create() no longer accepts de-reference parameter.

4 years agoUpdate: file and directory improvements, finish writing directory copy
Kevin Day [Wed, 27 May 2020 04:45:31 +0000 (23:45 -0500)]
Update: file and directory improvements, finish writing directory copy

Organize directory header structure, adding directory_type.h.
Add additional directory structures.
Directory copy needs to report what fails, so provide a structure for reporting each failure.
(There needs to be a verbose function for printing success/failure.)

Remove de-reference from numerous file functions.
POSIX denies certain operations of symlinks.
During copy operations, do not apply mode to symlink as it would now apply mode changes to the de-referenced link.
Allow block size to use default block size if set to 0 (convenience).
Add missing return statement to file copy (without it socket file types would incorrectly report F_unsupported).
Add link read functions so that symlink information may be obtained so that it can then be copied.
Add comments about poorly written umask() as per POSIX standard (at least according to manpages).

Other minor fixes and cleanups.

4 years agoFeature: add push and pop directory functions
Kevin Day [Mon, 25 May 2020 04:02:22 +0000 (23:02 -0500)]
Feature: add push and pop directory functions

These functions should help make appending interactive or user-data for directory path building easier.

4 years agoCleanup: remove unused header
Kevin Day [Mon, 25 May 2020 04:01:53 +0000 (23:01 -0500)]
Cleanup: remove unused header

4 years agoUpdate: minor improvements, finish f_file_copy(), add fifo file type
Kevin Day [Sun, 24 May 2020 03:54:53 +0000 (22:54 -0500)]
Update: minor improvements, finish f_file_copy(), add fifo file type

Finish implementing the f_file_copy(), adding support for all file types (except unknown).

The documentation for block, character, and FIFO is unclear to me at this time and my attempts to copy using mknod(2) is an educated guess.
Attempt to prevent file type from being passed via the mode_t when doing a copy (currently untested).

Add the appropriate file create functions to implement the copy operations.
Have the copy file copy only the directory itself and not the contents (to copy contents, the fl_directory_copy() function should be used).

The added fifo type is pretty much the same as pipe.
Mixing fifo with pipe terminology ended up being confusing so I opted to create redundant FIFO types to simplify the readability.

Use the word "regular" for a regular file instead of "file".
Using "regular" is a less confusing than using "file" (i.e. Regular File Type vs File File Type).

4 years agoCleanup: Replace F_file_open_not with F_file_closed, add additional status codes...
Kevin Day [Sat, 23 May 2020 20:46:19 +0000 (15:46 -0500)]
Cleanup: Replace F_file_open_not with F_file_closed, add additional status codes for consistencies

Socket was not fully converted into basic status codes (not having connect).
I can see future work in sockets whee I may actually add connect codes back, but I won't know until I spend dedicate time on it.

Add additional status codes that should probably exist for consistency purposes.

With F_file_open_not removed, split behavior into two checks:
- F_file for file descriptor errors.
- F_file_closed for file not open errors.

4 years agoCleanup: update all status codes in line with recent refactor and fix issues
Kevin Day [Sat, 23 May 2020 20:13:59 +0000 (15:13 -0500)]
Cleanup: update all status codes in line with recent refactor and fix issues

This primarily puts all of the status code handling in alphabetic order.
The length sizes are updated accordingly.
Be consistent with S at the end of things, whereas S is not the traditional grammatical use but instead implies a set of.
Use the base F_* disable defines instead of using new ones for each level when they are specific to the F_* status codes.
Add additional comment documentation.

Any issues observed resulting from the refactor were also fixed during this change.

4 years agoRefactor: use capital F, FL, and FLL for status codes to avoid potential conflicts
Kevin Day [Sat, 23 May 2020 15:36:05 +0000 (10:36 -0500)]
Refactor: use capital F, FL, and FLL for status codes to avoid potential conflicts

By only using the first part, the annoyance of all uppercase can be avoided.
This then allows shortening the names and removing words like "_error".
Also restructure where the "_not" are placed (placing them immediately after what they apply to).

This will be followed up by a restructuring commit.

4 years agoUpdate: get the level_3 / programs working after major file / directory changes
Kevin Day [Sat, 23 May 2020 05:35:03 +0000 (00:35 -0500)]
Update: get the level_3 / programs working after major file / directory changes

This required making some fixes in the files related code.
This puts the UTF-8 file (utf_file) project notably behind an additional work is necessary to get that working correctly as well as having it be consistent with f_file.

I've decided that when written pointer is 0, then the caller is requesting to not get back the written size.
I am very likely going to do similar behavior with null pointers in other uses, which will help further simplify the design.

Other minor changes.
Of particular note is moving flags into the f_file structure.
This was effectively how the pre-file redesign worked, but it uses flags now instead of the "r", "rw", "a", etc.. string modes used by fopen.
Make sure an append flag is available.

4 years agoProgress: continue redesign of file and directoy structure
Kevin Day [Fri, 22 May 2020 02:42:18 +0000 (21:42 -0500)]
Progress: continue redesign of file and directoy structure

This gets the code in a state where I can focus on updating all of the programs (level_3 files).
The UTF-8 related types have @todo and @fixme as I intend to come back later and finish them.

4 years agoProgress: major redesigns with file and directory handling, this changeset is incomplete
Kevin Day [Thu, 21 May 2020 05:08:09 +0000 (00:08 -0500)]
Progress: major redesigns with file and directory handling, this changeset is incomplete

In the process of writing the directory copy, I realized I needed to improve the file and directory management.
This triggered me to rethink how I was handling files and directories to some extend.

If memory serves me correctly, the POSIX 2008 was either too new or non-existent when I first wrote some of this.
Updating to use the newer POSIX functionality and changes seems worth this major change.

Add additional file functionality.
Lots of re-organization and redesign.

I still haven't finished this and would rather commit now, with incomplete code randomly throughout, than risk losing any changes.
In particular, the fl_utf_file is where I need to resume.
I need to then update all of the level 3 programs to use the new file/directory handling code.
After that I need to finish writing the directory copy, which should include investigating and implementing file copy operations for more than regular files and symbolic links.
I also need to remember to investigate copying hard links as a hard link instead of as a duplicate file.

4 years agoUpdate: add additional file functions, fix bug with file stat in f_directory
Kevin Day [Mon, 18 May 2020 02:49:01 +0000 (21:49 -0500)]
Update: add additional file functions, fix bug with file stat in f_directory

Add additional f_file functions, move commonly shared code into private f_file files.

The f_directory functions were incorrectly using sizeof().

4 years agoProgress: featureless make
Kevin Day [Sun, 17 May 2020 23:05:50 +0000 (18:05 -0500)]
Progress: featureless make

Add and validate modes from the build settings files.
This provides some data integrity support.
If a mode is not defined in the modes property of the build settings, then that mode is not valid and the build process is stopped.

4 years agoBugfix: incorrect return status resulted in mistaken status handling
Kevin Day [Sun, 17 May 2020 23:04:52 +0000 (18:04 -0500)]
Bugfix: incorrect return status resulted in mistaken status handling

4 years agoProgress: featureless make
Kevin Day [Sun, 17 May 2020 17:05:59 +0000 (12:05 -0500)]
Progress: featureless make

Snatch apart the settings strings instead of mashing them together.
Process the environment build setting to enable selecting additional environment variable to expose to the process scripts.

4 years agoCleanup: fix build issues relating to build settings
Kevin Day [Sun, 17 May 2020 07:57:24 +0000 (02:57 -0500)]
Cleanup: fix build issues relating to build settings

Get the individual builds back in working order in regards to build configuration.

4 years agoUpdate: add path expode using normal order
Kevin Day [Sun, 17 May 2020 03:42:49 +0000 (22:42 -0500)]
Update: add path expode using normal order

Oops.

For reasons unknown to me, I seem to have written the path explode in reverse order.
The path is intended to be processed from left to right.

Rename the old functions appending _reverse to their name.

4 years agoProgress: featureless make
Kevin Day [Sun, 17 May 2020 03:06:16 +0000 (22:06 -0500)]
Progress: featureless make

4 years agoUpdate: numerous changes, most notably path and vfork to fork changes
Kevin Day [Sun, 17 May 2020 02:56:52 +0000 (21:56 -0500)]
Update: numerous changes, most notably path and vfork to fork changes

Replace vfork() calls with fork().
- I have determined that vfork() is not safe.
- When calling clearenv() inside a vfork() child process, the parent process' environment ends up getting cleared as well!
- The child can alter the parents memory according to manpages, so stop using vfork() entirely.

Add path processing functions and related defines.

Enable path processing to allow for execvpe()-like behavior can be implemented.
- The execvpe() function is not used because it is not POSIX.
- Manually process the PATH environment to determine what to execute, even when PATH enviornment gets cleared.

Some consistency improvements in defines, such as f_console_max_size to f_console_length_size.

Fix mistake in memcpy usage, dynamic strings use char * for their string so passing & is incorrect.

The f_file_exists() is using access().
- This is misleading and incorect.
- Use stat() to determine if file exists because it doesn't require access to the file (aside from directory access) to check existence.
- Add a new function f_file_access() as the old implementation of f_file_exists().

The fll_execute programs now support additional functions for clearing environment variables.
- This effectively sandboxes the environment variables before calling the program.