* Create small registries for core and composable kinds * Update workflow with new registries * Fix imports in plugin schemas and deleted old registry generation files * Remove verification and maturity * Modify registries and add missing composable information to make schemas in kind-registry work * Add missing aliases * Remove unused templates * Remove kinds verification * Format generated code * Add gen header * Delete unused code and clean path in composable template * Delete kind-registry loader * Delete unused code * Update License link * Update codeowners path * Sort imports * More cleanup * Remove verify-kinds.yml from codeowners * Fix lint * Update composable_kidns * Fix cue extension * Restore verify-kinds to avoid to push outdated kind's registry * Fix composable format * Restore code owners for verify-kinds * Remove verify check
75 lines
1.8 KiB
Go
75 lines
1.8 KiB
Go
package codegen
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"go/format"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/grafana/codejen"
|
|
)
|
|
|
|
var registryPath = filepath.Join("pkg", "registry", "schemas")
|
|
|
|
var renamedPlugins = map[string]string{
|
|
"cloud-monitoring": "googlecloudmonitoring",
|
|
"grafana-pyroscope-datasource": "grafanapyroscope",
|
|
"annolist": "annotationslist",
|
|
"grafanatestdatadatasource": "testdata",
|
|
"dashlist": "dashboardlist",
|
|
}
|
|
|
|
type PluginRegistryJenny struct {
|
|
}
|
|
|
|
func (jenny *PluginRegistryJenny) JennyName() string {
|
|
return "PluginRegistryJenny"
|
|
}
|
|
|
|
func (jenny *PluginRegistryJenny) Generate(files []string) (*codejen.File, error) {
|
|
if len(files) == 0 {
|
|
return nil, nil
|
|
}
|
|
schemas := make([]Schema, len(files))
|
|
for i, file := range files {
|
|
name, err := getSchemaName(file)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("unable to find schema name: %s", err)
|
|
}
|
|
|
|
schemas[i] = Schema{
|
|
Name: name,
|
|
Filename: filepath.Base(file),
|
|
FilePath: file,
|
|
}
|
|
}
|
|
|
|
buf := new(bytes.Buffer)
|
|
if err := tmpls.Lookup("composable_registry.tmpl").Execute(buf, tmpl_vars_plugin_registry{
|
|
Schemas: schemas,
|
|
}); err != nil {
|
|
return nil, fmt.Errorf("failed executing kind registry template: %w", err)
|
|
}
|
|
|
|
b, err := format.Source(buf.Bytes())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return codejen.NewFile(filepath.Join(registryPath, "composable_kind.go"), b, jenny), nil
|
|
}
|
|
|
|
func getSchemaName(path string) (string, error) {
|
|
parts := strings.Split(path, "/")
|
|
if len(parts) < 2 {
|
|
return "", fmt.Errorf("path should contain more than 2 elements")
|
|
}
|
|
folderName := parts[len(parts)-2]
|
|
if renamed, ok := renamedPlugins[folderName]; ok {
|
|
folderName = renamed
|
|
}
|
|
folderName = strings.ReplaceAll(folderName, "-", "")
|
|
return strings.ToLower(folderName), nil
|
|
}
|