X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fhalcyon.git;a=blobdiff_plain;f=src%2FConfiguration.hs;h=c2136431577a574cd2ace86a67e93dc7d3747e2d;hp=095f5395f6bf7b6d0e4994ece60f453df1e5b614;hb=1b72ed45ef890ed1329a32457b4d7f3a7fb37788;hpb=dd4abc21674b98bc55a3775291a8667dffec2863 diff --git a/src/Configuration.hs b/src/Configuration.hs index 095f539..c213643 100644 --- a/src/Configuration.hs +++ b/src/Configuration.hs @@ -5,14 +5,18 @@ module Configuration ( Cfg(..), - default_config, - merge_optional -) + merge_optional ) where -import qualified OptionalConfiguration as OC -import Usernames +import System.Console.CmdArgs.Default ( Default(..) ) +import qualified OptionalConfiguration as OC ( OptionalCfg(..) ) +import Usernames ( Usernames(..) ) + + +-- | The main configuration data type. It contains all options that +-- can be set in a config file or on the command line. +-- data Cfg = Cfg { consumer_key :: String, consumer_secret :: String, @@ -21,7 +25,7 @@ data Cfg = heartbeat :: Int, ignore_replies :: Bool, ignore_retweets :: Bool, - sendmail_path :: String, + sendmail_path :: FilePath, from_address :: Maybe String, to_address :: Maybe String, verbose :: Bool, @@ -29,21 +33,27 @@ data Cfg = deriving (Show) -default_config :: Cfg -default_config = - Cfg { consumer_key = "", - consumer_secret = "", - access_token = "", - access_secret = "", - heartbeat = 600, - ignore_replies = False, - ignore_retweets = False, - sendmail_path = "/usr/sbin/sendmail", - from_address = Nothing, - to_address = Nothing, - verbose = False, - usernames = Usernames [] } +instance Default Cfg where + -- | A 'Cfg' with all of its fields set to their default values. + -- + def = Cfg { consumer_key = def, + consumer_secret = def, + access_token = def, + access_secret = def, + heartbeat = 600, + ignore_replies = def, + ignore_retweets = def, + sendmail_path = "/usr/sbin/sendmail", + from_address = def, + to_address = def, + verbose = def, + usernames = def } + +-- | Merge a 'Cfg' with an 'OptionalCfg'. This is more or less the +-- Monoid instance for 'OptionalCfg', but since the two types are +-- different, we have to repeat ourselves. +-- merge_optional :: Cfg -> OC.OptionalCfg -> Cfg merge_optional cfg opt_cfg = Cfg