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
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  {
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
armarx::IceReportSkipper::IceReportSkipper
IceReportSkipper(float maxFrequency)
Definition: IceReportSkipper.cpp:32
c
constexpr T c
Definition: UnscentedKalmanFilterTest.cpp:46
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:38
TimeUtil.h
Logging.h
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:27