summaryrefslogtreecommitdiff
path: root/src/compiler/GF/Compile/PGFPretty.hs
diff options
context:
space:
mode:
authorkrasimir <krasimir@chalmers.se>2009-12-13 18:50:29 +0000
committerkrasimir <krasimir@chalmers.se>2009-12-13 18:50:29 +0000
commitf85232947e74ee7ef8c7b0ad2338212e7e68f1be (patch)
tree667b886a5e3a4b026a63d4e3597f32497d824761 /src/compiler/GF/Compile/PGFPretty.hs
parentd88a865faff59c98fc91556ff8700b10ee5f2df8 (diff)
reorganize the directories under src, and rescue the JavaScript interpreter from deprecated
Diffstat (limited to 'src/compiler/GF/Compile/PGFPretty.hs')
-rw-r--r--src/compiler/GF/Compile/PGFPretty.hs93
1 files changed, 93 insertions, 0 deletions
diff --git a/src/compiler/GF/Compile/PGFPretty.hs b/src/compiler/GF/Compile/PGFPretty.hs
new file mode 100644
index 000000000..679714db5
--- /dev/null
+++ b/src/compiler/GF/Compile/PGFPretty.hs
@@ -0,0 +1,93 @@
+-- | Print a part of a PGF grammar on the human-readable format used in
+-- the paper "PGF: A Portable Run-Time Format for Type-Theoretical Grammars".
+module GF.Compile.PGFPretty (prPGFPretty, prPMCFGPretty) where
+
+import PGF.CId
+import PGF.Data
+import PGF.Macros
+import PGF.PMCFG
+
+import GF.Data.Operations
+
+import Data.Map (Map)
+import qualified Data.Map as Map
+import Text.PrettyPrint.HughesPJ
+
+
+prPGFPretty :: PGF -> String
+prPGFPretty pgf = render $ prAbs (abstract pgf) $$ prAll (prCnc (abstract pgf)) (concretes pgf)
+
+prPMCFGPretty :: PGF -> CId -> String
+prPMCFGPretty pgf lang = render $
+ case lookParser pgf lang of
+ Nothing -> empty
+ Just pinfo -> text "language" <+> ppCId lang $$ ppPMCFG pinfo
+
+
+prAbs :: Abstr -> Doc
+prAbs a = prAll prCat (cats a) $$ prAll prFun (funs a)
+
+prCat :: CId -> [Hypo] -> Doc
+prCat c h | isLiteralCat c = empty
+ | otherwise = text "cat" <+> ppCId c
+
+prFun :: CId -> (Type,Int,[Equation]) -> Doc
+prFun f (t,_,_) = text "fun" <+> ppCId f <+> text ":" <+> prType t
+
+prType :: Type -> Doc
+prType t = parens (hsep (punctuate (text ",") (map ppCId cs))) <+> text "->" <+> ppCId c
+ where (cs,c) = catSkeleton t
+
+
+-- FIXME: show concrete name
+-- FIXME: inline opers first
+prCnc :: Abstr -> CId -> Concr -> Doc
+prCnc abstr name c = prAll prLinCat (lincats c) $$ prAll prLin (lins (expand c))
+ where
+ prLinCat :: CId -> Term -> Doc
+ prLinCat c t | isLiteralCat c = empty
+ | otherwise = text "lincat" <+> ppCId c <+> text "=" <+> pr 0 t
+ where
+ pr p (R ts) = prec p 1 (hsep (punctuate (text " *") (map (pr 1) ts)))
+ pr _ (S []) = text "Str"
+ pr _ (C n) = text "Int_" <> text (show (n+1))
+
+ prLin :: CId -> Term -> Doc
+ prLin f t = text "lin" <+> ppCId f <+> text "=" <+> pr 0 t
+ where
+ pr :: Int -> Term -> Doc
+ pr p (R ts) = text "<" <+> hsep (punctuate (text ",") (map (pr 0) ts)) <+> text ">"
+ pr p (P t1 t2) = prec p 3 (pr 3 t1 <> text "!" <> pr 3 t2)
+ pr p (S ts) = prec p 2 (hsep (punctuate (text " ++") (map (pr 2) ts)))
+ pr p (K (KS t)) = doubleQuotes (text t)
+ pr p (V i) = text ("argv_" ++ show (i+1))
+ pr p (C i) = text (show (i+1))
+ pr p (FV ts) = prec p 1 (hsep (punctuate (text " |") (map (pr 1) ts)))
+ pr _ t = error $ "PGFPretty.prLin " ++ show t
+
+linCat :: Concr -> CId -> Term
+linCat cnc c = Map.findWithDefault (error $ "lincat: " ++ showCId c) c (lincats cnc)
+
+prec :: Int -> Int -> Doc -> Doc
+prec p m | p >= m = parens
+ | otherwise = id
+
+expand :: Concr -> Concr
+expand cnc = cnc { lins = Map.map (f "") (lins cnc) }
+ where
+ -- FIXME: handle KP
+ f :: String -> Term -> Term
+ f w (R ts) = R (map (f w) ts)
+ f w (P t1 t2) = P (f w t1) (f w t2)
+ f w (S []) = S (if null w then [] else [K (KS w)])
+ f w (S (t:ts)) = S (f w t : map (f "") ts)
+ f w (FV ts) = FV (map (f w) ts)
+ f w (W s t) = f (w++s) t
+ f w (K (KS t)) = K (KS (w++t))
+ f w (F o) = f w (Map.findWithDefault (error $ "Bad oper: " ++ showCId o) o (opers cnc))
+ f w t = t
+
+-- Utilities
+
+prAll :: (a -> b -> Doc) -> Map a b -> Doc
+prAll p m = vcat [ p k v | (k,v) <- Map.toList m] \ No newline at end of file