mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 10:48:51 +00:00
0c90f6f8af
Summary: - Expanded tabs to spaces where spaces were the norm. - Deleted almost all trailing whitespace. - Added newlines to the ends of a few files. - Ran dos2unix on one file or two. Reviewed By: mcslee Test Plan: git diff -b Revert Plan: ok git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665467 13f79535-47bb-0310-9956-ffa450edef68
62 lines
1.5 KiB
Python
Executable File
62 lines
1.5 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys, glob
|
|
sys.path.insert(0, './gen-py')
|
|
sys.path.insert(0, glob.glob('../../lib/py/build/lib.*')[0])
|
|
|
|
from ThriftTest import ThriftTest
|
|
from ThriftTest.ttypes import *
|
|
from thrift.transport import TTransport
|
|
from thrift.transport import TSocket
|
|
from thrift.protocol import TBinaryProtocol
|
|
from thrift.server import TServer
|
|
|
|
class TestHandler:
|
|
|
|
def testVoid(self):
|
|
print 'testVoid()'
|
|
|
|
def testString(self, str):
|
|
print 'testString(%s)' % str
|
|
return str
|
|
|
|
def testByte(self, byte):
|
|
print 'testByte(%d)' % byte
|
|
return byte
|
|
|
|
def testI16(self, i16):
|
|
print 'testI16(%d)' % i16
|
|
return i16
|
|
|
|
def testI32(self, i32):
|
|
print 'testI32(%d)' % i32
|
|
return i32
|
|
|
|
def testI64(self, i64):
|
|
print 'testI64(%d)' % i64
|
|
return i64
|
|
|
|
def testDouble(self, dub):
|
|
print 'testDouble(%f)' % dub
|
|
return dub
|
|
|
|
def testStruct(self, thing):
|
|
print 'testStruct({%s, %d, %d, %d})' % (thing.string_thing, thing.byte_thing, thing.i32_thing, thing.i64_thing)
|
|
return thing
|
|
|
|
def testException(self, str):
|
|
print 'testException(%s)' % str
|
|
if str == 'Xception':
|
|
x = Xception()
|
|
x.errorCode = 1001
|
|
x.message = str
|
|
raise x
|
|
|
|
handler = TestHandler()
|
|
processor = ThriftTest.Processor(handler)
|
|
transport = TSocket.TServerSocket(9090)
|
|
tfactory = TTransport.TBufferedTransportFactory()
|
|
pfactory = TBinaryProtocol.TBinaryProtocolFactory()
|
|
server = TServer.TThreadedServer(processor, transport, tfactory, pfactory)
|
|
server.serve()
|