Uh oh!
There was an error while loading. Please reload this page.
Add codegenfiles module - #447
Open
bmoylan wants to merge 2 commits into
Open
Conversation
codegenfiles reconciles the output of a code generator against a directory: it writes the files whose content changed, leaves the rest alone, deletes output that is no longer generated, and preserves hand-written files that share the directory. Plan reads the filesystem without writing to it, so a tool's generate and verify modes are the same code path and verify cannot corrupt the tree it is checking.
Generate changelog in |
✅ Successfully generated changelog entry!Need to regenerate?Simply interact with the changelog bot comment again to regenerate these entries. 📋Changelog Preview✨ Features
|
Cuts the package doc roughly in half. The code block duplicated the runnable Example, and the list of generator output shapes collapsed because writing through an interface of its own and registering a pluggable assembler are the same move. Adds what porting the first consumers turned up. Leaving ContentsMatcher nil is the common case rather than the exception, so FileMatcher is usually the only thing standing between DeleteStale and a hand-written file; a matcher bounded tightly enough that it matches only the generated set leaves DeleteStale unable to fire at all, which is safe but is not working stale-output handling; and capturing a generator's output by pointing it at a scratch directory works only if that output does not depend on where it was written.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
codegenfiles reconciles the output of a code generator against a directory: it writes the files whose content changed, leaves the rest alone, deletes output that is no longer generated, and preserves hand-written files that share the directory. Plan reads the filesystem without writing to it, so a tool's generate and verify modes are the same code path and verify cannot corrupt the tree it is checking.
This change is