Vality version of Apache Thrift
Go to file
2018-03-12 06:55:14 -04:00
aclocal THRIFT-4351: use travis build stages to optimize build, 2017-10-19 11:29:04 -04:00
build THRIFT-4465: Fix C++ TNonblockingServer and THRIFT_EAGAIN issues 2018-03-12 06:55:14 -04:00
compiler/cpp THRIFT-4497: Use map() field type for Erlang type for map struct fields. 2018-03-09 18:32:36 -05:00
contrib THRIFT-(1418|1507|3983|4120|4178|4259|4294): Multiple issues 2018-01-24 12:28:55 -05:00
debian THRIFT-(1418|1507|3983|4120|4178|4259|4294): Multiple issues 2018-01-24 12:28:55 -05:00
doc THRIFT-4397 Ubuntu install instructions broken on 16.04 2017-12-01 09:08:00 +01:00
lib THRIFT-4465: Fix C++ TNonblockingServer and THRIFT_EAGAIN issues 2018-03-12 06:55:14 -04:00
test THRIFT-4515: fix up nonblocking options and enable ssl for nonblocking in cpp server cross 2018-03-11 10:57:56 -04:00
tutorial THRIFT-82: Add Common Lisp support 2018-03-02 13:44:50 -05:00
.clang-format THRIFT-2729: C++ - .clang-format created and applied 2014-11-18 11:39:10 +01:00
.dockerignore THRIFT-3474 Docker: thrift-compiler 2015-12-06 21:26:58 +01:00
.editorconfig THRIFT-2967 Add .editorconfig to root 2015-06-05 12:44:39 +02:00
.gitattributes THRIFT-2724 - Coding standards template added all over project 2015-02-05 12:15:19 +01:00
.gitignore THRIFT-82: Add Common Lisp support 2018-03-02 13:44:50 -05:00
.rustfmt.toml THRIFT-4176: Implement threaded server for Rust 2017-04-27 08:46:02 -04:00
.travis.yml THRIFT-4508: end trusty CI builds; handle nodejs 4.x LTS EOL; update docs 2018-03-06 16:16:45 -05:00
appveyor.yml THRIFT-4508: change windows CI builds to use current MSVC, one cygwin and one mingw build 2018-03-06 18:17:41 -05:00
bootstrap.sh THRIFT-4351: use travis build stages to optimize build, 2017-10-19 11:29:04 -04:00
bower.json Remove deprecated bower json property 2017-01-27 23:47:16 -05:00
CHANGES Pull CHANGES file from 0.10.0 release to master 2017-04-06 09:22:22 -04:00
cleanup.sh svn ignore and remove php artifacts left by phpize in bootstrap.sh 2010-09-07 03:25:02 +00:00
CMakeLists.txt THRIFT-4165: better cmake support for C++ language level selection; fixed compiler warnings 2017-04-05 08:58:38 -04:00
composer.json THRIFT-4460: Use PSR-2 as php library coding standard 2018-01-24 00:07:54 -05:00
configure.ac THRIFT-4465: Fix C++ TNonblockingServer and THRIFT_EAGAIN issues 2018-03-12 06:55:14 -04:00
CONTRIBUTING.md update the CONTRIBUTING readme to point to build instructions (third time is a charm) 2017-11-11 09:51:14 -05:00
doap.rdf THRIFT-4396 inconsistent (or plain wrong) version numbers in master/trunk 2017-11-30 20:46:39 +01:00
LANGUAGES.md THRIFT-4508: end trusty CI builds; handle nodejs 4.x LTS EOL; update docs 2018-03-06 16:16:45 -05:00
LICENSE THRIFT-3664 Remove md5.c 2016-02-22 23:27:12 +09:00
Makefile.am THRIFT-82: Add Common Lisp support 2018-03-02 13:44:50 -05:00
NOTICE THRIFT-4351: use travis build stages to optimize build, 2017-10-19 11:29:04 -04:00
package.json THRIFT-4509: remove nodejs browser test 2018-03-08 11:55:08 -05:00
phpcs.xml.dist THRIFT-4475: PSR-2 support for lib/php/test 2018-01-29 15:44:43 -05:00
README.md Closing all inactive github pull requests (no activity since 2015). 2018-01-23 19:52:51 -05:00
sonar-project.properties THRIFT-(1418|1507|3983|4120|4178|4259|4294): Multiple issues 2018-01-24 12:28:55 -05:00
Thrift.podspec THRIFT-2905 Cocoa compiler should have option to produce "modern" Objective-C 2015-10-09 22:01:55 +02:00

Apache Thrift

Last Modified: 2017-11-11

License

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Introduction

Thrift is a lightweight, language-independent software stack with an associated code generation mechanism for RPC. Thrift provides clean abstractions for data transport, data serialization, and application level processing. The code generation system takes a simple definition language as its input and generates code across programming languages that uses the abstracted stack to build interoperable RPC clients and servers.

Apache Thrift Layered Architecture

Thrift makes it easy for programs written in different programming languages to share data and call remote procedures. With support for over 20 programming languages, chances are Thrift supports the ones that you currently use.

Thrift is specifically designed to support non-atomic version changes across client and server code.

For more details on Thrift's design and implementation, take a gander at the Thrift whitepaper included in this distribution or at the README.md file in your particular subdirectory of interest.

Project Hierarchy

thrift/

compiler/

Contains the Thrift compiler, implemented in C++.

lib/

Contains the Thrift software library implementation, subdivided by
language of implementation.

cpp/
go/
java/
php/
py/
rb/
...

test/

Contains sample Thrift files and test code across the target programming
languages.

tutorial/

Contains a basic tutorial that will teach you how to develop software
using Thrift.

Requirements

See http://thrift.apache.org/docs/install for an up-to-date list of build requirements.

Resources

More information about Thrift can be obtained on the Thrift webpage at:

 http://thrift.apache.org

Acknowledgments

Thrift was inspired by pillar, a lightweight RPC tool written by Adam D'Angelo, and also by Google's protocol buffers.

Installation

If you are building from the first time out of the source repository, you will need to generate the configure scripts. (This is not necessary if you downloaded a tarball.) From the top directory, do:

./bootstrap.sh

Once the configure scripts are generated, thrift can be configured. From the top directory, do:

./configure

You may need to specify the location of the boost files explicitly. If you installed boost in /usr/local, you would run configure as follows:

./configure --with-boost=/usr/local

Note that by default the thrift C++ library is typically built with debugging symbols included. If you want to customize these options you should use the CXXFLAGS option in configure, as such:

./configure CXXFLAGS='-g -O2'
./configure CFLAGS='-g -O2'
./configure CPPFLAGS='-DDEBUG_MY_FEATURE'

To enable gcov required options -fprofile-arcs -ftest-coverage enable them:

./configure  --enable-coverage

Run ./configure --help to see other configuration options

Please be aware that the Python library will ignore the --prefix option and just install wherever Python's distutils puts it (usually along the lines of /usr/lib/pythonX.Y/site-packages/). If you need to control where the Python modules are installed, set the PY_PREFIX variable. (DESTDIR is respected for Python and C++.)

Make thrift:

make

From the top directory, become superuser and do:

make install

Note that some language packages must be installed manually using build tools better suited to those languages (at the time of this writing, this applies to Java, Ruby, PHP).

Look for the README.md file in the lib// folder for more details on the installation of each language library package.

Testing

There are a large number of client library tests that can all be run from the top-level directory.

      make -k check

This will make all of the libraries (as necessary), and run through the unit tests defined in each of the client libraries. If a single language fails, the make check will continue on and provide a synopsis at the end.

To run the cross-language test suite, please run:

      make cross

This will run a set of tests that use different language clients and servers.

Development

To build the same way Travis CI builds the project you should use docker. We have comprehensive building instructions for docker.