eventcounter.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. #ifndef LOG4CPLUS_HELPERS_EVENTCOUNTER_H
  26. #define LOG4CPLUS_HELPERS_EVENTCOUNTER_H
  27. #include <log4cplus/config.hxx>
  28. #if defined (LOG4CPLUS_HAVE_PRAGMA_ONCE)
  29. #pragma once
  30. #endif
  31. #include <log4cplus/thread/syncprims.h>
  32. #include <cstddef>
  33. #include <atomic>
  34. #include <chrono>
  35. namespace log4cplus {
  36. namespace helpers {
  37. class LOG4CPLUS_EXPORT BaseEventCounter
  38. {
  39. public:
  40. BaseEventCounter ();
  41. virtual ~BaseEventCounter ();
  42. virtual std::size_t record_event ();
  43. protected:
  44. std::atomic<std::size_t> event_count {0};
  45. };
  46. class LOG4CPLUS_EXPORT SteadyClockGate
  47. : public BaseEventCounter
  48. {
  49. public:
  50. using Clock = std::chrono::steady_clock;
  51. using Duration = Clock::duration;
  52. using TimePoint = std::chrono::time_point<Clock>;
  53. struct LOG4CPLUS_EXPORT Info
  54. {
  55. ~Info ();
  56. std::size_t count;
  57. Duration time_span;
  58. };
  59. SteadyClockGate (SteadyClockGate::Duration pause_duraiton);
  60. virtual ~SteadyClockGate ();
  61. bool latch_open (Info &);
  62. private:
  63. log4cplus::thread::SimpleMutex mtx;
  64. Duration const pause_duration;
  65. TimePoint timeout_point;
  66. TimePoint prev_timeout_point;
  67. };
  68. } // namespace helpers
  69. } // namespace log4cplus
  70. #endif // LOG4CPLUS_HELPERS_EVENTCOUNTER_H