summaryrefslogtreecommitdiff
path: root/src/GF/Compile
diff options
context:
space:
mode:
authorbringert <bringert@cs.chalmers.se>2008-01-04 14:51:20 +0000
committerbringert <bringert@cs.chalmers.se>2008-01-04 14:51:20 +0000
commita68b2850e76a36c1f4ca032ea69c1ffa81b69885 (patch)
tree01a0b82d654890ee3142d522885fb8d31738f496 /src/GF/Compile
parentd54c209e9dc37825b153232a56e4c5adbbb685b1 (diff)
Added -noparse flag to gfc. In the process, I refactored GF.Devel.GFC and GF.Command.Importing to use a common source to gfcc compilation function in the new module GF.Compile.API.
Diffstat (limited to 'src/GF/Compile')
-rw-r--r--src/GF/Compile/API.hs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/GF/Compile/API.hs b/src/GF/Compile/API.hs
new file mode 100644
index 000000000..b9726bc23
--- /dev/null
+++ b/src/GF/Compile/API.hs
@@ -0,0 +1,20 @@
+module GF.Compile.API (batchCompile, compileToGFCC) where
+
+import GF.Devel.Compile
+import GF.Devel.GrammarToGFCC
+import GF.GFCC.OptimizeGFCC
+import GF.GFCC.CheckGFCC
+import GF.GFCC.DataGFCC
+import GF.Infra.Option
+import GF.Devel.UseIO
+
+-- | Compiles a number of source files and builds a 'GFCC' structure for them.
+compileToGFCC :: Options -> [FilePath] -> IO GFCC
+compileToGFCC opts fs =
+ do gr <- batchCompile opts fs
+ let name = justModuleName (last fs)
+ let (abs,gc0) = mkCanon2gfcc opts name gr
+ gc1 <- checkGFCCio gc0
+ let opt = if oElem (iOpt "noopt") opts then id else optGFCC
+ par = if oElem (iOpt "noparse") opts then id else addParsers
+ return (par (opt gc1))