/usr/include/boost/convert.hpp is in libboost1.62-dev 1.62.0+dfsg-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | /// @file
// Boost.Convert
// Copyright (c) 2009-2014 Vladimir Batov.
//
// Many thanks to Julian Gonggrijp, Rob Stewart, Andrzej Krzemienski, Matus Chochlik, Jeroen Habraken,
// Hartmut Kaiser, Joel De Guzman, Thijs (M.A.) van den Berg, Roland Bock, Gavin Lambert, Paul Bristow,
// Alex Hagen-Zanker, Christopher Kormanyos for taking part in the Boost.Convert review.
//
// Special thanks to:
//
// 1. Alex Hagen-Zanker, Roland Bock, Rob Stewart for their considerable contributions to the design
// and implementation of the library;
// 2. Andrzej Krzemienski for helping to partition responsibilities and to ultimately pave
// the way for the boost::optional and future std::tr2::optional deployment;
// 3. Edward Diener the Boost Review Manager for helping with the converters' design, his continuous
// involvement, technical and administrative help, guidance and advice;
// 4. Joel De Guzman, Rob Stewart and Alex Hagen-Zanker for making sure the performance tests work
// as they should;
// 5. Paul Bristow for helping great deal with the documentation;
// 6. Kevlin Henney and Dave Abrahams for their lexical_cast-related insights and explanations.
//
// Use, modification and distribution are subject to the Boost Software License,
// Version 1.0. See http://www.boost.org/LICENSE_1_0.txt.
#ifndef BOOST_CONVERT_HPP
#define BOOST_CONVERT_HPP
#include <boost/convert/detail/is_fun.hpp>
#include <boost/ref.hpp>
namespace boost
{
namespace detail { enum throw_on_failure {}; }
/// @details The boost::throw_on_failure is the name of an object of the
/// boost::detail::throw_on_failure type that is used to indicate
/// desired exception-throwing behavior.
detail::throw_on_failure const throw_on_failure = detail::throw_on_failure(0);
namespace cnv
{
template<typename, typename, typename> struct reference;
struct by_default;
}
/// @brief Boost.Convert main deployment interface
/// @param[in] value_in Value of the TypeIn type to be converted to the TyeOut type
/// @param[in] converter Converter to be used for conversion
/// @return boost::optional<TypeOut> result of conversion together with the indication of
/// success or failure of the conversion request.
/// @details For example,
/// @code
/// boost::cnv::cstream cnv;
///
/// boost::optional<int> i = boost::convert<int>("12", cnv);
/// boost::optional<string> s = boost::convert<string>(123.456, cnv);
/// @endcode
template<typename TypeOut, typename TypeIn, typename Converter>
boost::optional<TypeOut>
convert(TypeIn const& value_in, Converter const& converter)
{
optional<TypeOut> result;
boost::unwrap_ref(converter)(value_in, result);
return result;
}
namespace cnv { namespace detail
{
template<typename TypeOut, typename TypeIn, typename Converter =boost::cnv::by_default>
struct delayed_resolution
{
static optional<TypeOut> convert(TypeIn const& value_in)
{
return boost::convert<TypeOut>(value_in, Converter());
}
};
}}
/// @brief Boost.Convert deployment interface with the default converter
/// @details For example,
/// @code
/// struct boost::cnv::by_default : public boost::cnv::cstream {};
///
/// // boost::cnv::cstream (through boost::cnv::by_default) is deployed
/// // as the default converter when no converter is provided explicitly.
/// boost::optional<int> i = boost::convert<int>("12");
/// boost::optional<string> s = boost::convert<string>(123.456);
/// @endcode
template<typename TypeOut, typename TypeIn>
boost::optional<TypeOut>
convert(TypeIn const& value_in)
{
return cnv::detail::delayed_resolution<TypeOut, TypeIn>::convert(value_in);
}
}
namespace boost
{
/// @brief Boost.Convert non-optional deployment interface
template<typename TypeOut, typename TypeIn, typename Converter>
TypeOut
convert(TypeIn const& value_in, Converter const& converter, boost::detail::throw_on_failure)
{
return convert<TypeOut>(value_in, converter).value();
}
template<typename TypeOut, typename TypeIn, typename Converter, typename Fallback>
typename enable_if<is_convertible<Fallback, TypeOut>, TypeOut>::type
convert(TypeIn const& value_in, Converter const& converter, Fallback const& fallback)
{
return convert<TypeOut>(value_in, converter).value_or(fallback);
}
template<typename TypeOut, typename TypeIn, typename Converter, typename Fallback>
typename enable_if<cnv::is_fun<Fallback, TypeOut>, TypeOut>::type
convert(TypeIn const& value_in, Converter const& converter, Fallback fallback)
{
return convert<TypeOut>(value_in, converter).value_or_eval(fallback);
}
}
namespace boost { namespace cnv
{
template<typename Converter, typename TypeOut, typename TypeIn>
struct reference
{
typedef reference this_type;
reference(Converter const& cnv) : converter_(cnv) {}
#ifdef BOOST_CONVERT_CXX11
reference(Converter&& cnv) : converter_(std::move(cnv)) {}
#endif
this_type&
value_or(TypeOut const& fallback)
{
return (fallback_ = fallback, *this);
}
TypeOut
operator()(TypeIn const& value_in)
{
optional<TypeOut> result = convert<TypeOut>(value_in, converter_);
return result ? result.get() : fallback_.value();
}
private:
Converter converter_;
optional<TypeOut> fallback_;
};
template<typename Converter, typename TypeOut>
struct reference<Converter, TypeOut, void>
{
typedef reference this_type;
reference(Converter const& cnv) : converter_(cnv) {}
#ifdef BOOST_CONVERT_CXX11
reference(Converter&& cnv) : converter_(std::move(cnv)) {}
#endif
this_type&
value_or(TypeOut const& fallback)
{
return (fallback_ = fallback, *this);
}
template<typename TypeIn>
TypeOut
operator()(TypeIn const& value_in)
{
optional<TypeOut> result = convert<TypeOut>(value_in, converter_);
return result ? result.get() : fallback_.value();
}
private:
Converter converter_;
optional<TypeOut> fallback_;
};
/// @brief Boost.Convert deployment interface with algorithms
/// @details For example,
/// @code
/// boost::array<char const*, 3> strs = {{ " 5", "0XF", "not an int" }};
/// std::vector<int> ints;
/// boost::cnv::cstream cnv;
///
/// cnv(std::hex)(std::skipws);
///
/// std::transform(
/// strs.begin(),
/// strs.end(),
/// std::back_inserter(ints),
/// boost::cnv::apply<int>(boost::cref(cnv)).value_or(-1));
/// @endcode
template<typename TypeOut, typename TypeIn, typename Converter>
reference<Converter, TypeOut, TypeIn>
apply(Converter const& cnv)
{
return cnv::reference<Converter, TypeOut, TypeIn>(cnv);
}
template<typename TypeOut, typename Converter>
reference<Converter, TypeOut, void>
apply(Converter const& cnv)
{
return cnv::reference<Converter, TypeOut, void>(cnv);
}
}}
#endif // BOOST_CONVERT_HPP
|