blob: 0ca9d9feadd4d44489f1f1a1ea0b13f2ca1a9205 [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
Bryan Duxbury0781f2b2009-04-07 23:29:42 +000021
iproctorff8eb922007-07-25 19:06:13 +000022import ThriftTest
23import ThriftTest_Iface
24import Data.Map as Map
iproctorff8eb922007-07-25 19:06:13 +000025import Control.Exception
26import ThriftTest_Types
27
Bryan Duxbury0781f2b2009-04-07 23:29:42 +000028import Thrift
29import Thrift.Server
30
iproctorff8eb922007-07-25 19:06:13 +000031
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)
Bryan Duxbury0781f2b2009-04-07 23:29:42 +000050 testException a c = throw (Xception (Just 1) (Just "bya"))
51 testMultiException a c1 c2 = throw (Xception (Just 1) (Just "xyz"))
David Reiss6ce401d2009-03-24 20:01:58 +000052 testOneway a (Just i) = do print i
iproctorff8eb922007-07-25 19:06:13 +000053
54
Bryan Duxbury0781f2b2009-04-07 23:29:42 +000055main = do (runBasicServer TestHandler process 9090)
56 `Control.Exception.catch`
57 (\(TransportExn s t) -> print s)