The Thrift interface definition language (IDL) allows for the definition of Thrift Types. A Thrift IDL file is processed by the Thrift code generator to produce code for the various target languages to support the defined structs and services in the IDL file.
Under construction
Here is a description of the Thrift IDL.
Every Thrift document contains 0 or more headers followed by 0 or more definitions.
[1] Document ::= Header* Definition*
A header is either a Thrift include, a C++ include, or a namespace declaration.
[2] Header ::= Include | CppInclude | Namespace
An include makes all the symbols from another file visible (with a prefix) and adds corresponding include statements into the code generated for this Thrift document.
[3] Include ::= 'include' Literal
A C++ include adds a custom C++ include to the output of the C++ code generator for this Thrift document.
[4] CppInclude ::= 'cpp_include' Literal
A namespace declares which namespaces/package/module/etc. the type definitions in this file will be declared in for the target languages. The namespace scope indicates which language the namespace applies to; a scope of '*' indicates that the namespace applies to all target languages.
[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'
N.B.: Smalltalk has two distinct types of namespace commands. Can someone who knows Smalltalk explain why Smalltalk needs two different kinds of namespaces?
N.B.: The php_namespace
directive will be deprecated at some point in the future in favor of the scoped syntax, but the scoped syntax is not yet supported for PHP.
N.B.: The xsd_namespace
directive has some purpose internal to Facebook but serves no purpose in Thrift itself. Use of this feature is strongly discouraged
[7] Definition ::= Const | Typedef | Enum | Senum | Struct | Exception | Service
[8] Const ::= 'const' FieldType Identifier '=' ConstValue ListSeparator?
A typedef creates an alternate name for a type.
[9] Typedef ::= 'typedef' DefinitionType Identifier
An enum creates an enumerated type, with named values. If no constant value is supplied, the value is either 0 for the first element, or one greater than the preceding value for any subsequent element. Any constant value that is supplied must be non-negative.
[10] Enum ::= 'enum' Identifier '{' (Identifier ('=' IntConstant)? ListSeparator?)* '}'
[11] Senum ::= 'senum' Identifier '{' (Literal ListSeparator?)* '}'
Structs are the fundamental compositional type in Thrift. The name of each field must be unique within the struct.
[12] Struct ::= 'struct' Identifier 'xsd_all'? '{' Field* '}'
N.B.: The xsd_all
keyword has some purpose internal to Facebook but serves no purpose in Thrift itself. Use of this feature is strongly discouraged
Exceptions are similar to structs except that they are intended to integrate with the native exception handling mechanisms in the target languages. The name of each field must be unique within the exception.
[13] Exception ::= 'exception' Identifier '{' Field* '}'
A service provides the interface for a set of functionality provided by a Thrift server. The interface is simply a list of functions. A service can extend another service, which simply means that it provides the functions of the extended service in addition to its own.
[14] Service ::= 'service' Identifier ( 'extends' Identifier )? '{' Function* '}'
[15] Field ::= FieldID? FieldReq? FieldType Identifier ('= ConstValue)? XsdFieldOptions ListSeparator?
[16] FieldID ::= IntConstant ':'
[17] FieldReq ::= 'required' | 'optional'
N.B.: These have some internal purpose at Facebook but serve no current purpose in Thrift. Use of these options is strongly discouraged.
[18] XsdFieldOptions ::= 'xsd_optional'? 'xsd_nillable'? XsdAttrs?
[19] XsdAttrs ::= 'xsd_attrs' '{' Field* '}'
[20] Function ::= 'oneway'? FunctionType Identifier '(' Field* ')' Throws? ListSeparator?
[21] FunctionType ::= FieldType | 'void'
[22] Throws ::= 'throws' '(' Field* ')'
[23] FieldType ::= Identifier | BaseType | ContainerType
[24] DefinitionType ::= BaseType | ContainerType
[25] BaseType ::= 'bool' | 'byte' | 'i16' | 'i32' | 'i64' | 'double' | 'string' | 'binary' | 'slist'
[26] ContainerType ::= MapType | SetType | ListType
[27] MapType ::= 'map' CppType? '<' FieldType ',' FieldType '>'
[28] SetType ::= 'set' CppType? '<' FieldType '>'
[29] ListType ::= 'list' '<' FieldType '>' CppType?
[30] CppType ::= 'cpp_type' Literal
[31] ConstValue ::= IntConstant | DoubleConstant | Literal | Identifier | ConstList | ConstMap
[32] IntConstant ::= ('+' | '-')? Digit+
[33] DoubleConstant ::= ('+' | '-')? Digit* ('.' Digit+)? ( ('E' | 'e') IntConstant )?
[34] ConstList ::= '[' (ConstValue ListSeparator?)* ']'
[35] ConstMap ::= '{' (ConstValue ':' ConstValue ListSeparator?)* '}'
[36] Literal ::= ('"' [^"]* '"') | ("'" [^']* "'")
[37] Identifier ::= ( Letter | '_' ) ( Letter | Digit | '.' | '_' )*
[38] STIdentifier ::= ( Letter | '_' ) ( Letter | Digit | '.' | '_' | '-' )*
[39] ListSeparator ::= ',' | ';'
[40] Letter ::= ['A'-'Z'] | ['a'-'z']
[41] Digit ::= ['0'-'9']
Here are some examples of Thrift definitions, using the Thrift IDL:
Initialization of Base Types for all Languages?
Why does position of CppType
vary between SetType
and ListType
?
Why can't DefinitionType
be the same as FieldType
(i.e. include Identifier
)?
Examine the smalltalk.prefix
and smalltalk.category
status (esp smalltalk.category
, which takes STIdentifier
as its argument)…
What to do about ListSeparator
? Do we really want to be as lax as we currently are?
Should Field*
really be Field+
in Struct
, Enum
, etc.?