{-# LANGUAGE ExistentialQuantification #-} {-# LANGUAGE DeriveDataTypeable #-} -- GenI surface realiser -- Copyright (C) 2009 Eric Kow -- -- This module can be treated as public domain module NLP.GenI.Flag where -- This module exists purely for the purpose of making it more convenient -- to modify the flag set in GenI (by eliminating the need to explicitly -- export the types for individual flags). To add a flag: -- -- 1. add a type here -- 2. write the help text in NLP.GenI.Configuration -- 3. add the getopt stuff and find a section for the flag import Data.List ( find ) import qualified Data.Set as Set import Data.Maybe ( catMaybes, fromJust ) import Data.Text ( Text ) import Data.Typeable import NLP.GenI.FeatureStructure ( Flist ) import NLP.GenI.GeniVal ( GeniVal ) import NLP.GenI.Polarity.Types -- ---------------------------------------------------------------------- -- configuration stuff -- this stuff really belongs in NLP.GenI.Configuration but we move it here -- to avoid an import cycle (sigh) -- ---------------------------------------------------------------------- data Optimisation = PolOpts | AdjOpts | Polarised | NoConstraints deriving (Show,Eq,Typeable) type Instruction = (FilePath, Maybe [Text]) data BuilderType = SimpleBuilder | SimpleOnePhaseBuilder deriving (Eq, Typeable) data GrammarType = GeniHand -- ^ geni's text format | PreCompiled -- ^ built into geni, no parsing needed | PreAnchored -- ^ lexical selection already done deriving (Show, Eq, Typeable) instance Show BuilderType where show SimpleBuilder = "simple-2p" show SimpleOnePhaseBuilder = "simple-1p" -- ---------------------------------------------------------------------- -- flag core -- ---------------------------------------------------------------------- {- | Flags are GenI's internal representation of command line arguments. We use phantom existential types (?) for representing GenI flags. This makes it simpler to do things such as ``get the value of the MacrosFlg'' whilst preserving type safety (we always know that MacrosFlg is associated with String). The alternative would be writing getters and setters for each flag, and that gets really boring after a while. -} data Flag = forall f x . (Eq f, Typeable f, Typeable x) => Flag (x -> f) x deriving (Typeable) {- instance Show Flag where show (Flag f x) = "Flag " ++ show (f x) -} instance Eq Flag where (Flag f1 x1) == (Flag f2 x2) | (typeOf f1 == typeOf f2) && (typeOf x1 == typeOf x2) = (fromJust . cast . f1 $ x1) == (f2 x2) | otherwise = False isFlag :: (Typeable f, Typeable x) => (x -> f) -> Flag -> Bool isFlag f1 (Flag f2 _) = typeOf f1 == typeOf f2 hasFlag :: (Typeable f, Typeable x) => (x -> f) -> [Flag] -> Bool hasFlag = any . isFlag deleteFlag :: (Typeable f, Typeable x) => (x -> f) -> [Flag] -> [Flag] deleteFlag f = filter (not.(isFlag f)) -- | This only has an effect if the flag is set modifyFlag :: (Eq f, Typeable f, Typeable x) => (x -> f) -> (x -> x) -> [Flag] -> [Flag] modifyFlag f m fs = case getFlag f fs of Nothing -> fs Just v -> setFlag f (m v) fs setFlag :: (Eq f, Typeable f, Typeable x) => (x -> f) -> x -> [Flag] -> [Flag] setFlag f v fs = (Flag f v) : tl where tl = deleteFlag f fs getFlag :: (Typeable f, Typeable x) => (x -> f) -> [Flag] -> Maybe x getFlag f fs = do (Flag _ v) <- find (isFlag f) fs ; cast v getAllFlags :: (Typeable f, Typeable x) => (x -> f) -> [Flag] -> [x] getAllFlags f fs = catMaybes [ cast v | flg@(Flag _ v) <- fs, isFlag f flg ] -- ---------------------------------------------------------------------- -- Below are just the individual flags, which unfortunately have to be -- defined as separate data types because of our fancy existential -- data type code. -- ---------------------------------------------------------------------- newtype BatchDirFlg = BatchDirFlg FilePath deriving (Eq, Typeable) newtype DisableGuiFlg = DisableGuiFlg () deriving (Eq, Typeable) newtype DetectPolaritiesFlg = DetectPolaritiesFlg (Set.Set PolarityAttr) deriving (Eq, Typeable) newtype DumpDerivationFlg = DumpDerivationFlg () deriving (Eq, Typeable) newtype EarlyDeathFlg = EarlyDeathFlg () deriving (Eq, Typeable) newtype FromStdinFlg = FromStdinFlg () deriving (Eq, Typeable) newtype HelpFlg = HelpFlg () deriving (Eq, Typeable) newtype InstructionsFileFlg = InstructionsFileFlg FilePath deriving (Eq, Typeable) newtype LexiconFlg = LexiconFlg FilePath deriving (Eq, Typeable) newtype MacrosFlg = MacrosFlg FilePath deriving (Eq, Typeable) newtype TracesFlg = TracesFlg FilePath deriving (Eq, Typeable) newtype MaxStepsFlg = MaxStepsFlg Integer deriving (Eq, Typeable) newtype MaxResultsFlg = MaxResultsFlg Integer deriving (Eq, Typeable) newtype MetricsFlg = MetricsFlg [String] deriving (Eq, Typeable) newtype MorphCmdFlg = MorphCmdFlg String deriving (Eq, Typeable) newtype MorphInfoFlg = MorphInfoFlg FilePath deriving (Eq, Typeable) newtype OptimisationsFlg = OptimisationsFlg [Optimisation] deriving (Eq, Typeable) newtype OutputFileFlg = OutputFileFlg String deriving (Eq, Typeable) newtype PartialFlg = PartialFlg () deriving (Eq, Typeable) newtype RankingConstraintsFlg = RankingConstraintsFlg FilePath deriving (Eq, Typeable) newtype RootFeatureFlg = RootFeatureFlg (Flist GeniVal) deriving (Eq, Typeable) newtype NoLoadTestSuiteFlg = NoLoadTestSuiteFlg () deriving (Eq, Typeable) newtype StatsFileFlg = StatsFileFlg FilePath deriving (Eq, Typeable) newtype TestCaseFlg = TestCaseFlg Text deriving (Eq, Typeable) newtype TestInstructionsFlg = TestInstructionsFlg [Instruction] deriving (Eq, Typeable) newtype TestSuiteFlg = TestSuiteFlg FilePath deriving (Eq, Typeable) newtype TimeoutFlg = TimeoutFlg Int deriving (Eq, Typeable) newtype VerboseModeFlg = VerboseModeFlg () deriving (Eq, Typeable) newtype VersionFlg = VersionFlg () deriving (Eq, Typeable) newtype ViewCmdFlg = ViewCmdFlg String deriving (Eq, Typeable) newtype BuilderFlg = BuilderFlg BuilderType deriving (Eq, Typeable) newtype GrammarTypeFlg = GrammarTypeFlg GrammarType deriving (Eq, Typeable) -- the WeirdFlg exists strictly to please OS X when you launch -- GenI in an application bundle (double-click)... for some -- reason it wants to pass an argument to -p newtype WeirdFlg = WeirdFlg String deriving (Eq, Typeable)