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 
29 namespace armarx
30 {
31 
33  {
34  this->maxFrequency = maxFrequency;
35  }
36 
37  bool IceReportSkipper::checkFrequency(const Ice::Current& c, const std::optional<float>& frequency)
38  {
39  return checkFrequency(c.operation, frequency);
40  }
41 
42  bool IceReportSkipper::checkFrequency(const std::string& operationName, const std::optional<float>& frequency)
43  {
45  std::unique_lock lock(mutex);
46  auto it = operationData.find(operationName);
47  if (it == operationData.end())
48  {
49  float maxFrequency = frequency ? *frequency : this->maxFrequency;
50  operationData[operationName] = {now, maxFrequency};
51  return true;
52  }
53  else
54  {
55  SkippingData& data = it->second;
56  float maxFrequency = frequency ? *frequency : data.maxFrequency;
57  float minInterval = 1.0 / maxFrequency;
58  if (now < data.lastTimestamp + IceUtil::Time::secondsDouble(minInterval))
59  {
60  return false;
61  }
62  else
63  {
64  data.lastTimestamp = now;
65  return true;
66  }
67  }
68  }
69 
70 } // namespace armarx
armarx::IceReportSkipper::IceReportSkipper
IceReportSkipper(float maxFrequency)
Definition: IceReportSkipper.cpp:32
c
constexpr T c
Definition: UnscentedKalmanFilterTest.cpp:43
data
uint8_t data[1]
Definition: EtherCATFrame.h:68
IceReportSkipper.h
armarx::armem::Time
armarx::core::time::DateTime Time
Definition: forward_declarations.h:13
armarx::TimeUtil::GetTime
static IceUtil::Time GetTime(TimeMode timeMode=TimeMode::VirtualTime)
Get the current time.
Definition: TimeUtil.cpp:42
armarx::IceReportSkipper::checkFrequency
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.
Definition: IceReportSkipper.cpp:37
TimeUtil.h
Logging.h
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:28