WriteFn.hs revision 04d04d19fdd5320953c78ad5b6d2d11f85bc4bcf
{-# OPTIONS -cpp #-}
{- |
Module : $Header$
Copyright : (c) Klaus L�ttich, C.Maeder, Uni Bremen 2002-2006
License : similar to LGPL, see HetCATS/LICENSE.txt or LIZENZ.txt
Maintainer : maeder@tzi.de
Stability : provisional
Portability : non-portable(DevGraph)
This module provides functions to write a pretty printed abstract
syntax and all the other formats.
-}
module Driver.WriteFn where
import Control.Monad
import Data.Maybe
import Data.List
import Text.PrettyPrint.HughesPJ(render)
import Common.Utils
import Common.Lexer
import Common.PrettyPrint
import Common.Result
import Common.GlobalAnnotations (GlobalAnnos)
import Common.ConvertGlobalAnnos()
import qualified Common.Lib.Map as Map
import Common.SimpPretty (writeFileSDoc)
import Common.ATerm.Lib
import Common.ATerm.ReadWrite
import Logic.Coerce
import Syntax.Print_HetCASL
import Syntax.AS_Library (LIB_DEFN(), LIB_NAME())
import CASL.Logic_CASL
#ifdef UNI_PACKAGE
import CASL.CompositionTable.ComputeTable
import CASL.CompositionTable.CompositionTable
#endif
import Isabelle.CreateTheories
import Isabelle.IsaParse
import SPASS.CreateDFGDoc
import Logic.Prover
import Static.DevGraph
import Static.DGToSpec
import qualified Static.PrintDevGraph as DG
import Proofs.StatusUtils
import Proofs.Automatic
import ATC.DevGraph()
import ATC.GlobalAnnotations()
import Driver.Options
{- |
Write the given LIB_DEFN in every format that HetcatsOpts includes.
Filenames are determined by the output formats.
-}
write_LIB_DEFN :: GlobalAnnos -> FilePath -> HetcatsOpts -> LIB_DEFN -> IO ()
write_LIB_DEFN ga file opt ld = do
let odir' = outdir opt
(base, path, _) = fileparse downloadExtensions file
odir = if null odir' then path else odir'
filePrefix = pathAndBase odir base
filename ty = filePrefix ++ "." ++ show ty
verbMesg ty = putIfVerbose opt 2 $ "Writing file: " ++ filename ty
printAscii ty = do
verbMesg ty
write_casl_asc opt ga (filename ty) ld
write_type :: OutType -> IO ()
write_type t = case t of
HetCASLOut OutASTree OutAscii -> printAscii t
PrettyOut PrettyAscii -> printAscii t
PrettyOut PrettyLatex -> do
verbMesg t
write_casl_latex opt ga (filename t) ld
_ -> return () -- implemented elsewhere
putIfVerbose opt 3 ("Current OutDir: " ++ odir)
mapM_ write_type $ outtypes opt
write_casl_asc :: HetcatsOpts -> GlobalAnnos -> FilePath -> LIB_DEFN -> IO ()
write_casl_asc _ ga oup ld = writeFile oup $ printLIB_DEFN_text ga ld
debug_latex_filename :: FilePath -> FilePath
debug_latex_filename = (\(b,p,_) -> p++ b ++ ".debug.tex") .
fileparse [".pp.tex"]
write_casl_latex :: HetcatsOpts -> GlobalAnnos -> FilePath -> LIB_DEFN -> IO ()
write_casl_latex opt ga oup ld =
do writeFile oup $ printLIB_DEFN_latex ga ld
doIfVerbose opt 5 $
writeFile (debug_latex_filename oup) $
printLIB_DEFN_debugLatex ga ld
toShATermString :: (ShATermConvertible a) => a -> IO String
toShATermString atcon = fmap writeSharedATerm $ versionedATermTable atcon
writeShATermFile :: (ShATermConvertible a) => FilePath -> a -> IO ()
writeShATermFile fp atcon = toShATermString atcon >>= writeFile fp
versionedATermTable :: (ShATermConvertible a) => a -> IO ATermTable
versionedATermTable atcon = do
att0 <- newATermTable
(att1, versionnr) <- toShATermAux att0 hetsVersion
(att2, aterm) <- toShATermAux att1 atcon
return $ fst $ addATerm (ShAAppl "hets" [versionnr,aterm] []) att2
writeShATermFileSDoc :: (ShATermConvertible a) => FilePath -> a -> IO ()
writeShATermFileSDoc fp atcon = do
att <- versionedATermTable atcon
writeFileSDoc fp $ writeSharedATermSDoc att
writeFileInfo :: HetcatsOpts -> LIB_NAME -> FilePath -> GlobalContext -> IO()
writeFileInfo opts ln file gctx =
let envFile = rmSuffix file ++ ".env" in
case analysis opts of
Basic -> do
putIfVerbose opts 2 ("Writing file: " ++ envFile)
catch (writeShATermFileSDoc envFile (ln, gctx)) $ \ err -> do
putIfVerbose opts 2 (envFile ++ " not written")
putIfVerbose opts 3 ("see following error description:\n"
++ shows err "\n")
_ -> putIfVerbose opts 2 ("Not writing " ++ envFile)
writeVerbFile :: HetcatsOpts -> FilePath -> String -> IO()
writeVerbFile opt f str = do
putIfVerbose opt 2 $ "Writing file: " ++ f
writeFile f str
writeSpecFiles :: HetcatsOpts -> FilePath -> LibEnv
-> GlobalAnnos -> (LIB_NAME, GlobalEnv) -> IO()
writeSpecFiles opt file lenv ga (ln, gctx) = do
let ns = specNames opt
(prfFiles, outTypes) = partition (\ t -> case t of
Prf -> True
_ -> False) $ outtypes opt
allSpecs = null ns
unless (null prfFiles) $ do
let f = rmSuffix file ++ "." ++ show (head prfFiles)
str <- toShATermString (ln, lookupHistory ln $ automatic ln lenv)
writeVerbFile opt f str
mapM_ ( \ i -> case Map.lookup i gctx of
Just (SpecEntry (_,_,_, NodeSig n _)) ->
case maybeResult $ computeTheory lenv ln n of
Nothing -> putIfVerbose opt 0 $
"could not compute theory of spec " ++ show i
Just gTh@(G_theory lid sign0 sens0) ->
mapM_ ( \ t ->
let f = rmSuffix file ++ "_" ++ show i ++ "." ++ show t
in case t of
ThyFile -> case printTheory (libdir opt) ln i gTh of
Nothing -> putIfVerbose opt 0 $
"could not translate to Isabelle " ++
show i
Just d -> let s = shows d "\n" in
case parseString parseTheory s of
(_, _) -> writeVerbFile opt f s
DfgFile -> case printDFG ln i gTh of
Nothing -> putIfVerbose opt 0 $
"could not translate to SPASS " ++
show i
Just d -> writeVerbFile opt f $
shows d "\n"
TheoryFile d -> if null $ show d then
writeVerbFile opt f $
shows (DG.printTh ga i gTh) "\n"
else putIfVerbose opt 0
"printing theory delta is not implemented"
SigFile d -> if null $ show d then
writeVerbFile opt f $
shows (printText0 ga $ signOf gTh) "\n"
else putIfVerbose opt 0
"printing signature delta is not implemented"
#ifdef UNI_PACKAGE
ComptableXml -> let
th = (sign0, toNamedList sens0)
r1 = coerceBasicTheory lid CASL "" th
in case r1 of
Nothing -> putIfVerbose opt 0 $
"could not translate from CASL " ++
show i
Just th2 ->
let Result d res =
computeCompTable i th2
in do showDiags opt d
when (isJust res) $
writeVerbFile opt f $
render $ table_document $
fromJust res
#endif
_ -> return () -- ignore other file types
) outTypes
_ -> if allSpecs then return () else
putIfVerbose opt 0 $ "Unknown spec name: " ++ show i
) $ if null outTypes then [] else
if allSpecs then Map.keys gctx else ns