2017-08-31 05:27:25 +08:00
|
|
|
package eval
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"os"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
|
2020-09-03 12:12:55 +08:00
|
|
|
"github.com/elves/elvish/pkg/diag"
|
2019-12-24 04:00:59 +08:00
|
|
|
"github.com/elves/elvish/pkg/eval/vals"
|
|
|
|
"github.com/elves/elvish/pkg/eval/vars"
|
2017-08-31 05:27:25 +08:00
|
|
|
"github.com/xiaq/persistent/vector"
|
|
|
|
)
|
|
|
|
|
2017-12-05 07:53:14 +08:00
|
|
|
var (
|
|
|
|
pathListSeparator = string(os.PathListSeparator)
|
|
|
|
forbiddenInPath = pathListSeparator + "\x00"
|
|
|
|
)
|
|
|
|
|
2017-08-31 05:27:25 +08:00
|
|
|
// Errors
|
|
|
|
var (
|
|
|
|
ErrPathMustBeString = errors.New("path must be string")
|
|
|
|
ErrPathCannotContainColonZero = errors.New(`path cannot contain colon or \0`)
|
|
|
|
)
|
|
|
|
|
2020-09-05 05:24:08 +08:00
|
|
|
// NewEnvListVar returns a variable whose value is a list synchronized with an
|
|
|
|
// environment variable with the elements joined by os.PathListSeparator.
|
|
|
|
//
|
|
|
|
// Elements in the value of the variable must be strings, and cannot contain
|
|
|
|
// os.PathListSeparator or \0; attempting to put any in its elements will result in
|
2017-12-05 07:53:14 +08:00
|
|
|
// an error.
|
2020-09-05 05:24:08 +08:00
|
|
|
func NewEnvListVar(name string) vars.Var {
|
|
|
|
return &envListVar{envName: name}
|
|
|
|
}
|
|
|
|
|
|
|
|
type envListVar struct {
|
2017-08-31 05:27:25 +08:00
|
|
|
sync.RWMutex
|
|
|
|
envName string
|
|
|
|
cacheFor string
|
2018-01-30 01:39:41 +08:00
|
|
|
cacheValue interface{}
|
2017-08-31 05:27:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get returns a Value for an EnvPathList.
|
2020-09-05 05:24:08 +08:00
|
|
|
func (envli *envListVar) Get() interface{} {
|
2017-08-31 05:27:25 +08:00
|
|
|
envli.Lock()
|
|
|
|
defer envli.Unlock()
|
|
|
|
|
|
|
|
value := os.Getenv(envli.envName)
|
|
|
|
if value == envli.cacheFor {
|
|
|
|
return envli.cacheValue
|
|
|
|
}
|
|
|
|
envli.cacheFor = value
|
|
|
|
v := vector.Empty
|
2017-12-05 07:53:14 +08:00
|
|
|
for _, path := range strings.Split(value, pathListSeparator) {
|
2018-01-25 09:40:15 +08:00
|
|
|
v = v.Cons(path)
|
2017-08-31 05:27:25 +08:00
|
|
|
}
|
2018-01-28 01:26:22 +08:00
|
|
|
envli.cacheValue = v
|
2017-08-31 05:27:25 +08:00
|
|
|
return envli.cacheValue
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set sets an EnvPathList. The underlying environment variable is set.
|
2020-09-05 05:24:08 +08:00
|
|
|
func (envli *envListVar) Set(v interface{}) error {
|
2018-01-25 08:48:31 +08:00
|
|
|
var (
|
|
|
|
paths []string
|
|
|
|
errElement error
|
|
|
|
)
|
2018-02-15 17:14:05 +08:00
|
|
|
errIterate := vals.Iterate(v, func(v interface{}) bool {
|
2018-01-25 09:40:15 +08:00
|
|
|
s, ok := v.(string)
|
2017-08-31 05:27:25 +08:00
|
|
|
if !ok {
|
2018-01-25 08:48:31 +08:00
|
|
|
errElement = ErrPathMustBeString
|
2018-01-03 10:04:14 +08:00
|
|
|
return false
|
2017-08-31 05:27:25 +08:00
|
|
|
}
|
2018-01-25 09:40:15 +08:00
|
|
|
path := s
|
2017-12-05 07:53:14 +08:00
|
|
|
if strings.ContainsAny(path, forbiddenInPath) {
|
2018-01-25 08:48:31 +08:00
|
|
|
errElement = ErrPathCannotContainColonZero
|
2018-01-03 10:04:14 +08:00
|
|
|
return false
|
2017-08-31 05:27:25 +08:00
|
|
|
}
|
2018-01-25 09:40:15 +08:00
|
|
|
paths = append(paths, s)
|
2017-08-31 05:27:25 +08:00
|
|
|
return true
|
|
|
|
})
|
|
|
|
|
2018-01-25 08:48:31 +08:00
|
|
|
if errElement != nil || errIterate != nil {
|
2020-09-03 12:12:55 +08:00
|
|
|
return diag.Errors(errElement, errIterate)
|
2018-01-03 10:04:14 +08:00
|
|
|
}
|
|
|
|
|
2017-08-31 05:27:25 +08:00
|
|
|
envli.Lock()
|
|
|
|
defer envli.Unlock()
|
2017-12-05 07:53:14 +08:00
|
|
|
os.Setenv(envli.envName, strings.Join(paths, pathListSeparator))
|
2018-01-03 10:04:14 +08:00
|
|
|
return nil
|
2017-08-31 05:27:25 +08:00
|
|
|
}
|