Vality version of Apache Thrift
Go to file
Bryan Duxbury c8c088cc52 THRIFT-390. hs: Cabalize Haskell library code
Missed some files that needed to be added.



git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@763030 13f79535-47bb-0310-9956-ffa450edef68
2009-04-07 23:27:01 +00:00
aclocal THRIFT-333. cpp: Initial TCompactProtocol implementation 2009-04-02 21:37:17 +00:00
compiler/cpp THRIFT-431. rb: Capitalize namespace values 2009-04-07 22:47:34 +00:00
contrib Flush output at the end of thrift_dump 2009-04-05 06:19:51 +00:00
doc THRIFT-387. Fix LICENSE, add NOTICE, and add some third-party licenses 2009-03-30 22:52:35 +00:00
lib THRIFT-390. hs: Cabalize Haskell library code 2009-04-07 23:27:01 +00:00
test THRIFT-356. Improve CompactProtocolTestStruct 2009-04-07 20:51:48 +00:00
tutorial THRIFT-430. rb: ruby tutorials and ruby tests require deprecated files and class names 2009-04-07 04:37:28 +00:00
.gitignore THRIFT-199: integrate perl into automake 2009-02-01 04:47:30 +00:00
bootstrap.sh Run aclocal before autoheader 2009-04-02 21:37:12 +00:00
CHANGES Add basic Changelog 2009-04-07 19:12:01 +00:00
cleanup.sh THRIFT-387. Add license headers to a bunch of files 2009-03-30 21:35:00 +00:00
configure.ac THRIFT-175. Specs in Ruby library should be run during make check 2009-04-07 16:31:04 +00:00
CONTRIBUTORS Version bump to 20080411. 2008-04-21 18:08:07 +00:00
LICENSE THRIFT-387. Fix LICENSE, add NOTICE, and add some third-party licenses 2009-03-30 22:52:35 +00:00
Makefile.am THRIFT-387. Add license headers to a bunch of files 2009-03-30 21:35:00 +00:00
NEWS Version bump to 20080411. 2008-04-21 18:08:07 +00:00
NOTICE THRIFT-387. Fix LICENSE, add NOTICE, and add some third-party licenses 2009-03-30 22:52:35 +00:00
print_version.sh THRIFT-387. Add license headers to a bunch of files 2009-03-30 21:35:00 +00:00
README THRIFT-293. Make the README point to the Wiki for requirements 2009-03-20 07:15:04 +00:00

Apache Thrift (an Apache Incubator project)

Last Modified: 2009-Jan-30

Thrift is distributed under the Apache License, v2.0. 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
============

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://incubator.apache.org/thrift

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