C ++事件库

时间:2010-08-29 03:10:03

标签: c++ logging

您是否可以推荐具有以下功能的轻量级跨平台事件记录/日志库:

  • 简单界面
  • 增量事件记录(即事件++)
  • 快速更新
  • 可自定义报告输出(例如iostream)
  • 时间戳或os集成并不重要

原则上,使用带有字符串/整数键值的map来制作自己并不难,但我宁愿使用已经写过的。我看过log4cxx,但这似乎有点矫枉过正。

由于

4 个答案:

答案 0 :(得分:0)

好的旧系统日志(或syslog-ng)似乎是一个好的开始......

答案 1 :(得分:0)

  • http://pantheios.sourceforge.net/:Pantheios是一个开源C / C ++诊断日志记录API库,提供100%类型安全性,效率,通用性和可扩展性的最佳组合。它易于使用和扩展,高度可移植(平台和编译器独立),最重要的是,它坚持C的传统,你只需为你使用的东西付费。

  • http://www.arg0.net/rlog:RLog是一个灵活的C ++程序和库的消息记录工具。它针对没有输出日志消息的情况进行了高度优化,因此可以保留在生产代码中并按需启用

答案 2 :(得分:0)

这是原型,最终版本是:http://code.google.com/p/asadchev/source/browse/trunk/projects/boost/utility/profiler.hpp

#define UTILITY_EVENT_HPP

#include "utility/timer.hpp"

#include <string>
#include <map>
#include <boost/thread.hpp>
#include <boost/tuple/tuple.hpp>

#define PROFILE_FUNCTION(...)                                   \
    utility::profiler::event                                    \
    event__(utility::profiler::global[                          \
        utility::detail::profiler_event(__PRETTY_FUNCTION__)(__VA_ARGS__)])



namespace utility {

    namespace detail {
        struct profiler_event {
            profiler_event(const std::string &key) : data_(key) {}
            operator const std::string&() const { return data_; }
            profiler_event& operator()(const std::string &key) {
                data_ += (":" + key);
                return *this;
            }
            profiler_event& operator()() { return *this; }
        private:
            std::string data_;
        };
    }


    struct profiler {

        typedef std::string event_key;

        struct event_data {
            event_data(): size_(0), value_(0) {}
            event_data(const event_data &e)
                : size_(e.size_), value_(e.value_) {}
            event_data& operator+=(double t) {
                boost::lock_guard<boost::mutex> lock(mutex_);
                 ++size_;
                 value_ += t;
                return *this;
            }
            event_data& operator++() { return (*this += 1); }
            std::ostream& to_stream(std::ostream &ostream) const {
                boost::lock_guard<boost::mutex> lock(mutex_);
                ostream << value_ << "/" << size_;
                return ostream;
            }
        private:
            typedef boost::tuple<profiler&, const event_key&> constructor;
            size_t size_;
            double value_;
            mutable boost::mutex mutex_;
        };

        struct event {
            event(event_data &data) : data_(data) {}
            ~event() {
                // std::cout << timer_ << std::endl;
                data_ += double(timer_);
            }
            event_data &data_;
            utility::timer timer_;
        };

        event_data& operator[](const event_key &key) {
            boost::lock_guard<boost::mutex> lock(mutex_);
            return events_[key];
        }
        std::ostream& to_stream(std::ostream &ostream) const {
            boost::lock_guard<boost::mutex> lock(mutex_);
            std::map<event_key, event_data>::const_iterator it = events_.begin();
            while (it != events_.end()) {
                ostream << it->first << ": ";
                it->second.to_stream(ostream);
                ostream << std::endl;
                ++it;
            }
            return ostream;
        }
        static profiler global;
    private:
        std::map<event_key, event_data> events_;
        mutable boost::mutex mutex_;
    };

    inline std::ostream& operator<<(std::ostream &ostream, const profiler &p) {
        return p.to_stream(ostream);
    }

}


#endif // UTILITY_EVENT_HPP

答案 3 :(得分:0)

你想要的是boost记录库,它简单,快速,可配置。

我不确定事件++选项,但实现起来并不是很难。它拥有您所需要的一切以及更多内容,请查看http://torjo.com/log2/doc/html/main_intro.html#main_motivation