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:
Imports — genco generates and groups import statements according to conventions for the language being generated for.
String Quoting — Strings can be quoted using the [<stmt>.quoted()
]
trait function.
Structural Indentation — genco's quasi quoting utilizes [whitespace detection] to structurally sort out spaces and indentation.
We depend on proc_macro_hygiene
stabilizations. Until then, you must build
and run with the nightly
branch.
bash
cargo +nightly run --example rust
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
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::
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); } ```