Build Status crates.io

genco

genco is a code generator and quasi quoter for Rust, written for use in [reproto].

The workhorse of genco is the [quote!] and [quote_in!] macros. While tokens can be constructed manually, these make this process much easier.

genco only minimally deals with language-specific syntax, but primarily deals with solving the following:


We depend on proc_macro_hygiene stabilizations. Until then, you must build and run with the nightly branch.

bash cargo +nightly run --example rust


Examples

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

You can run one of the examples above using:

bash cargo run --example go


Rust Example

The following is a simple program producing Rust code to stdout with custom configuration:

```rust use genco::prelude::*; use genco::fmt;

let map = rust::imported("std::collections", "HashMap");

let tokens: rust::Tokens = quote! { fn main() { let mut m = #map::new(); m.insert(1u32, 2u32); } };

let stdout = std::io::stdout(); let mut w = fmt::IoWriter::new(stdout.lock());

let fmt = fmt::Config::fromlang::() .withindentation(fmt::Indentation::Space(2)); let config = rust::Config::default();

tokens.formatfile(&mut w.asformatter(fmt), &config)?; ```

This would produce:

```rust use std::collections::HashMap;

fn main() { let mut m = HashMap::new(); m.insert(1u32, 2u32); } ```