Python thrift使用示例,pythonthrift示例,首先需要安装相关类库:a


首先需要安装相关类库:

apt-get install libboost-dev libevent-dev python-dev automake pkg-config libtool flex bison sun-java6-jdkwget http://www.apache.org/dist//thrift/0.8.0/thrift-0.8.0.tar.gztar zxvf thrift-0.8.0.tar.gzcd thrift-0.8.0./configuremakesudo make installsudo pip install thrift

编辑接口文件 hellowworld.thrift:

service HelloWorld {    string ping(),    string say(1:string msg)}

编辑 server.py

#!/usr/bin/env pythonimport socketimport syssys.path.append('./gen-py')from helloworld import HelloWorldfrom helloworld.ttypes import *from thrift.transport import TSocketfrom thrift.transport import TTransportfrom thrift.protocol import TBinaryProtocolfrom thrift.server import TServerclass HelloWorldHandler:  def ping(self):    return "pong"  def say(self, msg):    ret = "Received: " + msg    print ret    return rethandler = HelloWorldHandler()processor = HelloWorld.Processor(handler)transport = TSocket.TServerSocket("localhost", 9090)tfactory = TTransport.TBufferedTransportFactory()pfactory = TBinaryProtocol.TBinaryProtocolFactory()server = TServer.TSimpleServer(processor, transport, tfactory, pfactory)print "Starting thrift server in python..."server.serve()print "done!"

编辑 client.py

#!/usr/bin/env pythonimport syssys.path.append('./gen-py')from helloworld import HelloWorldfrom thrift import Thriftfrom thrift.transport import TSocketfrom thrift.transport import TTransportfrom thrift.protocol import TBinaryProtocoltry:  transport = TSocket.TSocket('localhost', 9090)  transport = TTransport.TBufferedTransport(transport)  protocol = TBinaryProtocol.TBinaryProtocol(transport)  client = HelloWorld.Client(protocol)  transport.open()  print "client - ping"  print "server - " + client.ping()  print "client - say"  msg = client.say("Hello!")  print "server - " + msg  transport.close()except Thrift.TException, ex:  print "%s" % (ex.message)

生成thrift文件:

thrift --gen py helloworld.thrift

启动server和client端:

python server.pypython client.py

评论关闭