-
Notifications
You must be signed in to change notification settings - Fork 3
change package and analysis interface #57
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
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
43dab3d
change package and analysis interface
gotwarlost 317ad89
copilot comments
gotwarlost cabc442
return nil XRD in API when no info found
gotwarlost f3239e5
copilot comments
gotwarlost cdb24e3
fix comment
gotwarlost 053f922
remove version attribute until needed later
gotwarlost c64357e
allow ignoring errors in composition.yaml for language server use
gotwarlost File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,68 @@ | ||
| // Package composition provides loading, analysis and archive creation of a function-hcl | ||
| // composition module. It also processes a composition.yaml metadata file that is optionally | ||
| // present in the composition directory. | ||
| package composition | ||
|
|
||
| import ( | ||
| "io/fs" | ||
|
|
||
| "golang.org/x/tools/txtar" | ||
| ) | ||
|
|
||
| const ConfigFile = "composition.yaml" | ||
|
|
||
| type XRD struct { | ||
| APIVersion string `json:"apiVersion"` | ||
| Kind string `json:"kind"` | ||
| } | ||
|
|
||
| // FS is the minimal filesystem interface needed to load files for a module. | ||
| type FS interface { | ||
| Stat(name string) (fs.FileInfo, error) | ||
| ReadDir(name string) ([]fs.DirEntry, error) | ||
| ReadFile(name string) ([]byte, error) | ||
| } | ||
|
gotwarlost marked this conversation as resolved.
|
||
|
|
||
| // Config represents the configuration for the composition in terms of library file requirements | ||
| // and XRD type information. | ||
| type Config struct { | ||
| XRD XRD `json:"xrd"` | ||
| LibraryFiles []string `json:"libraryFiles"` | ||
| } | ||
|
|
||
| // Load returns composition information and a list of files to process from a specific directory. | ||
| // File paths in the list are relative to the directory that was loaded. | ||
| func Load(fs FS, dir string, ignoreMetadataErrors bool) (*Config, []string, error) { | ||
| l := newLoader(fs) | ||
| l.ignoreMetadataErrors = ignoreMetadataErrors | ||
| return l.load(dir) | ||
| } | ||
|
|
||
| // Package combines all HCL files and any additional library files and returns a byte array | ||
| // that contains the entire package in txtar format. | ||
| func Package(dir string, skipAnalysis bool) ([]byte, error) { | ||
| l := newLoader(osFs{}) | ||
| archive, files, err := l.loadArchive(dir) | ||
| if err != nil { | ||
| return nil, err | ||
| } | ||
| if !skipAnalysis { | ||
| if err = doAnalyze(files); err != nil { | ||
| return nil, err | ||
| } | ||
| } | ||
| return txtar.Format(archive), nil | ||
| } | ||
|
|
||
| // Analyze analyzes all HCL files and any additional library files and returns an error on a failed analysis. | ||
| func Analyze(dir string) error { | ||
| l := newLoader(osFs{}) | ||
| _, files, err := l.loadArchive(dir) | ||
| if err != nil { | ||
| return err | ||
| } | ||
| if err = doAnalyze(files); err != nil { | ||
| return err | ||
| } | ||
| return nil | ||
| } | ||
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shell variables should be quoted to avoid breakage if a directory name contains whitespace or glob characters. Quote
$dirin the subshellcdcommand (and consider quoting other expansions in this script for consistency).