This crate allows one to generate Rust, Protobuf and SQL code from ASN.1 definitions, providing also support for basic serde integration.
The crate can be used as standalone binary using its command line interface or included invoked through its API
(for example inside the build.rs
script).
The generated Rust code has serializers and deserializers for ASN.1 UPER, protobuf and PostgreSQL and can therefore communicate with other applications supporting these formats (like Java-classes generated by the Google protobuf compiler).
Currently only UPER is supported for ASN.1.
It is always helpful to check asn1rs --help
in advance.
The basic usage can be seen blow:
asn1rs -t rust directory/for/rust/files some.asn1 messages.asn1
asn1rs -t proto directory/for/protobuf/files some.asn1 messages.asn1
asn1rs -t sql directory/for/sql/schema/files some.asn1 messages.asn1
The following example generates Rust, Protobuf and SQL files for all .asn1
-files in the asn/
directory of the project.
While the generated Rust code is written to the src/
directory, the Protobuf files are written to proto/
and the SQL files are written to sql/
.
Additionally, in this example each generated Rust-Type also receives Serialize
and Deserialize
derive directives (#[derive(Serialize, Deserialize)]
) for automatic serde integration.
File build.rs
:
```rust extern crate asn1rs;
use std::fs;
use asn1rs::converter::converttoproto; use asn1rs::converter::converttorust; use asn1rs::converter::converttosql; use asn1rs::gen::rust::RustCodeGenerator;
pub fn main() { for entry in fs::readdir("asn").unwrap().intoiter() { let entry = entry.unwrap(); let filename = entry.filename().intostring().unwrap(); if filename.endswith(".asn1") { if let Err(e) = converttorust( entry.path().tostr().unwrap(), "src/", |generator: &mut RustCodeGenerator| { generator.addglobalderive("Serialize"); generator.addglobalderive("Deserialize"); }, ) { panic!("Conversion to rust failed for {}: {:?}", filename, e); } if let Err(e) = converttoproto(entry.path().tostr().unwrap(), "proto/") { panic!("Conversion to proto failed for {}: {:?}", filename, e); } if let Err(e) = converttosql(entry.path().tostr().unwrap(), "sql/") { panic!("Conversion to sql failed for {}: {:?}", file_name, e); } } } } ```
Input input.asn1
```asn MyMessages DEFINITIONS AUTOMATIC TAGS ::= BEGIN
Header ::= SEQUENCE { timestamp INTEGER (0..1209600000) }
END ```
Output my_messages.rs
:
```rust // use ...
pub struct Header { pub timestamp: u32, }
impl Header { pub fn timestamp_min() -> u32 { 0 }
pub fn timestamp_max() -> u32 {
1_209_600_000
}
}
// Serialize and deserialize functions for ASN.1 UPER impl Uper for Header { /../ }
// Serialize and deserialize functions for protobuf impl ProtobufEq for Header { /../ } impl Protobuf for Header { /../ }
// Insert and query functions for PostgreSQL impl PsqlRepresentable for Header { /../ } impl PsqlInsertable for Header { /../ } impl PsqlQueryable for Header { /../ } ```
Output my_messages.proto
:
```proto syntax = 'proto3'; package my.messages;
message Header { uint32 timestamp = 1; } ```
Output my_messages.sql
:
```sql DROP TABLE IF EXISTS Header CASCADE;
CREATE TABLE Header ( id SERIAL PRIMARY KEY, timestamp INTEGER NOT NULL ); ```
The module asn1rs::io
exposes (de-)serializers and helpers for direct usage without ASN.1 definitons:
```rust
use asn1rs::io::uper::*;
use asn1rs::io::buffer::BitBuffer;
let mut buffer = BitBuffer::default(); buffer.writebit(true).unwrap(); buffer.writeutf8_string("My UTF8 Text").unwrap();
sendtoanother_host(buffer.into::
rust
use asn1rs::io::protobuf::*;
let mut buffer = Vec::default(); buffer.writevarint(1337).unwrap(); buffer.wrotestring("Still UTF8 Text").unwrap();
sendtoanother_host(buffer): ```
SEQUENCE
, SEQUENCE OF
, CHOICE
and ENUMERATED
SEQUENCE OF
and CHOICE
OPTIONAL
INTEGER
with range value only (numbers or MIN
/MAX
)UTF8String
OCTET STRING
BOOLEAN
IMPORTS .. FROM ..;
Things to do at some point in time
- support #![no_std]
- refactor / clean-up (rust) code-generators
- async postgres
MIT/Apache-2.0
This crate was initially developed during a research project at IT-Designers GmbH (http://www.it-designers.de).