| package action | 
 |  | 
 | import ( | 
 | 	"io/ioutil" | 
 | 	"os" | 
 | 	"os/exec" | 
 | 	"path" | 
 |  | 
 | 	"github.com/Masterminds/glide/cfg" | 
 | 	"github.com/Masterminds/glide/msg" | 
 | 	gpath "github.com/Masterminds/glide/path" | 
 | ) | 
 |  | 
 | // EnsureConfig loads and returns a config file. | 
 | // | 
 | // Any error will cause an immediate exit, with an error printed to Stderr. | 
 | func EnsureConfig() *cfg.Config { | 
 | 	yamlpath, err := gpath.Glide() | 
 | 	if err != nil { | 
 | 		msg.ExitCode(2) | 
 | 		msg.Die("Failed to find %s file in directory tree: %s", gpath.GlideFile, err) | 
 | 	} | 
 |  | 
 | 	yml, err := ioutil.ReadFile(yamlpath) | 
 | 	if err != nil { | 
 | 		msg.ExitCode(2) | 
 | 		msg.Die("Failed to load %s: %s", yamlpath, err) | 
 | 	} | 
 | 	conf, err := cfg.ConfigFromYaml(yml) | 
 | 	if err != nil { | 
 | 		msg.ExitCode(3) | 
 | 		msg.Die("Failed to parse %s: %s", yamlpath, err) | 
 | 	} | 
 |  | 
 | 	return conf | 
 | } | 
 |  | 
 | func EnsureCacheDir() { | 
 | 	msg.Warn("ensure.go: ensureCacheDir is not implemented.") | 
 | } | 
 |  | 
 | // EnsureGoVendor ensures that the Go version is correct. | 
 | func EnsureGoVendor() { | 
 | 	// 6l was removed in 1.5, when vendoring was introduced. | 
 | 	cmd := exec.Command("go", "tool", "6l") | 
 | 	if _, err := cmd.CombinedOutput(); err == nil { | 
 | 		msg.Warn("You must install the Go 1.5 or greater toolchain to work with Glide.\n") | 
 | 		os.Exit(1) | 
 | 	} | 
 | 	if os.Getenv("GO15VENDOREXPERIMENT") != "1" { | 
 | 		msg.Warn("To use Glide, you must set GO15VENDOREXPERIMENT=1\n") | 
 | 		os.Exit(1) | 
 | 	} | 
 |  | 
 | 	// Verify the setup isn't for the old version of glide. That is, this is | 
 | 	// no longer assuming the _vendor directory as the GOPATH. Inform of | 
 | 	// the change. | 
 | 	if _, err := os.Stat("_vendor/"); err == nil { | 
 | 		msg.Warn(`Your setup appears to be for the previous version of Glide. | 
 | Previously, vendor packages were stored in _vendor/src/ and | 
 | _vendor was set as your GOPATH. As of Go 1.5 the go tools | 
 | recognize the vendor directory as a location for these | 
 | files. Glide has embraced this. Please remove the _vendor | 
 | directory or move the _vendor/src/ directory to vendor/.` + "\n") | 
 | 		os.Exit(1) | 
 | 	} | 
 | } | 
 |  | 
 | // EnsureVendorDir ensures that a vendor/ directory is present in the cwd. | 
 | func EnsureVendorDir() { | 
 | 	fi, err := os.Stat(gpath.VendorDir) | 
 | 	if err != nil { | 
 | 		msg.Debug("Creating %s", gpath.VendorDir) | 
 | 		if err := os.MkdirAll(gpath.VendorDir, os.ModeDir|0755); err != nil { | 
 | 			msg.Die("Could not create %s: %s", gpath.VendorDir, err) | 
 | 		} | 
 | 	} else if !fi.IsDir() { | 
 | 		msg.Die("Vendor is not a directory") | 
 | 	} | 
 | } | 
 |  | 
 | // EnsureGopath fails if GOPATH is not set, or if $GOPATH/src is missing. | 
 | // | 
 | // Otherwise it returns the value of GOPATH. | 
 | func EnsureGopath() string { | 
 | 	gp := os.Getenv("GOPATH") | 
 | 	if gp == "" { | 
 | 		msg.Die("$GOPATH is not set.") | 
 | 	} | 
 | 	_, err := os.Stat(path.Join(gp, "src")) | 
 | 	if err != nil { | 
 | 		msg.Error("Could not find %s/src.\n", gp) | 
 | 		msg.Info("As of Glide 0.5/Go 1.5, this is required.\n") | 
 | 		msg.Die("Wihtout src, cannot continue. %s", err) | 
 | 	} | 
 | 	return gp | 
 | } |