123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325 |
- /*
- * Copyright Andrey Semashev 2007 - 2015.
- * Distributed under the Boost Software License, Version 1.0.
- * (See accompanying file LICENSE_1_0.txt or copy at
- * http://www.boost.org/LICENSE_1_0.txt)
- */
- /*!
- * \file severity_logger.hpp
- * \author Andrey Semashev
- * \date 08.03.2007
- *
- * The header contains implementation of a logger with severity level support.
- */
- #ifndef BOOST_LOG_SOURCES_SEVERITY_LOGGER_HPP_INCLUDED_
- #define BOOST_LOG_SOURCES_SEVERITY_LOGGER_HPP_INCLUDED_
- #include <boost/log/detail/config.hpp>
- #if !defined(BOOST_LOG_NO_THREADS)
- #include <boost/log/detail/light_rw_mutex.hpp>
- #endif // !defined(BOOST_LOG_NO_THREADS)
- #include <boost/log/sources/features.hpp>
- #include <boost/log/sources/basic_logger.hpp>
- #include <boost/log/sources/threading_models.hpp>
- #include <boost/log/sources/severity_feature.hpp>
- #include <boost/log/keywords/severity.hpp>
- #include <boost/log/detail/header.hpp>
- #ifdef BOOST_HAS_PRAGMA_ONCE
- #pragma once
- #endif
- namespace boost {
- BOOST_LOG_OPEN_NAMESPACE
- namespace sources {
- #ifndef BOOST_LOG_DOXYGEN_PASS
- #ifdef BOOST_LOG_USE_CHAR
- //! Narrow-char logger with severity level support
- template< typename LevelT = int >
- class severity_logger :
- public basic_composite_logger<
- char,
- severity_logger< LevelT >,
- single_thread_model,
- features< severity< LevelT > >
- >
- {
- typedef typename severity_logger::logger_base base_type;
- public:
- BOOST_LOG_FORWARD_LOGGER_MEMBERS_TEMPLATE(severity_logger)
- explicit severity_logger(LevelT level) : base_type(keywords::severity = level)
- {
- }
- };
- #if !defined(BOOST_LOG_NO_THREADS)
- //! Narrow-char thread-safe logger with severity level support
- template< typename LevelT = int >
- class severity_logger_mt :
- public basic_composite_logger<
- char,
- severity_logger_mt< LevelT >,
- multi_thread_model< boost::log::aux::light_rw_mutex >,
- features< severity< LevelT > >
- >
- {
- typedef typename severity_logger_mt::logger_base base_type;
- public:
- BOOST_LOG_FORWARD_LOGGER_MEMBERS_TEMPLATE(severity_logger_mt)
- explicit severity_logger_mt(LevelT level) : base_type(keywords::severity = level)
- {
- }
- };
- #endif // !defined(BOOST_LOG_NO_THREADS)
- #endif
- #ifdef BOOST_LOG_USE_WCHAR_T
- //! Wide-char logger with severity level support
- template< typename LevelT = int >
- class wseverity_logger :
- public basic_composite_logger<
- wchar_t,
- wseverity_logger< LevelT >,
- single_thread_model,
- features< severity< LevelT > >
- >
- {
- typedef typename wseverity_logger::logger_base base_type;
- public:
- BOOST_LOG_FORWARD_LOGGER_MEMBERS_TEMPLATE(wseverity_logger)
- explicit wseverity_logger(LevelT level) : base_type(keywords::severity = level)
- {
- }
- };
- #if !defined(BOOST_LOG_NO_THREADS)
- //! Wide-char thread-safe logger with severity level support
- template< typename LevelT = int >
- class wseverity_logger_mt :
- public basic_composite_logger<
- wchar_t,
- wseverity_logger_mt< LevelT >,
- multi_thread_model< boost::log::aux::light_rw_mutex >,
- features< severity< LevelT > >
- >
- {
- typedef typename wseverity_logger_mt::logger_base base_type;
- public:
- BOOST_LOG_FORWARD_LOGGER_MEMBERS_TEMPLATE(wseverity_logger_mt)
- explicit wseverity_logger_mt(LevelT level) : base_type(keywords::severity = level)
- {
- }
- };
- #endif // !defined(BOOST_LOG_NO_THREADS)
- #endif
- #else // BOOST_LOG_DOXYGEN_PASS
- /*!
- * \brief Narrow-char logger. Functionally equivalent to \c basic_severity_logger.
- *
- * See \c severity class template for a more detailed description
- */
- template< typename LevelT = int >
- class severity_logger :
- public basic_composite_logger<
- char,
- severity_logger< LevelT >,
- single_thread_model,
- features< severity< LevelT > >
- >
- {
- public:
- /*!
- * Default constructor
- */
- severity_logger();
- /*!
- * Copy constructor
- */
- severity_logger(severity_logger const& that);
- /*!
- * Constructor with named arguments
- */
- template< typename... ArgsT >
- explicit severity_logger(ArgsT... const& args);
- /*!
- * The constructor creates the logger with the specified default severity level
- *
- * \param level The default severity level
- */
- explicit severity_logger(LevelT level);
- /*!
- * Assignment operator
- */
- severity_logger& operator= (severity_logger const& that)
- /*!
- * Swaps two loggers
- */
- void swap(severity_logger& that);
- };
- /*!
- * \brief Narrow-char thread-safe logger. Functionally equivalent to \c basic_severity_logger.
- *
- * See \c severity class template for a more detailed description
- */
- template< typename LevelT = int >
- class severity_logger_mt :
- public basic_composite_logger<
- char,
- severity_logger_mt< LevelT >,
- multi_thread_model< implementation_defined >,
- features< severity< LevelT > >
- >
- {
- public:
- /*!
- * Default constructor
- */
- severity_logger_mt();
- /*!
- * Copy constructor
- */
- severity_logger_mt(severity_logger_mt const& that);
- /*!
- * Constructor with named arguments
- */
- template< typename... ArgsT >
- explicit severity_logger_mt(ArgsT... const& args);
- /*!
- * The constructor creates the logger with the specified default severity level
- *
- * \param level The default severity level
- */
- explicit severity_logger_mt(LevelT level);
- /*!
- * Assignment operator
- */
- severity_logger_mt& operator= (severity_logger_mt const& that)
- /*!
- * Swaps two loggers
- */
- void swap(severity_logger_mt& that);
- };
- /*!
- * \brief Wide-char logger. Functionally equivalent to \c basic_severity_logger.
- *
- * See \c severity class template for a more detailed description
- */
- template< typename LevelT = int >
- class wseverity_logger :
- public basic_composite_logger<
- wchar_t,
- wseverity_logger< LevelT >,
- single_thread_model,
- features< severity< LevelT > >
- >
- {
- public:
- /*!
- * Default constructor
- */
- wseverity_logger();
- /*!
- * Copy constructor
- */
- wseverity_logger(wseverity_logger const& that);
- /*!
- * Constructor with named arguments
- */
- template< typename... ArgsT >
- explicit wseverity_logger(ArgsT... const& args);
- /*!
- * The constructor creates the logger with the specified default severity level
- *
- * \param level The default severity level
- */
- explicit wseverity_logger(LevelT level);
- /*!
- * Assignment operator
- */
- wseverity_logger& operator= (wseverity_logger const& that)
- /*!
- * Swaps two loggers
- */
- void swap(wseverity_logger& that);
- };
- /*!
- * \brief Wide-char thread-safe logger. Functionally equivalent to \c basic_severity_logger.
- *
- * See \c severity class template for a more detailed description
- */
- template< typename LevelT = int >
- class wseverity_logger_mt :
- public basic_composite_logger<
- wchar_t,
- wseverity_logger_mt< LevelT >,
- multi_thread_model< implementation_defined >,
- features< severity< LevelT > >
- >
- {
- public:
- /*!
- * Default constructor
- */
- wseverity_logger_mt();
- /*!
- * Copy constructor
- */
- wseverity_logger_mt(wseverity_logger_mt const& that);
- /*!
- * Constructor with named arguments
- */
- template< typename... ArgsT >
- explicit wseverity_logger_mt(ArgsT... const& args);
- /*!
- * The constructor creates the logger with the specified default severity level
- *
- * \param level The default severity level
- */
- explicit wseverity_logger_mt(LevelT level);
- /*!
- * Assignment operator
- */
- wseverity_logger_mt& operator= (wseverity_logger_mt const& that)
- /*!
- * Swaps two loggers
- */
- void swap(wseverity_logger_mt& that);
- };
- #endif // BOOST_LOG_DOXYGEN_PASS
- } // namespace sources
- BOOST_LOG_CLOSE_NAMESPACE // namespace log
- } // namespace boost
- #include <boost/log/detail/footer.hpp>
- #endif // BOOST_LOG_SOURCES_SEVERITY_LOGGER_HPP_INCLUDED_
|