state: moved stdlib lock to upper function to fix race condition
Signed-off-by: Sam Alba <samalba@users.noreply.github.com>
This commit is contained in:
parent
fc106e9a91
commit
fdb4b94276
@ -10,6 +10,7 @@ import (
|
|||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"github.com/gofrs/flock"
|
||||||
"github.com/rs/zerolog/log"
|
"github.com/rs/zerolog/log"
|
||||||
"go.dagger.io/dagger/keychain"
|
"go.dagger.io/dagger/keychain"
|
||||||
"go.dagger.io/dagger/plancontext"
|
"go.dagger.io/dagger/plancontext"
|
||||||
@ -31,6 +32,7 @@ const (
|
|||||||
planDir = "plan"
|
planDir = "plan"
|
||||||
manifestFile = "values.yaml"
|
manifestFile = "values.yaml"
|
||||||
computedFile = "computed.json"
|
computedFile = "computed.json"
|
||||||
|
lockFilePath = "dagger.lock"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Project struct {
|
type Project struct {
|
||||||
@ -357,12 +359,6 @@ func cueModInit(ctx context.Context, parentDir string) error {
|
|||||||
lg := log.Ctx(ctx)
|
lg := log.Ctx(ctx)
|
||||||
|
|
||||||
modDir := path.Join(parentDir, "cue.mod")
|
modDir := path.Join(parentDir, "cue.mod")
|
||||||
if err := os.Mkdir(modDir, 0755); err != nil {
|
|
||||||
if !errors.Is(err, os.ErrExist) {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
modFile := path.Join(modDir, "module.cue")
|
modFile := path.Join(modDir, "module.cue")
|
||||||
if _, err := os.Stat(modFile); err != nil {
|
if _, err := os.Stat(modFile); err != nil {
|
||||||
if !errors.Is(err, os.ErrNotExist) {
|
if !errors.Is(err, os.ErrNotExist) {
|
||||||
@ -395,6 +391,28 @@ func VendorUniverse(ctx context.Context, p string) error {
|
|||||||
p = getCueModParent()
|
p = getCueModParent()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
cueModDir := path.Join(p, "cue.mod")
|
||||||
|
if err := os.Mkdir(cueModDir, 0755); err != nil {
|
||||||
|
if !errors.Is(err, os.ErrExist) {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := os.MkdirAll(cueModDir, 0755); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
lockFilePath := path.Join(cueModDir, lockFilePath)
|
||||||
|
fileLock := flock.New(lockFilePath)
|
||||||
|
if err := fileLock.Lock(); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
defer func() {
|
||||||
|
fileLock.Unlock()
|
||||||
|
os.Remove(lockFilePath)
|
||||||
|
}()
|
||||||
|
|
||||||
// ensure cue module is initialized
|
// ensure cue module is initialized
|
||||||
if err := cueModInit(ctx, p); err != nil {
|
if err := cueModInit(ctx, p); err != nil {
|
||||||
return err
|
return err
|
||||||
|
@ -8,8 +8,6 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
||||||
"github.com/gofrs/flock"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -20,21 +18,9 @@ var (
|
|||||||
ModuleName = "alpha.dagger.io"
|
ModuleName = "alpha.dagger.io"
|
||||||
EnginePackage = fmt.Sprintf("%s/europa/dagger/engine", ModuleName)
|
EnginePackage = fmt.Sprintf("%s/europa/dagger/engine", ModuleName)
|
||||||
Path = path.Join("cue.mod", "pkg", ModuleName)
|
Path = path.Join("cue.mod", "pkg", ModuleName)
|
||||||
lockFilePath = path.Join("cue.mod", "dagger.lock")
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func Vendor(ctx context.Context, mod string) error {
|
func Vendor(ctx context.Context, mod string) error {
|
||||||
lockFilePath := path.Join(mod, lockFilePath)
|
|
||||||
fileLock := flock.New(lockFilePath)
|
|
||||||
if err := fileLock.Lock(); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
defer func() {
|
|
||||||
fileLock.Unlock()
|
|
||||||
os.Remove(lockFilePath)
|
|
||||||
}()
|
|
||||||
|
|
||||||
// Remove any existing copy of the universe
|
// Remove any existing copy of the universe
|
||||||
if err := os.RemoveAll(path.Join(mod, Path)); err != nil {
|
if err := os.RemoveAll(path.Join(mod, Path)); err != nil {
|
||||||
return err
|
return err
|
||||||
|
Reference in New Issue
Block a user