Giter VIP home page Giter VIP logo

rift's Introduction

Rift

Build Status

This is a Thrift IDL parser written in Ruby.

About

Rift parses Thrift IDL into a simple abstract syntax tree. It uses Rexical for lexing, and Racc for parsing. The Thrift IDL grammar is largely supported; constructs tagged as deprecated within the Thrift project are not permitted. Also, text from doc comments are not currently represented in the tree.

Why

Largely an excuse to play with Rexical and Racc, but you may find some practical uses for it.

Running

An executable, ./bin/rift is available, simply for testing purposes. It simply outputs a YAML representation of the syntax tree. For example, the following IDL:

struct Location {
  1: required double latitude;
  2: required double longitude;
}

Will result in a syntax tree similar to the following:

---
- !ruby/object:Rift::Nodes::Struct
  name: Location
  type: struct
  annotations:
  members:
  - !ruby/object:Rift::Nodes::Field
    identifier: !ruby/object:Rift::Nodes::FieldIdentifier
      auto_assigned: false
      value: 1
    name: latitude
    requiredness: required
    type: !ruby/object:Rift::Nodes::FieldType
      type: primitive
      value: !ruby/object:Rift::Nodes::BaseType
        annotations:
        type: double
    value:
    xsd_attributes:
    xsd_nillable: false
    xsd_optional: false
  - !ruby/object:Rift::Nodes::Field
    identifier: !ruby/object:Rift::Nodes::FieldIdentifier
      auto_assigned: false
      value: 2
    name: longitude
    requiredness: required
    type: !ruby/object:Rift::Nodes::FieldType
      type: primitive
      value: !ruby/object:Rift::Nodes::BaseType
        annotations:
        type: double
    value:
    xsd_attributes:
    xsd_nillable: false
    xsd_optional: false

rift's People

Contributors

nick-jones avatar

Watchers

motoki yoan avatar James Cloos 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.