Codegenta

Latest Version Build Status Coverage Status MIT licensed

is code generation tool designed to work along side with rustorm to eagerly create Rust structs based on the database tables meta data information.

Why?

There are a lot of ways to express database tables using a multitude of libraries around the ecosystem. Arguably the most prevalent way(without too much of overhead/learning curve) is by using database GUI tools such as PgAdmin.

The way to do these is, you create database tables, you then create the corresponding struct in your code. This is an iterative process wherein you will add/remove/edit the table definition as you develop you application. Often times, it's easy to make inconsistencies.

Example

Terminology and tables

Code to look at

```sql

CREATE TABLE bazaar.product ( productid uuid NOT NULL DEFAULT uuidgeneratev4(), name character varying, description character varying, price numeric, currencyid uuid, unit character varying, barcode character varying, ownerid uuid, currencyid uuid, CONSTRAINT productpkey PRIMARY KEY (productid), CONSTRAINT productcurrencyidfkey FOREIGN KEY (currencyid) REFERENCES payment.currency (currencyid) MATCH SIMPLE ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED, CONSTRAINT productuseridfkey FOREIGN KEY (ownerid) REFERENCES bazaar.users (userid) MATCH SIMPLE ON UPDATE CASCADE ON DELETE RESTRICT DEFERRABLE INITIALLY DEFERRED )

```

The generated model code

```rust

[derive(RustcDecodable, RustcEncodable)]

[derive(Debug, Clone)]

pub struct Product { pub productid:Uuid, pub name:Option, pub description:Option, pub barcode:Option, pub currencyid:Option, pub owner_id:Option, pub price:Option, pub unit:Option,

pub owner: Option<Users>,
pub currency: Option<Currency>,
pub availability: Option<Box<ProductAvailability>>,
pub category: Vec<Category>,
pub photo: Vec<Photo>,
pub review: Vec<Review>,

}

```

More advance features

Take a look at the table schema used in these examples provided by the project.

Same applies for Photo, with linker table product_photo and Review table with linker product_review

A complex query when using codegenta

link ```rust

extern crate rustorm; extern crate uuid; extern crate chrono; extern crate rustc_serialize;

use rustorm::query::Query; use rustorm::query::{Filter,Equality}; use rustorm::dao::{Dao,IsDao}; use gen::bazaar::Product; use gen::bazaar::product; use gen::bazaar::Photo; use gen::bazaar::photo; use gen::bazaar::Review; use gen::bazaar::review; use gen::bazaar::Category; use gen::bazaar::category; use gen::bazaar::productcategory; use gen::bazaar::ProductCategory; use gen::bazaar::productphoto; use gen::bazaar::ProductPhoto; use gen::bazaar::ProductAvailability; use gen::bazaar::product_availability;

use rustorm::table::IsTable; use rustorm::pool::ManagedPool;

mod gen;

fn main(){ let mut pool = ManagedPool::init("postgres://postgres:p0stgr3s@localhost/bazaar_v6",1); let db = pool.connect().unwrap();

let mut query = Query::select_all();

query.from(&Product::table())
    .left_join(&ProductCategory::table(),
        product_category::product_id, product::product_id)
     .left_join(&Category::table(),
        category::category_id, product_category::category_id)
    .left_join(&ProductPhoto::table(),
        product::product_id, product_photo::product_id)
    .left_join(&Photo::table(), 
        product_photo::photo_id, photo::photo_id)
    .filter(product::name, Equality::EQ, &"GTX660 Ti videocard")
    .filter(category::name, Equality::EQ, &"Electronic")
    .group_by(vec![category::name])
    .having("count(*)", Equality::GT, &1)
    .asc(product::name)
    .desc(product::created)
    ;
let frag = query.build(db.as_ref());

let expected = "

SELECT * FROM bazaar.product LEFT OUTER JOIN bazaar.productcategory ON productcategory.productid = product.productid LEFT OUTER JOIN bazaar.category ON category.categoryid = productcategory.categoryid LEFT OUTER JOIN bazaar.productphoto ON product.productid = productphoto.productid LEFT OUTER JOIN bazaar.photo ON productphoto.photoid = photo.photoid WHERE product.name = $1 AND category.name = $2 GROUP BY category.name HAVING count(*) > $3 ORDER BY product.name ASC, product.created DESC ".to_string(); println!("actual: {{{}}} [{}]", frag.sql, frag.sql.len()); println!("expected: {{{}}} [{}]", expected, expected.len()); assert!(frag.sql.trim() == expected.trim()); } ```

Look at those pretty generated SQL's

Roadmap