Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Crux.Config
Description
This module deals with loading configurations.
Synopsis
- data Config opts = Config {
- cfgFile :: SectionsSpec opts
- cfgEnv :: [EnvDescr opts]
- cfgCmdLineFlag :: [OptDescr opts]
- cfgJoin :: Config a -> Config b -> Config (a, b)
- data SectionsSpec a
- section :: Text -> ValueSpec a -> a -> Text -> SectionsSpec a
- sectionMaybe :: Text -> ValueSpec a -> Text -> SectionsSpec (Maybe a)
- yesOrNoSpec :: ValueSpec Bool
- stringSpec :: ValueSpec String
- numSpec :: Num a => ValueSpec a
- fractionalSpec :: Fractional a => ValueSpec a
- oneOrList :: ValueSpec a -> ValueSpec [a]
- fileSpec :: ValueSpec FilePath
- dirSpec :: ValueSpec FilePath
- listSpec :: ValueSpec a -> ValueSpec [a]
- data EnvDescr opts = EnvVar {}
- mapEnvDescr :: (OptSetter a -> OptSetter b) -> EnvDescr a -> EnvDescr b
- liftEnvDescr :: Lens' a b -> EnvDescr b -> EnvDescr a
- liftOptDescr :: Lens' a b -> OptDescr b -> OptDescr a
- data OptDescr a = Option {
- optShortFlags :: [Char]
- optLongFlags :: [String]
- optDescription :: String
- optArgument :: ArgDescr a
- data ArgDescr a
- type OptSetter a = a -> Either String a
- mapOptDescr :: (OptSetter a -> OptSetter b) -> OptDescr a -> OptDescr b
- mapArgDescr :: (OptSetter a -> OptSetter b) -> ArgDescr a -> ArgDescr b
- parsePosNum :: (Read a, Num a, Ord a) => String -> (a -> opts -> opts) -> String -> OptSetter opts
Writing configurations
Loading options from multiple sources. First we load configuration from a file, then we consider environment variables, and finally we update using the command line flags. If there is no configuration file provided, then this is equivalent to having an empty configuration file, so the config file schema should be able to cope with missing settings.
Constructors
Config | |
Fields
|
Configuration files
data SectionsSpec a #
A list of section specifications used to process a whole group of
key-value pairs. Multiple section specifications can be combined
using this type's Applicative
instance.
To create SectionsSpec
values see Config.Schema.Spec
Instances
Applicative SectionsSpec | |
Defined in Config.Schema.Types Methods pure :: a -> SectionsSpec a # (<*>) :: SectionsSpec (a -> b) -> SectionsSpec a -> SectionsSpec b # liftA2 :: (a -> b -> c) -> SectionsSpec a -> SectionsSpec b -> SectionsSpec c # (*>) :: SectionsSpec a -> SectionsSpec b -> SectionsSpec b # (<*) :: SectionsSpec a -> SectionsSpec b -> SectionsSpec a # | |
Functor SectionsSpec | |
Defined in Config.Schema.Types Methods fmap :: (a -> b) -> SectionsSpec a -> SectionsSpec b # (<$) :: a -> SectionsSpec b -> SectionsSpec a # |
Arguments
:: Text | Option name |
-> ValueSpec a | What type of value we expect |
-> a | Default value to use if option not specified |
-> Text | Documentation |
-> SectionsSpec a |
An option that can be configured in the file.
Arguments
:: Text | Option name |
-> ValueSpec a | What type of value we expect |
-> Text | Documentation |
-> SectionsSpec (Maybe a) |
stringSpec :: ValueSpec String #
Specification for matching any text as a String
fractionalSpec :: Fractional a => ValueSpec a #
Specification for matching any fractional number.
Since: config-schema-0.2.0.0
Specification that matches either a single element or multiple elements in a list. This can be convenient for allowing the user to avoid having to specify singleton lists in the configuration file.
Primitive specification for matching a list of values each satisfying a given element specification.
Environment variables
How the value of an environment variable contributes to the options.
Command line options
Describe an option.
Constructors
Option | |
Fields
|
Describe an option argumnet.
Constructors
NoArg (OptSetter a) | This option does not take an argument. |
ReqArg String (String -> OptSetter a) | This option has a required argument. The string describes the type of the argument. |
OptArg String (Maybe String -> OptSetter a) | This option has an optional argument. The string describes the type of the argument. |