David Reiss | ea2cba8 | 2009-03-30 21:35:00 +0000 | [diff] [blame^] | 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 | |
iproctor | ff8eb92 | 2007-07-25 19:06:13 +0000 | [diff] [blame] | 20 | module Server where |
| 21 | import Thrift |
| 22 | import ThriftTest |
| 23 | import ThriftTest_Iface |
| 24 | import Data.Map as Map |
| 25 | import TServer |
| 26 | import Control.Exception |
| 27 | import ThriftTest_Types |
| 28 | |
| 29 | |
| 30 | data TestHandler = TestHandler |
| 31 | instance 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 Reiss | 6ce401d | 2009-03-24 20:01:58 +0000 | [diff] [blame] | 50 | testOneway a (Just i) = do print i |
iproctor | ff8eb92 | 2007-07-25 19:06:13 +0000 | [diff] [blame] | 51 | |
| 52 | |
| 53 | main = do (run_basic_server TestHandler process 9090) `catchDyn` (\(TransportExn s t) -> print s) |