blob: 820b816e2a16eb4a6ee4dd25f5182d719156dba9 [file] [log] [blame]
Mark Slee57cc25e2007-02-28 21:43:54 +00001#!/usr/bin/env python
Mark Sleec9676562006-09-05 17:34:52 +00002
David Reissea2cba82009-03-30 21:35:00 +00003#
4# Licensed to the Apache Software Foundation (ASF) under one
5# or more contributor license agreements. See the NOTICE file
6# distributed with this work for additional information
7# regarding copyright ownership. The ASF licenses this file
8# to you under the Apache License, Version 2.0 (the
9# "License"); you may not use this file except in compliance
10# with the License. You may obtain a copy of the License at
11#
12# http://www.apache.org/licenses/LICENSE-2.0
13#
14# Unless required by applicable law or agreed to in writing,
15# software distributed under the License is distributed on an
16# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17# KIND, either express or implied. See the License for the
18# specific language governing permissions and limitations
19# under the License.
20#
Bryan Duxbury59d4efd2011-03-21 17:38:22 +000021from __future__ import division
Roger Meier85fb6de2012-11-02 00:05:42 +000022import sys, glob, time, os
23sys.path.insert(0, glob.glob(os.path.join(os.path.dirname(__file__),'../../lib/py/build/lib.*'))[0])
Bryan Duxbury59d4efd2011-03-21 17:38:22 +000024from optparse import OptionParser
Mark Sleec9676562006-09-05 17:34:52 +000025
Bryan Duxbury59d4efd2011-03-21 17:38:22 +000026parser = OptionParser()
Roger Meierf4eec7a2011-09-11 18:16:21 +000027parser.add_option('--genpydir', type='string', dest='genpydir',
28 default='gen-py',
29 help='include this local directory in sys.path for locating generated code')
Bryan Duxbury59d4efd2011-03-21 17:38:22 +000030parser.add_option("--port", type="int", dest="port",
31 help="port number for server to listen on")
Bryan Duxbury16066592011-03-22 18:06:04 +000032parser.add_option("--zlib", action="store_true", dest="zlib",
33 help="use zlib wrapper for compressed transport")
34parser.add_option("--ssl", action="store_true", dest="ssl",
35 help="use SSL for encrypted transport")
Roger Meier76150722014-05-31 22:22:07 +020036parser.add_option('-v', '--verbose', action="store_const",
Bryan Duxbury59d4efd2011-03-21 17:38:22 +000037 dest="verbose", const=2,
38 help="verbose output")
Roger Meier76150722014-05-31 22:22:07 +020039parser.add_option('-q', '--quiet', action="store_const",
Bryan Duxbury16066592011-03-22 18:06:04 +000040 dest="verbose", const=0,
41 help="minimal output")
Roger Meier76150722014-05-31 22:22:07 +020042parser.add_option('--protocol', dest="proto", type="string",
Roger Meier85fb6de2012-11-02 00:05:42 +000043 help="protocol to use, one of: accel, binary, compact, json")
Roger Meier76150722014-05-31 22:22:07 +020044parser.add_option('--transport', dest="trans", type="string",
45 help="transport to use, one of: buffered, framed")
Bryan Duxbury16066592011-03-22 18:06:04 +000046parser.set_defaults(port=9090, verbose=1, proto='binary')
Bryan Duxbury59d4efd2011-03-21 17:38:22 +000047options, args = parser.parse_args()
48
cdwijayarathna0d4072b2014-08-09 21:32:21 +053049script_dir = os.path.dirname(__file__) #<-- absolute dir the script is in
50sys.path.insert(0, os.path.join(script_dir, options.genpydir))
Roger Meierf4eec7a2011-09-11 18:16:21 +000051
jfarrelldbf2bb52014-07-09 23:37:12 -040052from ThriftTest import ThriftTest
Roger Meierf4eec7a2011-09-11 18:16:21 +000053from ThriftTest.ttypes import *
Roger Meier1f554e12013-01-05 20:38:35 +010054from thrift.Thrift import TException
Roger Meierf4eec7a2011-09-11 18:16:21 +000055from thrift.transport import TTransport
56from thrift.transport import TSocket
57from thrift.transport import TZlibTransport
58from thrift.protocol import TBinaryProtocol
59from thrift.protocol import TCompactProtocol
Roger Meier85fb6de2012-11-02 00:05:42 +000060from thrift.protocol import TJSONProtocol
Roger Meierf4eec7a2011-09-11 18:16:21 +000061from thrift.server import TServer, TNonblockingServer, THttpServer
62
63PROT_FACTORIES = {'binary': TBinaryProtocol.TBinaryProtocolFactory,
64 'accel': TBinaryProtocol.TBinaryProtocolAcceleratedFactory,
Roger Meier85fb6de2012-11-02 00:05:42 +000065 'compact': TCompactProtocol.TCompactProtocolFactory,
66 'json': TJSONProtocol.TJSONProtocolFactory}
Roger Meierf4eec7a2011-09-11 18:16:21 +000067
Mark Sleec9676562006-09-05 17:34:52 +000068class TestHandler:
69
70 def testVoid(self):
Bryan Duxbury16066592011-03-22 18:06:04 +000071 if options.verbose > 1:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +000072 print 'testVoid()'
Mark Sleec9676562006-09-05 17:34:52 +000073
74 def testString(self, str):
Bryan Duxbury16066592011-03-22 18:06:04 +000075 if options.verbose > 1:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +000076 print 'testString(%s)' % str
Mark Sleec9676562006-09-05 17:34:52 +000077 return str
78
79 def testByte(self, byte):
Bryan Duxbury16066592011-03-22 18:06:04 +000080 if options.verbose > 1:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +000081 print 'testByte(%d)' % byte
Mark Sleec9676562006-09-05 17:34:52 +000082 return byte
83
Mark Sleec98d0502006-09-06 02:42:25 +000084 def testI16(self, i16):
Bryan Duxbury16066592011-03-22 18:06:04 +000085 if options.verbose > 1:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +000086 print 'testI16(%d)' % i16
Mark Sleec98d0502006-09-06 02:42:25 +000087 return i16
88
89 def testI32(self, i32):
Bryan Duxbury16066592011-03-22 18:06:04 +000090 if options.verbose > 1:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +000091 print 'testI32(%d)' % i32
Mark Sleec98d0502006-09-06 02:42:25 +000092 return i32
93
94 def testI64(self, i64):
Bryan Duxbury16066592011-03-22 18:06:04 +000095 if options.verbose > 1:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +000096 print 'testI64(%d)' % i64
Mark Sleec98d0502006-09-06 02:42:25 +000097 return i64
98
99 def testDouble(self, dub):
Bryan Duxbury16066592011-03-22 18:06:04 +0000100 if options.verbose > 1:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000101 print 'testDouble(%f)' % dub
Mark Sleec98d0502006-09-06 02:42:25 +0000102 return dub
103
104 def testStruct(self, thing):
Bryan Duxbury16066592011-03-22 18:06:04 +0000105 if options.verbose > 1:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000106 print 'testStruct({%s, %d, %d, %d})' % (thing.string_thing, thing.byte_thing, thing.i32_thing, thing.i64_thing)
Mark Sleec98d0502006-09-06 02:42:25 +0000107 return thing
108
Roger Meier1f554e12013-01-05 20:38:35 +0100109 def testException(self, arg):
110 #if options.verbose > 1:
111 print 'testException(%s)' % arg
112 if arg == 'Xception':
113 raise Xception(errorCode=1001, message=arg)
114 elif arg == 'TException':
115 raise TException(message='This is a TException')
116
117 def testMultiException(self, arg0, arg1):
Bryan Duxbury16066592011-03-22 18:06:04 +0000118 if options.verbose > 1:
Roger Meier1f554e12013-01-05 20:38:35 +0100119 print 'testMultiException(%s, %s)' % (arg0, arg1)
120 if arg0 == 'Xception':
121 raise Xception(errorCode=1001, message='This is an Xception')
122 elif arg0 == 'Xception2':
123 raise Xception2(
124 errorCode=2002,
125 struct_thing=Xtruct(string_thing='This is an Xception2'))
126 return Xtruct(string_thing=arg1)
Mark Sleec9676562006-09-05 17:34:52 +0000127
David Reiss6ce401d2009-03-24 20:01:58 +0000128 def testOneway(self, seconds):
Bryan Duxbury16066592011-03-22 18:06:04 +0000129 if options.verbose > 1:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000130 print 'testOneway(%d) => sleeping...' % seconds
131 time.sleep(seconds / 3) # be quick
Bryan Duxbury16066592011-03-22 18:06:04 +0000132 if options.verbose > 1:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000133 print 'done sleeping'
David Reissdb893b62008-02-18 02:11:48 +0000134
David Reiss74421272008-11-07 23:09:31 +0000135 def testNest(self, thing):
Bryan Duxbury16066592011-03-22 18:06:04 +0000136 if options.verbose > 1:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000137 print 'testNest(%s)' % thing
David Reiss74421272008-11-07 23:09:31 +0000138 return thing
139
140 def testMap(self, thing):
Bryan Duxbury16066592011-03-22 18:06:04 +0000141 if options.verbose > 1:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000142 print 'testMap(%s)' % thing
David Reiss74421272008-11-07 23:09:31 +0000143 return thing
144
145 def testSet(self, thing):
Bryan Duxbury16066592011-03-22 18:06:04 +0000146 if options.verbose > 1:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000147 print 'testSet(%s)' % thing
David Reiss74421272008-11-07 23:09:31 +0000148 return thing
149
150 def testList(self, thing):
Bryan Duxbury16066592011-03-22 18:06:04 +0000151 if options.verbose > 1:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000152 print 'testList(%s)' % thing
David Reiss74421272008-11-07 23:09:31 +0000153 return thing
154
155 def testEnum(self, thing):
Bryan Duxbury16066592011-03-22 18:06:04 +0000156 if options.verbose > 1:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000157 print 'testEnum(%s)' % thing
David Reiss74421272008-11-07 23:09:31 +0000158 return thing
159
160 def testTypedef(self, thing):
Bryan Duxbury16066592011-03-22 18:06:04 +0000161 if options.verbose > 1:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000162 print 'testTypedef(%s)' % thing
David Reiss74421272008-11-07 23:09:31 +0000163 return thing
164
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000165 def testMapMap(self, thing):
Bryan Duxbury16066592011-03-22 18:06:04 +0000166 if options.verbose > 1:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000167 print 'testMapMap(%s)' % thing
Roger Meier1f554e12013-01-05 20:38:35 +0100168 return {thing: {thing: thing}}
169
170 def testInsanity(self, argument):
171 if options.verbose > 1:
172 print 'testInsanity(%s)' % argument
173 return {123489: {Numberz.ONE:argument}}
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000174
175 def testMulti(self, arg0, arg1, arg2, arg3, arg4, arg5):
Bryan Duxbury16066592011-03-22 18:06:04 +0000176 if options.verbose > 1:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000177 print 'testMulti(%s)' % [arg0, arg1, arg2, arg3, arg4, arg5]
Roger Meier1f554e12013-01-05 20:38:35 +0100178 return Xtruct(string_thing='Hello2',
179 byte_thing=arg0, i32_thing=arg1, i64_thing=arg2)
180
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000181
Roger Meier76150722014-05-31 22:22:07 +0200182# set up the protocol factory form the --protocol option
Bryan Duxbury16066592011-03-22 18:06:04 +0000183pfactory_cls = PROT_FACTORIES.get(options.proto, None)
184if pfactory_cls is None:
Roger Meier76150722014-05-31 22:22:07 +0200185 raise AssertionError('Unknown --protocol option: %s' % options.proto)
Bryan Duxbury16066592011-03-22 18:06:04 +0000186pfactory = pfactory_cls()
187
188# get the server type (TSimpleServer, TNonblockingServer, etc...)
189if len(args) > 1:
190 raise AssertionError('Only one server type may be specified, not multiple types.')
191server_type = args[0]
192
193# Set up the handler and processor objects
jfarrelldbf2bb52014-07-09 23:37:12 -0400194handler = TestHandler()
195processor = ThriftTest.Processor(handler)
David Reissbcaa2ad2008-06-10 22:55:26 +0000196
Bryan Duxbury16066592011-03-22 18:06:04 +0000197# Handle THttpServer as a special case
198if server_type == 'THttpServer':
199 server =THttpServer.THttpServer(processor, ('', options.port), pfactory)
200 server.serve()
201 sys.exit(0)
202
203# set up server transport and transport factory
Roger Meier76150722014-05-31 22:22:07 +0200204
Roger Meier76150722014-05-31 22:22:07 +0200205rel_path = "../keys/server.pem"
206abs_key_path = os.path.join(script_dir, rel_path)
207
Bryan Duxbury16066592011-03-22 18:06:04 +0000208host = None
209if options.ssl:
210 from thrift.transport import TSSLSocket
Roger Meier76150722014-05-31 22:22:07 +0200211 transport = TSSLSocket.TSSLServerSocket(host, options.port, certfile=abs_key_path)
David Reiss74421272008-11-07 23:09:31 +0000212else:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000213 transport = TSocket.TServerSocket(host, options.port)
Bryan Duxbury16066592011-03-22 18:06:04 +0000214tfactory = TTransport.TBufferedTransportFactory()
Roger Meier76150722014-05-31 22:22:07 +0200215if options.trans == 'buffered':
216 tfactory = TTransport.TBufferedTransportFactory()
217elif options.trans == 'framed':
218 tfactory = TTransport.TFramedTransportFactory()
219elif options.trans == '':
220 raise AssertionError('Unknown --transport option: %s' % options.trans)
221else:
222 tfactory = TTransport.TBufferedTransportFactory()
Bryan Duxbury16066592011-03-22 18:06:04 +0000223# if --zlib, then wrap server transport, and use a different transport factory
224if options.zlib:
225 transport = TZlibTransport.TZlibTransport(transport) # wrap with zlib
226 tfactory = TZlibTransport.TZlibTransportFactory()
227
228# do server-specific setup here:
229if server_type == "TNonblockingServer":
230 server = TNonblockingServer.TNonblockingServer(processor, transport, inputProtocolFactory=pfactory)
231elif server_type == "TProcessPoolServer":
232 import signal
233 from thrift.server import TProcessPoolServer
234 server = TProcessPoolServer.TProcessPoolServer(processor, transport, tfactory, pfactory)
235 server.setNumWorkers(5)
236 def set_alarm():
237 def clean_shutdown(signum, frame):
238 for worker in server.workers:
239 if options.verbose > 0:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000240 print 'Terminating worker: %s' % worker
Bryan Duxbury16066592011-03-22 18:06:04 +0000241 worker.terminate()
242 if options.verbose > 0:
Bryan Duxbury59d4efd2011-03-21 17:38:22 +0000243 print 'Requesting server to stop()'
Roger Meierf4eec7a2011-09-11 18:16:21 +0000244 try:
245 server.stop()
246 except:
247 pass
Bryan Duxbury16066592011-03-22 18:06:04 +0000248 signal.signal(signal.SIGALRM, clean_shutdown)
249 signal.alarm(2)
250 set_alarm()
251else:
252 # look up server class dynamically to instantiate server
253 ServerClass = getattr(TServer, server_type)
254 server = ServerClass(processor, transport, tfactory, pfactory)
255# enter server main loop
Mark Slee794993d2006-09-20 01:56:10 +0000256server.serve()