summaryrefslogtreecommitdiff
path: root/src/GF/Devel/GetGrammar.hs
diff options
context:
space:
mode:
authoraarne <aarne@cs.chalmers.se>2007-09-20 22:37:09 +0000
committeraarne <aarne@cs.chalmers.se>2007-09-20 22:37:09 +0000
commit58a87653cc5f03f8184faa81fa24c2c5eff0429a (patch)
treefd5a3a6a8fba41b3ae8d8a76f68c61040b4aa863 /src/GF/Devel/GetGrammar.hs
parent6e4104ffa98279fcf105dd6386e1f7162f889fc0 (diff)
compiler "gfc" in GF/Devel
Diffstat (limited to 'src/GF/Devel/GetGrammar.hs')
-rw-r--r--src/GF/Devel/GetGrammar.hs54
1 files changed, 54 insertions, 0 deletions
diff --git a/src/GF/Devel/GetGrammar.hs b/src/GF/Devel/GetGrammar.hs
new file mode 100644
index 000000000..49546b6ea
--- /dev/null
+++ b/src/GF/Devel/GetGrammar.hs
@@ -0,0 +1,54 @@
+----------------------------------------------------------------------
+-- |
+-- Module : GetGrammar
+-- Maintainer : AR
+-- Stability : (stable)
+-- Portability : (portable)
+--
+-- > CVS $Date: 2005/11/15 17:56:13 $
+-- > CVS $Author: aarne $
+-- > CVS $Revision: 1.16 $
+--
+-- this module builds the internal GF grammar that is sent to the type checker
+-----------------------------------------------------------------------------
+
+module GF.Devel.GetGrammar where
+
+import GF.Data.Operations
+import qualified GF.Data.ErrM as E ----
+
+import GF.Devel.UseIO
+import GF.Grammar.Grammar
+import GF.Infra.Modules
+import GF.Devel.PrGrammar
+import qualified GF.Source.AbsGF as A
+import GF.Source.SourceToGrammar
+---- import Macros
+---- import Rename
+import GF.Infra.Option
+--- import Custom
+import GF.Source.ParGF
+import qualified GF.Source.LexGF as L
+
+import GF.Devel.ReadFiles ----
+
+import Data.Char (toUpper)
+import Data.List (nub)
+import Control.Monad (foldM)
+import System (system)
+
+getSourceModule :: Options -> FilePath -> IOE SourceModule
+getSourceModule opts file0 = do
+ file <- case getOptVal opts usePreprocessor of
+ Just p -> do
+ let tmp = "_gf_preproc.tmp"
+ cmd = p +++ file0 ++ ">" ++ tmp
+ ioeIO $ system cmd
+ -- ioeIO $ putStrLn $ "preproc" +++ cmd
+ return tmp
+ _ -> return file0
+ string <- readFileIOE file
+ let tokens = myLexer string
+ mo1 <- ioeErr $ {- err2err $ -} pModDef tokens
+ ioeErr $ transModDef mo1
+