mirror of https://github.com/databricks/cli.git
108 lines
2.4 KiB
Go
108 lines
2.4 KiB
Go
package generate
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
"path"
|
|
"path/filepath"
|
|
|
|
"github.com/databricks/cli/libs/cmdio"
|
|
"github.com/databricks/cli/libs/notebook"
|
|
"github.com/databricks/databricks-sdk-go"
|
|
"github.com/databricks/databricks-sdk-go/service/jobs"
|
|
"golang.org/x/sync/errgroup"
|
|
)
|
|
|
|
type notebookDownloader struct {
|
|
notebooks map[string]string
|
|
w *databricks.WorkspaceClient
|
|
sourceDir string
|
|
configDir string
|
|
}
|
|
|
|
func (n *notebookDownloader) MarkForDownload(ctx context.Context, task *jobs.Task) error {
|
|
if task.NotebookTask == nil {
|
|
return nil
|
|
}
|
|
|
|
info, err := n.w.Workspace.GetStatusByPath(ctx, task.NotebookTask.NotebookPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
ext := notebook.GetExtensionByLanguage(info)
|
|
|
|
filename := path.Base(task.NotebookTask.NotebookPath) + ext
|
|
targetPath := filepath.Join(n.sourceDir, filename)
|
|
|
|
n.notebooks[targetPath] = task.NotebookTask.NotebookPath
|
|
|
|
// Update the notebook path to be relative to the config dir
|
|
rel, err := filepath.Rel(n.configDir, targetPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
task.NotebookTask.NotebookPath = rel
|
|
return nil
|
|
}
|
|
|
|
func (n *notebookDownloader) FlushToDisk(ctx context.Context, force bool) error {
|
|
err := os.MkdirAll(n.sourceDir, 0755)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// First check that all files can be written
|
|
for targetPath := range n.notebooks {
|
|
info, err := os.Stat(targetPath)
|
|
if err == nil {
|
|
if info.IsDir() {
|
|
return fmt.Errorf("%s is a directory", targetPath)
|
|
}
|
|
if !force {
|
|
return fmt.Errorf("%s already exists. Use --force to overwrite", targetPath)
|
|
}
|
|
}
|
|
}
|
|
|
|
errs, errCtx := errgroup.WithContext(ctx)
|
|
for k, v := range n.notebooks {
|
|
targetPath := k
|
|
notebookPath := v
|
|
errs.Go(func() error {
|
|
reader, err := n.w.Workspace.Download(errCtx, notebookPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
file, err := os.Create(targetPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer file.Close()
|
|
|
|
_, err = io.Copy(file, reader)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
cmdio.LogString(errCtx, fmt.Sprintf("Notebook successfully saved to %s", targetPath))
|
|
return reader.Close()
|
|
})
|
|
}
|
|
|
|
return errs.Wait()
|
|
}
|
|
|
|
func newNotebookDownloader(w *databricks.WorkspaceClient, sourceDir string, configDir string) *notebookDownloader {
|
|
return ¬ebookDownloader{
|
|
notebooks: make(map[string]string),
|
|
w: w,
|
|
sourceDir: sourceDir,
|
|
configDir: configDir,
|
|
}
|
|
}
|