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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
|
module CASS.Server
(mainServer, initializeAnalysisSystem, analyzeModuleAsText
, analyzeModuleForBrowser, analyzeFunctionForBrowser
, analyzeGeneric, analyzePublic, analyzeInterface
) where
import ReadNumeric (readNat)
import Char (isSpace)
import Directory
import FileGoodies (splitDirectoryBaseName)
import FlatCurry.Types(QName)
import IO
import ReadShowTerm (readQTerm, showQTerm)
import Socket (Socket(..),listenOn,listenOnFresh,sClose,waitForSocketAccept)
import System (system, sleep, setEnviron, getArgs)
import Analysis.Logging (debugMessage)
import Analysis.ProgInfo
import Analysis.Types(Analysis,AOutFormat(..))
import CASS.Configuration
import CASS.Registry
import CASS.ServerFormats
import CASS.ServerFunctions(WorkerMessage(..))
data AnalysisServerMessage =
GetAnalysis
| AnalyzeModule String String String Bool
| AnalyzeEntity String String String String
| StopServer
| SetCurryPath String
| ParseError
initializeAnalysisSystem :: IO ()
initializeAnalysisSystem = updateRCFile
mainServer :: Maybe Int -> IO ()
mainServer mbport = do
putStrLn "Start Server"
(port1,socket1) <- maybe listenOnFresh
(\p -> listenOn p >>= \s -> return (p,s))
mbport
putStrLn ("Server Port: "++show port1)
storeServerPortNumber port1
getDefaultPath >>= setEnviron "CURRYPATH"
numworkers <- numberOfWorkers
if numworkers>0
then do
serveraddress <- getServerAddress
(workerport,workersocket) <- listenOnFresh
debugMessage 2 ("SERVER: port to workers: "++show workerport)
handles <- startWorkers numworkers workersocket serveraddress workerport []
serverLoop socket1 handles
sClose workersocket
else
serverLoop socket1 []
analyzeModuleAsText :: String -> String -> Bool -> Bool -> IO String
analyzeModuleAsText ananame mname optall enforce =
analyzeModule ananame mname enforce AText >>=
return . formatResult mname "Text" Nothing (not optall)
analyzeModuleForBrowser :: String -> String -> AOutFormat -> IO [(QName,String)]
analyzeModuleForBrowser ananame moduleName aoutformat =
analyzeModule ananame moduleName False aoutformat >>=
return . either pinfo2list (const [])
where
pinfo2list pinfo = let (pubinfo,privinfo) = progInfo2Lists pinfo
in pubinfo++privinfo
analyzeFunctionForBrowser :: String -> QName -> AOutFormat -> IO String
analyzeFunctionForBrowser ananame qn@(mname,_) aoutformat = do
analyzeModule ananame mname False aoutformat >>=
return . either (maybe "" id . lookupProgInfo qn) (const "")
analyzeModule :: String -> String -> Bool -> AOutFormat
-> IO (Either (ProgInfo String) String)
analyzeModule ananame moduleName enforce aoutformat = do
let (mdir,mname) = splitDirectoryBaseName moduleName
getDefaultPath >>= setEnviron "CURRYPATH"
curdir <- getCurrentDirectory
unless (mdir==".") $ setCurrentDirectory mdir
numworkers <- numberOfWorkers
aresult <-
if numworkers>0
then do
serveraddress <- getServerAddress
(port,socket) <- listenOnFresh
handles <- startWorkers numworkers socket serveraddress port []
result <- runAnalysisWithWorkers ananame aoutformat enforce handles mname
stopWorkers handles
sClose socket
return result
else runAnalysisWithWorkers ananame aoutformat enforce [] mname
setCurrentDirectory curdir
return aresult
analyzeGeneric :: Analysis a -> String -> IO (Either (ProgInfo a) String)
analyzeGeneric analysis moduleName = do
initializeAnalysisSystem
let (mdir,mname) = splitDirectoryBaseName moduleName
getDefaultPath >>= setEnviron "CURRYPATH"
curdir <- getCurrentDirectory
unless (mdir==".") $ setCurrentDirectory mdir
numworkers <- numberOfWorkers
aresult <-
if numworkers>0
then do
serveraddress <- getServerAddress
(port,socket) <- listenOnFresh
handles <- startWorkers numworkers socket serveraddress port []
result <- analyzeMain analysis mname handles False True
stopWorkers handles
sClose socket
return result
else
analyzeMain analysis mname [] False True
setCurrentDirectory curdir
return aresult
analyzePublic :: Analysis a -> String -> IO (Either (ProgInfo a) String)
analyzePublic analysis moduleName =
analyzeGeneric analysis moduleName
>>= return . either (Left . publicProgInfo) Right
analyzeInterface :: Analysis a -> String -> IO (Either [(QName,a)] String)
analyzeInterface analysis moduleName =
analyzeGeneric analysis moduleName
>>= return . either (Left . publicListFromProgInfo) Right
startWorkers:: Int -> Socket -> String -> Int -> [Handle] -> IO [Handle]
startWorkers number workersocket serveraddress workerport handles = do
if number>0
then do
debugMessage 4 ("Number:"++(show number))
let command = unwords [ executableName, " --worker "
, serveraddress, show workerport, "&" ]
debugMessage 4 ("system command: "++command)
system command
debugMessage 4 ("Wait for socket accept for client "++show number)
connection <- waitForSocketAccept workersocket waitTime
debugMessage 4 ("Socket accept for client "++show number)
case connection of
Just (_,handle) -> do
startWorkers (number-1) workersocket serveraddress workerport
(handle:handles)
Nothing -> do
putStrLn ("startWorkers: connection error worker "++(show number))
startWorkers (number-1) workersocket serveraddress workerport handles
else return handles
stopWorkers :: [Handle] -> IO ()
stopWorkers [] = done
stopWorkers (handle:whandles) = do
hPutStrLn handle (showQTerm StopWorker)
hClose handle
stopWorkers whandles
serverLoop :: Socket -> [Handle] -> IO ()
serverLoop socket1 whandles = do
connection <- waitForSocketAccept socket1 waitTime
case connection of
Just (_,handle) -> serverLoopOnHandle socket1 whandles handle
Nothing -> do
putStrLn "serverLoop: connection error: time out in waitForSocketAccept"
sleep 1
serverLoop socket1 whandles
hGetLineUntilEOF :: Handle -> IO String
hGetLineUntilEOF h = do
eof <- hIsEOF h
if eof
then return ""
else do c <- hGetChar h
if c=='\n' then return ""
else do cs <- hGetLineUntilEOF h
return (c:cs)
serverLoopOnHandle :: Socket -> [Handle] -> Handle -> IO ()
serverLoopOnHandle socket1 whandles handle = do
eof <- hIsEOF handle
if eof
then do hClose handle
debugMessage 2 "SERVER connection: eof"
serverLoop socket1 whandles
else do
string <- hGetLineUntilEOF handle
debugMessage 2 ("SERVER got message: "++string)
let force = False
case parseServerMessage string of
ParseError -> do
sendServerError handle ("Illegal message received: "++string)
serverLoopOnHandle socket1 whandles handle
GetAnalysis -> do
sendServerResult handle showAnalysisNamesAndFormats
serverLoopOnHandle socket1 whandles handle
AnalyzeModule ananame outForm modname public ->
catch (runAnalysisWithWorkers ananame AText force whandles modname >>=
return . formatResult modname outForm Nothing public >>=
sendResult)
sendAnalysisError
AnalyzeEntity ananame outForm modname functionName ->
catch (runAnalysisWithWorkers ananame AText force whandles modname >>=
return . formatResult modname outForm
(Just functionName) False >>= sendResult)
sendAnalysisError
SetCurryPath path -> do
setEnviron "CURRYPATH" path
changeWorkerPath path whandles
sendServerResult handle ""
serverLoopOnHandle socket1 whandles handle
StopServer -> do
stopWorkers whandles
sendServerResult handle ""
hClose handle
sClose socket1
putStrLn "Stop Server"
removeServerPortNumber
where
sendResult resultstring = do
debugMessage 4 ("formatted result:\n"++resultstring)
sendServerResult handle resultstring
serverLoopOnHandle socket1 whandles handle
sendAnalysisError err = do
sendServerError handle ("ERROR in analysis server: "++showError err)
serverLoopOnHandle socket1 whandles handle
sendServerResult :: Handle -> String -> IO ()
sendServerResult handle resultstring = do
let resultlines = lines resultstring
hPutStrLn handle ("ok " ++ show (length resultlines))
hPutStr handle (unlines resultlines)
hFlush handle
sendServerError :: Handle -> String -> IO ()
sendServerError handle errstring = do
debugMessage 1 errstring
hPutStrLn handle ("error "++errstring)
hFlush handle
changeWorkerPath :: String -> [Handle] -> IO ()
changeWorkerPath _ [] = done
changeWorkerPath path (handle:whandles) = do
hPutStrLn handle (showQTerm (ChangePath path))
changeWorkerPath path whandles
parseServerMessage :: String -> AnalysisServerMessage
parseServerMessage message = case words message of
[] -> ParseError
w:ws -> case w of
"GetAnalysis" -> GetAnalysis
"AnalyzeModule" -> case ws of
s1:s2:s3:[] -> checkFormat s2 $ AnalyzeModule s1 s2 s3 False
_ -> ParseError
"AnalyzeInterface" -> case ws of
s1:s2:s3:[] -> checkFormat s2 $ AnalyzeModule s1 s2 s3 True
_ -> ParseError
"AnalyzeFunction" -> case ws of
s1:s2:s3:s4:[] -> checkFormat s2 $ AnalyzeEntity s1 s2 s3 s4
_ -> ParseError
"AnalyzeTypeConstructor" -> case ws of
s1:s2:s3:s4:[] -> checkFormat s2 $ AnalyzeEntity s1 s2 s3 s4
_ -> ParseError
"AnalyzeDataConstructor" -> case ws of
s1:s2:s3:s4:[] -> checkFormat s2 $ AnalyzeEntity s1 s2 s3 s4
_ -> ParseError
"SetCurryPath" -> case ws of
s:[] -> SetCurryPath s
_ -> ParseError
"StopServer" -> StopServer
_ -> ParseError
where
checkFormat fmt msg = if fmt `elem` serverFormats then msg else ParseError
showAnalysisNamesAndFormats :: String
showAnalysisNamesAndFormats =
unlines (concatMap (\an -> map ((an++" ")++) serverFormats)
registeredAnalysisNames)
|