controller_diagnostics.cpp
Go to the documentation of this file.
1 /*********************************************************************
2  * Software License Agreement (BSD License)
3  *
4  * Copyright (c) 2009, Willow Garage, Inc.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * * Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  * * Redistributions in binary form must reproduce the above
14  * copyright notice, this list of conditions and the following
15  * disclaimer in the documentation and/or other materials provided
16  * with the distribution.
17  * * Neither the name of the Willow Garage nor the names of its
18  * contributors may be used to endorse or promote products derived
19  * from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  *********************************************************************/
34 
35 
37 
38 
39 using namespace pr2_mechanism_diagnostics;
40 using namespace std;
41 
42 // Controller statistics
43 ControllerStats::ControllerStats(string nam, bool disable_warnings) :
44  name(nam),
45  timestamp(0),
46  running(false),
47  num_overruns(0),
48  last_overrun_time(0),
49  disable_warnings_(disable_warnings)
50 { }
51 
52 bool ControllerStats::update(const pr2_mechanism_msgs::ControllerStatistics &cs)
53 {
54  if (name != cs.name)
55  {
56  ROS_ERROR("Controller statistics attempted to update with a different name! Old name: %s, new name: %s.", name.c_str(), cs.name.c_str());
57  return false;
58  }
59 
60  timestamp = cs.timestamp;
61  running = cs.running;
62  max_time = cs.max_time;
63  mean_time = cs.mean_time;
64  variance_time = cs.variance_time;
65  num_overruns = cs.num_control_loop_overruns;
66  last_overrun_time = cs.time_last_control_loop_overrun;
67 
69 
70  return true;
71 }
72 
74 {
76 
77  stat->name = "Controller (" + name + ")";
78 
79  if (running)
80  stat->summary(diagnostic_msgs::DiagnosticStatus::OK, "Running");
81  else
82  stat->summary(diagnostic_msgs::DiagnosticStatus::OK, "Stopped");
83 
84  if (!disable_warnings_ && num_overruns > 0)
85  {
86  if ((ros::Time::now() - last_overrun_time).toSec() < 30)
87  stat->summary(diagnostic_msgs::DiagnosticStatus::WARN, "!!! Broke Realtime, used more than 1000 micro seconds in update loop");
88  else
89  stat->summary(diagnostic_msgs::DiagnosticStatus::OK, "!!! Broke Realtime, used more than 1000 micro seconds in update loop");
90  }
91 
92  stat->add("Avg Update Time (usec)", (int)(mean_time.toSec() * 1e6));
93  stat->add("Max Update Time (usec)", (int)(max_time.toSec() * 1e6));
94  stat->add("Variance Update Time (usec)", (int) (variance_time.toSec() * 1e6));
95  stat->add("Percent of Cycle Time Used", (int) (mean_time.toSec() / 0.00001));
96  stat->add("Number of Control Loop Overruns", num_overruns);
97  stat->add("Timestamp of Last Overrun (sec)", last_overrun_time.toSec());
98 
99  return stat;
100 }
101 
boost::shared_ptr< diagnostic_updater::DiagnosticStatusWrapper > toDiagStat() const
Publishes diagnostics for controllers, joints from pr2_mechanism_msgs/MechanismStatistics message...
static Time now()
bool update(const pr2_mechanism_msgs::ControllerStatistics &cs)
ControllerStats(std::string nam, bool disable_warnings)
#define ROS_ERROR(...)


pr2_mechanism_diagnostics
Author(s): Kevin Watts
autogenerated on Mon Jun 10 2019 14:19:09