5 个版本

使用旧的 Rust 2015

0.2.2 2017年10月3日
0.2.1 2017年10月3日
0.2.0 2017年9月23日
0.1.1 2017年8月13日
0.1.0 2017年6月25日

#2#codeviz

每月下载量 25 次
用于 codeviz

MIT/Apache

29KB
959 行代码(不含注释)

codeviz

Build Status crates.io

注意:该项目已被 genco 弃用。

codeviz 是一个简单的 Rust 代码生成器,专门为 reproto 使用而编写。

该项目灵感来源于 JavaPoet (https://github.com/square/javapoet)

示例

#[macro_use]
extern crate codeviz_macros;
extern crate codeviz_java;

use codeviz_java::*;

fn main() {
  let string_type = Type::class("java.lang", "String");
  let list_type = Type::class("java.util", "List");
  let json_creator_type = Type::class("com.fasterxml.jackson.annotation", "JsonCreator");
  let list_of_strings = list_type.with_arguments(vec![&string_type]);

  let values_field = FieldSpec::new(mods![Modifier::Private, Modifier::Final],
                                    &list_of_strings,
                                    "values");

  let values_argument =
      ArgumentSpec::new(mods![Modifier::Final], &list_of_strings, "values");

  let mut constructor = ConstructorSpec::new(mods![Modifier::Public]);
  constructor.push_annotation(AnnotationSpec::new(json_creator_type));
  constructor.push_argument(&values_argument);
  constructor.push(java_stmt!["this.values = ", values_argument]);

  let mut values_getter = MethodSpec::new(mods![Modifier::Public], "getValues");
  values_getter.returns(&list_of_strings);
  values_getter.push(java_stmt!["return this.", &values_field]);

  let mut class = ClassSpec::new(mods![Modifier::Public], "Test");
  class.push_field(&values_field);
  class.push_constructor(&constructor);
  class.push_method(&values_getter);

  let mut file = FileSpec::new("se.tedro");
  file.push_class(&class);

  let result = file.format();
}

依赖项

~2.5–3.5MB
~74K SLoC