log4cplus 2.1.2
eventcounter.h
Go to the documentation of this file.
1// -*- C++ -*-
2//
3// Copyright (C) 2024, Vaclav Haisman. All rights reserved.
4//
5// Redistribution and use in source and binary forms, with or without modifica-
6// tion, are permitted provided that the following conditions are met:
7//
8// 1. Redistributions of source code must retain the above copyright notice,
9// this list of conditions and the following disclaimer.
10//
11// 2. Redistributions in binary form must reproduce the above copyright notice,
12// this list of conditions and the following disclaimer in the documentation
13// and/or other materials provided with the distribution.
14//
15// THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
16// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
17// FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
18// APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
19// INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
20// DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
21// OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
22// ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24// THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
26#ifndef LOG4CPLUS_HELPERS_EVENTCOUNTER_H
27#define LOG4CPLUS_HELPERS_EVENTCOUNTER_H
28
29#include <log4cplus/config.hxx>
30
31#if defined (LOG4CPLUS_HAVE_PRAGMA_ONCE)
32#pragma once
33#endif
34
36#include <cstddef>
37#include <atomic>
38#include <chrono>
39
40
41namespace log4cplus {
42
43namespace helpers {
44
46{
47public:
50
51 virtual std::size_t record_event ();
52
53protected:
54 std::atomic<std::size_t> event_count {0};
55};
56
57
59 : public BaseEventCounter
60{
61public:
62 using Clock = std::chrono::steady_clock;
63 using Duration = Clock::duration;
64 using TimePoint = std::chrono::time_point<Clock>;
65
67 {
69
70 std::size_t count;
72 };
73
75 virtual ~SteadyClockGate ();
76
77 bool latch_open (Info &);
78
79private:
81 Duration const pause_duration;
82 TimePoint timeout_point;
83 TimePoint prev_timeout_point;
84};
85
86
87} // namespace helpers
88
89} // namespace log4cplus
90
91#endif // LOG4CPLUS_HELPERS_EVENTCOUNTER_H
virtual std::size_t record_event()
std::atomic< std::size_t > event_count
SteadyClockGate(SteadyClockGate::Duration pause_duraiton)
std::chrono::steady_clock Clock
std::chrono::time_point< Clock > TimePoint
#define LOG4CPLUS_EXPORT
Definition win32.h:141