2023-07-25 11:35:08 +00:00
|
|
|
package artifacts
|
|
|
|
|
|
|
|
import (
|
2023-10-18 10:20:43 +00:00
|
|
|
"bytes"
|
2023-07-25 11:35:08 +00:00
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
"path"
|
2023-08-31 14:10:32 +00:00
|
|
|
"path/filepath"
|
2023-07-25 11:35:08 +00:00
|
|
|
|
|
|
|
"github.com/databricks/cli/bundle"
|
|
|
|
"github.com/databricks/cli/bundle/artifacts/whl"
|
|
|
|
"github.com/databricks/cli/bundle/config"
|
2024-02-05 15:29:45 +00:00
|
|
|
"github.com/databricks/cli/bundle/libraries"
|
2023-07-25 11:35:08 +00:00
|
|
|
"github.com/databricks/cli/libs/cmdio"
|
2023-10-18 10:20:43 +00:00
|
|
|
"github.com/databricks/cli/libs/filer"
|
2023-12-21 08:00:37 +00:00
|
|
|
"github.com/databricks/cli/libs/log"
|
2023-07-25 11:35:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type mutatorFactory = func(name string) bundle.Mutator
|
|
|
|
|
|
|
|
var buildMutators map[config.ArtifactType]mutatorFactory = map[config.ArtifactType]mutatorFactory{
|
|
|
|
config.ArtifactPythonWheel: whl.Build,
|
|
|
|
}
|
|
|
|
|
|
|
|
var uploadMutators map[config.ArtifactType]mutatorFactory = map[config.ArtifactType]mutatorFactory{}
|
|
|
|
|
|
|
|
func getBuildMutator(t config.ArtifactType, name string) bundle.Mutator {
|
|
|
|
mutatorFactory, ok := buildMutators[t]
|
|
|
|
if !ok {
|
|
|
|
mutatorFactory = BasicBuild
|
|
|
|
}
|
|
|
|
|
|
|
|
return mutatorFactory(name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func getUploadMutator(t config.ArtifactType, name string) bundle.Mutator {
|
|
|
|
mutatorFactory, ok := uploadMutators[t]
|
|
|
|
if !ok {
|
|
|
|
mutatorFactory = BasicUpload
|
|
|
|
}
|
|
|
|
|
|
|
|
return mutatorFactory(name)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Basic Build defines a general build mutator which builds artifact based on artifact.BuildCommand
|
|
|
|
type basicBuild struct {
|
|
|
|
name string
|
|
|
|
}
|
|
|
|
|
|
|
|
func BasicBuild(name string) bundle.Mutator {
|
|
|
|
return &basicBuild{name: name}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *basicBuild) Name() string {
|
|
|
|
return fmt.Sprintf("artifacts.Build(%s)", m.name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *basicBuild) 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)
|
|
|
|
}
|
|
|
|
|
2023-11-29 10:40:12 +00:00
|
|
|
cmdio.LogString(ctx, fmt.Sprintf("Building %s...", m.name))
|
2023-07-25 11:35:08 +00:00
|
|
|
|
|
|
|
out, err := artifact.Build(ctx)
|
|
|
|
if err != nil {
|
2023-11-29 10:40:12 +00:00
|
|
|
return fmt.Errorf("build for %s failed, error: %w, output: %s", m.name, err, out)
|
2023-07-25 11:35:08 +00:00
|
|
|
}
|
2023-12-21 08:00:37 +00:00
|
|
|
log.Infof(ctx, "Build succeeded")
|
2023-07-25 11:35:08 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Basic Upload defines a general upload mutator which uploads artifact as a library to workspace
|
|
|
|
type basicUpload struct {
|
|
|
|
name string
|
|
|
|
}
|
|
|
|
|
|
|
|
func BasicUpload(name string) bundle.Mutator {
|
|
|
|
return &basicUpload{name: name}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *basicUpload) Name() string {
|
2023-10-18 10:20:43 +00:00
|
|
|
return fmt.Sprintf("artifacts.Upload(%s)", m.name)
|
2023-07-25 11:35:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *basicUpload) 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 len(artifact.Files) == 0 {
|
|
|
|
return fmt.Errorf("artifact source is not configured: %s", m.name)
|
|
|
|
}
|
|
|
|
|
2023-10-18 10:20:43 +00:00
|
|
|
uploadPath, err := getUploadBasePath(b)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
client, err := filer.NewWorkspaceFilesClient(b.WorkspaceClient(), uploadPath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2024-02-05 15:29:45 +00:00
|
|
|
err = uploadArtifact(ctx, b, artifact, uploadPath, client)
|
2023-07-25 11:35:08 +00:00
|
|
|
if err != nil {
|
2023-11-29 10:40:12 +00:00
|
|
|
return fmt.Errorf("upload for %s failed, error: %w", m.name, err)
|
2023-07-25 11:35:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-02-05 15:29:45 +00:00
|
|
|
func uploadArtifact(ctx context.Context, b *bundle.Bundle, a *config.Artifact, uploadPath string, client filer.Filer) error {
|
|
|
|
filesToLibraries := libraries.MapFilesToTaskLibraries(ctx, b)
|
|
|
|
|
2023-07-25 11:35:08 +00:00
|
|
|
for i := range a.Files {
|
|
|
|
f := &a.Files[i]
|
2023-10-18 10:20:43 +00:00
|
|
|
|
2024-02-05 15:29:45 +00:00
|
|
|
filename := filepath.Base(f.Source)
|
|
|
|
cmdio.LogString(ctx, fmt.Sprintf("Uploading %s...", filename))
|
|
|
|
|
|
|
|
err := uploadArtifactFile(ctx, f.Source, client)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Infof(ctx, "Upload succeeded")
|
|
|
|
f.RemotePath = path.Join(uploadPath, filepath.Base(f.Source))
|
|
|
|
|
2024-03-04 20:28:15 +00:00
|
|
|
// Lookup all tasks that reference this file.
|
|
|
|
libs, ok := filesToLibraries[f.Source]
|
|
|
|
if !ok {
|
|
|
|
log.Debugf(ctx, "No tasks reference %s", f.Source)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2024-02-05 15:29:45 +00:00
|
|
|
// Update all tasks that reference this file.
|
|
|
|
for _, lib := range libs {
|
|
|
|
wsfsBase := "/Workspace"
|
|
|
|
remotePath := path.Join(wsfsBase, f.RemotePath)
|
|
|
|
if lib.Whl != "" {
|
|
|
|
lib.Whl = remotePath
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if lib.Jar != "" {
|
|
|
|
lib.Jar = remotePath
|
|
|
|
continue
|
2023-07-25 11:35:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Function to upload artifact file to Workspace
|
2023-11-29 10:40:12 +00:00
|
|
|
func uploadArtifactFile(ctx context.Context, file string, client filer.Filer) error {
|
2023-07-25 11:35:08 +00:00
|
|
|
raw, err := os.ReadFile(file)
|
|
|
|
if err != nil {
|
2023-11-29 10:40:12 +00:00
|
|
|
return fmt.Errorf("unable to read %s: %w", file, errors.Unwrap(err))
|
2023-07-25 11:35:08 +00:00
|
|
|
}
|
|
|
|
|
2023-11-29 10:40:12 +00:00
|
|
|
filename := filepath.Base(file)
|
|
|
|
err = client.Write(ctx, filename, bytes.NewReader(raw), filer.OverwriteIfExists, filer.CreateParentDirectories)
|
2023-07-25 11:35:08 +00:00
|
|
|
if err != nil {
|
2023-11-29 10:40:12 +00:00
|
|
|
return fmt.Errorf("unable to import %s: %w", filename, err)
|
2023-07-25 11:35:08 +00:00
|
|
|
}
|
|
|
|
|
2023-11-29 10:40:12 +00:00
|
|
|
return nil
|
2023-07-25 11:35:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func getUploadBasePath(b *bundle.Bundle) (string, error) {
|
2023-11-15 13:37:26 +00:00
|
|
|
artifactPath := b.Config.Workspace.ArtifactPath
|
2023-07-25 11:35:08 +00:00
|
|
|
if artifactPath == "" {
|
|
|
|
return "", fmt.Errorf("remote artifact path not configured")
|
|
|
|
}
|
|
|
|
|
|
|
|
return path.Join(artifactPath, ".internal"), nil
|
|
|
|
}
|