blob: 0ca9d9feadd4d44489f1f1a1ea0b13f2ca1a9205 [file] [log] [blame]
Gavin McDonald0b75e1a2010-10-28 02:12:01 +00001--
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
20module Server where
21
22import ThriftTest
23import ThriftTest_Iface
24import Data.Map as Map
25import Control.Exception
26import ThriftTest_Types
27
28import Thrift
29import Thrift.Server
30
31
32data TestHandler = TestHandler
33instance 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
55main = do (runBasicServer TestHandler process 9090)
56 `Control.Exception.catch`
57 (\(TransportExn s t) -> print s)