hex.hpp 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. /*
  2. Copyright (c) Marshall Clow 2011-2012.
  3. Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. Thanks to Nevin for his comments/help.
  6. */
  7. /*
  8. General problem - turn a sequence of integral types into a sequence of hexadecimal characters.
  9. - and back.
  10. */
  11. /// \file hex.hpp
  12. /// \brief Convert sequence of integral types into a sequence of hexadecimal
  13. /// characters and back. Based on the MySQL functions HEX and UNHEX
  14. /// \author Marshall Clow
  15. #ifndef BOOST_ALGORITHM_HEXHPP
  16. #define BOOST_ALGORITHM_HEXHPP
  17. #include <iterator> // for std::iterator_traits
  18. #include <stdexcept>
  19. #include <boost/range/begin.hpp>
  20. #include <boost/range/end.hpp>
  21. #include <boost/exception/all.hpp>
  22. #include <boost/utility/enable_if.hpp>
  23. #include <boost/type_traits/is_integral.hpp>
  24. namespace boost { namespace algorithm {
  25. /*!
  26. \struct hex_decode_error
  27. \brief Base exception class for all hex decoding errors
  28. */ /*!
  29. \struct non_hex_input
  30. \brief Thrown when a non-hex value (0-9, A-F) encountered when decoding.
  31. Contains the offending character
  32. */ /*!
  33. \struct not_enough_input
  34. \brief Thrown when the input sequence unexpectedly ends
  35. */
  36. struct hex_decode_error : virtual boost::exception, virtual std::exception {};
  37. struct not_enough_input : virtual hex_decode_error {};
  38. struct non_hex_input : virtual hex_decode_error {};
  39. typedef boost::error_info<struct bad_char_,char> bad_char;
  40. namespace detail {
  41. /// \cond DOXYGEN_HIDE
  42. template <typename T, typename OutputIterator>
  43. OutputIterator encode_one ( T val, OutputIterator out ) {
  44. const std::size_t num_hex_digits = 2 * sizeof ( T );
  45. char res [ num_hex_digits ];
  46. char *p = res + num_hex_digits;
  47. for ( std::size_t i = 0; i < num_hex_digits; ++i, val >>= 4 )
  48. *--p = "0123456789ABCDEF" [ val & 0x0F ];
  49. return std::copy ( res, res + num_hex_digits, out );
  50. }
  51. template <typename T>
  52. unsigned char hex_char_to_int ( T val ) {
  53. char c = static_cast<char> ( val );
  54. unsigned retval = 0;
  55. if ( c >= '0' && c <= '9' ) retval = c - '0';
  56. else if ( c >= 'A' && c <= 'F' ) retval = c - 'A' + 10;
  57. else if ( c >= 'a' && c <= 'f' ) retval = c - 'a' + 10;
  58. else BOOST_THROW_EXCEPTION (non_hex_input() << bad_char (c));
  59. return retval;
  60. }
  61. // My own iterator_traits class.
  62. // It is here so that I can "reach inside" some kinds of output iterators
  63. // and get the type to write.
  64. template <typename Iterator>
  65. struct hex_iterator_traits {
  66. typedef typename std::iterator_traits<Iterator>::value_type value_type;
  67. };
  68. template<typename Container>
  69. struct hex_iterator_traits< std::back_insert_iterator<Container> > {
  70. typedef typename Container::value_type value_type;
  71. };
  72. template<typename Container>
  73. struct hex_iterator_traits< std::front_insert_iterator<Container> > {
  74. typedef typename Container::value_type value_type;
  75. };
  76. template<typename Container>
  77. struct hex_iterator_traits< std::insert_iterator<Container> > {
  78. typedef typename Container::value_type value_type;
  79. };
  80. // ostream_iterators have three template parameters.
  81. // The first one is the output type, the second one is the character type of
  82. // the underlying stream, the third is the character traits.
  83. // We only care about the first one.
  84. template<typename T, typename charType, typename traits>
  85. struct hex_iterator_traits< std::ostream_iterator<T, charType, traits> > {
  86. typedef T value_type;
  87. };
  88. template <typename Iterator>
  89. bool iter_end ( Iterator current, Iterator last ) { return current == last; }
  90. template <typename T>
  91. bool ptr_end ( const T* ptr, const T* /*end*/ ) { return *ptr == '\0'; }
  92. // What can we assume here about the inputs?
  93. // is std::iterator_traits<InputIterator>::value_type always 'char' ?
  94. // Could it be wchar_t, say? Does it matter?
  95. // We are assuming ASCII for the values - but what about the storage?
  96. template <typename InputIterator, typename OutputIterator, typename EndPred>
  97. typename boost::enable_if<boost::is_integral<typename hex_iterator_traits<OutputIterator>::value_type>, OutputIterator>::type
  98. decode_one ( InputIterator &first, InputIterator last, OutputIterator out, EndPred pred ) {
  99. typedef typename hex_iterator_traits<OutputIterator>::value_type T;
  100. T res (0);
  101. // Need to make sure that we get can read that many chars here.
  102. for ( std::size_t i = 0; i < 2 * sizeof ( T ); ++i, ++first ) {
  103. if ( pred ( first, last ))
  104. BOOST_THROW_EXCEPTION (not_enough_input ());
  105. res = ( 16 * res ) + hex_char_to_int (*first);
  106. }
  107. *out = res;
  108. return ++out;
  109. }
  110. /// \endcond
  111. }
  112. /// \fn hex ( InputIterator first, InputIterator last, OutputIterator out )
  113. /// \brief Converts a sequence of integral types into a hexadecimal sequence of characters.
  114. ///
  115. /// \param first The start of the input sequence
  116. /// \param last One past the end of the input sequence
  117. /// \param out An output iterator to the results into
  118. /// \return The updated output iterator
  119. /// \note Based on the MySQL function of the same name
  120. template <typename InputIterator, typename OutputIterator>
  121. typename boost::enable_if<boost::is_integral<typename detail::hex_iterator_traits<InputIterator>::value_type>, OutputIterator>::type
  122. hex ( InputIterator first, InputIterator last, OutputIterator out ) {
  123. for ( ; first != last; ++first )
  124. out = detail::encode_one ( *first, out );
  125. return out;
  126. }
  127. /// \fn hex ( const T *ptr, OutputIterator out )
  128. /// \brief Converts a sequence of integral types into a hexadecimal sequence of characters.
  129. ///
  130. /// \param ptr A pointer to a 0-terminated sequence of data.
  131. /// \param out An output iterator to the results into
  132. /// \return The updated output iterator
  133. /// \note Based on the MySQL function of the same name
  134. template <typename T, typename OutputIterator>
  135. typename boost::enable_if<boost::is_integral<T>, OutputIterator>::type
  136. hex ( const T *ptr, OutputIterator out ) {
  137. while ( *ptr )
  138. out = detail::encode_one ( *ptr++, out );
  139. return out;
  140. }
  141. /// \fn hex ( const Range &r, OutputIterator out )
  142. /// \brief Converts a sequence of integral types into a hexadecimal sequence of characters.
  143. ///
  144. /// \param r The input range
  145. /// \param out An output iterator to the results into
  146. /// \return The updated output iterator
  147. /// \note Based on the MySQL function of the same name
  148. template <typename Range, typename OutputIterator>
  149. typename boost::enable_if<boost::is_integral<typename detail::hex_iterator_traits<typename Range::iterator>::value_type>, OutputIterator>::type
  150. hex ( const Range &r, OutputIterator out ) {
  151. return hex (boost::begin(r), boost::end(r), out);
  152. }
  153. /// \fn unhex ( InputIterator first, InputIterator last, OutputIterator out )
  154. /// \brief Converts a sequence of hexadecimal characters into a sequence of integers.
  155. ///
  156. /// \param first The start of the input sequence
  157. /// \param last One past the end of the input sequence
  158. /// \param out An output iterator to the results into
  159. /// \return The updated output iterator
  160. /// \note Based on the MySQL function of the same name
  161. template <typename InputIterator, typename OutputIterator>
  162. OutputIterator unhex ( InputIterator first, InputIterator last, OutputIterator out ) {
  163. while ( first != last )
  164. out = detail::decode_one ( first, last, out, detail::iter_end<InputIterator> );
  165. return out;
  166. }
  167. /// \fn unhex ( const T *ptr, OutputIterator out )
  168. /// \brief Converts a sequence of hexadecimal characters into a sequence of integers.
  169. ///
  170. /// \param ptr A pointer to a null-terminated input sequence.
  171. /// \param out An output iterator to the results into
  172. /// \return The updated output iterator
  173. /// \note Based on the MySQL function of the same name
  174. template <typename T, typename OutputIterator>
  175. OutputIterator unhex ( const T *ptr, OutputIterator out ) {
  176. // If we run into the terminator while decoding, we will throw a
  177. // malformed input exception. It would be nicer to throw a 'Not enough input'
  178. // exception - but how much extra work would that require?
  179. while ( *ptr )
  180. out = detail::decode_one ( ptr, (const T *) NULL, out, detail::ptr_end<T> );
  181. return out;
  182. }
  183. /// \fn OutputIterator unhex ( const Range &r, OutputIterator out )
  184. /// \brief Converts a sequence of hexadecimal characters into a sequence of integers.
  185. ///
  186. /// \param r The input range
  187. /// \param out An output iterator to the results into
  188. /// \return The updated output iterator
  189. /// \note Based on the MySQL function of the same name
  190. template <typename Range, typename OutputIterator>
  191. OutputIterator unhex ( const Range &r, OutputIterator out ) {
  192. return unhex (boost::begin(r), boost::end(r), out);
  193. }
  194. /// \fn String hex ( const String &input )
  195. /// \brief Converts a sequence of integral types into a hexadecimal sequence of characters.
  196. ///
  197. /// \param input A container to be converted
  198. /// \return A container with the encoded text
  199. template<typename String>
  200. String hex ( const String &input ) {
  201. String output;
  202. output.reserve (input.size () * (2 * sizeof (typename String::value_type)));
  203. (void) hex (input, std::back_inserter (output));
  204. return output;
  205. }
  206. /// \fn String unhex ( const String &input )
  207. /// \brief Converts a sequence of hexadecimal characters into a sequence of characters.
  208. ///
  209. /// \param input A container to be converted
  210. /// \return A container with the decoded text
  211. template<typename String>
  212. String unhex ( const String &input ) {
  213. String output;
  214. output.reserve (input.size () / (2 * sizeof (typename String::value_type)));
  215. (void) unhex (input, std::back_inserter (output));
  216. return output;
  217. }
  218. }}
  219. #endif // BOOST_ALGORITHM_HEXHPP