Giter Site home page Giter Site logo

thriftgenerator's Introduction

ThriftGenerator

Generates apache thrift definition files based on PHP classes signature.

Build Status Scrutinizer Code Quality Code Coverage Latest Stable Version Latest Unstable Version License

What's the purpose?

The main apache thrift's concept is to make possible cross-language services development that can interact with each other. In order to product code that can be invoked remotely using thrift framework you need firstly provide all target classes definitions in special thrift files and then generate service thrift code. But imagine you already have some server classes and you want to provide some RPC API for them using thrift. In this case manual filling of thrift files for those server classes seems to be annoying. ThriftGenerator uses class reflection and doc-blocks to introspect class signatures and generate corresponding thrift files automatically for you. This thrift files would be used then to generate thrift service stuff that can be used on server side with the help of original thrift compiler.

Requirements

ThriftGenerator works with PHP classes and requires PHP 5.3 or higher and provides thrift definition files can be used by thrift compiler 0.9.2 and higher.

Installation

ThriftGenerator can be installed with composer quite easy:

composer require gtt/thrift-generator 0.1.0

You also can use ThriftGenerator as a standalone library:

git clone https://github.com/GlobalTradingTechnologies/ThriftGenerator && cd ThriftGenerator
composer install --prefer-dist

Usage

ThriftGenerator has handy OOP interface:

use Gtt\ThriftGenerator\Generator\ThriftGenerator;

$generator = new ThriftGenerator();
$generator
    // set classes that should be introspected in order to generate thrift definition files
    ->setClasses(
        array(
            new ReflectionClass("\Your\Class\Name"),
            new ReflectionClass("\Another\Class\Name")
        )
    )
    // set output dir
    ->setOutputDir("<path to folder that will contain generated thrift definitions>")
    // generate!
    ->generate();

See also demos and functional test cases for more details.

Restrictions

Sinсe ThriftGenerator statically introspects PHP class signature only with use of Reflection functionality so it have no chance to detect and define in thrift IDL any classes that is used internally in your classes (in most cases that is not described in class doc-blocks as input params, return values or exceptions can be thrown).

Roadmap

It would be nice to have some features that are not implemented yet:

  1. Support of relative complex type/exception names (not FQCN's) in doc blocks.
  2. Thrift service inheritance support.
  3. Comments in generated thrift files.
  4. Custom doc-block's implementation to support some thrift-related options that can not be reflected from PHP method signatures or doc blocks (container types wide support, one-way calls, enum's and etc).
  5. Thrift versioning support.

thriftgenerator's People

Contributors

fduch avatar

Stargazers

Jonathan A. Izquierdo avatar Konstantin avatar Aydyn Tairov avatar Vladislav Krakhalev avatar Alexander Lisachenko avatar

Watchers

Alexander Lisachenko avatar Alexey Berezuev avatar James Cloos avatar Vladislav Krakhalev avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.