mirror of https://github.com/databricks/cli.git
57 lines
1.3 KiB
Go
57 lines
1.3 KiB
Go
|
package annotation
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"os"
|
||
|
|
||
|
"github.com/databricks/cli/libs/dyn"
|
||
|
"github.com/databricks/cli/libs/dyn/convert"
|
||
|
"github.com/databricks/cli/libs/dyn/merge"
|
||
|
"github.com/databricks/cli/libs/dyn/yamlloader"
|
||
|
)
|
||
|
|
||
|
type Descriptor struct {
|
||
|
Description string `json:"description,omitempty"`
|
||
|
MarkdownDescription string `json:"markdown_description,omitempty"`
|
||
|
Title string `json:"title,omitempty"`
|
||
|
Default any `json:"default,omitempty"`
|
||
|
Enum []any `json:"enum,omitempty"`
|
||
|
MarkdownExamples string `json:"markdown_examples,omitempty"`
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Parsed file with annotations, expected format:
|
||
|
* github.com/databricks/cli/bundle/config.Bundle:
|
||
|
* cluster_id:
|
||
|
* description: "Description"
|
||
|
*/
|
||
|
type File map[string]map[string]Descriptor
|
||
|
|
||
|
func LoadAndMerge(sources []string) (File, error) {
|
||
|
prev := dyn.NilValue
|
||
|
for _, path := range sources {
|
||
|
b, err := os.ReadFile(path)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
generated, err := yamlloader.LoadYAML(path, bytes.NewBuffer(b))
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
prev, err = merge.Merge(prev, generated)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var data File
|
||
|
|
||
|
err := convert.ToTyped(&data, prev)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return data, nil
|
||
|
}
|
||
|
|
||
|
const Placeholder = "PLACEHOLDER"
|