file.hpp 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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 file.hpp
  9. * \author Andrey Semashev
  10. * \date 16.05.2008
  11. *
  12. * The header contains implementation of convenience functions for enabling logging to a file.
  13. */
  14. #ifndef BOOST_LOG_UTILITY_SETUP_FILE_HPP_INCLUDED_
  15. #define BOOST_LOG_UTILITY_SETUP_FILE_HPP_INCLUDED_
  16. #include <boost/type_traits/is_void.hpp>
  17. #include <boost/smart_ptr/shared_ptr.hpp>
  18. #include <boost/smart_ptr/make_shared_object.hpp>
  19. #include <boost/parameter/parameters.hpp> // for is_named_argument
  20. #include <boost/preprocessor/control/expr_if.hpp>
  21. #include <boost/preprocessor/comparison/greater.hpp>
  22. #include <boost/preprocessor/punctuation/comma_if.hpp>
  23. #include <boost/preprocessor/repetition/enum_params.hpp>
  24. #include <boost/preprocessor/repetition/enum_binary_params.hpp>
  25. #include <boost/preprocessor/repetition/enum_shifted_params.hpp>
  26. #include <boost/preprocessor/repetition/repeat_from_to.hpp>
  27. #include <boost/log/detail/config.hpp>
  28. #include <boost/log/detail/sink_init_helpers.hpp>
  29. #include <boost/log/detail/parameter_tools.hpp>
  30. #include <boost/log/core/core.hpp>
  31. #ifndef BOOST_LOG_NO_THREADS
  32. #include <boost/log/sinks/sync_frontend.hpp>
  33. #else
  34. #include <boost/log/sinks/unlocked_frontend.hpp>
  35. #endif
  36. #include <boost/log/sinks/text_file_backend.hpp>
  37. #include <boost/log/keywords/scan_method.hpp>
  38. #include <boost/log/detail/header.hpp>
  39. #ifdef BOOST_HAS_PRAGMA_ONCE
  40. #pragma once
  41. #endif
  42. #ifndef BOOST_LOG_DOXYGEN_PASS
  43. #ifndef BOOST_LOG_NO_THREADS
  44. #define BOOST_LOG_FILE_SINK_FRONTEND_INTERNAL sinks::synchronous_sink
  45. #else
  46. #define BOOST_LOG_FILE_SINK_FRONTEND_INTERNAL sinks::unlocked_sink
  47. #endif
  48. #endif // BOOST_LOG_DOXYGEN_PASS
  49. namespace boost {
  50. BOOST_LOG_OPEN_NAMESPACE
  51. namespace aux {
  52. //! The function creates a file collector according to the specified arguments
  53. template< typename ArgsT >
  54. inline shared_ptr< sinks::file::collector > setup_file_collector(ArgsT const&, mpl::true_ const&)
  55. {
  56. return shared_ptr< sinks::file::collector >();
  57. }
  58. template< typename ArgsT >
  59. inline shared_ptr< sinks::file::collector > setup_file_collector(ArgsT const& args, mpl::false_ const&)
  60. {
  61. return sinks::file::make_collector(args);
  62. }
  63. //! The function constructs the sink and adds it to the core
  64. template< typename ArgsT >
  65. shared_ptr< BOOST_LOG_FILE_SINK_FRONTEND_INTERNAL< sinks::text_file_backend > > add_file_log(ArgsT const& args)
  66. {
  67. typedef sinks::text_file_backend backend_t;
  68. shared_ptr< backend_t > pBackend = boost::make_shared< backend_t >(args);
  69. shared_ptr< sinks::file::collector > pCollector = aux::setup_file_collector(args,
  70. typename is_void< typename parameter::binding< ArgsT, keywords::tag::target, void >::type >::type());
  71. if (pCollector)
  72. {
  73. pBackend->set_file_collector(pCollector);
  74. pBackend->scan_for_files(args[keywords::scan_method | sinks::file::scan_matching]);
  75. }
  76. shared_ptr< BOOST_LOG_FILE_SINK_FRONTEND_INTERNAL< backend_t > > pSink =
  77. boost::make_shared< BOOST_LOG_FILE_SINK_FRONTEND_INTERNAL< backend_t > >(pBackend);
  78. aux::setup_filter(*pSink, args,
  79. typename is_void< typename parameter::binding< ArgsT, keywords::tag::filter, void >::type >::type());
  80. aux::setup_formatter(*pSink, args,
  81. typename is_void< typename parameter::binding< ArgsT, keywords::tag::format, void >::type >::type());
  82. core::get()->add_sink(pSink);
  83. return pSink;
  84. }
  85. //! The trait wraps the argument into a file_name named argument, if needed
  86. template< typename T, bool IsNamedArgument = parameter::aux::is_named_argument< T >::value >
  87. struct file_name_param_traits
  88. {
  89. static shared_ptr< BOOST_LOG_FILE_SINK_FRONTEND_INTERNAL< sinks::text_file_backend > > wrap_add_file_log(T const& file_name_arg)
  90. {
  91. return aux::add_file_log(file_name_arg);
  92. }
  93. template< typename ArgsT >
  94. static shared_ptr< BOOST_LOG_FILE_SINK_FRONTEND_INTERNAL< sinks::text_file_backend > > wrap_add_file_log(T const& file_name_arg, ArgsT const& args)
  95. {
  96. return aux::add_file_log((args, file_name_arg));
  97. }
  98. };
  99. template< typename T >
  100. struct file_name_param_traits< T, false >
  101. {
  102. static shared_ptr< BOOST_LOG_FILE_SINK_FRONTEND_INTERNAL< sinks::text_file_backend > > wrap_add_file_log(T const& file_name_arg)
  103. {
  104. return aux::add_file_log(keywords::file_name = file_name_arg);
  105. }
  106. template< typename ArgsT >
  107. static shared_ptr< BOOST_LOG_FILE_SINK_FRONTEND_INTERNAL< sinks::text_file_backend > > wrap_add_file_log(T const& file_name_arg, ArgsT const& args)
  108. {
  109. return aux::add_file_log((args, (keywords::file_name = file_name_arg)));
  110. }
  111. };
  112. } // namespace aux
  113. #ifndef BOOST_LOG_DOXYGEN_PASS
  114. #define BOOST_LOG_INIT_LOG_TO_FILE_INTERNAL(z, n, data)\
  115. template< BOOST_PP_ENUM_PARAMS(n, typename T) >\
  116. inline shared_ptr< BOOST_LOG_FILE_SINK_FRONTEND_INTERNAL< sinks::text_file_backend > > add_file_log(BOOST_PP_ENUM_BINARY_PARAMS(n, T, const& arg))\
  117. {\
  118. return aux::file_name_param_traits< T0 >::wrap_add_file_log(\
  119. arg0\
  120. BOOST_PP_COMMA_IF(BOOST_PP_GREATER(n, 1))\
  121. BOOST_PP_EXPR_IF(BOOST_PP_GREATER(n, 1), (BOOST_PP_ENUM_SHIFTED_PARAMS(n, arg)))\
  122. );\
  123. }
  124. BOOST_PP_REPEAT_FROM_TO(1, BOOST_LOG_MAX_PARAMETER_ARGS, BOOST_LOG_INIT_LOG_TO_FILE_INTERNAL, ~)
  125. #undef BOOST_LOG_INIT_LOG_TO_FILE_INTERNAL
  126. #else // BOOST_LOG_DOXYGEN_PASS
  127. /*!
  128. * The function initializes the logging library to write logs to a file stream.
  129. *
  130. * \param args A number of named arguments. The following parameters are supported:
  131. * \li \c file_name The active file name or its pattern. This parameter is mandatory.
  132. * \li \c target_file_name - Specifies the target file name pattern to use to rename the log file on rotation,
  133. * before passing it to the file collector. The pattern may contain the same
  134. * placeholders as the \c file_name parameter. By default, no renaming is done,
  135. * i.e. the written log file keeps its name according to \c file_name.
  136. * \li \c open_mode The mask that describes the open mode for the file. See <tt>std::ios_base::openmode</tt>.
  137. * \li \c rotation_size The size of the file at which rotation should occur. See <tt>basic_text_file_backend</tt>.
  138. * \li \c time_based_rotation The predicate for time-based file rotations. See <tt>basic_text_file_backend</tt>.
  139. * \li \c auto_flush A boolean flag that shows whether the sink should automatically flush the file
  140. * after each written record.
  141. * \li \c target The target directory to store rotated files in. See <tt>sinks::file::make_collector</tt>.
  142. * \li \c max_size The maximum total size of rotated files in the target directory. See <tt>sinks::file::make_collector</tt>.
  143. * \li \c min_free_space Minimum free space in the target directory. See <tt>sinks::file::make_collector</tt>.
  144. * \li \c max_files The maximum total number of rotated files in the target directory. See <tt>sinks::file::make_collector</tt>.
  145. * \li \c scan_method The method of scanning the target directory for log files. See <tt>sinks::file::scan_method</tt>.
  146. * \li \c filter Specifies a filter to install into the sink. May be a string that represents a filter,
  147. * or a filter lambda expression.
  148. * \li \c format Specifies a formatter to install into the sink. May be a string that represents a formatter,
  149. * or a formatter lambda expression (either streaming or Boost.Format-like notation).
  150. * \return Pointer to the constructed sink.
  151. */
  152. template< typename... ArgsT >
  153. shared_ptr< BOOST_LOG_FILE_SINK_FRONTEND_INTERNAL< sinks::text_file_backend > > add_file_log(ArgsT... const& args);
  154. #endif // BOOST_LOG_DOXYGEN_PASS
  155. BOOST_LOG_CLOSE_NAMESPACE // namespace log
  156. } // namespace boost
  157. #undef BOOST_LOG_FILE_SINK_FRONTEND_INTERNAL
  158. #include <boost/log/detail/footer.hpp>
  159. #endif // BOOST_LOG_UTILITY_SETUP_FILE_HPP_INCLUDED_