ini-0.1.0: src/Data/Ini.hs
-- | Clean configuration files in the INI format.
--
-- Format rules and recommendations:
--
-- * The @: @ syntax is space-sensitive.
--
-- * Keys are case-sensitive.
--
-- * Lower-case is recommended.
--
-- * Values can be empty.
--
-- * Keys cannot contain @:@, @=@, @[@, or @]@.
--
-- * Comments are not supported at this time.
--
-- An example configuration file:
--
-- @
-- [SERVER]
-- port=6667
-- hostname=localhost
-- [AUTH]
-- user: hello
-- pass: world
-- salt:
-- @
--
-- Parsing example:
--
-- >>> parseIni "[SERVER]\nport: 6667\nhostname: localhost"
-- Right (Ini {unIni = fromList [("SERVER",fromList [("hostname","localhost"),("port","6667")])]})
--
module Data.Ini
(-- * Reading
readIniFile
,parseIni
,lookupValue
,readValue
-- * Writing
,writeIniFile
,printIni
-- * Types
,Ini(..)
-- * Parsers
,iniParser
,sectionParser
,keyValueParser
)
where
import Control.Monad
import Data.Attoparsec.Combinator
import Data.Attoparsec.Text
import Data.Char
import Data.HashMap.Strict (HashMap)
import qualified Data.HashMap.Strict as M
import Data.Monoid
import Data.Text (Text)
import qualified Data.Text as T
import qualified Data.Text.IO as T
import Prelude hiding (takeWhile)
-- | An INI configuration.
newtype Ini = Ini { unIni :: HashMap Text (HashMap Text Text) }
deriving (Show)
-- | Parse an INI file.
readIniFile :: FilePath -> IO (Either String Ini)
readIniFile = fmap parseIni . T.readFile
-- | Parse an INI config.
parseIni :: Text -> Either String Ini
parseIni = parseOnly iniParser
-- | Lookup values in the config.
lookupValue :: Ini -> Text -> Text -> Either String Text
lookupValue (Ini ini) name key =
case M.lookup name ini of
Nothing -> Left ("Couldn't find section: " ++ T.unpack name)
Just section ->
case M.lookup key section of
Nothing -> Left ("Couldn't find key: " ++ T.unpack key)
Just value -> return value
-- | Read a value using a reader from "Data.Text.Read".
readValue :: Ini -> Text -> Text -> (Text -> Either String (a, Text))
-> Either String a
readValue ini section key f =
lookupValue ini section key >>= f >>= return . fst
-- | Print the INI config to a file.
writeIniFile :: FilePath -> Ini -> IO ()
writeIniFile fp = T.writeFile fp . printIni
-- | Print an INI config.
printIni :: Ini -> Text
printIni (Ini sections) =
T.concat (map buildSection (M.toList sections))
where buildSection (name,pairs) =
"[" <> name <> "]\n" <>
T.concat (map buildPair (M.toList pairs))
buildPair (name,value) =
name <> ": " <> value <> "\n"
-- | Parser for an INI.
iniParser :: Parser Ini
iniParser = fmap Ini (fmap M.fromList (many1 sectionParser))
-- | A section. Format: @[foo]@. Conventionally, @[FOO]@.
sectionParser :: Parser (Text,HashMap Text Text)
sectionParser =
do _ <- char '['
name <- takeWhile (\c -> c /=']' && c /= '[')
_ <- char ']'
skipEndOfLine
values <- many1 keyValueParser
return (name,M.fromList values)
-- | A key-value pair. Either @foo: bar@ or @foo=bar@.
keyValueParser :: Parser (Text,Text)
keyValueParser =
do key <- takeWhile1 (\c -> not (isDelim c || c == '[' || c == ']'))
delim <- satisfy isDelim
value <- fmap (clean delim) (takeWhile (not . isEndOfLine))
skipEndOfLine
return (key,value)
where clean ':' = T.drop 1
clean _ = id
-- | Is the given character a delimiter?
isDelim :: Char -> Bool
isDelim x = x == '=' || x == ':'
-- | Skip end of line and whitespace beyond.
skipEndOfLine :: Parser ()
skipEndOfLine = skipWhile (\c -> isEndOfLine c || isSpace c)