1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
module FlatCurry.Typed.Files
( readTypedFlatCurry, readTypedFlatCurryWithParseOptions
, readTypedFlatCurryFile
, readTypedFlatCurryAsAnnotated, readTypedFlatCurryAsAnnotatedWithParseOptions
, readTypedFlatCurryFileAsAnnotated) where
import FlatCurry.Typed.Types
import FlatCurry.Typed.Conversion
import FlatCurry.Annotated.Types
import System.Directory ( doesFileExist, getFileWithSuffix)
import System.FrontendExec
( FrontendParams, FrontendTarget (..), defaultParams
, setQuiet
, callFrontend, callFrontendWithParams)
import System.CurryPath ( lookupModuleSourceInLoadPath, getLoadPathForModule
, inCurrySubdir, stripCurrySuffix
)
import System.FilePath ( takeFileName, (</>), (<.>) )
readTypedFlatCurryAsAnnotated :: String -> IO (AProg TypeExpr)
readTypedFlatCurryAsAnnotated progname =
readTypedFlatCurry progname >>= (return . toAnnotatedFlatCurry)
readTypedFlatCurry :: String -> IO TProg
readTypedFlatCurry progname =
readTypedFlatCurryWithParseOptions progname (setQuiet True defaultParams)
readTypedFlatCurryAsAnnotatedWithParseOptions :: String -> FrontendParams -> IO (AProg TypeExpr)
readTypedFlatCurryAsAnnotatedWithParseOptions progname options =
readTypedFlatCurryWithParseOptions progname options
>>= (return . toAnnotatedFlatCurry)
readTypedFlatCurryWithParseOptions :: String -> FrontendParams -> IO TProg
readTypedFlatCurryWithParseOptions progname options = do
mbsrc <- lookupModuleSourceInLoadPath progname
case mbsrc of
Nothing -> do
loadpath <- getLoadPathForModule progname
filename <- getFileWithSuffix (typedFlatCurryFileName (takeFileName progname)) [""]
loadpath
readTypedFlatCurryFile filename
Just (dir,_) -> do
callFrontendWithParams TFCY options progname
readTypedFlatCurryFile (typedFlatCurryFileName (dir </> takeFileName progname))
typedFlatCurryFileName :: String -> String
typedFlatCurryFileName prog = inCurrySubdir (stripCurrySuffix prog) <.> "tfcy"
readTypedFlatCurryFileAsAnnotated :: String -> IO (AProg TypeExpr)
readTypedFlatCurryFileAsAnnotated filename =
readTypedFlatCurryFile filename >>= (return . toAnnotatedFlatCurry)
readTypedFlatCurryFile :: String -> IO TProg
readTypedFlatCurryFile filename = do
filecontents <- readTypedFlatCurryFileRaw filename
return (read filecontents)
readTypedFlatCurryFileRaw :: String -> IO String
readTypedFlatCurryFileRaw filename = do
extfcy <- doesFileExist filename
if extfcy
then readFile filename
else do let subdirfilename = inCurrySubdir filename
exdirtfcy <- doesFileExist subdirfilename
if exdirtfcy
then readFile subdirfilename
else error ("EXISTENCE ERROR: Typed FlatCurry file '" ++ filename ++
"' does not exist")
|