public
Description: Cross language RPC
Homepage: http://developers.facebook.com/thrift/
Clone URL: git://github.com/kevinclark/thrift.git
commit  1f48098f8d03a6ee090a614bca02ec408d155678
tree    1bfa7d7eeb589dec19e8f6e4a56f5a01284bcc7e
parent  dbfe4000510bd38105a4be05b24912f4f330343f
thrift /
name age message
file .gitignore Thu Mar 13 19:38:09 -0700 2008 r1755@opsdev009 (orig r87069): dreiss | 2008-... [(no author)]
file CONTRIBUTORS Mon Apr 21 11:11:40 -0700 2008 r1946@opsdev009 (orig r94599): dreiss | 2008-... [(no author)]
file COPYING Wed Feb 06 14:20:14 -0800 2008 r1553@opsdev009 (orig r81662): dreiss | 2008-... [(no author)]
file LICENSE Wed Feb 06 14:20:14 -0800 2008 r1553@opsdev009 (orig r81662): dreiss | 2008-... [(no author)]
file Makefile.am Mon Apr 21 11:11:39 -0700 2008 r1943@opsdev009 (orig r94596): dreiss | 2008-... [(no author)]
file NEWS Mon Apr 21 11:11:40 -0700 2008 r1946@opsdev009 (orig r94599): dreiss | 2008-... [(no author)]
file README Tue Sep 18 12:36:15 -0700 2007 r1212@dev030 (orig r60097): dreiss | 2007-09-... [(no author)]
directory aclocal/ Wed Mar 26 00:22:36 -0700 2008 r1787@opsdev009 (orig r89766): dreiss | 2008-... [(no author)]
file bootstrap.sh Sat Feb 23 13:57:49 -0800 2008 r1605@opsdev009 (orig r84491): dreiss | 2008-... [(no author)]
file cleanup.sh Thu Mar 27 14:42:54 -0700 2008 r1795@opsdev009 (orig r90059): dreiss | 2008-... [(no author)]
directory compiler/ Mon Apr 14 22:45:37 -0700 2008 r1935@opsdev009 (orig r93640): dreiss | 2008-... [(no author)]
file configure.ac Tue Apr 22 19:37:06 -0700 2008 rb: Automake-ify Ruby lib [kevinclark]
directory contrib/ Sat Apr 19 22:31:23 -0700 2008 r1939@opsdev009 (orig r94531): dreiss | 2008-... [(no author)]
directory doc/ Thu Apr 03 13:19:03 -0700 2008 r1894@opsdev009 (orig r91596): dreiss | 2008-... [(no author)]
directory if/ Fri Dec 28 10:29:09 -0800 2007 r1437@opsdev009 (orig r75927): dreiss | 2007-... [(no author)]
directory lib/ Wed Apr 30 16:01:30 -0700 2008 rb: Support encoding arrays as sets in TBinaryP... [kevinclark]
directory test/ Wed Apr 30 16:01:30 -0700 2008 rb: Support encoding arrays as sets in TBinaryP... [kevinclark]
file thrift.bnf Sun Jul 08 00:14:31 -0700 2007 r458@peterm-macbook (orig r49612): mcslee | 2... [(no author)]
file thrift.el Thu Mar 27 14:43:14 -0700 2008 r1831@opsdev009 (orig r90096): dreiss | 2008-... [(no author)]
file thrift.vim Thu Mar 27 14:43:14 -0700 2008 r1831@opsdev009 (orig r90096): dreiss | 2008-... [(no author)]
directory tutorial/ Thu Mar 27 14:43:14 -0700 2008 r1831@opsdev009 (orig r90096): dreiss | 2008-... [(no author)]
README
Thrift (Thrift IDL and RPC tool)

Mark Slee (mcslee@facebook.com)
Marc Kwiatkowski (marc@facebook.com)
Aditya Agarwal (aditya@facebook.com)

Last Modified: 2007-Mar-06

Thrift is distributed under the Thrift open source software license.
Please see the included LICENSE file.

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

Heirarchy
=========

thrift/

  compiler/
    Contains the Thrift compiler, implemented in C++.

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

    cpp/
    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
============

Thrift requires boost shared pointers from boost-1.33.1 or greater, see:
http://www.boost.org/libs/smart_ptr/smart_ptr.htm

Some portions of Thrift also depend upon libevent, see:
http://monkey.org/~provos/libevent/

Some portions of Thrift also depend upon zlib, see:
http://www.zlib.net/

These libraries are open source and may be freely obtained, but they are not
provided as a part of this distribution.

Resources
=========

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

     http://developers.facebook.com/thrift

Acknowledgments
===============

Thrift was inspired by pillar, a lightweight RPC tool written by Adam D'Angelo.

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 file in the lib/<language>/ folder for more details on the
installation of each language library package.