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
|
/*
* 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 main.cpp
* \author Andrey Semashev
* \date 12.05.2010
*
* \brief An example of initializing the library from a settings file,
* with custom filter and formatter factories for attributes.
*/
// #define BOOST_ALL_DYN_LINK 1
#include <string>
#include <iostream>
#include <fstream>
#include <stdexcept>
#include <boost/core/ref.hpp>
#include <boost/bind/bind.hpp>
#include <boost/smart_ptr/make_shared_object.hpp>
#include <boost/log/core.hpp>
#include <boost/log/common.hpp>
#include <boost/log/attributes.hpp>
#include <boost/log/core/record.hpp>
#include <boost/log/attributes/value_visitation.hpp>
#include <boost/log/utility/setup/from_stream.hpp>
#include <boost/log/utility/setup/common_attributes.hpp>
#include <boost/log/utility/setup/filter_parser.hpp>
#include <boost/log/utility/setup/formatter_parser.hpp>
namespace logging = boost::log;
namespace attrs = boost::log::attributes;
namespace src = boost::log::sources;
//! Enum for our custom severity levels
enum severity_level
{
normal,
notification,
warning,
error,
critical
};
//! Formatting operator for severity levels
inline std::ostream& operator<< (std::ostream& strm, severity_level level)
{
switch (level)
{
case normal:
strm << "normal";
break;
case notification:
strm << "notification";
break;
case warning:
strm << "warning";
break;
case error:
strm << "error";
break;
case critical:
strm << "critical";
break;
default:
strm << static_cast< int >(level);
break;
}
return strm;
}
//! Parsing operator for severity levels
inline std::istream& operator>> (std::istream& strm, severity_level& level)
{
if (strm.good())
{
std::string str;
strm >> str;
if (str == "normal")
level = normal;
else if (str == "notification")
level = notification;
else if (str == "warning")
level = warning;
else if (str == "error")
level = error;
else if (str == "critical")
level = critical;
else
strm.setstate(std::ios_base::failbit);
}
return strm;
}
//! Our custom formatter for the scope list
struct scope_list_formatter
{
typedef void result_type;
typedef attrs::named_scope::value_type scope_stack;
explicit scope_list_formatter(logging::attribute_name const& name) :
name_(name)
{
}
void operator()(logging::record_view const& rec, logging::formatting_ostream& strm) const
{
// We need to acquire the attribute value from the log record
logging::visit< scope_stack >
(
name_,
rec.attribute_values(),
boost::bind(&scope_list_formatter::format, boost::placeholders::_1, boost::ref(strm))
);
}
private:
//! This is where our custom formatting takes place
static void format(scope_stack const& scopes, logging::formatting_ostream& strm)
{
scope_stack::const_iterator it = scopes.begin(), end = scopes.end();
for (; it != end; ++it)
{
strm << "\t" << it->scope_name << " [" << it->file_name << ":" << it->line << "]\n";
}
}
private:
logging::attribute_name name_;
};
class my_scopes_formatter_factory :
public logging::formatter_factory< char >
{
public:
/*!
* This function creates a formatter for the MyScopes attribute.
* It effectively associates the attribute with the scope_list_formatter class
*/
formatter_type create_formatter(
logging::attribute_name const& attr_name, args_map const& args)
{
return formatter_type(scope_list_formatter(attr_name));
}
};
//! The function initializes the logging library
void init_logging()
{
// First thing - register the custom formatter for MyScopes
logging::register_formatter_factory("MyScopes", boost::make_shared< my_scopes_formatter_factory >());
// Also register filter and formatter factories for our custom severity level enum. Since our operator<< and operator>> implement
// all required behavior, simple factories provided by Boost.Log will do.
logging::register_simple_filter_factory< severity_level >("Severity");
logging::register_simple_formatter_factory< severity_level, char >("Severity");
// Then load the settings from the file
std::ifstream settings("settings.txt");
if (!settings.is_open())
throw std::runtime_error("Could not open settings.txt file");
logging::init_from_stream(settings);
// Add some attributes. Note that severity level will be provided by the logger, so we don't need to add it here.
logging::add_common_attributes();
logging::core::get()->add_global_attribute("MyScopes", attrs::named_scope());
}
//! Global logger, which we will use to write log messages
BOOST_LOG_INLINE_GLOBAL_LOGGER_DEFAULT(test_lg, src::severity_logger< severity_level >)
//! The function tests logging
void try_logging()
{
BOOST_LOG_FUNCTION();
src::severity_logger< severity_level >& lg = test_lg::get();
BOOST_LOG_SEV(lg, critical) << "This is a critical severity record";
BOOST_LOG_NAMED_SCOPE("random name");
BOOST_LOG_SEV(lg, error) << "This is a error severity record";
}
int main(int argc, char* argv[])
{
try
{
init_logging();
try_logging();
}
catch (std::exception& e)
{
std::cout << "FAILURE: " << e.what() << std::endl;
return -1;
}
return 0;
}
|