constant.hpp 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*
  2. * Copyright Andrey Semashev 2007 - 2015.
  3. * Distributed under the Boost Software License, Version 1.0.
  4. * (See accompanying file LICENSE_1_0.txt or copy at
  5. * http://www.boost.org/LICENSE_1_0.txt)
  6. */
  7. /*!
  8. * \file constant.hpp
  9. * \author Andrey Semashev
  10. * \date 15.04.2007
  11. *
  12. * The header contains implementation of a constant attribute.
  13. */
  14. #ifndef BOOST_LOG_ATTRIBUTES_CONSTANT_HPP_INCLUDED_
  15. #define BOOST_LOG_ATTRIBUTES_CONSTANT_HPP_INCLUDED_
  16. #include <boost/move/core.hpp>
  17. #include <boost/move/utility_core.hpp>
  18. #include <boost/type_traits/remove_reference.hpp>
  19. #include <boost/log/detail/config.hpp>
  20. #include <boost/log/detail/embedded_string_type.hpp>
  21. #include <boost/log/attributes/attribute.hpp>
  22. #include <boost/log/attributes/attribute_cast.hpp>
  23. #include <boost/log/attributes/attribute_value_impl.hpp>
  24. #include <boost/log/detail/header.hpp>
  25. #ifdef BOOST_HAS_PRAGMA_ONCE
  26. #pragma once
  27. #endif
  28. namespace boost {
  29. BOOST_LOG_OPEN_NAMESPACE
  30. namespace attributes {
  31. /*!
  32. * \brief A class of an attribute that holds a single constant value
  33. *
  34. * The constant is a simplest and one of the most frequently used types of attributes.
  35. * It stores a constant value, which it eventually returns as its value each time
  36. * requested.
  37. */
  38. template< typename T >
  39. class constant :
  40. public attribute
  41. {
  42. public:
  43. //! Attribute value type
  44. typedef T value_type;
  45. protected:
  46. //! Factory implementation
  47. class BOOST_SYMBOL_VISIBLE impl :
  48. public attribute_value_impl< value_type >
  49. {
  50. //! Base type
  51. typedef attribute_value_impl< value_type > base_type;
  52. public:
  53. /*!
  54. * Constructor with the stored value initialization
  55. */
  56. explicit impl(value_type const& value) : base_type(value) {}
  57. /*!
  58. * Constructor with the stored value initialization
  59. */
  60. explicit impl(BOOST_RV_REF(value_type) value) : base_type(boost::move(value)) {}
  61. };
  62. public:
  63. /*!
  64. * Constructor with the stored value initialization
  65. */
  66. explicit constant(value_type const& value) : attribute(new impl(value)) {}
  67. /*!
  68. * Constructor with the stored value initialization
  69. */
  70. explicit constant(BOOST_RV_REF(value_type) value) : attribute(new impl(boost::move(value))) {}
  71. /*!
  72. * Constructor for casting support
  73. */
  74. explicit constant(cast_source const& source) : attribute(source.as< impl >())
  75. {
  76. }
  77. /*!
  78. * \return Reference to the contained value.
  79. */
  80. value_type const& get() const
  81. {
  82. return static_cast< impl* >(this->get_impl())->get();
  83. }
  84. };
  85. /*!
  86. * The function constructs a \c constant attribute containing the provided value.
  87. * The function automatically converts C string arguments to \c std::basic_string objects.
  88. */
  89. template< typename T >
  90. inline constant<
  91. typename boost::log::aux::make_embedded_string_type<
  92. typename remove_reference< T >::type
  93. >::type
  94. > make_constant(BOOST_FWD_REF(T) val)
  95. {
  96. typedef typename boost::log::aux::make_embedded_string_type<
  97. typename remove_reference< T >::type
  98. >::type value_type;
  99. return constant< value_type >(boost::forward< T >(val));
  100. }
  101. } // namespace attributes
  102. BOOST_LOG_CLOSE_NAMESPACE // namespace log
  103. } // namespace boost
  104. #include <boost/log/detail/footer.hpp>
  105. #endif // BOOST_LOG_ATTRIBUTES_CONSTANT_HPP_INCLUDED_