Vality version of Apache Thrift
Go to file
David Reiss 3cc9dab229 THRIFT-929. cpp: Remove TZlibTest dependency on filesystem data
Previously, ZlibTest read a file from disk to get data to test with.
It would fail unless gen-cpp/DebugProtoTest_types.tcc was present in the
current directory and was at least 32kB long.

Now ZlibTest simply generates 3 separate buffers to test with.  The
first buffer is just all "a"s, the second is some random sequential
runs, and the third is completely random.  They usually seem to have
compression ratios of around 315:1, 4:1, and 1:1, respectively.

git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@1005148 13f79535-47bb-0310-9956-ffa450edef68
2010-10-06 17:10:21 +00:00
aclocal THRIFT-507. Only use Boost for building the C++ library 2010-08-31 16:51:28 +00:00
compiler/cpp THRIFT-925. cpp: Add _VALUES_TO_NAMES enum map 2010-10-06 17:10:15 +00:00
contrib THRIFT-922. cpp: Add profiling code to help conversion to C++ templates 2010-10-06 17:10:10 +00:00
doc THRIFT-912. java: Fix some bugs in SASL implementation, update protocol spec slightly 2010-09-28 00:11:01 +00:00
lib THRIFT-929. cpp: Remove TZlibTest dependency on filesystem data 2010-10-06 17:10:21 +00:00
test THRIFT-928. cpp: Thrift Server Client Stats 2010-10-06 17:10:08 +00:00
tutorial THRIFT-890. java: Add README missing from previous commit 2010-09-28 00:01:31 +00:00
.gitignore THRIFT-910. Update .gitignore 2010-09-21 18:35:43 +00:00
bootstrap.sh THRIFT-500. A bunch of small changes to bootstrap.sh 2010-08-31 16:51:10 +00:00
CHANGES update the CHANGES file 2010-09-28 15:06:38 +00:00
cleanup.sh svn ignore and remove php artifacts left by phpize in bootstrap.sh 2010-09-07 03:25:02 +00:00
configure.ac THRIFT-923. cpp: Implement a fully nonblocking server and client 2010-10-06 17:09:37 +00:00
CONTRIBUTORS Version bump to 20080411. 2008-04-21 18:08:07 +00:00
DISCLAIMER Adding incubator disclaimer 2009-05-04 22:00:47 +00:00
LICENSE THRIFT-698 - fix .app file, remove unused parts of build system, updated LICENSE to reflect changes 2010-09-07 03:35:30 +00:00
Makefile.am build: make dist no longer includes root-level bootstrap.sh. this should help users of release tarballs avoid confusion. 2010-08-19 04:58:34 +00:00
NEWS Version bump to 20080411. 2008-04-21 18:08:07 +00:00
NOTICE Update the NOTICE file. 2010-08-15 21:10:47 +00:00
rat_exclude add rat_exclude file that contains patterns RAT should ignore 2010-07-28 19:08:58 +00:00
README THRIFT-387. Add appropriate Apache header to all code files 2009-04-08 00:19:37 +00:00

Apache Thrift (an Apache Incubator project)

Last Modified: 2009-Jan-30

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 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.