mirror of https://github.com/databricks/cli.git
61 lines
1.2 KiB
Go
61 lines
1.2 KiB
Go
|
package artifacts
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/databricks/cli/bundle"
|
||
|
"github.com/databricks/cli/bundle/artifacts/whl"
|
||
|
"github.com/databricks/cli/bundle/config"
|
||
|
)
|
||
|
|
||
|
var inferMutators map[config.ArtifactType]mutatorFactory = map[config.ArtifactType]mutatorFactory{
|
||
|
config.ArtifactPythonWheel: whl.InferBuildCommand,
|
||
|
}
|
||
|
|
||
|
func getInferMutator(t config.ArtifactType, name string) bundle.Mutator {
|
||
|
mutatorFactory, ok := inferMutators[t]
|
||
|
if !ok {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
return mutatorFactory(name)
|
||
|
}
|
||
|
|
||
|
func InferMissingProperties() bundle.Mutator {
|
||
|
return &all{
|
||
|
name: "infer",
|
||
|
fn: inferArtifactByName,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func inferArtifactByName(name string) (bundle.Mutator, error) {
|
||
|
return &infer{name}, nil
|
||
|
}
|
||
|
|
||
|
type infer struct {
|
||
|
name string
|
||
|
}
|
||
|
|
||
|
func (m *infer) Name() string {
|
||
|
return fmt.Sprintf("artifacts.Infer(%s)", m.name)
|
||
|
}
|
||
|
|
||
|
func (m *infer) Apply(ctx context.Context, b *bundle.Bundle) error {
|
||
|
artifact, ok := b.Config.Artifacts[m.name]
|
||
|
if !ok {
|
||
|
return fmt.Errorf("artifact doesn't exist: %s", m.name)
|
||
|
}
|
||
|
|
||
|
if artifact.BuildCommand != "" {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
inferMutator := getInferMutator(artifact.Type, m.name)
|
||
|
if inferMutator != nil {
|
||
|
return bundle.Apply(ctx, b, inferMutator)
|
||
|
}
|
||
|
|
||
|
return nil
|
||
|
}
|