blob: f9b333f0a5c70a08053cd2389613c0c1c2327813 [file] [log] [blame]
David Reissea2cba82009-03-30 21:35:00 +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
iproctorff8eb922007-07-25 19:06:13 +000020module Server where
21import Thrift
22import ThriftTest
23import ThriftTest_Iface
24import Data.Map as Map
25import TServer
26import Control.Exception
27import ThriftTest_Types
28
29
30data TestHandler = TestHandler
31instance ThriftTest_Iface TestHandler where
32 testVoid a = return ()
33 testString a (Just s) = do print s; return s
34 testByte a (Just x) = do print x; return x
35 testI32 a (Just x) = do print x; return x
36 testI64 a (Just x) = do print x; return x
37 testDouble a (Just x) = do print x; return x
38 testStruct a (Just x) = do print x; return x
39 testNest a (Just x) = do print x; return x
40 testMap a (Just x) = do print x; return x
41 testSet a (Just x) = do print x; return x
42 testList a (Just x) = do print x; return x
43 testEnum a (Just x) = do print x; return x
44 testTypedef a (Just x) = do print x; return x
45 testMapMap a (Just x) = return (Map.fromList [(1,Map.fromList [(2,2)])])
46 testInsanity a (Just x) = return (Map.fromList [(1,Map.fromList [(ONE,x)])])
47 testMulti a a1 a2 a3 a4 a5 a6 = return (Xtruct Nothing Nothing Nothing Nothing)
48 testException a c = throwDyn (Xception (Just 1) (Just "bya"))
49 testMultiException a c1 c2 = return (Xtruct Nothing Nothing Nothing Nothing)
David Reiss6ce401d2009-03-24 20:01:58 +000050 testOneway a (Just i) = do print i
iproctorff8eb922007-07-25 19:06:13 +000051
52
53main = do (run_basic_server TestHandler process 9090) `catchDyn` (\(TransportExn s t) -> print s)