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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
|
module CASS.Server
(mainServer, initializeAnalysisSystem, analyzeModuleAndPrint
, analyzeModuleForBrowser, analyzeFunctionForBrowser
, analyzeGeneric, analyzePublic, analyzeInterface
) where
import Numeric ( readNat )
import Data.Char ( isSpace )
import Control.Monad ( unless )
import System.CurryPath ( runModuleAction )
import System.Directory
import System.FilePath
import System.IO
import System.Process ( system, sleep )
import System.Environment
import Analysis.Logging ( DLevel, debugMessage )
import Analysis.ProgInfo
import Analysis.Types ( Analysis, AOutFormat(..) )
import FlatCurry.Types ( QName )
import Network.Socket ( Socket(..), listenOn, listenOnFresh
, close, waitForSocketAccept )
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 = readRCFile >> return ()
mainServer :: CConfig -> Maybe Int -> IO ()
mainServer cconfig 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 cconfig >>= setEnv "CURRYPATH"
let numworkers = numberOfWorkers cconfig
if numworkers > 0
then do
serveraddress <- getServerAddress
(workerport,workersocket) <- listenOnFresh
debugMessage dl 2 ("SERVER: port to workers: "++show workerport)
handles <- startWorkers cconfig numworkers workersocket serveraddress
workerport []
serverLoop cconfig socket1 handles
close workersocket
else
serverLoop cconfig socket1 []
where dl = debugLevel cconfig
analyzeModuleAndPrint :: CConfig -> String -> String -> Bool -> Bool -> IO ()
analyzeModuleAndPrint cconfig ananame mname optall enforce =
analyzeProgram cconfig ananame enforce AText mname >>=
putStrLn . formatResult mname "Text" Nothing (not optall)
analyzeModuleForBrowser :: String -> String -> AOutFormat -> IO [(QName,String)]
analyzeModuleForBrowser ananame mname aoutformat = do
cconfig <- readRCFile
analyzeProgram cconfig ananame False aoutformat mname >>=
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
cconfig <- readRCFile
analyzeProgram cconfig ananame False aoutformat mname >>=
return . either (maybe "" id . lookupProgInfo qn) (const "")
analyzeProgram :: CConfig -> String -> Bool -> AOutFormat -> String
-> IO (Either (ProgInfo String) String)
analyzeProgram cconfig ananame enforce aoutformat progname =
runModuleAction (analyzeModule cconfig ananame enforce aoutformat) progname
analyzeModule :: CConfig -> String -> Bool -> AOutFormat -> String
-> IO (Either (ProgInfo String) String)
analyzeModule cconfig ananame enforce aoutformat modname = do
getDefaultPath cconfig >>= setEnv "CURRYPATH"
let numworkers = numberOfWorkers cconfig
if numworkers > 0
then do
serveraddress <- getServerAddress
(port,socket) <- listenOnFresh
handles <- startWorkers cconfig numworkers socket serveraddress port []
result <- runAnalysisWithWorkers cconfig ananame aoutformat enforce
handles modname
stopWorkers handles
close socket
return result
else runAnalysisWithWorkers cconfig ananame aoutformat enforce [] modname
analyzeGeneric :: (Read a, Show a)
=> Analysis a -> String -> IO (Either (ProgInfo a) String)
analyzeGeneric analysis moduleName = do
cconfig <- readRCFile
let (mdir,mname) = splitFileName moduleName
getDefaultPath cconfig >>= setEnv "CURRYPATH"
curdir <- getCurrentDirectory
unless (mdir==".") $ setCurrentDirectory mdir
let numworkers = numberOfWorkers cconfig
aresult <-
if numworkers > 0
then do
serveraddress <- getServerAddress
(port,socket) <- listenOnFresh
handles <- startWorkers cconfig numworkers socket serveraddress port []
result <- analyzeMain cconfig analysis mname handles False True
stopWorkers handles
close socket
return result
else
analyzeMain cconfig analysis mname [] False True
setCurrentDirectory curdir
return aresult
analyzePublic :: (Read a, Show a)
=> Analysis a -> String -> IO (Either (ProgInfo a) String)
analyzePublic analysis moduleName =
analyzeGeneric analysis moduleName
>>= return . either (Left . publicProgInfo) Right
analyzeInterface :: (Read a, Show a)
=> Analysis a -> String -> IO (Either [(QName,a)] String)
analyzeInterface analysis moduleName =
analyzeGeneric analysis moduleName
>>= return . either (Left . publicListFromProgInfo) Right
startWorkers:: CConfig -> Int -> Socket -> String -> Int -> [Handle]
-> IO [Handle]
startWorkers cconfig number workersocket serveraddress workerport handles = do
if number > 0
then do
debugMessage dl 4 ("Number:"++(show number))
let command = unwords [ executableName, " --worker "
, serveraddress, show workerport, "&" ]
debugMessage dl 4 ("system command: " ++ command)
system command
debugMessage dl 4 ("Wait for socket accept for client "++show number)
connection <- waitForSocketAccept workersocket waitTime
debugMessage dl 4 ("Socket accept for client "++show number)
case connection of
Just (_,handle) -> do
startWorkers cconfig (number-1) workersocket serveraddress workerport
(handle:handles)
Nothing -> do
putStrLn ("startWorkers: connection error worker "++(show number))
startWorkers cconfig (number-1) workersocket serveraddress workerport
handles
else return handles
where dl = debugLevel cconfig
stopWorkers :: [Handle] -> IO ()
stopWorkers [] = return ()
stopWorkers (handle:whandles) = do
hPutStrLn handle (show StopWorker)
hClose handle
stopWorkers whandles
serverLoop :: CConfig -> Socket -> [Handle] -> IO ()
serverLoop cconfig socket1 whandles = do
connection <- waitForSocketAccept socket1 waitTime
case connection of
Just (_,handle) -> serverLoopOnHandle cconfig socket1 whandles handle
Nothing -> do
putStrLn "serverLoop: connection error: time out in waitForSocketAccept"
sleep 1
serverLoop cconfig 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 :: CConfig -> Socket -> [Handle] -> Handle -> IO ()
serverLoopOnHandle cconfig socket1 whandles handle = do
eof <- hIsEOF handle
if eof
then do hClose handle
debugMessage dl 2 "SERVER connection: eof"
serverLoop cconfig socket1 whandles
else do
string <- hGetLineUntilEOF handle
debugMessage dl 2 ("SERVER got message: "++string)
let force = False
case parseServerMessage string of
ParseError -> do
sendServerError dl handle ("Illegal message received: "++string)
serverLoopOnHandle cconfig socket1 whandles handle
GetAnalysis -> do
sendServerResult handle showAnalysisNamesAndFormats
serverLoopOnHandle cconfig socket1 whandles handle
AnalyzeModule ananame outForm modname public ->
catch (runAnalysisWithWorkers cconfig ananame AText force whandles
modname >>=
return . formatResult modname outForm Nothing public >>=
sendResult)
sendAnalysisError
AnalyzeEntity ananame outForm modname functionName ->
catch (runAnalysisWithWorkers cconfig ananame AText force whandles
modname >>=
return . formatResult modname outForm
(Just functionName) False >>= sendResult)
sendAnalysisError
SetCurryPath path -> do
setEnv "CURRYPATH" path
changeWorkerPath path whandles
sendServerResult handle ""
serverLoopOnHandle cconfig socket1 whandles handle
StopServer -> do
stopWorkers whandles
sendServerResult handle ""
hClose handle
close socket1
putStrLn "Stop Server"
removeServerPortNumber
where
dl = debugLevel cconfig
sendResult resultstring = do
debugMessage dl 4 ("formatted result:\n"++resultstring)
sendServerResult handle resultstring
serverLoopOnHandle cconfig socket1 whandles handle
sendAnalysisError err = do
sendServerError dl handle ("ERROR in analysis server: "++ show err)
serverLoopOnHandle cconfig 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 :: DLevel -> Handle -> String -> IO ()
sendServerError dl handle errstring = do
debugMessage dl 1 errstring
hPutStrLn handle ("error "++errstring)
hFlush handle
changeWorkerPath :: String -> [Handle] -> IO ()
changeWorkerPath _ [] = return ()
changeWorkerPath path (handle:whandles) = do
hPutStrLn handle (show (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)
|