Thrift的安装方法和简单实例
本文只是简单的讲解thrift开源框架的安装和简单使用示例,对于详细的讲解,后面在进行阐述。
thrift简述
thrift是一款由fackbook开发的可伸缩、跨语言的服务开发框架,该框架已经开源并且加入的apache项目。thrift主要功能是:通过自定义的interface definition language(idl),可以创建基于rpc的客户端和服务端的服务代码。服务代码的生成是通过thrift内置的代码生成器来实现的。thrift 的跨语言性体现在,它可以生成c++, java, python, php, ruby, erlang, perl, haskell, c#, cocoa, javascript, node.js, smalltalk, ocaml , delphi等语言的代码,且它们之间可以进行透明的通信。
thrift的安装
安装版本为:thrift v0.9.1
系统版本:ubuntu 14.04 64位
基本安装环境:
g++ 4.2
boost 1.53.0
libssl-dev
thrift的编译器即代码生成器是由c++编写的,所以需要g++来进行编译安装,且thrift源码中用到了boost库中相关实现,例如shared_ptr,所以要事先安装boost库。
thrift通信过程中使用ssl对数据进行安全包含,如果为安装该库,会在configure时出现configure: error: "error: libcrypto required."
thrift提供了,tthreadsever, tthreadpoolserver, tnonblockingserver四种服务器框架,tsimpleserver以单一主线程阻塞的方式进行事件处理,tthreadpoolserver以多线程阻塞的方式提供服务,tnonblockingserver以多线程非阻塞方式工作。 tnonblockingserver服务模型的使用需要事先安装libevent,libevent-dev库,libevent是异步事件处理的程序库,其包含我们常用的poll,select,epoll等异步处理函数。
安装步骤:
$./configure $make #sudo make install
configure的结果最后一部分如下,其中build tnonblockingserver .. : yes的结果对于使用异步的服务器模型是必须的。
anonymalias@anonymalias-rev-1-0:~/download/thrift-0.9.1$./configure ...... thrift 0.9.1 building c++ library ......... : yes building c (glib) library .... : no building java library ........ : no building c# library .......... : no building python library ...... : yes building ruby library ........ : no building haskell library ..... : no building perl library ........ : no building php library ......... : no building erlang library ...... : no building go library .......... : no building d library ........... : no c++ library: build tzlibtransport ...... : yes build tnonblockingserver .. : yes build tqtcpserver (qt) .... : no python library: using python .............. : /usr/bin/python if something is missing that you think should be present, please skim the output of configure to find the missing component. details are present in config.log.
在本人电脑上make的时候会出现下面的bug,
ar: .libs/thrifttest_constants.o: no such file or directory
不知道makefile如何生成的,导致上面这个编译文件路径有问题,解决方法有下面两种:
method1: 解决的方法时直接从github(git://git.apache.org/thrift.git)上git clone 源码,先运行./bootstrap.sh,在按照configure安装。 method2: 可以将已经编译的test/cpp/*.o复制到test/cpp/.libs后,继续编译就可以了 cp test/cpp/*.o test/cpp/.libs/
thrift的简单示例
首先创建thrift的语法规则文件,命名为server.thrift,内容如下:
struct message { 1:i32 seqid, 2:string content } service serdemo { void put(1:message msg) }
在shell下面执行执行:
thrift -gen cpp server.thrift
该语句用于创建c++服务框架,创建成功后会在该目录下生成gen-cpp文件夹,然后修改该目录下的serdemo_server.skeleton.cpp,在put函数中添加如下代码:
class serdemohandler : virtual public serdemoif { public: serdemohandler() { // your initialization goes here } void put(const message& msg) { // your implementation goes here printf("receive message: id: %d, content: %s\n", msg.seqid, msg.content.c_str()); }
然后进行编译就可以了:g++ -o server *.cpp -lthrift
上面是server框架的代码,对于client的框架其实已经创建,但是现在需要添加client执行代码,可以在该目录下创建client.cpp,然后输入以下内容,下面的内容可以作为simpleserver的client的模板,只需修改注释的部分。
// -------------------------替换成对应service名字的.h 文件------------------------ #include "serdemo.h" //------------------------------------------------------------------------------ #include <transport/tsocket.h> #include <transport/tbuffertransports.h> #include <protocol/tbinaryprotocol.h> using namespace apache::thrift; using namespace apache::thrift::protocol; using namespace apache::thrift::transport; using boost::shared_ptr; int main(int argc, char **argv) { boost::shared_ptr<tsocket> socket(new tsocket("localhost", 9090)); boost::shared_ptr<ttransport> transport(new tbufferedtransport(socket)); boost::shared_ptr<tprotocol> protocol(new tbinaryprotocol(transport)); transport->open(); // ----------------------------我们的代码写在这里------------------------------ message msg; msg.seqid = 1; msg.content = "client message"; client.put(msg); //-------------------------------------------------------------------------- transport->close(); return 0; }
然后进行编译:g++ -o client *[^n].cpp - lthrift,也可以将serdemo_server.skeleton.cpp移动到其它目录,使用g++ -o client *.cpp - lthrift命令。
然后就可以执行了,启动server后,启动client,server执行如下:
anonymalias@anonymalias-rev-1-0:~/code/thriftserdemo/gen-cpp$ ./server receive message: id: 1, content: client message
以上就是小编为大家带来的thrift的安装方法和简单实例全部内容了,希望大家多多支持~