python 服务端与c++客户端通讯_python thrift 服务端与客户端使用

本文介绍了如何使用thrift框架进行跨语言的Python服务端与C++客户端通信。首先,详细说明了thrift的安装步骤,然后展示了如何编写thrift接口文件及Python服务端代码,最后给出了Python客户端的实现。通过实例演示了thrift的使用,包括服务端启动和客户端调用服务的方法。
摘要由CSDN通过智能技术生成

一、简介

thrift是一个软件框架,用来进行可扩展且跨语言的服务的开发。它结合了功能强大的软件堆栈和代码生成引擎,以构建在 C++, Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, JavaScript, Node.js, Smalltalk, and OCaml 这些编程语言间无缝结合的、高效的服务。

二、安装

1.下载地址http://www.apache.org/dyn/closer.cgi?path=/thrift/0.9.2/thrift-0.9.2.tar.gz

2.安装[root@localhost ~]# yum -y groupinstall "Development Tools"

[root@localhost ~]# yum -y install libevent-devel zlib-devel openssl-devel autoconf automake

[root@localhost ~]#  wget http://ftp.gnu.org/gnu/bison/bison-2.5.1.tar.gz

[root@localhost ~]# tar xf bison-2.5.1.tar.gz

[root@localhost ~]# cd bison-2.5.1

[root@localhost ~]# ./configure --prefix=/usr

[root@localhost ~]# make

[root@localhost ~]# make install

[root@localhost ~]# tar xf thrift-0.9.2.tar.gz

[root@localhost ~]# cd thrift-0.9.2

[root@localhost thrift-0.9.2]# ./configure -with-lua=no

3.安装python插件pip install thrift

三、准备服务器端

1.编辑接口文件 helloworld.thrift:service HelloWorld {

string ping(),

string say(1:string msg)

}

2.编辑 server.py#!/usr/bin/env python

import socket

import sys

sys.path.append('./gen-py')

from helloworld import HelloWorld

from helloworld.ttypes import *

from thrift.transport import TSocket

from thrift.transport import TTransport

from thrift.protocol import TBinaryProtocol

from thrift.server import TServer

class HelloWorldHandler:

def ping(self):

return "pong"

def say(self, msg):

ret = "Received: " + msg

print ret

return ret

#创建服务端

handler = 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!"

四、准备客户端#!/usr/bin/env python

import sys

sys.path.append('./gen-py')

from helloworld import HelloWorld #引入客户端类

from thrift import Thrift

from thrift.transport import TSocket

from thrift.transport import TTransport

from thrift.protocol import TBinaryProtocol

try:

#建立socket

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)

ps:亲测通过,吐槽一下,这东西以前都没有听说过,就要拿来开发,还要只是用客户端

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值