Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: Extract flake profile loading into a function #553

Closed
wants to merge 1 commit into from

Conversation

urbas
Copy link

@urbas urbas commented Mar 16, 2025

Motivation for this change is to make the use_flake function a bit smaller and easier to understand. It should help with future contributions.

@bbenne10
Copy link
Contributor

I'm not pushing back on this change at all, but I am curious: do you have a concrete motivation for this changeset? Is there something that this cleanup does for you immediately?

I ask because this feels very much like a changeset that will come before another bigger change and I want to stay on top of those.

Thank you for your contribution and I will merge once I can get this tested locally (obviously assuming no issues).

@urbas
Copy link
Author

urbas commented Mar 17, 2025

I'm not pushing back on this change at all, but I am curious: do you have a concrete motivation for this changeset? Is there something that this cleanup does for you immediately?

I was exploring how to add a configurable caching mechanism to nix-direnv. While I was trying to understand the code and figure out where I could drop the cache logic, it occurred to me that the function I extracted is precisely the bit around which caching would fit.

One of my changes was to extract the function to keep the code manageable. The caching logic I'm investigating is not ready for proposal (let alone review), but I thought the extracted function seemed like a valuable and small enough cleanup to contribute on its own.

I ask because this feels very much like a changeset that will come before another bigger change and I want to stay on top of those.

The "caching" change I'm investigating should hopefully be very small. Something like this:

_restore_layout_dir_from_cache() {
  # If a caching command is provided by the user and the restore from cache succeeds (i.e. it reproduces the `.direnv` directory as it should be for the given inputs), then return 0
  # otherwise return 1
}

_store_layout_dir_into_cache() {
  # if a caching command is provided by the user, call it so that it caches the `.direnv` for the given inputs.
}

# This is inside the `use_flake` function
if ! _restore_layout_dir_from_cache "$layout_dir" "$flake_uri" watches; then
  _update_flake_profile "$layout_dir" "$profile" "$profile_rc" "$flake_uri" "$@"
  if [[ "${NIX_DIRENV_DID_FALLBACK:-0}" != "1" ]]; then
    _store_layout_dir_into_cache "$layout_dir" "$flake_uri" watches
  fi
fi

Thank you for your contribution and I will merge once I can get this tested locally (obviously assuming no issues).

@bbenne10
Copy link
Contributor

the idea of pluggable cache locations and frameworks seems like it'd be a bear to debug (in addition to the current misconfiguration bugs we encounter as the majority of the issues we triage). I think the idea warrants more discussion in an issue and I may hold off on merging this until such a time as that discussion is resolved.

@urbas urbas closed this Mar 19, 2025
@urbas
Copy link
Author

urbas commented Mar 20, 2025

@bbenne10: Here's a working prototype of persistent caching: urbas#2 (I am now using this regularly on my machines.)

Please don't feel like this implementation is what I'm aiming for. I am pretty sure that an upstreamable implementation will look very different.

I also understand that "persistent caching" is a heavy feature, so please feel free to let me know if you think the idea of persistent caching is not suitable for nix-direnv at all.

@urbas urbas deleted the smaller-use_flake-function branch March 20, 2025 08:30
@bbenne10
Copy link
Contributor

I'll discuss those changes at the PR in question. Thank you for an example.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants