converters.qbk 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. [/
  2. Copyright (c) Vladimir Batov 2009-2016
  3. Distributed under the Boost Software License, Version 1.0.
  4. See copy at http://www.boost.org/LICENSE_1_0.txt.
  5. ]
  6. [section:converters Converters]
  7. [import ../test/callable.cpp]
  8. The `boost::convert()` API plays its role by providing a ['uniform interface] and ensuring ['consistent behavior]. However, it is the respective converter which does the hard work of actual type conversion\/transformation.
  9. ['Boost.Convert] design reflects the fact that no one converter is to satisfy all imaginable conversion\/transformation-related user requirements. Consequently, ['extendibility] and ['converter pluggability] are important properties of ['Boost.Convert]. The library provides several converters for common type conversions with varying degrees of formatting support and performance. However, it is an expectation that more generic-purpose and custom-specific converters are to be written and deployed with ['Boost.Convert].
  10. For a converter to be plugged in to the ['Boost.Convert] framework it needs to be a ['callable] with one of the signatures:
  11. template<typename TypeOut, typename TypeIn>
  12. void operator()(TypeIn const& value_in, boost::optional<TypeOut>& result_out) const;
  13. template<typename TypeOut, typename TypeIn>
  14. void operator()(TypeIn value_in, boost::optional<TypeOut>& result_out) const;
  15. if that is a general-purpose converter capable of handling many types (like string-to-type and type-to-string conversions). Alternatively, a purpose-built custom converter might only care to provide
  16. void operator()(TypeIn const&, boost::optional<TypeOut>&) const;
  17. if its sole purpose is to handle one specific conversion\/transformation of ['TypeIn] to ['TypeOut]. For example, a converter from the operating-system-specific MBCS string format to the UCS-2 or UCS-4 (depending on `wchar_t` size) might be one such example:
  18. void operator()(std::string const&, boost::optional<std::wstring>&) const;
  19. Alternatively again, an ad-hoc in-place ['callable] might be provided as a converter. For example,
  20. [getting_started_using]
  21. [callable_example3]
  22. or an old-fashioned function:
  23. [callable_example1]
  24. [callable_example2]
  25. With regard to converters the ['Boost.Convert] framework has been designed with the following requirement in mind:
  26. [note Converters shall be independent from and must not rely on the ['Boost.Convert] infrastructure.]
  27. [heading Implicit ['TypeIn] Promotions and Conversions]
  28. It is worth remembering that ['TypeIn] in the signature should be interpreted in the context of the potential implicit type promotions and conversions allowed ['by the language]. For example, depending on the context the `take_double` and `take_int` converters below might not do what is expected of them due to implicit ['int-to-double] promotion and value-destroying ['double-to-int] conversion applied ['by the compiler]:
  29. [callable_example4]
  30. [callable_example5]
  31. `boost::convert()` API does not modify ['TypeIn] or interpret it in any way. The passed-in value and its type are delivered to the underlying converter as-is. Consequently, if potential implicit type promotions and conversions are not desirable, then it is the converter's responsibility to address that issue. For example, one way to disable implicit conversions might be:
  32. [callable_example6]
  33. [callable_example7]
  34. [endsect]