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
|
--
-- Licensed to the Apache Software Foundation (ASF) under one
-- or more contributor license agreements. See the NOTICE file
-- distributed with this work for additional information
-- regarding copyright ownership. The ASF licenses this file
-- to you under the Apache License, Version 2.0 (the
-- "License"); you may not use this file except in compliance
-- with the License. You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing,
-- software distributed under the License is distributed on an
-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-- KIND, either express or implied. See the License for the
-- specific language governing permissions and limitations
-- under the License.
--
{-# LANGUAGE OverloadedStrings,RecordWildCards #-}
module Main where
import Control.Exception
import Control.Monad
import Data.Functor
import Data.HashMap.Strict (HashMap)
import Data.List
import Data.List.Split
import Data.String
import Network
import System.Environment
import System.Exit
import System.IO
import Control.Concurrent (threadDelay)
import qualified System.IO as IO
import qualified Data.HashMap.Strict as Map
import qualified Data.HashSet as Set
import qualified Data.Text.Lazy as Text
import qualified Data.Vector as Vector
import ThriftTest
import ThriftTest_Iface
import ThriftTest_Types
import Thrift
import Thrift.Server
import Thrift.Transport.Framed
import Thrift.Transport.Handle
import Thrift.Protocol.Binary
import Thrift.Protocol.Compact
import Thrift.Protocol.Header
import Thrift.Protocol.JSON
data Options = Options
{ port :: Int
, domainSocket :: String
, serverType :: ServerType
, transport :: String
, protocol :: ProtocolType
, ssl :: Bool
, workers :: Int
}
data ServerType = Simple
| ThreadPool
| Threaded
| NonBlocking
deriving (Show, Eq)
instance IsString ServerType where
fromString "simple" = Simple
fromString "thread-pool" = ThreadPool
fromString "threaded" = Threaded
fromString "nonblocking" = NonBlocking
fromString _ = error "not a valid server type"
data TransportType = Buffered (Socket -> (IO IO.Handle))
| Framed (Socket -> (IO (FramedTransport IO.Handle)))
| NoTransport String
getTransport :: String -> TransportType
getTransport "buffered" = Buffered $ \s -> do
(h, _, _) <- (accept s)
IO.hSetBuffering h $ IO.BlockBuffering Nothing
return h
getTransport "framed" = Framed $ \s -> do
(h, _, _) <- (accept s)
openFramedTransport h
getTransport t = NoTransport $ "Unsupported transport: " ++ t
data ProtocolType = Binary
| Compact
| JSON
| Header
getProtocol :: String -> ProtocolType
getProtocol "binary" = Binary
getProtocol "compact" = Compact
getProtocol "json" = JSON
getProtocol "header" = Header
getProtocol p = error $"Unsupported Protocol: " ++ p
defaultOptions :: Options
defaultOptions = Options
{ port = 9090
, domainSocket = ""
, serverType = Threaded
, transport = "buffered"
, protocol = Binary
-- TODO: Haskell lib does not have SSL support
, ssl = False
, workers = 4
}
stringifyMap :: (Show a, Show b) => Map.HashMap a b -> String
stringifyMap = Data.List.intercalate ", " . Data.List.map joinKV . Map.toList
where joinKV (k, v) = show k ++ " => " ++ show v
stringifySet :: Show a => Set.HashSet a -> String
stringifySet = Data.List.intercalate ", " . Data.List.map show . Set.toList
stringifyList :: Show a => Vector.Vector a -> String
stringifyList = Data.List.intercalate ", " . Data.List.map show . Vector.toList
data TestHandler = TestHandler
instance ThriftTest_Iface TestHandler where
testVoid _ = System.IO.putStrLn "testVoid()"
testString _ s = do
System.IO.putStrLn $ "testString(" ++ show s ++ ")"
return s
testBool _ x = do
System.IO.putStrLn $ "testBool(" ++ show x ++ ")"
return x
testByte _ x = do
System.IO.putStrLn $ "testByte(" ++ show x ++ ")"
return x
testI32 _ x = do
System.IO.putStrLn $ "testI32(" ++ show x ++ ")"
return x
testI64 _ x = do
System.IO.putStrLn $ "testI64(" ++ show x ++ ")"
return x
testDouble _ x = do
System.IO.putStrLn $ "testDouble(" ++ show x ++ ")"
return x
testBinary _ x = do
System.IO.putStrLn $ "testBinary(" ++ show x ++ ")"
return x
testStruct _ struct@Xtruct{..} = do
System.IO.putStrLn $ "testStruct({" ++ show xtruct_string_thing
++ ", " ++ show xtruct_byte_thing
++ ", " ++ show xtruct_i32_thing
++ ", " ++ show xtruct_i64_thing
++ "})"
return struct
testNest _ nest@Xtruct2{..} = do
let Xtruct{..} = xtruct2_struct_thing
System.IO.putStrLn $ "testNest({" ++ show xtruct2_byte_thing
++ "{, " ++ show xtruct_string_thing
++ ", " ++ show xtruct_byte_thing
++ ", " ++ show xtruct_i32_thing
++ ", " ++ show xtruct_i64_thing
++ "}, " ++ show xtruct2_i32_thing
return nest
testMap _ m = do
System.IO.putStrLn $ "testMap({" ++ stringifyMap m ++ "})"
return m
testStringMap _ m = do
System.IO.putStrLn $ "testStringMap(" ++ stringifyMap m ++ "})"
return m
testSet _ x = do
System.IO.putStrLn $ "testSet({" ++ stringifySet x ++ "})"
return x
testList _ x = do
System.IO.putStrLn $ "testList(" ++ stringifyList x ++ "})"
return x
testEnum _ x = do
System.IO.putStrLn $ "testEnum(" ++ show x ++ ")"
return x
testTypedef _ x = do
System.IO.putStrLn $ "testTypedef(" ++ show x ++ ")"
return x
testMapMap _ x = do
System.IO.putStrLn $ "testMapMap(" ++ show x ++ ")"
return $ Map.fromList [ (-4, Map.fromList [ (-4, -4)
, (-3, -3)
, (-2, -2)
, (-1, -1)
])
, (4, Map.fromList [ (1, 1)
, (2, 2)
, (3, 3)
, (4, 4)
])
]
testInsanity _ x = do
System.IO.putStrLn "testInsanity()"
return $ Map.fromList [ (1, Map.fromList [ (TWO , x)
, (THREE, x)
])
, (2, Map.fromList [ (SIX, default_Insanity)
])
]
testMulti _ byte i32 i64 _ _ _ = do
System.IO.putStrLn "testMulti()"
return Xtruct{ xtruct_string_thing = Text.pack "Hello2"
, xtruct_byte_thing = byte
, xtruct_i32_thing = i32
, xtruct_i64_thing = i64
}
testException _ s = do
System.IO.putStrLn $ "testException(" ++ show s ++ ")"
case s of
"Xception" -> throw $ Xception 1001 s
"TException" -> throw ThriftException
_ -> return ()
testMultiException _ s1 s2 = do
System.IO.putStrLn $ "testMultiException(" ++ show s1 ++ ", " ++ show s2 ++ ")"
case s1 of
"Xception" -> throw $ Xception 1001 "This is an Xception"
"Xception2" -> throw $ Xception2 2002 $ Xtruct "This is an Xception2" 0 0 0
"TException" -> throw ThriftException
_ -> return default_Xtruct{ xtruct_string_thing = s2 }
testOneway _ i = do
System.IO.putStrLn $ "testOneway(" ++ show i ++ "): Sleeping..."
threadDelay $ (fromIntegral i) * 1000000
System.IO.putStrLn $ "testOneway(" ++ show i ++ "): done sleeping!"
main :: IO ()
main = do
options <- flip parseFlags defaultOptions <$> getArgs
case options of
Nothing -> showHelp
Just Options{..} -> do
case Main.getTransport transport of
Buffered f -> runServer protocol f port
Framed f -> runServer protocol f port
NoTransport err -> putStrLn err
System.IO.putStrLn $ "Starting \"" ++ show serverType ++ "\" server (" ++
show transport ++ ") listen on: " ++ domainSocket ++ show port
where
acceptor p f socket = do
t <- f socket
return (p t, p t)
headerAcceptor f socket = do
t <- f socket
p <- createHeaderProtocol1 t
return (p, p)
doRunServer p f = do
runThreadedServer (acceptor p f) TestHandler ThriftTest.process . PortNumber . fromIntegral
runServer p f port = case p of
Binary -> doRunServer BinaryProtocol f port
Compact -> doRunServer CompactProtocol f port
JSON -> doRunServer JSONProtocol f port
Header -> runThreadedServer (headerAcceptor f) TestHandler ThriftTest.process (PortNumber $ fromIntegral port)
parseFlags :: [String] -> Options -> Maybe Options
parseFlags (flag : flags) opts = do
let pieces = splitOn "=" flag
case pieces of
"--port" : arg : _ -> parseFlags flags opts{ port = read arg }
"--domain-socket" : arg : _ -> parseFlags flags opts{ domainSocket = read arg }
"--server-type" : arg : _ -> parseFlags flags opts{ serverType = fromString arg }
"--transport" : arg : _ -> parseFlags flags opts{ transport = arg }
"--protocol" : arg : _ -> parseFlags flags opts{ protocol = getProtocol arg }
"--workers" : arg : _ -> parseFlags flags opts{ workers = read arg }
"-n" : arg : _ -> parseFlags flags opts{ workers = read arg }
"--h" : _ -> Nothing
"--help" : _ -> Nothing
"--ssl" : _ -> parseFlags flags opts{ ssl = True }
"--processor-events" : _ -> parseFlags flags opts
_ -> Nothing
parseFlags [] opts = Just opts
showHelp :: IO ()
showHelp = System.IO.putStrLn
"Allowed options:\n\
\ -h [ --help ] produce help message\n\
\ --port arg (=9090) Port number to listen\n\
\ --domain-socket arg Unix Domain Socket (e.g. /tmp/ThriftTest.thrift)\n\
\ --server-type arg (=simple) type of server, \"simple\", \"thread-pool\",\n\
\ \"threaded\", or \"nonblocking\"\n\
\ --transport arg (=buffered) transport: buffered, framed\n\
\ --protocol arg (=binary) protocol: binary, compact, json\n\
\ --ssl Encrypted Transport using SSL\n\
\ --processor-events processor-events\n\
\ -n [ --workers ] arg (=4) Number of thread pools workers. Only valid for\n\
\ thread-pool server type"
|