e9ca8f38e6
* update dagger init with package manager downloading stdlib Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * split mod get and update functions Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * write to package checksum to dagger.sum when installing/updating Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * encure checksums are valid when compiling input Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * remove references to github.com/tjovicic in docs 1010 and 1011 Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * refactor mod get command Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * update logic of moving dir when installing packages Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * fix linting errors Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * revert changes to 1010 docs Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * updating error log line in mod/get Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * fix ci tests when using vendoring Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * update alpha.dagger.io version to v0.1 Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * fix mod repo test Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * return error if package already installed Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * remove already installed packages when installing Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * fix issue when vendoring stdlib Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * update mod command with filelock while installing Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * fix linting errors Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> * fix path of mod lock file Signed-off-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> Co-authored-by: Tihomir Jovicic <tihomir.jovicic.develop@gmail.com> Signed-off-by: Sam Alba <sam.alba@gmail.com>
136 lines
2.5 KiB
Go
136 lines
2.5 KiB
Go
package mod
|
|
|
|
import (
|
|
"path"
|
|
|
|
"github.com/gofrs/flock"
|
|
)
|
|
|
|
func InstallStdlib(workspace string) error {
|
|
_, err := Install(workspace, "alpha.dagger.io@v0.1")
|
|
|
|
return err
|
|
}
|
|
|
|
func Install(workspace, repoName string) (*Require, error) {
|
|
require, err := newRequire(repoName)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
modfile, err := readPath(workspace)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
fileLock := flock.New(path.Join(workspace, lockFilePath))
|
|
if err := fileLock.Lock(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = modfile.install(require)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err = modfile.write(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := fileLock.Unlock(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return require, nil
|
|
}
|
|
|
|
func InstallAll(workspace string, repoNames []string) ([]*Require, error) {
|
|
installedRequires := make([]*Require, 0, len(repoNames))
|
|
var err error
|
|
|
|
for _, repoName := range repoNames {
|
|
var require *Require
|
|
|
|
if require, err = Install(workspace, repoName); err != nil {
|
|
continue
|
|
}
|
|
|
|
installedRequires = append(installedRequires, require)
|
|
}
|
|
|
|
return installedRequires, err
|
|
}
|
|
|
|
func Update(workspace, repoName string) (*Require, error) {
|
|
require, err := newRequire(repoName)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
modfile, err := readPath(workspace)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
fileLock := flock.New(path.Join(workspace, lockFilePath))
|
|
if err := fileLock.Lock(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
updatedRequire, err := modfile.updateToLatest(require)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err = modfile.write(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if err := fileLock.Unlock(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return updatedRequire, nil
|
|
}
|
|
|
|
func UpdateAll(workspace string, repoNames []string) ([]*Require, error) {
|
|
updatedRequires := make([]*Require, 0, len(repoNames))
|
|
var err error
|
|
|
|
for _, repoName := range repoNames {
|
|
var require *Require
|
|
|
|
if require, err = Update(workspace, repoName); err != nil {
|
|
continue
|
|
}
|
|
|
|
updatedRequires = append(updatedRequires, require)
|
|
}
|
|
|
|
return updatedRequires, err
|
|
}
|
|
|
|
func UpdateInstalled(workspace string) ([]*Require, error) {
|
|
modfile, err := readPath(workspace)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
repoNames := make([]string, 0, len(modfile.requires))
|
|
|
|
for _, require := range modfile.requires {
|
|
repoNames = append(repoNames, require.String())
|
|
}
|
|
|
|
return UpdateAll(workspace, repoNames)
|
|
}
|
|
|
|
func Ensure(workspace string) error {
|
|
modfile, err := readPath(workspace)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return modfile.ensure()
|
|
}
|