Diesel CLI Extension is a tool-belt that aids Diesel CLI after it built schema.rs .
It contains 4 functions at this moment.
1. Generate protobuf file.(diesel_ext proto
)
2. Generate model rust structs.(diesel_ext model
)
3. Generate conversion implementations.(diesel_ext into_proto
, and diesel_ext from_proto
)
cargo install diesel_cli_ext
First of all, diesel print-schema > src/schema.rs
TL;DR:
``` Usage: target/debug/diesel_ext FILE [options]
Common Options: -s, --schema-file PATH Set schema file path -h, --help Print this help menu
Model Options: -m, --model Set as model output -M, --map "FROMTYPE TOTYPE" Set type mappings (can be set multiple times) e.g. --map "BigInt iccc" -I, --import-types "TYPE" This field adds use statements to the top of every table! declaration. (can be set multiple times) e.g. --importtypes "diesel::sqltypes::*" -d, --derive DERIVES set struct derives -t, --add-table-name Add #[table_name = x] before structs
Proto Options: -p, --proto Set as proto output -i, --intoproto Set as intoproto output -f, --fromproto Set as fromproto output -c, --classname CLASSNAME Set proto class name ```
(You can see it again by diesel_ext --help
)
Output demostrations as below...
e.g. diesel_ext > src/db/db_models.rs
, diesel_ext -m > src/models.rs
, diesel_ext --model > src/models.rs
(it is the default option)
Sample model output: ``` rust use chrono::NaiveDateTime; use bigdecimal::BigDecimal;
pub struct CarryOverBalance { pub account_id : i64, pub debit : BigDecimal, pub description : String, }
pub struct Order { pub id1 : i64, pub time : NaiveDateTime, pub json : String, } ```
diesel_ext -p > myproto.proto
, diesel_ext --proto > myproto.proto
Sample output: ``` r syntax = "proto3";
message CarryOverBalance { int64 account_id = 1; string debit = 2; string description = 3; } message Order { int64 id1 = 1; string time = 2; string json = 3; }
message EnquireCarryOverBalanceRequest { int64 id =1; } message EnquireOrderRequest { int64 id =1; }
service MessageRpc { rpc getCarryOverBalance (EnquireCarryOverBalanceRequest) returns (CarryOverBalance) { } rpc getOrder (EnquireOrderRequest) returns (Order) { } } ```
diesel_ext -f -c class_name > proto/src/conversion/from_proto.rs
, diesel_ext -i -c class_name > proto/src/conversion/into_proto.rs
(if you omit the second parameter, names will be displayed as _name_
for your search and replace.)
Sample output(from): ``` rust use models; use proto::client_service; use std::str::FromStr; use std::convert::From;
impl From
impl From
```
into: ``` rust use models; use proto::client_service; use std::str::FromStr; use std::convert::From;
impl From
impl From