printf.hpp 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. // Copyright (c) 2009-2014 Vladimir Batov.
  2. // Use, modification and distribution are subject to the Boost Software License,
  3. // Version 1.0. See http://www.boost.org/LICENSE_1_0.txt.
  4. #ifndef BOOST_CONVERT_PRINTF_HPP
  5. #define BOOST_CONVERT_PRINTF_HPP
  6. #include <boost/convert/base.hpp>
  7. #include <boost/make_default.hpp>
  8. #include <boost/mpl/vector.hpp>
  9. #include <boost/mpl/find.hpp>
  10. #include <boost/range/as_literal.hpp>
  11. #include <string>
  12. #include <cstdio>
  13. namespace boost { namespace cnv
  14. {
  15. struct printf;
  16. }}
  17. struct boost::cnv::printf : public boost::cnv::cnvbase<boost::cnv::printf>
  18. {
  19. typedef boost::cnv::printf this_type;
  20. typedef boost::cnv::cnvbase<this_type> base_type;
  21. using base_type::operator();
  22. template<typename in_type>
  23. cnv::range<char*>
  24. to_str(in_type value_in, char* buf) const
  25. {
  26. char const* fmt = pformat(pos<in_type>());
  27. int const num_chars = snprintf(buf, bufsize_, fmt, precision_, value_in);
  28. bool const success = num_chars < bufsize_;
  29. return cnv::range<char*>(buf, success ? (buf + num_chars) : buf);
  30. }
  31. template<typename string_type, typename out_type>
  32. void
  33. str_to(cnv::range<string_type> range, optional<out_type>& result_out) const
  34. {
  35. out_type result = boost::make_default<out_type>();
  36. int const num_read = sscanf(&*range.begin(), format(pos<out_type>()), &result);
  37. if (num_read == 1)
  38. result_out = result;
  39. }
  40. private:
  41. template<typename Type> int pos() const
  42. {
  43. typedef boost::mpl::vector<double, float,
  44. int, unsigned int,
  45. short int, unsigned short int,
  46. long int, unsigned long int
  47. > managed_types;
  48. typedef typename boost::mpl::find<managed_types, Type>::type type_iterator;
  49. typedef typename type_iterator::pos type_pos;
  50. return type_pos::value;
  51. }
  52. char const* pformat(int pos) const
  53. {
  54. static char const* d_format[] = { "%.*f", "%.*f", "%.*d", "%.*u", "%.*hd", "%.*hu", "%.*ld", "%.*lu" }; // Must match managed_types
  55. static char const* x_format[] = { "%.*f", "%.*f", "%.*x", "%.*x", "%.*hx", "%.*hx", "%.*lx", "%.*lx" }; // Must match managed_types
  56. static char const* o_format[] = { "%.*f", "%.*f", "%.*o", "%.*o", "%.*ho", "%.*ho", "%.*lo", "%.*lo" }; // Must match managed_types
  57. char const* format = base_ == 10 ? d_format[pos]
  58. : base_ == 16 ? x_format[pos]
  59. : base_ == 8 ? o_format[pos]
  60. : (BOOST_ASSERT(0), (char const*) 0);
  61. return format;
  62. }
  63. char const* format(int pos) const
  64. {
  65. static char const* d_format[] = { "%f", "%f", "%d", "%u", "%hd", "%hu", "%ld", "%lu" }; // Must match managed_types
  66. static char const* x_format[] = { "%f", "%f", "%x", "%x", "%hx", "%hx", "%lx", "%lx" }; // Must match managed_types
  67. static char const* o_format[] = { "%f", "%f", "%o", "%o", "%ho", "%ho", "%lo", "%lo" }; // Must match managed_types
  68. char const* format = base_ == 10 ? d_format[pos]
  69. : base_ == 16 ? x_format[pos]
  70. : base_ == 8 ? o_format[pos]
  71. : (BOOST_ASSERT(0), (char const*) 0);
  72. return format;
  73. }
  74. };
  75. #endif // BOOST_CONVERT_PRINTF_HPP