annotate ext/base-n/README.md @ 150:bf8e3e7dd7de

Move some things around, and add overall test script
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 20 Jan 2017 17:45:54 +0000
parents
children
rev   line source
cannam@150 1 base-n provides encoding/decoding support for BaseX encoding schemes accessible through a standard STL-like iterator interface. Standard Base16, Base32, and Base64 are available out-of-the-box. Adding or modifying custom schemes is supported.
cannam@150 2
cannam@150 3 # Usage overview #
cannam@150 4
cannam@150 5 base-n is a small, single-header library which provides standard Base16, Base32, Base64, and custom Base-N encoding support.
cannam@150 6
cannam@150 7 The main functionality is delivered by the following functions in `bn` namespace:
cannam@150 8 ```
cannam@150 9 template<class Iter1, class Iter2>
cannam@150 10 void encode_b16(Iter1 start, Iter1 end, Iter2 out);
cannam@150 11
cannam@150 12
cannam@150 13 template<class Iter1, class Iter2>
cannam@150 14 void encode_b32(Iter1 start, Iter1 end, Iter2 out);
cannam@150 15
cannam@150 16
cannam@150 17 template<class Iter1, class Iter2>
cannam@150 18 void encode_b64(Iter1 start, Iter1 end, Iter2 out);
cannam@150 19
cannam@150 20
cannam@150 21 template<class Iter1, class Iter2>
cannam@150 22 void decode_b16(Iter1 start, Iter1 end, Iter2 out);
cannam@150 23
cannam@150 24
cannam@150 25 template<class Iter1, class Iter2>
cannam@150 26 void decode_b32(Iter1 start, Iter1 end, Iter2 out);
cannam@150 27
cannam@150 28
cannam@150 29 template<class Iter1, class Iter2>
cannam@150 30 void decode_b64(Iter1 start, Iter1 end, Iter2 out);
cannam@150 31 ```
cannam@150 32
cannam@150 33 In order to encode and decode data in `std::string` variable `in`, you can do the following:
cannam@150 34 ```
cannam@150 35 bn::encode_b64(in.begin(), in.end(), back_inserter(encoded));
cannam@150 36 bn::decode_b64(encoded.begin(), encoded.end(), ostream_iterator<char>(cout, ""));
cannam@150 37 ```
cannam@150 38
cannam@150 39 Should you find yourself lacking some encoding scheme or the default character mapping rules are not good for your use case, you can easily provide your own encoder. For that, you need to define a struct type which will describe the new encoding. Sample below:
cannam@150 40 ```
cannam@150 41 struct b8_custom
cannam@150 42 {
cannam@150 43 static size_t group_length()
cannam@150 44 {
cannam@150 45 return 3;
cannam@150 46 }
cannam@150 47
cannam@150 48 static char encode(int index)
cannam@150 49 {
cannam@150 50 const char* const dictionary = "01234567";
cannam@150 51 assert(index < strlen(dictionary));
cannam@150 52 return dictionary[index];
cannam@150 53 }
cannam@150 54
cannam@150 55 static char decode(char c)
cannam@150 56 {
cannam@150 57 if (c >= '0' && c <= '7') {
cannam@150 58 return c - '0';
cannam@150 59 }
cannam@150 60 return -1;
cannam@150 61 }
cannam@150 62 };
cannam@150 63 ...
cannam@150 64 string encoded;
cannam@150 65 bn::impl::encode<b8_custom>(in.begin(), in.end(), back_inserter(encoded));
cannam@150 66 bn::impl::decode<b8_custom>(encoded.begin(), encoded.end(), ostream_iterator<char>(cout, ""));
cannam@150 67 ```
cannam@150 68
cannam@150 69 For a full working example, see `basen_example.cpp` file in `example` directory.