| 30 |
ashish |
1 |
--
|
|
|
2 |
-- Licensed to the Apache Software Foundation (ASF) under one
|
|
|
3 |
-- or more contributor license agreements. See the NOTICE file
|
|
|
4 |
-- distributed with this work for additional information
|
|
|
5 |
-- regarding copyright ownership. The ASF licenses this file
|
|
|
6 |
-- to you under the Apache License, Version 2.0 (the
|
|
|
7 |
-- "License"); you may not use this file except in compliance
|
|
|
8 |
-- with the License. You may obtain a copy of the License at
|
|
|
9 |
--
|
|
|
10 |
-- http://www.apache.org/licenses/LICENSE-2.0
|
|
|
11 |
--
|
|
|
12 |
-- Unless required by applicable law or agreed to in writing,
|
|
|
13 |
-- software distributed under the License is distributed on an
|
|
|
14 |
-- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
15 |
-- KIND, either express or implied. See the License for the
|
|
|
16 |
-- specific language governing permissions and limitations
|
|
|
17 |
-- under the License.
|
|
|
18 |
--
|
|
|
19 |
|
|
|
20 |
module Server where
|
|
|
21 |
|
|
|
22 |
import ThriftTest
|
|
|
23 |
import ThriftTest_Iface
|
|
|
24 |
import Data.Map as Map
|
|
|
25 |
import Control.Exception
|
|
|
26 |
import ThriftTest_Types
|
|
|
27 |
|
|
|
28 |
import Thrift
|
|
|
29 |
import Thrift.Server
|
|
|
30 |
|
|
|
31 |
|
|
|
32 |
data TestHandler = TestHandler
|
|
|
33 |
instance ThriftTest_Iface TestHandler where
|
|
|
34 |
testVoid a = return ()
|
|
|
35 |
testString a (Just s) = do print s; return s
|
|
|
36 |
testByte a (Just x) = do print x; return x
|
|
|
37 |
testI32 a (Just x) = do print x; return x
|
|
|
38 |
testI64 a (Just x) = do print x; return x
|
|
|
39 |
testDouble a (Just x) = do print x; return x
|
|
|
40 |
testStruct a (Just x) = do print x; return x
|
|
|
41 |
testNest a (Just x) = do print x; return x
|
|
|
42 |
testMap a (Just x) = do print x; return x
|
|
|
43 |
testSet a (Just x) = do print x; return x
|
|
|
44 |
testList a (Just x) = do print x; return x
|
|
|
45 |
testEnum a (Just x) = do print x; return x
|
|
|
46 |
testTypedef a (Just x) = do print x; return x
|
|
|
47 |
testMapMap a (Just x) = return (Map.fromList [(1,Map.fromList [(2,2)])])
|
|
|
48 |
testInsanity a (Just x) = return (Map.fromList [(1,Map.fromList [(ONE,x)])])
|
|
|
49 |
testMulti a a1 a2 a3 a4 a5 a6 = return (Xtruct Nothing Nothing Nothing Nothing)
|
|
|
50 |
testException a c = throw (Xception (Just 1) (Just "bya"))
|
|
|
51 |
testMultiException a c1 c2 = throw (Xception (Just 1) (Just "xyz"))
|
|
|
52 |
testOneway a (Just i) = do print i
|
|
|
53 |
|
|
|
54 |
|
|
|
55 |
main = do (runBasicServer TestHandler process 9090)
|
|
|
56 |
`Control.Exception.catch`
|
|
|
57 |
(\(TransportExn s t) -> print s)
|