Documentation ¶
Overview ¶
Package env contains common command line and initialization code for SCION services. If something is specific to one app, it should go into that app's code and not here.
During initialization, SIGHUPs are masked. To call a function on each SIGHUP, pass the function when calling Init.
Index ¶
- Constants
- Variables
- func AddFlags()
- func CheckFlags(sampler config.Sampler) (int, bool)
- func ConfigFile() string
- func LogAppStarted(svcType, elemID string) error
- func LogAppStopped(svcType, elemID string)
- func ReloadTopology(topologyPath string)
- func SetupEnv(reloadF func())
- func Usage()
- func VersionInfo() string
- type Features
- type General
- type Metrics
- type QUIC
- type SCIONDClient
- type Tracing
Constants ¶
const ( // TopologyFile is the file name for the topology file. TopologyFile = "topology.json" // StaticInfoConfigFile is the file name for the configuration file // used for the StaticInfo beacon extension. StaticInfoConfigFile = "staticInfoConfig.json" // SciondInitConnectPeriod is the default total amount of time spent // attempting to connect to sciond on start. SciondInitConnectPeriod = 20 * time.Second // ShutdownGraceInterval is the time applications wait after issuing a // clean shutdown signal, before forcerfully tearing down the application. ShutdownGraceInterval = 5 * time.Second )
Variables ¶
var ( // The value is generated by tools/git-version. StartupVersion string )
Startup* variables are set during link time.
Functions ¶
func CheckFlags ¶ added in v0.4.0
CheckFlags checks whether the config or help-config flags have been set. In case the help-config flag is set, the config flag is ignored and a commented sample config is written to stdout.
The first return value is the return code of the program. The second value indicates whether the program can continue with its execution or should exit.
func ConfigFile ¶ added in v0.4.0
func ConfigFile() string
ConfigFile returns the config file path passed through the flag.
func LogAppStarted ¶ added in v0.4.0
LogAppStarted should be called by applications as soon as logging is initialized.
func LogAppStopped ¶ added in v0.4.0
func LogAppStopped(svcType, elemID string)
func ReloadTopology ¶ added in v0.4.0
func ReloadTopology(topologyPath string)
func SetupEnv ¶
func SetupEnv(reloadF func())
SetupEnv initializes a basic environment for applications. If reloadF is not nil, the application will call reloadF whenever it receives a SIGHUP signal.
func VersionInfo ¶ added in v0.4.0
func VersionInfo() string
VersionInfo returns build version information (build date, build version, build chain).
Types ¶
type Features ¶ added in v0.4.0
type Features struct { config.NoDefaulter config.NoValidator }
Features contains all feature flags. Add feature flags to this structure as needed. Feature flags are always boolean. Don't use any other types here!
func (*Features) ConfigName ¶ added in v0.4.0
type General ¶
type General struct { // ID is the SCION element ID. This is used to choose the relevant // portion of the topology file for some services. ID string `toml:"id,omitempty"` // ConfigDir for loading extra files (currently, only topology.json and staticInfoConfig.json) ConfigDir string `toml:"config_dir,omitempty"` // ReconnectToDispatcher can be set to true to enable transparent dispatcher // reconnects. ReconnectToDispatcher bool `toml:"reconnect_to_dispatcher,omitempty"` }
func (*General) ConfigName ¶ added in v0.4.0
func (*General) InitDefaults ¶ added in v0.4.0
func (cfg *General) InitDefaults()
InitDefaults sets the default value for Topology if not already set.
func (*General) StaticInfoConfig ¶ added in v0.6.0
StaticInfoConfig return the path to the configuration file for the StaticInfo beacon extension.
type Metrics ¶
type Metrics struct { config.NoDefaulter config.NoValidator // Prometheus contains the address to export prometheus metrics on. If // not set, metrics are not exported. Prometheus string `toml:"prometheus,omitempty"` }
func (*Metrics) ConfigName ¶ added in v0.4.0
func (*Metrics) StartPrometheus ¶ added in v0.1.1
func (cfg *Metrics) StartPrometheus()
type QUIC ¶ added in v0.4.0
type QUIC struct {
Address string `toml:"address,omitempty"`
}
QUIC contains configuration for control-plane speakers.
func (*QUIC) ConfigName ¶ added in v0.4.0
type SCIONDClient ¶ added in v0.5.0
type SCIONDClient struct { // Address of the SCIOND server the client should connect to. Defaults to // 127.0.0.1:30255. Address string `toml:"address,omitempty"` // InitialConnectPeriod is the maximum amount of time spent attempting to // connect to sciond on start. InitialConnectPeriod util.DurWrap `toml:"initial_connect_period,omitempty"` // FakeData can be used to replace the local SCIOND with a fake data source. // It must point to a fake SCIOND configuration file. FakeData string `toml:"fake_data,omitempty"` }
SCIONDClient contains information for running snet with sciond.
func (*SCIONDClient) ConfigName ¶ added in v0.5.0
func (cfg *SCIONDClient) ConfigName() string
func (*SCIONDClient) InitDefaults ¶ added in v0.5.0
func (cfg *SCIONDClient) InitDefaults()
func (*SCIONDClient) Validate ¶ added in v0.5.0
func (cfg *SCIONDClient) Validate() error
type Tracing ¶ added in v0.4.0
type Tracing struct { // Enabled enables tracing for this service. Enabled bool `toml:"enabled,omitempty"` // Enable debug mode. Debug bool `toml:"debug,omitempty"` // Agent is the address of the local agent that handles the reported // traces. (default: localhost:6831) Agent string `toml:"agent,omitempty"` }
Tracing contains configuration for tracing.
func (*Tracing) ConfigName ¶ added in v0.4.0
func (*Tracing) InitDefaults ¶ added in v0.4.0
func (cfg *Tracing) InitDefaults()