aboutsummaryrefslogtreecommitdiff
path: root/source/00_content/pages/projects/binary_mapping.md
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-09-11 13:08:41 +0200
committerAdrian Kummerlaender2014-09-11 13:08:41 +0200
commit78020547dae1fd46c330be60fe869fb33477b5e4 (patch)
treedae83ea73daa5585f5793e5be2d57a97c3bd6700 /source/00_content/pages/projects/binary_mapping.md
parentded69be933abdb3ff69e3bf1991586a70fd13d63 (diff)
parentdffe5e060399eea7d8a6985664786cc2a5d933ff (diff)
downloadblog.kummerlaender.eu-78020547dae1fd46c330be60fe869fb33477b5e4.tar
blog.kummerlaender.eu-78020547dae1fd46c330be60fe869fb33477b5e4.tar.gz
blog.kummerlaender.eu-78020547dae1fd46c330be60fe869fb33477b5e4.tar.bz2
blog.kummerlaender.eu-78020547dae1fd46c330be60fe869fb33477b5e4.tar.lz
blog.kummerlaender.eu-78020547dae1fd46c330be60fe869fb33477b5e4.tar.xz
blog.kummerlaender.eu-78020547dae1fd46c330be60fe869fb33477b5e4.tar.zst
blog.kummerlaender.eu-78020547dae1fd46c330be60fe869fb33477b5e4.zip
Merge commit 'dffe5e060399eea7d8a6985664786cc2a5d933ff' as 'source/00_content'
Diffstat (limited to 'source/00_content/pages/projects/binary_mapping.md')
-rw-r--r--source/00_content/pages/projects/binary_mapping.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/source/00_content/pages/projects/binary_mapping.md b/source/00_content/pages/projects/binary_mapping.md
new file mode 100644
index 0000000..c178236
--- /dev/null
+++ b/source/00_content/pages/projects/binary_mapping.md
@@ -0,0 +1,24 @@
+# BinaryMapping
+
+…is a collection of C++ templates which may be used to map binary structures into tuples and various other structures.
+
+These structures can then be traversed using integrated containers and iterators. This is useful for many kinds of data serialization tasks.
+
+A explanation of an earlier version of this template library can be found on this [blog]. The source code is available via both [Github] and [cgit].
+
+## Current features
+
+* Support for any kind of flat structure that can be expressed using integral types and arbitrarily sized byte-arrays
+* Support for serialization in either big or little endianess
+* Offers Container and Iterator templates for fast traversal of collections of tuples or other structures
+* Support for developing custom types to be used in the Container and Iterator templates
+* Support for nesting structures inside each other
+* BitField template offers bit-level access to ByteField byte-arrays
+* Doesn't require any external libraries besides the GNU libraries `endian.h`
+* Header only library because of heavy usage of template metaprogramming
+* Unit Tests based on GoogleTest
+* MIT license
+
+[blog]: /article/mapping-binary-structures-as-tuples-using-template-metaprogramming
+[Github]: https://github.com/KnairdA/BinaryMapping
+[cgit]: http://code.kummerlaender.eu/BinaryMapping/