Vality version of Apache Thrift
Go to file
Jens Geyer b121a586b2 THRIFT-3345 Clients blocked indefinitely when a java.lang.Error is thrown
Client: Java
Author: huahang <huahang@users.noreply.github.com>

This closes #618
2015-09-23 23:05:26 +02:00
aclocal THRIFT-3271 "Could not find or load main class configtest_ax_javac_and_java" on some non-english systems 2015-07-27 23:51:47 +02:00
build THRIFT-2850 CMake for Apache Thrift 2015-09-08 23:22:44 +02:00
compiler/cpp THRIFT-3331 warning: ‘etype’ may be used uninitialized in this function 2015-09-23 22:01:06 +02:00
contrib THRIFT-3155 move contrib/mingw32-toolchain.cmake to build/cmake/ 2015-05-16 21:09:18 +02:00
debian THRIFT-2849: spelling errors fixed using codespell tool 2014-11-24 10:55:31 +01:00
doc THRIFT-3334 Markdown notation of protocol spec is malformed 2015-09-21 23:06:18 +02:00
lib THRIFT-3345 Clients blocked indefinitely when a java.lang.Error is thrown 2015-09-23 23:05:26 +02:00
test THRIFT-3347 Improve cross test servers and clients 2015-09-23 21:20:38 +02:00
tutorial THRIFT-3319 CSharp tutorial will not build using the *.sln 2015-09-11 23:49:54 +02:00
.clang-format THRIFT-2729: C++ - .clang-format created and applied 2014-11-18 11:39:10 +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-3308: Fix broken test cases for 0.9.3 release candidate 2015-08-25 14:59:40 -04:00
.travis.yml THRIFT-3303 Disable concurrent cabal jobs on Travis to avoid GHC crash 2015-09-21 23:48:09 +02:00
appveyor.yml THRIFT-3014 AppVeyor support - fix format 2015-04-12 21:45:11 +02:00
bootstrap.sh THRIFT-3071 fix bootstrap.sh on MinGW 2015-04-14 20:11:24 +02:00
bower.json THRIFT-3040: wrong main path in bower.json 2015-03-15 08:26:23 -07:00
CHANGES THRIFT-2793: Go compiler produces uncompilable code 2014-11-05 07:06:58 -05: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-3245 Tutorials can't be disabled when using CMake 2015-07-15 08:11:57 -05:00
composer.json THRIFT-1743: Add composer.json for new Symfony 2.1 Dependency Manager 2014-04-11 20:25:46 +02:00
configure.ac THRIFT-3295 C# library does not build on Mono 4.0.2.5 or later 2015-09-03 21:14:30 +02:00
CONTRIBUTING.md doc GitHub service hooks 2015-05-01 14:03:19 +10:00
doap.rdf THRIFT-3203: DOAP - please fix "Ocaml" => "OCaml" 2015-06-25 10:17:24 -04:00
json-schema.json THRIFT-2859 JSON generator: output complete descriptors 2014-12-01 02:15:54 +01:00
LICENSE THRIFT-3209: LGPL mentioned in license file 2015-06-28 21:23:20 -04:00
Makefile.am THRIFT-3305: Missing dist files for 0.9.3 release candidate 2015-08-25 00:39:29 -04:00
NOTICE Update the NOTICE file. 2010-08-15 21:10:47 +00:00
package.json THRIFT-3122 Javascript struct constructor should properly initialize struct and container members from plain js arguments 2015-06-25 22:31:41 +10:00
rat_exclude THRIFT-1614: handle automake >= 1.12 yacc output name (thrifty.hh) 2013-03-07 11:24:51 -05:00
README.md THRIFT-3311:README.md cleanup 2015-08-30 10:56:35 -07:00
sonar-project.properties INFRA-4347 Add Thrift to sonar 2013-03-22 21:07:21 +01:00

Apache Thrift

Last Modified: 2014-03-16

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.

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 files in your particular subdirectory of interest.

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.