environ

package
v0.0.0-...-ef45db5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 19, 2024 License: Apache-2.0 Imports: 6 Imported by: 36

Documentation

Overview

Package environ is an environment variable manipulation library.

It couples the system's environment, represented as a []string of KEY[=VALUE] strings, into a key/value map and back.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Join

func Join(k, v string) string

Join creates an environment variable definition for the supplied key/value.

func Split

func Split(v string) (key, value string)

Split splits the supplied environment variable value into a key/value pair.

If v is of the form:

  • KEY, returns (KEY, "")
  • KEY=, returns (KEY, "")
  • KEY=VALUE, returns (KEY, VALUE)

Types

type Env

type Env struct {
	// contains filtered or unexported fields
}

Env contains system environment variables. It preserves each environment variable verbatim (even if invalid).

Treat it as a map[...] (i.e. pass by value, but assume this value is actually a reference and the object can be mutated through it).

An empty value can be read or cloned, but should not be written to. If you want to get an empty modifiable Env use New(nil).

func FromCtx

func FromCtx(ctx context.Context) Env

FromCtx returns a copy of the current Env in `ctx`.

This is guaranteed to return a non-nil Env (i.e. it's always safe for assignment/manipulation).

If no Env has been set with `SetInCtx`, this returns `System()`.

func New

func New(s []string) Env

New instantiates a new Env instance from the supplied set of environment KEY=VALUE strings (e.g. as returned by os.Environ()).

func System

func System() Env

System returns an Env instance instantiated with the current os.Environ values.

func (Env) Clone

func (e Env) Clone() Env

Clone creates a new Env instance that is identical to, but independent from, e.

The returned clone is always safe to modify.

func (Env) Get

func (e Env) Get(k string) string

Get retrieves the value of the environment variable named by the key.

It returns the value, which will be empty if the variable is not present. To distinguish between an empty value and an unset value, use Lookup.

func (Env) Iter

func (e Env) Iter(cb func(k, v string) error) error

Iter iterates through all of the key/value pairs in Env and invokes the supplied callback, cb, for each element.

If the callback returns error, iteration will stop immediately.

func (Env) Len

func (e Env) Len() int

Len returns the number of environment variables defined in e.

func (Env) Load

func (e Env) Load(m map[string]string)

Load adds environment variables defined in a key/value map to an existing environment.

func (Env) Lookup

func (e Env) Lookup(k string) (v string, ok bool)

Lookup retrieves the value of the environment variable named by the key.

If the variable is present in the environment the value (which may be empty) is returned and the boolean is true. Otherwise the returned value will be empty and the boolean will be false.

func (Env) Map

func (e Env) Map() map[string]string

Map returns a map of the key/value values in the environment.

This is a clone of the contents of e; manipulating this map will not change the values in e.

If env is either nil or empty, returns nil.

func (Env) Remove

func (e Env) Remove(k string) bool

Remove removes a value from the environment, returning true if the value was present. If the value was missing, Remove returns false.

Remove is different from Set(k, "") in that Set persists the key with an empty value, while Remove removes it entirely.

func (Env) RemoveMatch

func (e Env) RemoveMatch(fn func(k, v string) bool)

RemoveMatch iterates over all keys and values in the environment, invoking the callback function, fn, for each key/value pair. If fn returns true, the key is removed from the environment.

func (Env) Set

func (e Env) Set(k, v string)

Set sets the supplied environment key and value.

Panics if the Env is zero-valued i.e. equals to Env{}. Use New(nil) to create a modifiable empty environment.

func (Env) SetEntry

func (e Env) SetEntry(entry string)

SetEntry sets the supplied environment to a "KEY[=VALUE]" entry.

Panics if the Env is zero-valued i.e. equals to Env{}. Use New(nil) to create a modifiable empty environment.

func (Env) SetInCtx

func (e Env) SetInCtx(ctx context.Context) context.Context

SetInCtx installs a copy of the Env into the context, which can be retrieved with `FromCtx`.

func (Env) Sorted

func (e Env) Sorted() []string

Sorted returns the contents of the environment, sorted by key.

func (Env) String

func (e Env) String() string

String returns debug representation of Env.

func (Env) Update

func (e Env) Update(other Env)

Update adds all key/value from other to the current environment. If there is a duplicate key, the value from other will overwrite the value from e.

Values from other will be sorted and added in alphabetic order. This means that if e is case insensitive and there are multiple keys in other that converge on the same case insensitive key, the one that is alphabetically highest will be added.

Panics if the Env is zero-valued i.e. equals to Env{}. Use New(nil) to create a modifiable empty environment.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL