{-# LANGUAGE UndecidableInstances, OverlappingInstances #-}
{-
Copyright (C) 2004-2008 John Goerzen <jgoerzen@complete.org>

This program is free software; you can redistribute it and/or modify it, as
specified in the COPYRIGHT file, under the terms of either version 2.1 of
the LGPL (or, at your option, any later version) or the 3-clause BSD license.
-}

{- |
   Module     : Data.ConfigFile
   Copyright  : Copyright (C) 2004-2008 John Goerzen
   License    : Either LGPL or BSD3, as specified in the COPYRIGHT file.

   Maintainer : John Goerzen <jgoerzen@complete.org>
   Stability  : provisional
   Portability: portable

Configuration file parsing, generation, and manipulation

Copyright (c) 2004-2008 John Goerzen, jgoerzen\@complete.org

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

This module contains extensive documentation.  Please scroll down to the Introduction section to continue reading.
-}
module Data.ConfigFile
    (
     -- * Introduction
     -- $introduction

     -- ** Features
     -- $features

     -- ** History
     -- $history

     -- * Configuration File Format
     -- $format

     -- ** White Space
     -- $whitespace

     -- ** Comments
     -- $comments

     -- ** Case Sensitivity
     -- $casesens

     -- ** Interpolation
     -- $interpolation

     -- * Usage Examples
     -- $usage

     -- ** Non-Monadic Usage
     -- $usagenomonad

     -- ** Error Monad Usage
     -- $usageerrormonad

     -- ** Combined Error\/IO Monad Usage
     -- $usageerroriomonad

     -- * Types
     -- $types
     SectionSpec, OptionSpec, ConfigParser(..),
     CPErrorData(..), CPError,
     -- * Initialization
     -- $initialization
     emptyCP,

     -- * Configuring the ConfigParser
     -- $configuringcp

     -- ** Access Functions
     simpleAccess, interpolatingAccess,

     -- * Reading
     -- $reading
     readfile, readhandle, readstring,

     -- * Accessing Data
     Get_C(..),
     sections, has_section,
     options, has_option,
     items,

     -- * Modifying Data
     set, setshow, remove_option,
     add_section, remove_section,
     merge,

     -- * Output Data
     to_string

    ) where

import Data.ConfigFile.Types
import Data.ConfigFile.Parser
import Data.Either.Utils
import Data.String.Utils
import qualified Data.Map as Map
import Data.List
import System.IO(Handle)
import Data.Char
import Control.Monad.Error

-- For interpolatingAccess
import Text.ParserCombinators.Parsec.Error (errorMessages, Message(..))
import Text.ParserCombinators.Parsec (parse)

----------------------------------------------------------------------
-- Basic types / default values
----------------------------------------------------------------------

{- | The default empty 'Data.ConfigFile' object.

The content contains only an empty mandatory @DEFAULT@ section.

'optionxform' is set to @map toLower@.

'usedefault' is set to @True@.

'accessfunc' is set to 'simpleAccess'.
-}
emptyCP :: ConfigParser
emptyCP :: ConfigParser
emptyCP = ConfigParser :: CPData
-> (OptionSpec -> OptionSpec)
-> (ConfigParser
    -> OptionSpec -> OptionSpec -> Either CPError OptionSpec)
-> Bool
-> (ConfigParser
    -> OptionSpec -> OptionSpec -> Either CPError OptionSpec)
-> ConfigParser
ConfigParser { content :: CPData
content = ParseOutput -> CPData
fromAL [(OptionSpec
"DEFAULT", [])],
                       defaulthandler :: ConfigParser
-> OptionSpec -> OptionSpec -> Either CPError OptionSpec
defaulthandler = ConfigParser
-> OptionSpec -> OptionSpec -> Either CPError OptionSpec
forall (m :: * -> *).
MonadError CPError m =>
ConfigParser -> OptionSpec -> OptionSpec -> m OptionSpec
defdefaulthandler,
                       optionxform :: OptionSpec -> OptionSpec
optionxform = (Char -> Char) -> OptionSpec -> OptionSpec
forall a b. (a -> b) -> [a] -> [b]
map Char -> Char
toLower,
                       usedefault :: Bool
usedefault = Bool
True,
                       accessfunc :: ConfigParser
-> OptionSpec -> OptionSpec -> Either CPError OptionSpec
accessfunc = ConfigParser
-> OptionSpec -> OptionSpec -> Either CPError OptionSpec
forall (m :: * -> *).
MonadError CPError m =>
ConfigParser -> OptionSpec -> OptionSpec -> m OptionSpec
simpleAccess}

{- | Low-level tool to convert a parsed object into a 'CPData'
representation.  Performs no option conversions or special handling
of @DEFAULT@. -}
fromAL :: ParseOutput -> CPData
fromAL :: ParseOutput -> CPData
fromAL ParseOutput
origal =
    let conv :: CPData -> (String, [(String, String)]) -> CPData
        conv :: CPData -> (OptionSpec, [(OptionSpec, OptionSpec)]) -> CPData
conv CPData
fm (OptionSpec, [(OptionSpec, OptionSpec)])
sect = OptionSpec -> Map OptionSpec OptionSpec -> CPData -> CPData
forall k a. Ord k => k -> a -> Map k a -> Map k a
Map.insert ((OptionSpec, [(OptionSpec, OptionSpec)]) -> OptionSpec
forall a b. (a, b) -> a
fst (OptionSpec, [(OptionSpec, OptionSpec)])
sect) ([(OptionSpec, OptionSpec)] -> Map OptionSpec OptionSpec
forall k a. Ord k => [(k, a)] -> Map k a
Map.fromList ([(OptionSpec, OptionSpec)] -> Map OptionSpec OptionSpec)
-> [(OptionSpec, OptionSpec)] -> Map OptionSpec OptionSpec
forall a b. (a -> b) -> a -> b
$ (OptionSpec, [(OptionSpec, OptionSpec)])
-> [(OptionSpec, OptionSpec)]
forall a b. (a, b) -> b
snd (OptionSpec, [(OptionSpec, OptionSpec)])
sect) CPData
fm
        in
        (CPData -> (OptionSpec, [(OptionSpec, OptionSpec)]) -> CPData)
-> CPData -> ParseOutput -> CPData
forall (t :: * -> *) b a.
Foldable t =>
(b -> a -> b) -> b -> t a -> b
foldl CPData -> (OptionSpec, [(OptionSpec, OptionSpec)]) -> CPData
conv CPData
forall k a. Map k a
Map.empty ParseOutput
origal

{- | Default (non-interpolating) access function -}
simpleAccess ::  MonadError CPError m =>
                 ConfigParser -> SectionSpec -> OptionSpec -> m String
simpleAccess :: ConfigParser -> OptionSpec -> OptionSpec -> m OptionSpec
simpleAccess ConfigParser
cp OptionSpec
s OptionSpec
o = ConfigParser -> OptionSpec -> OptionSpec -> m OptionSpec
forall (m :: * -> *).
MonadError CPError m =>
ConfigParser -> OptionSpec -> OptionSpec -> m OptionSpec
defdefaulthandler ConfigParser
cp OptionSpec
s (ConfigParser -> OptionSpec -> OptionSpec
optionxform ConfigParser
cp (OptionSpec -> OptionSpec) -> OptionSpec -> OptionSpec
forall a b. (a -> b) -> a -> b
$ OptionSpec
o)

{- | Interpolating access function.  Please see the Interpolation section
above for a background on interpolation.

Although the format string looks similar to one used by "Text.Printf",
it is not the same.  In particular, only the %(...)s format is supported.
No width specifiers are supported and no conversions other than s are supported.

To use this function, you must specify a maximum recursion depth for
interpolation.  This is used to prevent a stack overflow in the event that
the configuration file contains an endless interpolation loop.  Values of 10
or so are usually more than enough, though you could probably go into the
hundreds or thousands before you have actual problems.

A value less than one will cause an instant error every time you attempt
a lookup.

This access method can cause 'get' and friends to return a new 'CPError':
'InterpolationError'.  This error would be returned when:

 * The configuration file makes a reference to an option that does
   not exist

 * The maximum interpolation depth is exceeded

 * There is a syntax error processing a %-directive in the configuration
   file

An interpolation lookup name specifies an option only.  There is no provision
to specify a section.  Interpolation variables are looked up in the current
section, and, if 'usedefault' is True, in @DEFAULT@ according to the normal
logic.

To use a literal percent sign, you must place @%%@ in the configuration
file when interpolation is used.

Here is how you might enable interpolation:

>let cp2 = cp {accessfunc = interpolatingAccess 10}

The @cp2@ object will now support interpolation with a maximum depth of 10.
 -}
interpolatingAccess :: MonadError CPError m =>
                       Int ->
                       ConfigParser -> SectionSpec -> OptionSpec
                       -> m String

interpolatingAccess :: Int -> ConfigParser -> OptionSpec -> OptionSpec -> m OptionSpec
interpolatingAccess Int
maxdepth ConfigParser
cp OptionSpec
s OptionSpec
o =
    if Int
maxdepth Int -> Int -> Bool
forall a. Ord a => a -> a -> Bool
< Int
1
       then OptionSpec -> m OptionSpec
forall (m :: * -> *) a. MonadError CPError m => OptionSpec -> m a
interError OptionSpec
"maximum interpolation depth exceeded"
       else do OptionSpec
x <- ConfigParser -> OptionSpec -> OptionSpec -> m OptionSpec
forall (m :: * -> *).
MonadError CPError m =>
ConfigParser -> OptionSpec -> OptionSpec -> m OptionSpec
simpleAccess ConfigParser
cp OptionSpec
s OptionSpec
o
               case Parsec OptionSpec () OptionSpec
-> OptionSpec -> OptionSpec -> Either ParseError OptionSpec
forall s t a.
Stream s Identity t =>
Parsec s () a -> OptionSpec -> s -> Either ParseError a
parse ((OptionSpec -> Either CPError OptionSpec)
-> Parsec OptionSpec () OptionSpec
interpmain ((OptionSpec -> Either CPError OptionSpec)
 -> Parsec OptionSpec () OptionSpec)
-> (OptionSpec -> Either CPError OptionSpec)
-> Parsec OptionSpec () OptionSpec
forall a b. (a -> b) -> a -> b
$ OptionSpec -> Either CPError OptionSpec
lookupfunc) (OptionSpec
s OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec
"/" OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec
o) OptionSpec
x of
                 Left ParseError
y -> case [Message] -> Message
forall a. [a] -> a
head (ParseError -> [Message]
errorMessages ParseError
y) of
                                Message OptionSpec
z -> OptionSpec -> m OptionSpec
forall (m :: * -> *) a. MonadError CPError m => OptionSpec -> m a
interError OptionSpec
z
                                Message
_ -> OptionSpec -> m OptionSpec
forall (m :: * -> *) a. MonadError CPError m => OptionSpec -> m a
interError (ParseError -> OptionSpec
forall a. Show a => a -> OptionSpec
show ParseError
y)
                 Right OptionSpec
y -> OptionSpec -> m OptionSpec
forall (m :: * -> *) a. Monad m => a -> m a
return OptionSpec
y
    where
    lookupfunc :: OptionSpec -> Either CPError OptionSpec
lookupfunc = Int
-> ConfigParser
-> OptionSpec
-> OptionSpec
-> Either CPError OptionSpec
forall (m :: * -> *).
MonadError CPError m =>
Int -> ConfigParser -> OptionSpec -> OptionSpec -> m OptionSpec
interpolatingAccess (Int
maxdepth Int -> Int -> Int
forall a. Num a => a -> a -> a
- Int
1) ConfigParser
cp OptionSpec
s
    interError :: OptionSpec -> m a
interError OptionSpec
x = CPError -> m a
forall e (m :: * -> *) a. MonadError e m => e -> m a
throwError (OptionSpec -> CPErrorData
InterpolationError OptionSpec
x, OptionSpec
"interpolatingAccess")

-- internal function: default handler
defdefaulthandler ::  MonadError CPError m =>
                      ConfigParser -> SectionSpec -> OptionSpec -> m String

defdefaulthandler :: ConfigParser -> OptionSpec -> OptionSpec -> m OptionSpec
defdefaulthandler ConfigParser
cp OptionSpec
sectn OptionSpec
opt =
    let fm :: CPData
fm = ConfigParser -> CPData
content ConfigParser
cp
        lookUp :: OptionSpec -> OptionSpec -> m OptionSpec
lookUp OptionSpec
s OptionSpec
o = do Map OptionSpec OptionSpec
sect <- CPError
-> Maybe (Map OptionSpec OptionSpec)
-> m (Map OptionSpec OptionSpec)
forall e (m :: * -> *) a. MonadError e m => e -> Maybe a -> m a
maybeToEither (OptionSpec -> CPErrorData
NoSection OptionSpec
s,
                                               OptionSpec
"get " OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec -> OptionSpec -> OptionSpec
formatSO OptionSpec
sectn OptionSpec
opt) (Maybe (Map OptionSpec OptionSpec)
 -> m (Map OptionSpec OptionSpec))
-> Maybe (Map OptionSpec OptionSpec)
-> m (Map OptionSpec OptionSpec)
forall a b. (a -> b) -> a -> b
$
                                OptionSpec -> CPData -> Maybe (Map OptionSpec OptionSpec)
forall k a. Ord k => k -> Map k a -> Maybe a
Map.lookup OptionSpec
s CPData
fm
                        CPError -> Maybe OptionSpec -> m OptionSpec
forall e (m :: * -> *) a. MonadError e m => e -> Maybe a -> m a
maybeToEither (OptionSpec -> CPErrorData
NoOption OptionSpec
o,
                                       OptionSpec
"get " OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec -> OptionSpec -> OptionSpec
formatSO OptionSpec
sectn OptionSpec
opt) (Maybe OptionSpec -> m OptionSpec)
-> Maybe OptionSpec -> m OptionSpec
forall a b. (a -> b) -> a -> b
$
                                OptionSpec -> Map OptionSpec OptionSpec -> Maybe OptionSpec
forall k a. Ord k => k -> Map k a -> Maybe a
Map.lookup OptionSpec
o Map OptionSpec OptionSpec
sect
        trydefault :: CPError -> m OptionSpec
trydefault CPError
e = if (ConfigParser -> Bool
usedefault ConfigParser
cp)
                       then
                            OptionSpec -> OptionSpec -> m OptionSpec
forall (m :: * -> *).
MonadError CPError m =>
OptionSpec -> OptionSpec -> m OptionSpec
lookUp OptionSpec
"DEFAULT" OptionSpec
opt
                                       -- Use original error if it's not in DEFAULT either
                                       m OptionSpec -> (CPError -> m OptionSpec) -> m OptionSpec
forall e (m :: * -> *) a.
MonadError e m =>
m a -> (e -> m a) -> m a
`catchError` (\CPError
_ -> CPError -> m OptionSpec
forall e (m :: * -> *) a. MonadError e m => e -> m a
throwError CPError
e)
                       else CPError -> m OptionSpec
forall e (m :: * -> *) a. MonadError e m => e -> m a
throwError CPError
e
        in
        OptionSpec -> OptionSpec -> m OptionSpec
forall (m :: * -> *).
MonadError CPError m =>
OptionSpec -> OptionSpec -> m OptionSpec
lookUp OptionSpec
sectn OptionSpec
opt m OptionSpec -> (CPError -> m OptionSpec) -> m OptionSpec
forall e (m :: * -> *) a.
MonadError e m =>
m a -> (e -> m a) -> m a
`catchError` CPError -> m OptionSpec
forall (m :: * -> *).
MonadError CPError m =>
CPError -> m OptionSpec
trydefault


{- | Combines two 'ConfigParser's into one.

Any duplicate options are resolved to contain the value specified in
the second parser.

The 'ConfigParser' options in the resulting object will be set as they
are in the second one passed to this function. -}
merge :: ConfigParser -> ConfigParser -> ConfigParser
merge :: ConfigParser -> ConfigParser -> ConfigParser
merge ConfigParser
src ConfigParser
dest =
    let conv :: String -> String
        conv :: OptionSpec -> OptionSpec
conv = ConfigParser -> OptionSpec -> OptionSpec
optionxform ConfigParser
dest
        convFM :: CPOptions -> CPOptions
        convFM :: Map OptionSpec OptionSpec -> Map OptionSpec OptionSpec
convFM = [(OptionSpec, OptionSpec)] -> Map OptionSpec OptionSpec
forall k a. Ord k => [(k, a)] -> Map k a
Map.fromList ([(OptionSpec, OptionSpec)] -> Map OptionSpec OptionSpec)
-> (Map OptionSpec OptionSpec -> [(OptionSpec, OptionSpec)])
-> Map OptionSpec OptionSpec
-> Map OptionSpec OptionSpec
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ((OptionSpec, OptionSpec) -> (OptionSpec, OptionSpec))
-> [(OptionSpec, OptionSpec)] -> [(OptionSpec, OptionSpec)]
forall a b. (a -> b) -> [a] -> [b]
map (\(OptionSpec, OptionSpec)
x -> (OptionSpec -> OptionSpec
conv ((OptionSpec, OptionSpec) -> OptionSpec
forall a b. (a, b) -> a
fst (OptionSpec, OptionSpec)
x), (OptionSpec, OptionSpec) -> OptionSpec
forall a b. (a, b) -> b
snd (OptionSpec, OptionSpec)
x)) ([(OptionSpec, OptionSpec)] -> [(OptionSpec, OptionSpec)])
-> (Map OptionSpec OptionSpec -> [(OptionSpec, OptionSpec)])
-> Map OptionSpec OptionSpec
-> [(OptionSpec, OptionSpec)]
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Map OptionSpec OptionSpec -> [(OptionSpec, OptionSpec)]
forall k a. Map k a -> [(k, a)]
Map.toList
        mergesects :: Map k a -> Map k a -> Map k a
mergesects Map k a
a Map k a
b = Map k a -> Map k a -> Map k a
forall k a. Ord k => Map k a -> Map k a -> Map k a
Map.union Map k a
a Map k a
b
        in
        ConfigParser
dest { content :: CPData
content = (Map OptionSpec OptionSpec
 -> Map OptionSpec OptionSpec -> Map OptionSpec OptionSpec)
-> CPData -> CPData -> CPData
forall k a. Ord k => (a -> a -> a) -> Map k a -> Map k a -> Map k a
Map.unionWith Map OptionSpec OptionSpec
-> Map OptionSpec OptionSpec -> Map OptionSpec OptionSpec
forall k a. Ord k => Map k a -> Map k a -> Map k a
mergesects
                         (ConfigParser -> CPData
content ConfigParser
dest) ((Map OptionSpec OptionSpec -> Map OptionSpec OptionSpec)
-> CPData -> CPData
forall a b k. (a -> b) -> Map k a -> Map k b
Map.map Map OptionSpec OptionSpec -> Map OptionSpec OptionSpec
convFM (ConfigParser -> CPData
content ConfigParser
src)) }

{- | Utility to do a special case merge. -}
readutil :: ConfigParser -> ParseOutput -> ConfigParser
readutil :: ConfigParser -> ParseOutput -> ConfigParser
readutil ConfigParser
old ParseOutput
new = ConfigParser -> ConfigParser -> ConfigParser
merge ConfigParser
old (ConfigParser -> ConfigParser) -> ConfigParser -> ConfigParser
forall a b. (a -> b) -> a -> b
$ ConfigParser
old { content :: CPData
content = ParseOutput -> CPData
fromAL ParseOutput
new }

{- | Loads data from the specified file.  It is then combined with the
given 'ConfigParser' using the semantics documented under 'merge' with the
new data taking precedence over the old.  However, unlike
'merge', all the options
as set in the old object are preserved since the on-disk representation
does not convey those options.

May return an error if there is a syntax error.  May raise an exception if the file could not be accessed.
-}
--readfile :: ConfigParser -> FilePath ->IO (CPResult ConfigParser)
readfile :: MonadError CPError m => ConfigParser -> FilePath -> IO (m ConfigParser)
{-
readfile cp fp = do n <- parse_file fp
                    return $ do y <- n
                                return $ readutil cp y
-}
readfile :: ConfigParser -> OptionSpec -> IO (m ConfigParser)
readfile ConfigParser
cp OptionSpec
fp = do m ParseOutput
n <- OptionSpec -> IO (m ParseOutput)
forall (m :: * -> *).
MonadError CPError m =>
OptionSpec -> IO (m ParseOutput)
parse_file OptionSpec
fp
                    m ConfigParser -> IO (m ConfigParser)
forall (m :: * -> *) a. Monad m => a -> m a
return (m ConfigParser -> IO (m ConfigParser))
-> m ConfigParser -> IO (m ConfigParser)
forall a b. (a -> b) -> a -> b
$ m ParseOutput
n m ParseOutput -> (ParseOutput -> m ConfigParser) -> m ConfigParser
forall (m :: * -> *) a b. Monad m => m a -> (a -> m b) -> m b
>>= (ConfigParser -> m ConfigParser
forall (m :: * -> *) a. Monad m => a -> m a
return (ConfigParser -> m ConfigParser)
-> (ParseOutput -> ConfigParser) -> ParseOutput -> m ConfigParser
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ConfigParser -> ParseOutput -> ConfigParser
readutil ConfigParser
cp)

{- | Like 'readfile', but uses an already-open handle.  You should
use 'readfile' instead of this if possible, since it will be able to
generate better error messages.

Errors would be returned on a syntax error.
-}
--readhandle :: ConfigParser -> Handle -> IO (CPResult ConfigParser)
readhandle :: MonadError CPError m => ConfigParser -> Handle -> IO (m ConfigParser)
readhandle :: ConfigParser -> Handle -> IO (m ConfigParser)
readhandle ConfigParser
cp Handle
h = do m ParseOutput
n <- Handle -> IO (m ParseOutput)
forall (m :: * -> *).
MonadError CPError m =>
Handle -> IO (m ParseOutput)
parse_handle Handle
h
                     m ConfigParser -> IO (m ConfigParser)
forall (m :: * -> *) a. Monad m => a -> m a
return (m ConfigParser -> IO (m ConfigParser))
-> m ConfigParser -> IO (m ConfigParser)
forall a b. (a -> b) -> a -> b
$ m ParseOutput
n m ParseOutput -> (ParseOutput -> m ConfigParser) -> m ConfigParser
forall (m :: * -> *) a b. Monad m => m a -> (a -> m b) -> m b
>>= (ConfigParser -> m ConfigParser
forall (m :: * -> *) a. Monad m => a -> m a
return (ConfigParser -> m ConfigParser)
-> (ParseOutput -> ConfigParser) -> ParseOutput -> m ConfigParser
forall b c a. (b -> c) -> (a -> b) -> a -> c
. (ConfigParser -> ParseOutput -> ConfigParser
readutil ConfigParser
cp))

{- | Like 'readfile', but uses a string.  You should use 'readfile'
instead of this if you are processing a file, since it can generate
better error messages.

Errors would be returned on a syntax error.
-}
readstring ::  MonadError CPError m =>
               ConfigParser -> String -> m ConfigParser
readstring :: ConfigParser -> OptionSpec -> m ConfigParser
readstring ConfigParser
cp OptionSpec
s = do
                  ParseOutput
n <- OptionSpec -> m ParseOutput
forall (m :: * -> *).
MonadError CPError m =>
OptionSpec -> m ParseOutput
parse_string OptionSpec
s
                  ConfigParser -> m ConfigParser
forall (m :: * -> *) a. Monad m => a -> m a
return (ConfigParser -> m ConfigParser) -> ConfigParser -> m ConfigParser
forall a b. (a -> b) -> a -> b
$ ConfigParser -> ParseOutput -> ConfigParser
readutil ConfigParser
cp ParseOutput
n

{- | Returns a list of sections in your configuration file.  Never includes
the always-present section @DEFAULT@. -}
sections :: ConfigParser -> [SectionSpec]
sections :: ConfigParser -> [OptionSpec]
sections = (OptionSpec -> Bool) -> [OptionSpec] -> [OptionSpec]
forall a. (a -> Bool) -> [a] -> [a]
filter (OptionSpec -> OptionSpec -> Bool
forall a. Eq a => a -> a -> Bool
/= OptionSpec
"DEFAULT") ([OptionSpec] -> [OptionSpec])
-> (ConfigParser -> [OptionSpec]) -> ConfigParser -> [OptionSpec]
forall b c a. (b -> c) -> (a -> b) -> a -> c
. CPData -> [OptionSpec]
forall k a. Map k a -> [k]
Map.keys (CPData -> [OptionSpec])
-> (ConfigParser -> CPData) -> ConfigParser -> [OptionSpec]
forall b c a. (b -> c) -> (a -> b) -> a -> c
. ConfigParser -> CPData
content

{- | Indicates whether the given section exists.

No special @DEFAULT@ processing is done. -}
has_section :: ConfigParser -> SectionSpec -> Bool
has_section :: ConfigParser -> OptionSpec -> Bool
has_section ConfigParser
cp OptionSpec
x = OptionSpec -> CPData -> Bool
forall k a. Ord k => k -> Map k a -> Bool
Map.member OptionSpec
x (ConfigParser -> CPData
content ConfigParser
cp)

{- | Adds the specified section name.  Returns a
'SectionAlreadyExists' error if the
section was already present.  Otherwise, returns the new
'ConfigParser' object.-}
add_section ::  MonadError CPError m =>
                ConfigParser -> SectionSpec -> m ConfigParser
add_section :: ConfigParser -> OptionSpec -> m ConfigParser
add_section ConfigParser
cp OptionSpec
s =
    if ConfigParser -> OptionSpec -> Bool
has_section ConfigParser
cp OptionSpec
s
       then CPError -> m ConfigParser
forall e (m :: * -> *) a. MonadError e m => e -> m a
throwError (CPError -> m ConfigParser) -> CPError -> m ConfigParser
forall a b. (a -> b) -> a -> b
$ (OptionSpec -> CPErrorData
SectionAlreadyExists OptionSpec
s, OptionSpec
"add_section")
       else ConfigParser -> m ConfigParser
forall (m :: * -> *) a. Monad m => a -> m a
return (ConfigParser -> m ConfigParser) -> ConfigParser -> m ConfigParser
forall a b. (a -> b) -> a -> b
$ ConfigParser
cp {content :: CPData
content = OptionSpec -> Map OptionSpec OptionSpec -> CPData -> CPData
forall k a. Ord k => k -> a -> Map k a -> Map k a
Map.insert OptionSpec
s Map OptionSpec OptionSpec
forall k a. Map k a
Map.empty (ConfigParser -> CPData
content ConfigParser
cp)}

{- | Removes the specified section.  Returns a 'NoSection' error if
the section does not exist; otherwise, returns the new 'ConfigParser'
object.

This call may not be used to remove the @DEFAULT@ section.  Attempting to do
so will always cause a 'NoSection' error.
 -}
remove_section ::  MonadError CPError m =>
                   ConfigParser -> SectionSpec -> m ConfigParser
remove_section :: ConfigParser -> OptionSpec -> m ConfigParser
remove_section ConfigParser
_ OptionSpec
"DEFAULT" = CPError -> m ConfigParser
forall e (m :: * -> *) a. MonadError e m => e -> m a
throwError (CPError -> m ConfigParser) -> CPError -> m ConfigParser
forall a b. (a -> b) -> a -> b
$ (OptionSpec -> CPErrorData
NoSection OptionSpec
"DEFAULT", OptionSpec
"remove_section")
remove_section ConfigParser
cp OptionSpec
s =
    if ConfigParser -> OptionSpec -> Bool
has_section ConfigParser
cp OptionSpec
s
       then ConfigParser -> m ConfigParser
forall (m :: * -> *) a. Monad m => a -> m a
return (ConfigParser -> m ConfigParser) -> ConfigParser -> m ConfigParser
forall a b. (a -> b) -> a -> b
$ ConfigParser
cp {content :: CPData
content = OptionSpec -> CPData -> CPData
forall k a. Ord k => k -> Map k a -> Map k a
Map.delete OptionSpec
s (ConfigParser -> CPData
content ConfigParser
cp)}
       else CPError -> m ConfigParser
forall e (m :: * -> *) a. MonadError e m => e -> m a
throwError (CPError -> m ConfigParser) -> CPError -> m ConfigParser
forall a b. (a -> b) -> a -> b
$ (OptionSpec -> CPErrorData
NoSection OptionSpec
s, OptionSpec
"remove_section")

{- | Removes the specified option.  Returns a 'NoSection' error if the
section does not exist and a 'NoOption' error if the option does not
exist.  Otherwise, returns the new 'ConfigParser' object.
-}
remove_option ::  MonadError CPError m =>
                  ConfigParser -> SectionSpec -> OptionSpec -> m ConfigParser
remove_option :: ConfigParser -> OptionSpec -> OptionSpec -> m ConfigParser
remove_option ConfigParser
cp OptionSpec
s OptionSpec
passedo =
    do Map OptionSpec OptionSpec
sectmap <- CPError
-> Maybe (Map OptionSpec OptionSpec)
-> m (Map OptionSpec OptionSpec)
forall e (m :: * -> *) a. MonadError e m => e -> Maybe a -> m a
maybeToEither (OptionSpec -> CPErrorData
NoSection OptionSpec
s,
                                 OptionSpec
"remove_option " OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec -> OptionSpec -> OptionSpec
formatSO OptionSpec
s OptionSpec
passedo) (Maybe (Map OptionSpec OptionSpec)
 -> m (Map OptionSpec OptionSpec))
-> Maybe (Map OptionSpec OptionSpec)
-> m (Map OptionSpec OptionSpec)
forall a b. (a -> b) -> a -> b
$
                  OptionSpec -> CPData -> Maybe (Map OptionSpec OptionSpec)
forall k a. Ord k => k -> Map k a -> Maybe a
Map.lookup OptionSpec
s (ConfigParser -> CPData
content ConfigParser
cp)
       let o :: OptionSpec
o = (ConfigParser -> OptionSpec -> OptionSpec
optionxform ConfigParser
cp) OptionSpec
passedo
       let newsect :: Map OptionSpec OptionSpec
newsect = OptionSpec
-> Map OptionSpec OptionSpec -> Map OptionSpec OptionSpec
forall k a. Ord k => k -> Map k a -> Map k a
Map.delete OptionSpec
o Map OptionSpec OptionSpec
sectmap
       let newmap :: CPData
newmap = OptionSpec -> Map OptionSpec OptionSpec -> CPData -> CPData
forall k a. Ord k => k -> a -> Map k a -> Map k a
Map.insert OptionSpec
s Map OptionSpec OptionSpec
newsect (ConfigParser -> CPData
content ConfigParser
cp)
       if OptionSpec -> Map OptionSpec OptionSpec -> Bool
forall k a. Ord k => k -> Map k a -> Bool
Map.member OptionSpec
o Map OptionSpec OptionSpec
sectmap
          then ConfigParser -> m ConfigParser
forall (m :: * -> *) a. Monad m => a -> m a
return (ConfigParser -> m ConfigParser) -> ConfigParser -> m ConfigParser
forall a b. (a -> b) -> a -> b
$ ConfigParser
cp {content :: CPData
content = CPData
newmap}
          else CPError -> m ConfigParser
forall e (m :: * -> *) a. MonadError e m => e -> m a
throwError (CPError -> m ConfigParser) -> CPError -> m ConfigParser
forall a b. (a -> b) -> a -> b
$ (OptionSpec -> CPErrorData
NoOption OptionSpec
o,
                             OptionSpec
"remove_option " OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec -> OptionSpec -> OptionSpec
formatSO OptionSpec
s OptionSpec
passedo)

{- | Returns a list of the names of all the options present in the
given section.

Returns an error if the given section does not exist.
-}
options ::  MonadError CPError m =>
            ConfigParser -> SectionSpec -> m [OptionSpec]
options :: ConfigParser -> OptionSpec -> m [OptionSpec]
options ConfigParser
cp OptionSpec
x = CPError -> Maybe [OptionSpec] -> m [OptionSpec]
forall e (m :: * -> *) a. MonadError e m => e -> Maybe a -> m a
maybeToEither (OptionSpec -> CPErrorData
NoSection OptionSpec
x, OptionSpec
"options") (Maybe [OptionSpec] -> m [OptionSpec])
-> Maybe [OptionSpec] -> m [OptionSpec]
forall a b. (a -> b) -> a -> b
$
               do
               Map OptionSpec OptionSpec
o <- OptionSpec -> CPData -> Maybe (Map OptionSpec OptionSpec)
forall k a. Ord k => k -> Map k a -> Maybe a
Map.lookup OptionSpec
x (ConfigParser -> CPData
content ConfigParser
cp)
               [OptionSpec] -> Maybe [OptionSpec]
forall (m :: * -> *) a. Monad m => a -> m a
return ([OptionSpec] -> Maybe [OptionSpec])
-> [OptionSpec] -> Maybe [OptionSpec]
forall a b. (a -> b) -> a -> b
$ Map OptionSpec OptionSpec -> [OptionSpec]
forall k a. Map k a -> [k]
Map.keys Map OptionSpec OptionSpec
o

{- | Indicates whether the given option is present.  Returns True
only if the given section is present AND the given option is present
in that section.  No special @DEFAULT@ processing is done.  No
exception could be raised or error returned.
-}
has_option :: ConfigParser -> SectionSpec -> OptionSpec -> Bool
has_option :: ConfigParser -> OptionSpec -> OptionSpec -> Bool
has_option ConfigParser
cp OptionSpec
s OptionSpec
o =
    let c :: CPData
c = ConfigParser -> CPData
content ConfigParser
cp
        v :: Maybe Bool
v = do Map OptionSpec OptionSpec
secthash <- OptionSpec -> CPData -> Maybe (Map OptionSpec OptionSpec)
forall k a. Ord k => k -> Map k a -> Maybe a
Map.lookup OptionSpec
s CPData
c
               Bool -> Maybe Bool
forall (m :: * -> *) a. Monad m => a -> m a
return (Bool -> Maybe Bool) -> Bool -> Maybe Bool
forall a b. (a -> b) -> a -> b
$ OptionSpec -> Map OptionSpec OptionSpec -> Bool
forall k a. Ord k => k -> Map k a -> Bool
Map.member (ConfigParser -> OptionSpec -> OptionSpec
optionxform ConfigParser
cp (OptionSpec -> OptionSpec) -> OptionSpec -> OptionSpec
forall a b. (a -> b) -> a -> b
$ OptionSpec
o) Map OptionSpec OptionSpec
secthash
        in Bool -> (Bool -> Bool) -> Maybe Bool -> Bool
forall b a. b -> (a -> b) -> Maybe a -> b
maybe Bool
False Bool -> Bool
forall a. a -> a
id Maybe Bool
v

{- | The class representing the data types that can be returned by "get".
-}
class Get_C a where
    {- | Retrieves a string from the configuration file.

When used in a context where a String is expected, returns that string verbatim.

When used in a context where a Bool is expected, parses the string to
a Boolean value (see logic below).

When used in a context where anything that is an instance of Read is expected,
calls read to parse the item.

An error will be returned of no such option could be found or if it could
not be parsed as a boolean (when returning a Bool).

When parsing to a Bool, strings are case-insentively converted as follows:

The following will produce a True value:

 * 1

 * yes

 * on

 * enabled

 * true

The following will produce a False value:

 * 0

 * no

 * off

 * disabled

 * false -}
    get :: MonadError CPError m => ConfigParser -> SectionSpec -> OptionSpec -> m a

instance Get_C String where
    get :: ConfigParser -> OptionSpec -> OptionSpec -> m OptionSpec
get ConfigParser
cp OptionSpec
s OptionSpec
o = Either CPError OptionSpec -> m OptionSpec
forall e (m :: * -> *) a. MonadError e m => Either e a -> m a
eitherToMonadError (Either CPError OptionSpec -> m OptionSpec)
-> Either CPError OptionSpec -> m OptionSpec
forall a b. (a -> b) -> a -> b
$ (ConfigParser
-> ConfigParser
-> OptionSpec
-> OptionSpec
-> Either CPError OptionSpec
accessfunc ConfigParser
cp) ConfigParser
cp OptionSpec
s OptionSpec
o

instance Get_C Bool where
    get :: ConfigParser -> OptionSpec -> OptionSpec -> m Bool
get = ConfigParser -> OptionSpec -> OptionSpec -> m Bool
forall (m :: * -> *).
MonadError CPError m =>
ConfigParser -> OptionSpec -> OptionSpec -> m Bool
getbool

instance Read t => Get_C t where
    get :: ConfigParser -> OptionSpec -> OptionSpec -> m t
get = ConfigParser -> OptionSpec -> OptionSpec -> m t
forall b (m :: * -> *).
(Read b, MonadError CPError m) =>
ConfigParser -> OptionSpec -> OptionSpec -> m b
genericget

-- Based on code from Neil Mitchell's safe-0.3.3 package.
readMaybe :: Read a => String -> Maybe a
readMaybe :: OptionSpec -> Maybe a
readMaybe OptionSpec
s = case [a
x | (a
x, OptionSpec
t) <- ReadS a
forall a. Read a => ReadS a
reads OptionSpec
s, (OptionSpec
"",OptionSpec
"") <- ReadS OptionSpec
lex OptionSpec
t] of
                [a
x] -> a -> Maybe a
forall a. a -> Maybe a
Just a
x
                [a]
_   -> Maybe a
forall a. Maybe a
Nothing

genericget :: (Read b, MonadError CPError m) => ConfigParser -> SectionSpec -> OptionSpec -> m b
genericget :: ConfigParser -> OptionSpec -> OptionSpec -> m b
genericget ConfigParser
cp OptionSpec
s OptionSpec
o = do
    OptionSpec
val <- ConfigParser -> OptionSpec -> OptionSpec -> m OptionSpec
forall a (m :: * -> *).
(Get_C a, MonadError CPError m) =>
ConfigParser -> OptionSpec -> OptionSpec -> m a
get ConfigParser
cp OptionSpec
s OptionSpec
o
    let errMsg :: OptionSpec
errMsg = OptionSpec
"couldn't parse value " OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec
val OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec
" from " OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec -> OptionSpec -> OptionSpec
formatSO OptionSpec
s OptionSpec
o
    m b -> (b -> m b) -> Maybe b -> m b
forall b a. b -> (a -> b) -> Maybe a -> b
maybe (CPError -> m b
forall e (m :: * -> *) a. MonadError e m => e -> m a
throwError (OptionSpec -> CPErrorData
ParseError OptionSpec
errMsg, OptionSpec
"genericget"))
          b -> m b
forall (m :: * -> *) a. Monad m => a -> m a
return
          (Maybe b -> m b) -> Maybe b -> m b
forall a b. (a -> b) -> a -> b
$ OptionSpec -> Maybe b
forall a. Read a => OptionSpec -> Maybe a
readMaybe OptionSpec
val

getbool ::  MonadError CPError m =>
            ConfigParser -> SectionSpec -> OptionSpec -> m Bool
getbool :: ConfigParser -> OptionSpec -> OptionSpec -> m Bool
getbool ConfigParser
cp OptionSpec
s OptionSpec
o =
    do OptionSpec
val <- ConfigParser -> OptionSpec -> OptionSpec -> m OptionSpec
forall a (m :: * -> *).
(Get_C a, MonadError CPError m) =>
ConfigParser -> OptionSpec -> OptionSpec -> m a
get ConfigParser
cp OptionSpec
s OptionSpec
o
       case (Char -> Char) -> OptionSpec -> OptionSpec
forall a b. (a -> b) -> [a] -> [b]
map Char -> Char
toLower (OptionSpec -> OptionSpec)
-> (OptionSpec -> OptionSpec) -> OptionSpec -> OptionSpec
forall b c a. (b -> c) -> (a -> b) -> a -> c
. OptionSpec -> OptionSpec
strip (OptionSpec -> OptionSpec) -> OptionSpec -> OptionSpec
forall a b. (a -> b) -> a -> b
$ OptionSpec
val of
                  OptionSpec
"1" -> Bool -> m Bool
forall (m :: * -> *) a. Monad m => a -> m a
return Bool
True
                  OptionSpec
"yes" -> Bool -> m Bool
forall (m :: * -> *) a. Monad m => a -> m a
return Bool
True
                  OptionSpec
"on" -> Bool -> m Bool
forall (m :: * -> *) a. Monad m => a -> m a
return Bool
True
                  OptionSpec
"enabled" -> Bool -> m Bool
forall (m :: * -> *) a. Monad m => a -> m a
return Bool
True
                  OptionSpec
"true" -> Bool -> m Bool
forall (m :: * -> *) a. Monad m => a -> m a
return Bool
True
                  OptionSpec
"0" -> Bool -> m Bool
forall (m :: * -> *) a. Monad m => a -> m a
return Bool
False
                  OptionSpec
"no" -> Bool -> m Bool
forall (m :: * -> *) a. Monad m => a -> m a
return Bool
False
                  OptionSpec
"off" -> Bool -> m Bool
forall (m :: * -> *) a. Monad m => a -> m a
return Bool
False
                  OptionSpec
"disabled" -> Bool -> m Bool
forall (m :: * -> *) a. Monad m => a -> m a
return Bool
False
                  OptionSpec
"false" -> Bool -> m Bool
forall (m :: * -> *) a. Monad m => a -> m a
return Bool
False
                  OptionSpec
_ -> CPError -> m Bool
forall e (m :: * -> *) a. MonadError e m => e -> m a
throwError (OptionSpec -> CPErrorData
ParseError (OptionSpec -> CPErrorData) -> OptionSpec -> CPErrorData
forall a b. (a -> b) -> a -> b
$ OptionSpec
"couldn't parse bool " OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++
                                   OptionSpec
val OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec
" from " OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec -> OptionSpec -> OptionSpec
formatSO OptionSpec
s OptionSpec
o, OptionSpec
"getbool")

formatSO :: [Char] -> [Char] -> [Char]
formatSO :: OptionSpec -> OptionSpec -> OptionSpec
formatSO OptionSpec
s OptionSpec
o =
    OptionSpec
"(" OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec
s OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec
"/" OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec
o OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec
")"


{- | Returns a list of @(optionname, value)@ pairs representing the content
of the given section.  Returns an error the section is invalid. -}
items ::  MonadError CPError m =>
          ConfigParser -> SectionSpec -> m [(OptionSpec, String)]
items :: ConfigParser -> OptionSpec -> m [(OptionSpec, OptionSpec)]
items ConfigParser
cp OptionSpec
s = do Map OptionSpec OptionSpec
fm <- CPError
-> Maybe (Map OptionSpec OptionSpec)
-> m (Map OptionSpec OptionSpec)
forall e (m :: * -> *) a. MonadError e m => e -> Maybe a -> m a
maybeToEither (OptionSpec -> CPErrorData
NoSection OptionSpec
s, OptionSpec
"items") (Maybe (Map OptionSpec OptionSpec)
 -> m (Map OptionSpec OptionSpec))
-> Maybe (Map OptionSpec OptionSpec)
-> m (Map OptionSpec OptionSpec)
forall a b. (a -> b) -> a -> b
$
                      OptionSpec -> CPData -> Maybe (Map OptionSpec OptionSpec)
forall k a. Ord k => k -> Map k a -> Maybe a
Map.lookup OptionSpec
s (ConfigParser -> CPData
content ConfigParser
cp)
                [(OptionSpec, OptionSpec)] -> m [(OptionSpec, OptionSpec)]
forall (m :: * -> *) a. Monad m => a -> m a
return ([(OptionSpec, OptionSpec)] -> m [(OptionSpec, OptionSpec)])
-> [(OptionSpec, OptionSpec)] -> m [(OptionSpec, OptionSpec)]
forall a b. (a -> b) -> a -> b
$ Map OptionSpec OptionSpec -> [(OptionSpec, OptionSpec)]
forall k a. Map k a -> [(k, a)]
Map.toList Map OptionSpec OptionSpec
fm

{- | Sets the option to a new value, replacing an existing one if it exists.

Returns an error if the section does not exist. -}
set ::  MonadError CPError m =>
        ConfigParser -> SectionSpec -> OptionSpec -> String -> m ConfigParser
set :: ConfigParser
-> OptionSpec -> OptionSpec -> OptionSpec -> m ConfigParser
set ConfigParser
cp OptionSpec
s OptionSpec
passedo OptionSpec
val =
    do Map OptionSpec OptionSpec
sectmap <- CPError
-> Maybe (Map OptionSpec OptionSpec)
-> m (Map OptionSpec OptionSpec)
forall e (m :: * -> *) a. MonadError e m => e -> Maybe a -> m a
maybeToEither (OptionSpec -> CPErrorData
NoSection OptionSpec
s, OptionSpec
"set " OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec -> OptionSpec -> OptionSpec
formatSO OptionSpec
s OptionSpec
passedo) (Maybe (Map OptionSpec OptionSpec)
 -> m (Map OptionSpec OptionSpec))
-> Maybe (Map OptionSpec OptionSpec)
-> m (Map OptionSpec OptionSpec)
forall a b. (a -> b) -> a -> b
$
                  OptionSpec -> CPData -> Maybe (Map OptionSpec OptionSpec)
forall k a. Ord k => k -> Map k a -> Maybe a
Map.lookup OptionSpec
s (ConfigParser -> CPData
content ConfigParser
cp)
       let o :: OptionSpec
o = (ConfigParser -> OptionSpec -> OptionSpec
optionxform ConfigParser
cp) OptionSpec
passedo
       let newsect :: Map OptionSpec OptionSpec
newsect = OptionSpec
-> OptionSpec
-> Map OptionSpec OptionSpec
-> Map OptionSpec OptionSpec
forall k a. Ord k => k -> a -> Map k a -> Map k a
Map.insert OptionSpec
o OptionSpec
val Map OptionSpec OptionSpec
sectmap
       let newmap :: CPData
newmap = OptionSpec -> Map OptionSpec OptionSpec -> CPData -> CPData
forall k a. Ord k => k -> a -> Map k a -> Map k a
Map.insert OptionSpec
s Map OptionSpec OptionSpec
newsect (ConfigParser -> CPData
content ConfigParser
cp)
       ConfigParser -> m ConfigParser
forall (m :: * -> *) a. Monad m => a -> m a
return (ConfigParser -> m ConfigParser) -> ConfigParser -> m ConfigParser
forall a b. (a -> b) -> a -> b
$ ConfigParser
cp { content :: CPData
content = CPData
newmap}

{- | Sets the option to a new value, replacing an existing one if it exists.
It requires only a showable value as its parameter.
This can be used with bool values, as well as numeric ones.

Returns an error if the section does not exist. -}
setshow :: (Show a, MonadError CPError m) =>
           ConfigParser -> SectionSpec -> OptionSpec -> a -> m ConfigParser
setshow :: ConfigParser -> OptionSpec -> OptionSpec -> a -> m ConfigParser
setshow ConfigParser
cp OptionSpec
s OptionSpec
o a
val = ConfigParser
-> OptionSpec -> OptionSpec -> OptionSpec -> m ConfigParser
forall (m :: * -> *).
MonadError CPError m =>
ConfigParser
-> OptionSpec -> OptionSpec -> OptionSpec -> m ConfigParser
set ConfigParser
cp OptionSpec
s OptionSpec
o (a -> OptionSpec
forall a. Show a => a -> OptionSpec
show a
val)

{- | Converts the 'ConfigParser' to a string representation that could be
later re-parsed by this module or modified by a human.

Note that this does not necessarily re-create a file that was originally
loaded.  Things may occur in a different order, comments will be removed,
etc.  The conversion makes an effort to make the result human-editable,
but it does not make an effort to make the result identical to the original
input.

The result is, however, guaranteed to parse the same as the original input.
 -}
to_string :: ConfigParser -> String
to_string :: ConfigParser -> OptionSpec
to_string ConfigParser
cp =
    let gen_option :: (OptionSpec, OptionSpec) -> OptionSpec
gen_option (OptionSpec
key, OptionSpec
value) =
            OptionSpec
key OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec
": " OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ (OptionSpec -> OptionSpec -> OptionSpec -> OptionSpec
forall a. Eq a => [a] -> [a] -> [a] -> [a]
replace OptionSpec
"\n" OptionSpec
"\n    " OptionSpec
value) OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec
"\n"
        gen_section :: (OptionSpec, Map OptionSpec OptionSpec) -> OptionSpec
gen_section (OptionSpec
sect, Map OptionSpec OptionSpec
valfm) = -- gen a section, but omit DEFAULT if empty
            if (OptionSpec
sect OptionSpec -> OptionSpec -> Bool
forall a. Eq a => a -> a -> Bool
/= OptionSpec
"DEFAULT") Bool -> Bool -> Bool
|| (Map OptionSpec OptionSpec -> Int
forall k a. Map k a -> Int
Map.size Map OptionSpec OptionSpec
valfm Int -> Int -> Bool
forall a. Ord a => a -> a -> Bool
> Int
0)
               then OptionSpec
"[" OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec
sect OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec
"]\n" OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++
                        ([OptionSpec] -> OptionSpec
forall (t :: * -> *) a. Foldable t => t [a] -> [a]
concat ([OptionSpec] -> OptionSpec) -> [OptionSpec] -> OptionSpec
forall a b. (a -> b) -> a -> b
$ ((OptionSpec, OptionSpec) -> OptionSpec)
-> [(OptionSpec, OptionSpec)] -> [OptionSpec]
forall a b. (a -> b) -> [a] -> [b]
map (OptionSpec, OptionSpec) -> OptionSpec
gen_option (Map OptionSpec OptionSpec -> [(OptionSpec, OptionSpec)]
forall k a. Map k a -> [(k, a)]
Map.toList Map OptionSpec OptionSpec
valfm)) OptionSpec -> OptionSpec -> OptionSpec
forall a. [a] -> [a] -> [a]
++ OptionSpec
"\n"
               else OptionSpec
""
        in
        [OptionSpec] -> OptionSpec
forall (t :: * -> *) a. Foldable t => t [a] -> [a]
concat ([OptionSpec] -> OptionSpec) -> [OptionSpec] -> OptionSpec
forall a b. (a -> b) -> a -> b
$ ((OptionSpec, Map OptionSpec OptionSpec) -> OptionSpec)
-> [(OptionSpec, Map OptionSpec OptionSpec)] -> [OptionSpec]
forall a b. (a -> b) -> [a] -> [b]
map (OptionSpec, Map OptionSpec OptionSpec) -> OptionSpec
gen_section (CPData -> [(OptionSpec, Map OptionSpec OptionSpec)]
forall k a. Map k a -> [(k, a)]
Map.toList (ConfigParser -> CPData
content ConfigParser
cp))

----------------------------------------------------------------------
-- Docs
----------------------------------------------------------------------

{- $introduction

Many programs need configuration files. These configuration files are
typically used to configure certain runtime behaviors that need to be
saved across sessions. Various different configuration file formats
exist.

The ConfigParser module attempts to define a standard format that is
easy for the user to edit, easy for the programmer to work with, yet
remains powerful and flexible.
-}

{- $features

For the programmer, this module provides:

 * Simple calls to both read /and write/ configuration files

 * Call that can generate a string version of a file that is
   re-parsable by this module (useful for, for instance, sending the
   file down a network)

 * Segmented configuration files that let you separate configuration
   into distinct sections, each with its own namespace. This can be
   used to configure multiple modules in one file, to configure
   multiple instances of a single object, etc.

 * On-the-fly parsing of integer, boolean, float, multi-line string values,
   and anything else Haskell's read can deal with

 * It is possible to make a configuration file parsable by this
   module, the Unix shell, and\/or Unix make, though some feautres are,
   of course, not compatible with these other tools.

 * Syntax checking with error reporting including line numbers

 * Implemented in pure Haskell.  No dependencies on modules outside
   the standard library distributed with Haskell compilers or interpreters.
   All calls except those that read directly from a handle are pure calls
   and can be used outside the IO monad.

 * Comprehensive documentation

 * Extensible API

 * Complete compatibility with Python's ConfigParser module, or my
   ConfigParser module for OCaml, part of my MissingLib package.

For the user, this module provides:

 * Easily human-editable configuration files with a clear, concise,
   and consistent format

 * Configuration file format consistent with other familiar formats
   (\/etc\/passwd is a valid ConfigParser file)

 * No need to understand semantics of markup languages like XML
-}

{- $history

This module is based on Python's ConfigParser module at
<http://www.python.org/doc/current/lib/module-ConfigParser.html>.  I had
earlier developed an OCaml implementation as part of my MissingLib library
at <gopher://gopher.quux.org/devel/missinglib>.

While the API of these three modules is similar, and the aim is to preserve all
useful features of the original Python module, there are some differences
in the implementation details.  This module is a complete, clean re-implementation
in Haskell, not a Haskell translation of a Python program.  As such, the feature
set is slightly different.
-}

{- $format

The basic configuration file format resembles that of an old-style
Windows .INI file. Here are two samples:

>debug = yes
>inputfile = /etc/passwd
>names = Peter, Paul, Mary, George, Abrahaham, John, Bill, Gerald, Richard,
>        Franklin, Woodrow
>color = red

This defines a file without any explicit section, so all items will
occur within the default section @DEFAULT@. The @debug@ option can be read
as a boolean or a string. The remaining items can be read as a string
only. The @names@ entry spans two lines -- any line starting with
whitespace, and containing something other than whitespace or
comments, is taken as a continuation of the previous line.

Here's another example:

># Default options
>[DEFAULT]
>hostname: localhost
># Options for the first file
>[file1]
>location: /usr/local
>user: Fred
>uid: 1000
>optionaltext: Hello, this  entire string is included
>[file2]
>location: /opt
>user: Fred
>uid: 1001

This file defines three sections. The @DEFAULT@ section specifies an
entry @hostname@. If you attempt to read the hostname option in any
section, and that section doesn't define @hostname@, you will get the
value from @DEFAULT@ instead. This is a nice time-saver. You can also
note that you can use colons instead of the = character to separate
option names from option entries.
-}

{- $whitespace

Whitespace (spaces, tabs, etc) is automatically stripped from the
beginning and end of all strings. Thus, users can insert whitespace
before\/after the colon or equal sign if they like, and it will be
automatically stripped.

Blank lines or lines consisting solely of whitespace are ignored.

A line giving an option or a section name may not begin with white space.
This requirement is necessary so there is no ambiguity between such lines
and continuation lines for multi-line options.

-}

{- $comments

Comments are introduced with the pound sign @#@ or the semicolon @;@. They
cause the parser to ignore everything from that character to the end
of the line.

Comments /may not/ occur within the definitions of options; that is, you
may not place a comment in the middle of a line such as @user: Fred@.
That is because the parser considers the comment characters part
of the string; otherwise, you'd be unable to use those characters in
your strings. You can, however, \"comment out\" options by putting the
comment character at the start of the line.

-}

{- $casesens

By default, section names are case-sensitive but option names are
not. The latter can be adjusted by adjusting 'optionxform'.  -}

{- $interpolation

Interpolation is an optional feature, disabled by default.  If you replace
the default 'accessfunc' ('simpleAccess') with 'interpolatingAccess',
then you get interpolation support with 'get' and the other 'get'-based functions.

As an example, consider the following file:

>arch = i386
>project = test
>filename = test_%(arch)s.c
>dir = /usr/src/%(filename)s
>percent = 5%%

With interpolation, you would get these results:

>get cp "DEFAULT" "filename" -> "test_i386.c"
>get cp "DEFAULT" "dir" -> "/usr/src/test_i386.c"
>get cp "DEFAULT" "percent" -> "5%"

For more details on interpolation, please see the documentation for the
'interpolatingAccess' function.
-}

{- $usage

The basic theory of working with ConfigParser is this:

 1. Parse or build a 'ConfigParser' object

 2. Work with it in one of several ways

 3. To make changes, you discard the original object and use a new one.
    Changes can be "chained" through one of several monads.

The default 'ConfigParser' object that you always start with is 'emptyCP'.
From here, you load data into it (merging data into the empty object),
set up structures yourself, or adjust options.

Let's take a look at some basic use cases.

-}

{- $usagenomonad
You'll notice that many functions in this module return a
@MonadError 'CPError'@ over some
type.  Although its definition is not this simple, you can consider this to be
the same as returning @Either CPError a@.

That is, these functions will return @Left error@ if there's a problem
or @Right result@ if things are fine.  The documentation for individual
functions describes the specific circumstances in which an error may occur in
more detail.

Some people find it annoying to have to deal with errors manually.
You can transform errors into exceptions in your code by using
'Data.Either.Utils.forceEither'.  Here's an example of this style of programming:

> import Data.Either.Utils
> do
>    val <- readfile emptyCP "/etc/foo.cfg"
>    let cp = forceEither val
>    putStrLn "Your setting is:"
>    putStrLn $ forceEither $ get cp "sect1" "opt1"

In short, you can just put @forceEither $@ in front of every call that returns
something that is a MonadError.
This is still a pure functional call, so it can be used outside
of the IO monads.  The exception, however, can only be caught in the IO
monad.

If you don't want to bother with 'forceEither', you can use the error monad.  It's simple and better... read on.
-}

{- $usageerrormonad

The return type is actually defined in terms of the Error monad, which is
itself based on the Either data type.

Here's a neat example of chaining together calls to build up a 'ConfigParser'
object:

>do let cp = emptyCP
>   cp <- add_section cp "sect1"
>   cp <- set cp "sect1" "opt1" "foo"
>   cp <- set cp "sect1" "opt2" "bar"
>   options cp "sect1"

The return value of this little snippet is @Right [\"opt1\", \"opt2\"]@.
(Note to beginners: unlike the IO monad, you /can/ escape from the Error
monad.)

Although it's not obvious, there actually was error checking there.  If
any of those calls would have generated an error, processing would have
stopped immediately and a @Left@ value would have been returned.  Consider
this example:

>do let cp = emptyCP
>   cp <- add_section cp "sect1"
>   cp <- set cp "sect1" "opt1" "foo"
>   cp <- set cp "sect2" "opt2" "bar"
>   options cp "sect1"

The return value from this is @Left ('NoSection' \"sect2\", \"set\")@.  The
second call to 'set' failed, so the final call was skipped, and the result
of the entire computation was considered to be an error.

You can combine this with the non-monadic style to get a final, pure value
out of it:

>forceEither $ do let cp = emptyCP
>                 cp <- add_section cp "sect1"
>                 cp <- set cp "sect1" "opt1" "foo"
>                 cp <- set cp "sect1" "opt2" "bar"
>                 options cp "sect1"

This returns @[\"opt1\", \"opt2\"]@.  A quite normal value.

-}

{- $usageerroriomonad

You've seen a nice way to use this module in the Error monad and get an Either
value out.  But that's the Error monad, so IO is not permitted.
Using Haskell's monad transformers, you can run it in the combined
Error\/IO monad.  That is, you will get an IO result back.  Here is a full
standalone example of doing that:

>import Data.ConfigFile
>import Control.Monad.Error
>
>main = do
>          rv <- runErrorT $
>              do
>              cp <- join $ liftIO $ readfile emptyCP "/etc/passwd"
>              let x = cp
>              liftIO $ putStrLn "In the test"
>              nb <- get x "DEFAULT" "nobody"
>              liftIO $ putStrLn nb
>              foo <- get x "DEFAULT" "foo"
>              liftIO $ putStrLn foo
>              return "done"
>          print rv

On my system, this prints:

>In the test
>x:65534:65534:nobody:/nonexistent:/bin/sh
>Left (NoOption "foo","get")

That is, my @\/etc\/passwd@ file contains a @nobody@ user but not a @foo@ user.

Let's look at how that works.

First, @main@ always runs in the IO monad only, so we take the result from
the later calls and put it in @rv@.  Note that the combined block
is started with @runErrorT $ do@ instead of just @do@.

To get something out of the call to 'readfile', we use
@join $ liftIO $ readfile@.  This will bring the result out of the IO monad
into the combined monad and process it like usual.  From here on,
everything looks normal, except for IO calls.  They are all executed under
@liftIO@ so that the result value is properly brought into the combined
monad.  This finally returns @\"done\"@.  Since we are in the Error monad, that means that the literal value is @Right \"done\"@.  Since we are also in the IO
monad, this is wrapped in IO.  So the final return type after applying
@runErrorT@ is @IO (Either CPError String)@.

In this case, there was an error, and processing stopped at that point just
like the example of the pure Error monad.  We print out the return value,
so you see the error displayed as a @Left@ value.

It all works quite easily.

-}

{- $configuringcp

You may notice that the 'ConfigParser' object has some configurable parameters,
such as 'usedefault'.  In case you're not familiar with the Haskell syntax
for working with these, you can use syntax like this to set these options:

>let cp2 = cp { usedefault = False }

This will create a new 'ConfigParser' that is the same as @cp@ except for
the 'usedefault' field, which is now always False.  The new object will be
called @cp2@ in this example.
-}

{- $reading

You can use these functions to read data from a file.

A common idiom for loading a new object from stratch is:

@cp <- 'readfile' 'emptyCP' \"\/etc\/foo.cfg\"@

Note the use of 'emptyCP'; this will essentially cause the file's data
to be merged with the empty 'ConfigParser'.
-}

{- $types

The code used to say this:

>type CPResult a = MonadError CPError m => m a
>simpleAccess :: ConfigParser -> SectionSpec -> OptionSpec -> CPResult String

But Hugs did not support that type declaration.  Therefore, types are now
given like this:

>simpleAccess :: MonadError CPError m =>
>                ConfigParser -> SectionSpec -> OptionSpec -> m String

Although it looks more confusing than before, it still means the same.
The return value can still be treated as @Either CPError String@ if you so
desire.
-}