├── .gitignore ├── LICENSE ├── Makefile ├── README.mediawiki ├── TODO ├── doc └── FAST_Specification.pdf ├── ebin ├── decode_micexff └── decode_rtsff ├── include ├── erlang_fast_common.hrl ├── erlang_fast_context.hrl └── erlang_fast_template.hrl ├── rebar ├── rebar.config ├── run_tests ├── src ├── erlang_fast.app.src ├── erlang_fast.erl ├── erlang_fast_decode_types.erl ├── erlang_fast_dicts.erl ├── erlang_fast_encode_types.erl ├── erlang_fast_field_decode.erl ├── erlang_fast_field_encode.erl ├── erlang_fast_msg.erl ├── erlang_fast_segment.erl ├── erlang_fast_templates.erl ├── erlang_fast_test.erl ├── erlang_fast_utils.erl ├── erlang_fast_xml.erl └── erlang_fast_xml_utils.erl └── templates └── templates.xml /.gitignore: -------------------------------------------------------------------------------- 1 | *.beam 2 | *.app 3 | .eunit 4 | *.swp 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/Makefile -------------------------------------------------------------------------------- /README.mediawiki: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/README.mediawiki -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/FAST_Specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/doc/FAST_Specification.pdf -------------------------------------------------------------------------------- /ebin/decode_micexff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/ebin/decode_micexff -------------------------------------------------------------------------------- /ebin/decode_rtsff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/ebin/decode_rtsff -------------------------------------------------------------------------------- /include/erlang_fast_common.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/include/erlang_fast_common.hrl -------------------------------------------------------------------------------- /include/erlang_fast_context.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/include/erlang_fast_context.hrl -------------------------------------------------------------------------------- /include/erlang_fast_template.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/include/erlang_fast_template.hrl -------------------------------------------------------------------------------- /rebar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/rebar -------------------------------------------------------------------------------- /rebar.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/rebar.config -------------------------------------------------------------------------------- /run_tests: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | ./rebar eunit 4 | -------------------------------------------------------------------------------- /src/erlang_fast.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/src/erlang_fast.app.src -------------------------------------------------------------------------------- /src/erlang_fast.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/src/erlang_fast.erl -------------------------------------------------------------------------------- /src/erlang_fast_decode_types.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/src/erlang_fast_decode_types.erl -------------------------------------------------------------------------------- /src/erlang_fast_dicts.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/src/erlang_fast_dicts.erl -------------------------------------------------------------------------------- /src/erlang_fast_encode_types.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/src/erlang_fast_encode_types.erl -------------------------------------------------------------------------------- /src/erlang_fast_field_decode.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/src/erlang_fast_field_decode.erl -------------------------------------------------------------------------------- /src/erlang_fast_field_encode.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/src/erlang_fast_field_encode.erl -------------------------------------------------------------------------------- /src/erlang_fast_msg.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/src/erlang_fast_msg.erl -------------------------------------------------------------------------------- /src/erlang_fast_segment.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/src/erlang_fast_segment.erl -------------------------------------------------------------------------------- /src/erlang_fast_templates.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/src/erlang_fast_templates.erl -------------------------------------------------------------------------------- /src/erlang_fast_test.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/src/erlang_fast_test.erl -------------------------------------------------------------------------------- /src/erlang_fast_utils.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/src/erlang_fast_utils.erl -------------------------------------------------------------------------------- /src/erlang_fast_xml.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/src/erlang_fast_xml.erl -------------------------------------------------------------------------------- /src/erlang_fast_xml_utils.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/src/erlang_fast_xml_utils.erl -------------------------------------------------------------------------------- /templates/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmitryme/erlang_fast/HEAD/templates/templates.xml --------------------------------------------------------------------------------