731975a645
Client: Go Patch: Aleksey Pesternikov This closes #101 commit e6e5dcf3a07cd931183991ff031179b425e2740b Author: Aleksey Pesternikov <ap@alekseys-mbp.att.net> Date: 2014-04-16T14:06:52Z initial change commit f65730e951a4310160a9f7e3e4eeb7e55abd2c55 Author: Aleksey Pesternikov <ap@alekseys-mbp.att.net> Date: 2014-04-16T14:16:03Z no IsSet for required commit 9865f700eb9354d6053994da989a907766c42d1d Author: Aleksey Pesternikov <ap@alekseys-mbp.att.net> Date: 2014-04-17T19:32:13Z inlined required structs commit ca52300c07cefcf553f1ebf35569953c933b2367 Author: Aleksey Pesternikov <ap@alekseys-mbp.att.net> Date: 2014-04-17T19:44:24Z do not use heap for args struct commit 012ca3e512d2bc8822de8a715b4f3d3cae5c0c42 Author: Aleksey Pesternikov <ap@alekseys-mbp.att.net> Date: 2014-04-17T19:52:41Z do not use heap for result struct commit 2fc4afc53ff7db43e08eadeaa30e34bc1fd9c889 Author: Aleksey Pesternikov <ap@alekseys-mbp.att.net> Date: 2014-04-17T21:32:43Z do not set result field on error commit 6e5da0062b139f02dcafe3148cdf02f97c23442a Author: Aleksey Pesternikov <ap@alekseys-mbp.att.net> Date: 2014-04-17T21:57:57Z Jens' thrift source as test case commit 7317957ed708831e280f182f081043fbe9d38a0c Author: Aleksey Pesternikov <ap@alekseys-macbook-pro.local> Date: 2014-04-17T23:43:08Z support for cpp.ref commit 1c4f3efc7b54fd335db633f86faf8c426ae9c87d Author: Aleksey Pesternikov <ap@alekseys-macbook-pro.local> Date: 2014-04-18T00:13:24Z package flag commit c9d7e54f5c5d29c776f42fb861bc9e82da4e542f Author: Aleksey Pesternikov <ap@alekseys-macbook-pro.local> Date: 2014-04-18T00:21:18Z Merge branch 'master' into go_inlines |
||
---|---|---|
aclocal | ||
compiler/cpp | ||
contrib | ||
debian | ||
doc | ||
lib | ||
test | ||
tutorial | ||
.gitignore | ||
.travis.yml | ||
bootstrap.sh | ||
bower.json | ||
CHANGES | ||
cleanup.sh | ||
composer.json | ||
configure.ac | ||
doap.rdf | ||
LICENSE | ||
Makefile.am | ||
NOTICE | ||
rat_exclude | ||
README.md | ||
sonar-project.properties |
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://wiki.apache.org/thrift/ThriftRequirements 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'
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.