BR Code

A crate to parse and emit PIX BR Code.

Usage

toml [dependencies] brcode = "0.2.0"

Example

Parse String ```rust use brcode::{from_str, Data};

fn main() { let code = "00020104141234567890123426580014BR.GOV.BCB.PIX0136123e4567-e12b-12d1-a456-42665544000027300012BR.COM.OUTRO011001234567895204000053039865406123.455802BR5917NOME DO RECEBEDOR6008BRASILIA61087007490062190515RP12345678-201980390012BR.COM.OUTRO01190123.ABCD.3456.WXYZ6304AD38";

assert_eq!(from_str(code), expected());

}

fn expected() -> Vec<(usize, Data)> { vec![ (0, Data::Single("01".tostring())), (4, Data::Single("12345678901234".tostring())), (26, Data::Vector(vec![ (0, Data::Single("BR.GOV.BCB.PIX".tostring())), (1, Data::Single("123e4567-e12b-12d1-a456-426655440000".tostring()))])), (27, Data::Vector(vec![ (0, Data::Single("BR.COM.OUTRO".tostring())), (1, Data::Single("0123456789".tostring()))])), (52, Data::Single("0000".tostring())), (53, Data::Single("986".tostring())), (54, Data::Single("123.45".tostring())), (58, Data::Single("BR".tostring())), (59, Data::Single("NOME DO RECEBEDOR".tostring())), (60, Data::Single("BRASILIA".tostring())), (61, Data::Single("70074900".tostring())), (62, Data::Vector(vec![ (5, Data::Single("RP12345678-2019".tostring()))])), (80, Data::Vector(vec![( 0, Data::Single("BR.COM.OUTRO".tostring())), (1, Data::Single("0123.ABCD.3456.WXYZ".tostring()))])), (63, Data::Single("AD38".to_string()))] } ```

strtobrcode ```rust use brcode::{strtobrcode, BrCode, Template, Info, MerchantInfo, Label};

fn main() { let code = "00020104141234567890123426580014BR.GOV.BCB.PIX0136123e4567-e12b-12d1-a456-42665544000027300012BR.COM.OUTRO011001234567895204000053039865406123.455802BR5917NOME DO RECEBEDOR6008BRASILIA61087007490062190515RP12345678-201980390012BR.COM.OUTRO01190123.ABCD.3456.WXYZ6304AD38";

assert_eq!(from_str(code), expected());

}

fn expected() -> BrCode { BrCode { payloadversion: 1, initiationmethos: None, merchantcategorycode: 0000u32, merchantname: "NOME DO RECEBEDOR".tostring(), merchantcity: "BRASILIA".tostring(), merchantinformation: vec![ MerchantInfo { id: 26, info: vec![ Info { id: 0, info: "BR.GOV.BCB.PIX".tostring(), }, Info { id: 1, info: "123e4567-e12b-12d1-a456-426655440000".tostring(), }, ], }, MerchantInfo { id: 27, info: vec![ Info { id: 0, info: "BR.COM.OUTRO".tostring(), }, Info { id: 1, info: "0123456789".tostring(), }, ], }, ], currency: "986".tostring(), postalcode: Some("70074900".tostring()), amount: Some(123.45), countrycode: "BR".tostring(), fieldtemplate: vec![Label { referencelabel: "RP12345678-2019".tostring(), }], crc1610: "AD38".tostring(), templates: Some(vec![Template { id: 80usize, info: vec![ Info { id: 0usize, info: "BR.COM.OUTRO".tostring(), }, Info { id: 1usize, info: "0123.ABCD.3456.WXYZ".tostring(), }, ], }]), } } ```

FFI

BR Code as Edn call function edn_from_brcode or use clojar [clj-brcode "0.2.0-SNAPSHOT"]. Example:

```clojure (ns clj-brcode.core (:import jnr.ffi.LibraryLoader) (:gen-class))

(def mem-brcode (let [lib-brcode (-> (gen-interface :name "LibC" :methods [[ednfrombrcode [String] String]]) LibraryLoader/create (.load "brcode"))] lib-brcode))

(defn brcode-from-str [s]
(-> mem-brcode (.ednfrombrcode s) read-string)) ```

Input: rust "00020104141234567890123426580014BR.GOV.BCB.PIX0136123e4567-e12b-12d1-a456-42665544000027300012BR.COM.OUTRO011001234567895204000053039865406123.455802BR5917NOME DO RECEBEDOR6008BRASILIA61087007490062190515RP12345678-201980390012BR.COM.OUTRO01190123.ABCD.3456.WXYZ6304AD38"

Expected Edn: clojure { :payload-version 1, :initiation-methos nil, :merchant-information [{ :id 26, :info [{ :id 0, :info "BR.GOV.BCB.PIX", }, { :id 1, :info "123e4567-e12b-12d1-a456-426655440000", } ] }, { :id 27, :info [{ :id 0, :info "BR.COM.OUTRO", }, { :id 1, :info "0123456789", } ]} ], :merchant-category-code 0, :merchant-name "NOME DO RECEBEDOR", :merchant-city "BRASILIA", :postal-code "70074900", :currency "986", :amount 123.45, :country-code "BR", :field-template [{ :reference-label "RP12345678-2019", }], :crc1610 "AD38", :templates [{ :id 80, :info [{ :id 0, :info "BR.COM.OUTRO", }, { :id 1, :info "0123.ABCD.3456.WXYZ", }], }], }

BR Code as Json call function json_from_brcode. Example: ```rust fn jsonffi() { let code = code(); let result = jsonfrombrcode(tocchar(code)); let actual = tostring(result);

assert_eq!(actual, json());

} ```

Input: rust "00020104141234567890123426580014BR.GOV.BCB.PIX0136123e4567-e12b-12d1-a456-42665544000027300012BR.COM.OUTRO011001234567895204000053039865406123.455802BR5917NOME DO RECEBEDOR6008BRASILIA61087007490062190515RP12345678-201980390012BR.COM.OUTRO01190123.ABCD.3456.WXYZ6304AD38"

Expected Json: json { "payload_version":1, "initiation_methos":null, "merchant_information":[ {"id":26,"info":[ {"id":0,"info":"BR.GOV.BCB.PIX"}, {"id":1,"info":"123e4567-e12b-12d1-a456-426655440000"} ]}, {"id":27,"info":[ {"id":0,"info":"BR.COM.OUTRO"}, {"id":1,"info":"0123456789"} ]} ], "merchant_category_code":0, "merchant_name":"NOME DO RECEBEDOR", "merchant_city":"BRASILIA", "postal_code":"70074900", "currency":"986", "amount":123.45, "country_code":"BR", "field_template":[{"reference_label":"RP12345678-2019"}], "crc1610":"AD38", "templates":[ {"id":80,"info":[ {"id":0,"info":"BR.COM.OUTRO"}, {"id":1,"info":"0123.ABCD.3456.WXYZ"} ]} ] }

Benchmark

from_str in benches/parse.rs time: [16.200 us 16.251 us 16.319 us]

strtobrcode in benches/to_brcode time: [25.424 us 25.570 us 25.710 us]

ednfrombrcode in benches/to_brcode time: [55.027 us 55.202 us 55.382 us]

jsonfrombrcode in benches/to_brcode time: [30.717 us 30.981 us 31.303 us]

Goals