Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 """
00035 ROS diagnostics interface for the Arduino device driver node.
00036 """
00037
00038 import rospy
00039 import threading
00040 from diagnostic_msgs.msg import DiagnosticArray, DiagnosticStatus, KeyValue
00041
00042
00043 class Diagnostics(object):
00044 """ ROS diagnostics interface for the Arduino device driver node. """
00045
00046 def __init__(self, topic='/diagnostics'):
00047 self.pub = rospy.Publisher(topic, DiagnosticArray)
00048 self.lock = threading.RLock()
00049 """ Mutex lock for updating diagnostic status. """
00050 self.timer = rospy.Timer(rospy.Duration(1.0), self.publish)
00051 """ Publish diagnostic info once a second. """
00052 self.devices = {}
00053 """ Dictionary of reporting devices by name. """
00054
00055 def publish(self, event):
00056 """ Publish current diagnostics status once a second.
00057
00058 Runs in a separate timer thread, so locking is required.
00059
00060 :param event: rospy.TimerEvent for this call
00061 """
00062 with self.lock:
00063 array = DiagnosticArray()
00064 array.header.stamp = event.current_real
00065 array.status = list(self.devices.values())
00066 self.pub.publish(array)
00067
00068 def update(self, status):
00069 """ Update device status.
00070
00071 :param status: New status for some device, replaces any
00072 previous status.
00073 :type status: diagnostic_msgs/DiagnosticStatus
00074 """
00075 with self.lock:
00076 self.devices[status.name] = status