RDC - Rust Data Codegen
This crate is used to generate code for other languages from Rust's data structures. It can be used to generate DTO classes to make it easier to interact with other languages.
It currently supports only Java, but it can be easily extended to support other languages in the future.
It relies on the serde
crate to serialize and deserialize data.
For testing purposes it uses gradle to compile and run the generated Java code.
```rust use rdc::{rdc_java, RDC}; use rdc::targets::java::JavaClass; use serde::{Serialize, Deserialize};
struct MyStruct { field1: String, field2: i32, }
struct MyStruct2 {
field1: Vec
let classes: Vec
You do not have to specify all the types that are used in your data structures. RDC will automatically add all the dependencies.
```rust use rdc::{rdc_java, RDC}; use rdc::targets::java::JavaClass;
struct Dependency { field1: String, }
struct MyStruct { field1: String, dependency: Dependency, }
let classes: Vec
```rust use rdc::{rdc_java, RDC};
enum MyEnum { Variant1, Variant2 } rdc_java!(MyEnum).unwrap(); ```
Data enum is a special type of enum that can contain data. ```rust use rdc::{rdc_java, RDC};
enum MyEnum { Variant1(i32), Variant2, Variant3 { field1: String } }
rdc_java!(MyEnum).unwrap();
Example JSON representations:
json
[
{
"Variant1": 1
},
"Variant2",
{
"Variant3": {
"field1": "value"
}
}
]
```
There is support for generics in RDC.
It works by generating a Java class for each combination of generic types.
Every used generic type should implement rdc::RDCType
trait.
Please note that this trait is implemented automatically by #[derive(RDC)]
.
```rust
use rdc::{rdc_java, RDC, RDCType};
struct MyStruct
let classes = rdcjava!(MyStruct
RDC can write the generated code to files. ```rust use rdc::{rdcjava, RDC}; use rdc::targets::java::{JavaClass, writejava};
enum MyEnum {
Variant1,
Variant2
}
let classes: Vec
write_java(&classes, "com.example", "target/test-tmp/src/main/java").unwrap(); ```
You can use #[serde(rename = "new_name")]
to rename fields and it will be reflected in the generated code.
License: MIT