dreiss / thrift

This is a mirror of The Unofficial Thrift Git Repository

This URL has Read+Write access

thrift /
name age message
file .gitignore Fri May 22 12:52:02 -0700 2009 Consolidate lib/hs/.gitignore into the top-leve... [dreiss]
file CHANGES Mon May 04 17:53:01 -0700 2009 Preparing for 0.1.0 RC1 git-svn-id: https://sv... [kclark]
file CONTRIBUTORS Mon Apr 21 11:08:07 -0700 2008 Version bump to 20080411. Also updated CONTRIB... [dreiss]
file DISCLAIMER Mon May 04 15:00:47 -0700 2009 Adding incubator disclaimer git-svn-id: https:... [kclark]
file LICENSE Mon Mar 30 15:52:35 -0700 2009 THRIFT-387. Fix LICENSE, add NOTICE, and add so... [dreiss]
file Makefile.am Fri May 22 12:52:06 -0700 2009 THRIFT-373. Get some missing files into the rel... [dreiss]
file NEWS Mon Apr 21 11:08:07 -0700 2008 Version bump to 20080411. Also updated CONTRIB... [dreiss]
file NOTICE Mon Mar 30 15:52:35 -0700 2009 THRIFT-387. Fix LICENSE, add NOTICE, and add so... [dreiss]
file README Tue Apr 07 17:19:37 -0700 2009 THRIFT-387. Add appropriate Apache header to al... [bryanduxbury]
directory aclocal/ Tue May 12 16:16:53 -0700 2009 Extend ax_javac_and_java.m4 to test for specifi... [dreiss]
file bootstrap.sh Wed May 06 15:00:33 -0700 2009 THRIFT-483. Use --copy for libtoolize git-svn-... [dreiss]
file cleanup.sh Mon Mar 30 14:35:00 -0700 2009 THRIFT-387. Add license headers to a bunch of f... [dreiss]
directory compiler/ Thu Jul 02 13:15:05 -0700 2009 THRIFT-204. csharp: C# Partial Classes C# stru... [bryanduxbury]
file configure.ac Fri May 22 12:50:33 -0700 2009 THRIFT-450. java: Propagate CLASSPATH from ./co... [dreiss]
directory contrib/ Tue Apr 28 21:54:24 -0700 2009 THRIFT-470. fb303: Use a namespace in Perl gen-... [dreiss]
directory doc/ Tue Apr 07 17:19:37 -0700 2009 THRIFT-387. Add appropriate Apache header to al... [bryanduxbury]
directory lib/ Mon Jul 13 23:40:55 -0700 2009 renumber all of the state codes [dreiss]
file print_version.sh Mon Mar 30 14:35:00 -0700 2009 THRIFT-387. Add license headers to a bunch of f... [dreiss]
directory test/ Mon Jul 13 23:26:13 -0700 2009 initial-with-whitespace-fixed [dreiss]
directory tutorial/ Tue May 05 11:59:49 -0700 2009 THRIFT-486. rb: ruby tutorial needs updated req... [bryanduxbury]
README
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.