mirror of https://github.com/databricks/cli.git
40 lines
834 B
Go
40 lines
834 B
Go
package loader
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/databricks/cli/bundle"
|
|
"github.com/databricks/cli/bundle/config"
|
|
"github.com/databricks/cli/libs/diag"
|
|
)
|
|
|
|
type processInclude struct {
|
|
fullPath string
|
|
relPath string
|
|
}
|
|
|
|
// ProcessInclude loads the configuration at [fullPath] and merges it into the configuration.
|
|
func ProcessInclude(fullPath, relPath string) bundle.Mutator {
|
|
return &processInclude{
|
|
fullPath: fullPath,
|
|
relPath: relPath,
|
|
}
|
|
}
|
|
|
|
func (m *processInclude) Name() string {
|
|
return fmt.Sprintf("ProcessInclude(%s)", m.relPath)
|
|
}
|
|
|
|
func (m *processInclude) Apply(_ context.Context, b *bundle.Bundle) diag.Diagnostics {
|
|
this, diags := config.Load(m.fullPath)
|
|
if diags.HasError() {
|
|
return diags
|
|
}
|
|
err := b.Config.Merge(this)
|
|
if err != nil {
|
|
diags = diags.Extend(diag.FromErr(err))
|
|
}
|
|
return diags
|
|
}
|