GenCo

Build Status crates.io

GenCo is an even simpler code generator for Rust, written for use in [reproto].

The workhorse of GenCo is the [quote!] macro. While tokens can be constructed, manually, [quote!] makes this process much easier.

GenCo does not deal with language-specific syntax, instead it limits itself to do the following basic necessities through specialization:

Examples

The following are language specific examples for GenCo using the [quote!] macro.

The following is a simple example showcasing code generation for Rust.

```rust

![feature(procmacrohygiene)]

use genco::rust::imported; use genco::{quote, Rust, Tokens};

// Import the LittleEndian item, without referencing it through the last // module component it is part of. let littleendian = imported("byteorder", "LittleEndian").qualified(); let bigendian = imported("byteorder", "BigEndian");

// This is a trait, so only import it into the scope (unless we intent to // implement it). let writebytesext = imported("byteorder", "WriteBytesExt").alias("_");

let tokens: Tokens = quote! { @writebytesext

let mut wtr = vec![];
wtr.write_u16::<#little_endian>(517).unwrap();
wtr.write_u16::<#big_endian>(768).unwrap();
assert_eq!(wtr, vec![5, 2, 3, 0]);

}; ```

Indentation Rules

The quote! macro has the following rules for dealing with indentation and spacing.

Two tokens that are separated, are spaced. Regardless of how many spaces there are between them.

So:

```rust

![feature(procmacrohygiene)]

let _: genco::Tokens = genco::quote!(fn test() {}); ```

Becomes:

rust fn test() {}

More that two line breaks are collapsed.

So:

```rust

![feature(procmacrohygiene)]

let _: genco::Tokens = genco::quote! { fn test() { println!("Hello...");

    println!("... World!");
}

}; ```

Becomes:

```rust fn test() { println!("Hello...");

println!("... World!");

} ```

Indentation is determined on a row-by-row basis. If a column is further in than the one on the preceeding row, it is indented one level deeper.

Like wise if a column starts before the previous rows column, it is indended one level shallower.

So:

```rust

![feature(procmacrohygiene)]

let _: genco::Tokens = genco::quote! { fn test() { println!("Hello..."); println!("... World!"); } }; ```

Becomes:

rust fn test() { println!("Hello..."); println!("... World!"); }