etc-0.0.0.1: Declarative configuration spec for Haskell projects

Safe HaskellNone
LanguageHaskell2010

System.Etc

Contents

Description

 

Synopsis

Config

Use this functions to fetch values from the Etc.Config and cast them to types that make sense in your program

getConfigValue :: (MonadThrow m, FromJSON result) => [Text] -> Config -> m result Source #

ConfigSpec

Use this functions to read the configuration spec. Remember you can use JSON or YAML(*) filepaths

  • The yaml cabal flag must be used to support yaml syntax

data ConfigSpec cmd Source #

Instances

Eq cmd => Eq (ConfigSpec cmd) Source # 

Methods

(==) :: ConfigSpec cmd -> ConfigSpec cmd -> Bool #

(/=) :: ConfigSpec cmd -> ConfigSpec cmd -> Bool #

Show cmd => Show (ConfigSpec cmd) Source # 

Methods

showsPrec :: Int -> ConfigSpec cmd -> ShowS #

show :: ConfigSpec cmd -> String #

showList :: [ConfigSpec cmd] -> ShowS #

FromJSON cmd => FromJSON (ConfigSpec cmd) Source # 

parseConfigSpec Source #

Arguments

:: (MonadCatch m, FromJSON cmd) 
=> Text

Text to be parsed

-> m (ConfigSpec cmd)

returns ConfigSpec

Parses a text input into a ConfigSpec, input can be JSON or YAML (if cabal flag is set).

readConfigSpec Source #

Arguments

:: FromJSON cmd 
=> Text

Filepath where contents are going to be read from and parsed

-> IO (ConfigSpec cmd)

returns ConfigSpec

Reads contents of a file and parses into a ConfigSpec, file contents can be either JSON or YAML (if cabal flag is set).

Resolvers

Use this functions to gather configuration values from different sources (environment variables, command lines or files). Then compose results together using the mappend function

resolveDefault Source #

Arguments

:: ConfigSpec cmd

ConfigSpec

-> Config

returns Configuration Map with default values included

Gathers all default values from the etc/spec entries inside a ConfigSpec

resolveFiles Source #

Arguments

:: ConfigSpec cmd

Config Spec

-> IO (Config, Vector SomeException)

Configuration Map with all values from files filled in and a list of warnings

Gathers configuration values from a list of files specified on the etc/filepaths entry of a Config Spec. This will return a Configuration Map with values from all filepaths merged in, and a list of errors in case there was an error reading one of the filepaths.

resolveEnvPure Source #

Arguments

:: ConfigSpec cmd

ConfigSpec

-> [(Text, Text)]

Environment Variable tuples

-> Config

returns Configuration Map with Environment Variables values filled in

Gathers all OS Environment Variable values (env entries) from the etc/spec entries inside a ConfigSpec. This version of the function gathers the input from a list of tuples rather than the OS.

resolveEnv Source #

Arguments

:: ConfigSpec cmd

Config Spec

-> IO Config

returns Configuration Map with Environment Variables values filled in

Gathers all OS Environment Variable values (env entries) from the etc/spec entries inside a ConfigSpec.