Brickred Studio data serialization tool
Compiler is written in c#
cd compiler
make
ls bin/
usage: brexc.exe -f <protocol_file> -l <language>
[-o <output_dir>]
[-I <search_path>]
[-n <new_line_type>] (unix|dos) default is unix
language supported: cpp csharp php
- build c brickred exchange library
cd cpp
./config.sh --prefix=<prefix>
make release && make install
- generate c source and header
$ mono brexc.exe -f attr.xml -l cpp
$ mono brexc.exe -f message_test.xml -l cpp
$ mono brexc.exe -f message_type.xml -l cpp
- we will get c source and header files in current dir
$ ls -1 *.cc *.h
attr.cc
attr.h
message_test.cc
message_test.h
message_type.cc
message_type.h
- write a main.cc to use the generated code (in example/main.cc)
- compile, link and test
$ g -c attr.cc
$ g -c message_test.cc
$ g -c message_type.cc
$ g main.cc attr.o message_test.o message_type.o -lbrickredexchange
$ ./a.out
- build csharp brickred exchange library(example use mono)
cd csharp
make
- generate csharp source
$ mono brexc.exe -f attr.xml -l csharp
$ mono brexc.exe -f message_test.xml -l csharp
$ mono brexc.exe -f message_type.xml -l csharp
- we will get generated csharp files in current dir
$ ls -l *.cs
attr.cs
message_test.cs
message_type.cs
- write a main.cs to use the generated code (in example/main.cs)
- compile, link and test
mcs main.cs attr.cs message_test.cs message_type.cs -r:Brickred.Exchange.dll
mono main.exe
-
put php/BrickredExchange.php to your project dir
-
generate php file
$ mono brexc.exe -f attr.xml -l php
$ mono brexc.exe -f message_test.xml -l php
$ mono brexc.exe -f message_type.xml -l php
- we will get generated php files in current dir
$ ls -l *.php
attr.php
BrickredExchange.php
message_test.php
message_type.php
- write a main.php to use the generated code (in example/main.php)
- run main.php
$ php main.php