]> Kevux Git Server - fll/commit
Update: The top-level directory recursion actions should have more fine-tuned control.
authorKevin Day <Kevin@kevux.org>
Sun, 9 Mar 2025 23:41:43 +0000 (18:41 -0500)
committerKevin Day <Kevin@kevux.org>
Mon, 10 Mar 2025 03:45:48 +0000 (22:45 -0500)
commit6d40ec7ec5e3238282ea5be39ef56d0e3c322122
tree9ba40a8ea0355a7813967a8e8514cd216a6b8146
parent14908fe931af451e99640e187ff65011307fd315
Update: The top-level directory recursion actions should have more fine-tuned control.

Provide `f_directory_recurse_do_flag_top_after_e` and `f_directory_recurse_do_flag_top_before_e` flags.
This requires increasing the size of the flags from `uint16_t` to `uint32_t`.

Be sure to pass the `path` rather than `recurse->path` at the top-level.

Make sure the `action` flag is set for the top-level action.

Add additional documentation comment regarding the `top` flag and the `recurse.path`.

Even though it is a listing of the path, still pass the `recurse.path` to the error handler at the top of `private_fl_directory_do_recurse()`.

Try to make the flag usage be ordered alphabetically.

Always perform the directory listing loading.
If this is not desired, then the `fl_directory_do()` function is likely not needed and simpler functions may be better choices.

Do not include the top-level flag for the directory listing for consistency with the recursion.
The recursion doesn't know the top-level, so do not set the top flag in this case.
The directory exists check is no longer needed and might have been redundant anyway.

Update the documentation comments.
I appear to have missed updating this in some of the previous commits that introduced operational changes.
Add additional documentation about checking the recurse parameter for NULL.

The private_fl_directory_do_recurse() already checks the error status.
Remove extra error checking after the `private_fl_directory_do_recurse()` call.
This extra error checking is redundant.
The return on error and return on done must still be performed.

After every private_inline_fl_directory_do_handle() call, the F_done is not being processed.
The check for `F_done` must be done for every single error handler call.
The only exception would be the last one in the top-level function because the function will always return after the last call anyway.

Update Featureless Make to work with the latest changes.
level_0/f_directory/c/directory/common.h
level_0/f_directory/c/directory/recurse_do.h
level_1/fl_directory/c/directory.c
level_1/fl_directory/c/directory.h
level_1/fl_directory/c/private-directory.c
level_3/fake/c/main/build.c
level_3/fake/c/main/fake/do.c
level_3/fake/c/main/fake/do.h