IceReportSkipper.cpp
Go to the documentation of this file.
1/*
2 * This file is part of ArmarX.
3 *
4 * Copyright (C) 2011-2017, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5 *
6 * ArmarX is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * ArmarX is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * @package ArmarX
19 * @author Mirko Waechter( mirko.waechter at kit dot edu)
20 * @date 2017
21 * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22 * GNU General Public License
23 */
24#include "IceReportSkipper.h"
25
28
29namespace armarx
30{
31
33 {
34 this->maxFrequency = maxFrequency;
35 }
36
37 bool
38 IceReportSkipper::checkFrequency(const Ice::Current& c, const std::optional<float>& frequency)
39 {
40 return checkFrequency(c.operation, frequency);
41 }
42
43 bool
44 IceReportSkipper::checkFrequency(const std::string& operationName,
45 const std::optional<float>& frequency)
46 {
47 IceUtil::Time now = TimeUtil::GetTime();
48 std::unique_lock lock(mutex);
49 auto it = operationData.find(operationName);
50 if (it == operationData.end())
51 {
52 float maxFrequency = frequency ? *frequency : this->maxFrequency;
53 operationData[operationName] = {now, maxFrequency};
54 return true;
55 }
56 else
57 {
58 SkippingData& data = it->second;
59 float maxFrequency = frequency ? *frequency : data.maxFrequency;
60 float minInterval = 1.0 / maxFrequency;
61 if (now < data.lastTimestamp + IceUtil::Time::secondsDouble(minInterval))
62 {
63 return false;
64 }
65 else
66 {
67 data.lastTimestamp = now;
68 return true;
69 }
70 }
71 }
72
73} // namespace armarx
constexpr T c
bool checkFrequency(const Ice::Current &c, const std::optional< float > &frequency=std::nullopt)
checks the frequency and returns true if the minimum required time for the frequency has passed.
IceReportSkipper(float maxFrequency)
static IceUtil::Time GetTime(TimeMode timeMode=TimeMode::VirtualTime)
Get the current time.
Definition TimeUtil.cpp:42
This file offers overloads of toIce() and fromIce() functions for STL container types.