rpc服框架,提供多语言的编译功能,并提供多种服务器工作模式;用户通过Thrift的IDL(接口定义语言)来描述接口函数及数据类型,然后通过Thrift的编译环境生成各种语言类型的接口文件,用户可以根据自己的需要采用不同的语言开发客户端代码和服务器端代码。
还有哪些RPC框架:protobuf、Avro、MessagePack等
Thrift interface definition language(IDL)可以用来定义Thrift Types。一个IDL文件可以通过Thrift代码生成器用来产生不同语言的代码从而支持IDL文件中声明的结构体和服务。
thrift IDL
一. Document
每个thrift idl包含0个或者更多地headers,headers后面包含0个或者更多地定义。
[1] Document ::= Header* Definition*
二. Header
每个header要么是一个Thrift include,要么是一个C++ include,或者是一个namespace声明。
[2] Header ::= Include | CppInclude | Namespace
Thrift Include
thrift include可以使得另一个thrift文件中的符号可以在当前文件中可用(使用一个前缀),并且把对应的include声明语句加入到当前thrift文件生成的代码中。
[3] Include ::= ‘include’ Literal
C++ Include
C++ Include把特定的C++包含到C++代码输出里面。
[4] CppInclude ::= ‘cpp_include’ Literal
Namespace
命名空间申明了namespaces/package/module/etc,“*”表示namespace适用所有目标语言。
[5] Namespace ::= ( ‘namespace’ ( NamespaceScope Identifier ) |
( ‘smalltalk.category’ STIdentifier ) |
( ‘smalltalk.prefix’ Identifier ) ) |
( ‘php_namespace’ Literal ) |
( ‘xsd_namespace’ Literal )
[6] NamespaceScope ::= ‘*’ | ‘cpp’ | ‘java’ | ‘py’ | ‘perl’ | ‘rb’ | ‘cocoa’ | ‘csharp’
举个栗子:
namespace java com.ffy.thrift.test
namespace cpp com.ffy.thrift.test
//namespace * com.ffy.thrift.test
三. Definition
[7] Definition ::= Const | Typedef | Enum | Senum | Struct | Union | Exception | Service
Const
[8] Const ::= ‘const’ FieldType Identifier ‘=’ ConstValue ListSeparator?
例如:
const i32 DEFAULT_ID = 32
Typedef
Typedef用于给某个类型创建一个别名
[9] Typedef ::= ‘typedef’ DefinitionType Identifier
例如:
typedef i32 MyInteger
Enum
枚举类型,包含名称和值;如果常量的值没有声明,则要么是0(第一个位置),要么是一个比前面枚举值大的值。任何常量值都必须是非负数。
[10] Enum ::= ‘enum’ Identifier ‘{‘ (Identifier (‘=’ IntConstant)? ListSeparator?)* ‘}’
例如:
enum StatusType{
SUCCESS = 1
FAILURE = 2
}
Senum
已废弃,统一使用String代替
Struct
struct是Thrift中的基础组合类型。struct中的每个field的名称必须唯一。
[12] Struct ::= ‘struct’ Identifier ‘xsd_all’? ‘{‘ Field* ‘}’
备注:xsd_all关键词在Facebook内部有一些特殊意义,但thrift本身没有,强烈建议大家不用用这个关键词。
栗子来了:
struct Book{
1:required i32 id;
2:required string sn;
3:required float64 price;
4:optional string writer;
5:i32 year;
}
Union
Union和struct类似,除了他们提供一种方式在传输的时候只传输多个field中的一个field,和C++中的union{}类似。简单的说,unio的成员隐式的定义为optional。
[13] Union ::= ‘union’ Identifier ‘xsd_all’? ‘{‘ Field* ‘}’
Exception
Exceptions 和Structs类似,除了他主要是用了对接目标语言的异常处理逻辑。exception中的每个field都必须是唯一的。
[14] Exception ::= ‘exception’ Identifier ‘{‘ Field* ‘}’
Service
service提供了Thrift server对外暴露的interface。而interface这是简单的function列表。一个service可以继承另一个service,表示它除了提供它自身特点的function外,还扩展了被继承service的functions。
[15] Service ::= ‘service’ Identifier ( ‘extends’ Identifier )? ‘{‘ Function* ‘}’
1
四. Field
[16] Field ::= FieldID? FieldReq? FieldType Identifier (‘= ConstValue)? XsdFieldOptions ListSeparator?
1
Field ID
[17] FieldID ::= IntConstant ‘:’
1
Field Requiredness
field的requiredness具有两个显示值,以及如果required和optional都没有显示指定,设置一个default requiredness。
[18] FieldReq ::= ‘required’ | ‘optional’
1
requiredness 规则如下:
如果一个required field在读的过程中缺失,期望的行为是反馈给调用者读取操作不成功,例如:抛出一个exception或者返回一个error。
正因为这个约定存在,required fields彻底地限定了soft versioning的极限。因为的读取的时候field必须存在,所以改field永远不能被设置为过期。如果一个required field被移除,或者修改为optional,不同版本之间的数据就不在兼容。
大部分语言都采用一种被称为“isset” flag的推荐方案,来表名一个特定的optional field是否被设置。只有该标记被设置,field才会被写入;相反的,只有field value从输入流中读取到,改标记才会被设置。
default requiredness(implicit)
Write: 理论上,field总是被写入,当然有一些例外,见下文。
Read: 和optional一样,field可以是,也可以不是输入流的一部分。
Default values: 可以不被写入(见下一章)
Default requiredness 是一个不错的起点。期望的行为是optional和required的综合,因此也被称为“opt-in,req-out”。尽管理论上这些field期望的是被写入(”req-out”),现实中unset的fields总是不被写入。特别是一些特殊情况下,一些field的值是无法通过thrift传输的。达到这种效果的唯一途径是根本就不去写改field,而这也是绝大多数语言所做的。
There are ongoing discussions about that topic, see JIRA for details. Not all implementations treat default values in the very same way, but the current status quo is more or less that default fields are typically set at initialization time. Therefore, a value that equals the default may not be written, because the read end will set the value implicitly. On the other hand, an implementation is free to write the default value anyways, as there is no hard restriction that prevents this.
The major point to keep in mind here is the fact, that any unwritten default value implicitly becomes part of the interface version. If that default is changed, the interface changes. If, in contrast, the default value is written into the output data, the default in the IDL can change at any time without affecting serialized data.
XSD Options
N.B.: These have some internal purpose at Facebook but serve no current purpose in Thrift. Use of these options is strongly discouraged.
[19] XsdFieldOptions ::= ‘xsd_optional’? ‘xsd_nillable’? XsdAttrs?
[20] XsdAttrs ::= ‘xsd_attrs’ ‘{‘ Field* ‘}’
五. Functions
[21] Function ::= ‘oneway’? FunctionType Identifier ‘(‘ Field* ‘)’ Throws? ListSeparator?
[22] FunctionType ::= FieldType | ‘void’ |
[23] Throws ::= ‘throws’ ‘(‘ Field* ‘)’
六. Types
[24] FieldType ::= Identifier | BaseType | ContainerType |
[25] DefinitionType ::= BaseType | ContainerType |
[26] BaseType ::= ‘bool’ | ‘byte’ | ‘i8’ | ‘i16’ | ‘i32’ | ‘i64’ | ‘double’ | ‘string’ | ‘binary’ | ‘slist’ |
[27] ContainerType ::= MapType | SetType | ListType |
[28] MapType ::= ‘map’ CppType? ‘<’ FieldType ‘,’ FieldType ‘>’
[29] SetType ::= ‘set’ CppType? ‘<’ FieldType ‘>’
[30] ListType ::= ‘list’ ‘<’ FieldType ‘>’ CppType?
[31] CppType ::= ‘cpp_type’ Literal
七. Constant Values
[32] ConstValue ::= IntConstant | DoubleConstant | Literal | Identifier | ConstList | ConstMap |
[33] IntConstant ::= (‘+’ | ’-‘)? Digit+ |
[34] DoubleConstant ::= (‘+’ | ’-‘)? Digit* (‘.’ Digit+)? ( (‘E’ | ‘e’) IntConstant )? |
[35] ConstList ::= ‘[’ (ConstValue ListSeparator?)* ‘]’
[36] ConstMap ::= ‘{‘ (ConstValue ‘:’ ConstValue ListSeparator?)* ‘}’
八. Basic Definitions
[37] Literal ::= (‘”’ [^”]* ‘”’) | (“’” [^’]* “’”)
1
Identifier
[38] Identifier ::= ( Letter | ‘’ ) ( Letter | Digit | ‘.’ | ‘’ )*
[39] STIdentifier ::= ( Letter | ‘’ ) ( Letter | Digit | ‘.’ | ‘’ | ‘-‘ )*
1
2
3
List Separator
[40] ListSeparator ::= ‘,’ | ‘;’
1
Letters and Digits
[41] Letter ::= [‘A’-‘Z’] | [‘a’-‘z’]
[42] Digit ::= [‘0’-‘9’]
Thrift支持的数据类型
1.基本类型
bool:布尔值 (true or false), one byte
byte:有符号字节
i16:16位有符号整型
i32:32位有符号整型
i64:64位有符号整型
double:64位浮点型
string:编码或者二进制的字符串
2.容器(Containers)
Thrift容器与流行编程语言的容器类型相对应,采用Java泛型风格。它有3种可用容器类型:
list: 元素类型为t1的有序表,容许元素重复。
set:元素类型为t1的无序表,不容许元素重复。
map
include:引入thrift文件 * * *为thrit的文件名
typedef:定义需要的结构体
编写IDL文件时需要注意的问题
[1]函数的参数要用数字依序标好,序号从1开始,形式为:“序号:参数名”;
[2]每个函数的最后要加上“,”,最后一个函数不加;
[3]在IDL中可以使用/……/添加注释
[4]IDL大小写敏感
【类型 之 异常】
除了使用exception来替代struct以外,“异常”这个类型,在语法上和刚才介绍过的结构体的用法是完全一致的。但是从语义上讲,exception和struct却大相径庭。exception是在远程调用发生异常时用来抛出异常用的。
【类型 之 服务】
服务的定义,与面向对象技术中定义一个接口很类似,而这些接口其实就是纯虚函数。thrift编译工具会根据服务的定义来产生相应的方法和函数。
每个服务,都包括了若干个函数,每个函数包括了若干参数和一个返回值(返回值可以是void)。
(小技巧:返回值为void的函数,你可以在函数名前加上oneway标识符,将此函数以异步模式执行,这样在调用此函数后,函数会立即返回。)
对于返回void的函数,thrift仍然会确保函数返回,这样就表示这个函数已被正确执行,且服务器端已有返回信息了。但是如果给void的函数前加上oneway,那么此函数的返回只能表示数据已经进入传输层,并不能表示服务器端已经收到并返回了数据。
服务类型
规则
继承类必须实现这些方法
参数可以是基本类型或者结构体
返回值可以是void
服务支持继承,一个service可使用extends关键字继承另一个service
服务不支持重载
传输方式:
传输协议:
Thrift 传输协议上总体可划分为文本 (text) 和二进制 (binary) 传输协议两大类,一般在生产环境中使用二进制类型的传输协议为多数。
TBinaryProtocol:是Thrift的默认协议,使用二进制编码格式进行数据传输,基本上直接发送原始数据
TCompactProtocol:压缩的、密集的数据传输协议,基于Variable-length quantity的zigzag 编码格式
TJSONProtocol:以JSON (JavaScript Object Notation)数据编码协议进行数据传输
TDebugProtocol:常常用以编码人员测试,以文本的形式展现方便阅读
服务端编写:
包含三个主要的组件:protocol,transport 和 server。
其中,protocol 定义了消息是怎样序列化的;transport 定义了消息是怎样在客户端和服务器端之间通信的;server 用于从 transport 接收序列化的消息,根据 protocol 反序列化之,调用用户定义的消息处理器,并序列化消息处理器的响应,然后再将它们写回 transport。
thrift编译工具的名称就是thrift,其最常见的使用方式是这样的:
thrift –gen ${开发语言} ${thrift接口描述文件}
eg:
thrift -gen php:server xxxApi.thrift
thrift -gen php xxxApi.thrift
加了:server 会产生 xxxProcessor 的类,包含处理函数
服务端编写的一般步骤:
创建Handler
基于Handler创建Processor
创建Transport(通信方式)
创建Protocol方式(设定传输格式)
基于Processor, Transport和Protocol创建Server
运行Server
客户端编写的一般步骤:
创建Transport
创建Protocol方式
基于Transport和Protocol创建Client
运行Client的方法
结构体域标识唯一,可以不连续,必须为正整数,否则报错
Nonpositive value (0) not allowed as a field key.