naoqidriver
diagnostics.hpp
Go to the documentation of this file.
1 /*
2  * Copyright 2015 Aldebaran
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16 */
17 
18 #ifndef DIAGNOSTICS_RECORDER_HPP
19 #define DIAGNOSTICS_RECORDER_HPP
20 
21 /*
22 * BOOST includes
23 */
24 #include <boost/circular_buffer.hpp>
25 
26 /*
27 * LOCAL includes
28 */
30 #include "../helpers/recorder_helpers.hpp"
31 
32 /*
33 * ROS includes
34 */
35 #include <diagnostic_msgs/DiagnosticArray.h>
36 
37 namespace naoqi
38 {
39 namespace recorder
40 {
41 
43 {
44 
45 public:
46  DiagnosticsRecorder( const std::string& topic, float buffer_frequency = 0 );
47 
48  void write(diagnostic_msgs::DiagnosticArray& msg );
49 
50  void reset( boost::shared_ptr<naoqi::recorder::GlobalRecorder> gr, float conv_frequency );
51 
52  void bufferize(diagnostic_msgs::DiagnosticArray& msg );
53 
54  void writeDump(const ros::Time& time);
55 
56  void setBufferDuration(float duration);
57 
58  inline std::string topic() const
59  {
60  return topic_;
61  }
62 
63  inline bool isInitialized() const
64  {
65  return is_initialized_;
66  }
67 
68  inline void subscribe( bool state)
69  {
70  is_subscribed_ = state;
71  }
72 
73  inline bool isSubscribed() const
74  {
75  return is_subscribed_;
76  }
77 
78 protected:
79  std::string topic_;
80 
81  boost::circular_buffer<diagnostic_msgs::DiagnosticArray> buffer_;
82  size_t buffer_size_;
84 
85  boost::mutex mutex_;
86 
89 
90  boost::shared_ptr<naoqi::recorder::GlobalRecorder> gr_;
91 
94  int counter_;
96 
97 }; // class
98 
99 } //publisher
100 } // naoqi
101 
102 #endif
void subscribe(bool state)
Definition: diagnostics.hpp:68
bool isSubscribed() const
Definition: diagnostics.hpp:73
void writeDump(const ros::Time &time)
Definition: diagnostics.cpp:47
void reset(boost::shared_ptr< naoqi::recorder::GlobalRecorder > gr, float conv_frequency)
Definition: diagnostics.cpp:62
void bufferize(diagnostic_msgs::DiagnosticArray &msg)
Definition: diagnostics.cpp:80
void setBufferDuration(float duration)
Definition: diagnostics.cpp:94
boost::shared_ptr< naoqi::recorder::GlobalRecorder > gr_
Definition: diagnostics.hpp:90
int max_counter_
Definition: diagnostics.hpp:95
Definition: audio.cpp:29
int counter_
Definition: diagnostics.hpp:94
void write(diagnostic_msgs::DiagnosticArray &msg)
Definition: diagnostics.cpp:37
float conv_frequency_
Definition: diagnostics.hpp:93
float buffer_frequency_
Definition: diagnostics.hpp:92
boost::mutex mutex_
Definition: diagnostics.hpp:85
boost::circular_buffer< diagnostic_msgs::DiagnosticArray > buffer_
Definition: diagnostics.hpp:81
size_t buffer_size_
Definition: diagnostics.hpp:82
Definition: diagnostics.hpp:42
std::string topic() const
Definition: diagnostics.hpp:58
bool isInitialized() const
Definition: diagnostics.hpp:63
bool is_subscribed_
Definition: diagnostics.hpp:88
float buffer_duration_
Definition: diagnostics.hpp:83
bool is_initialized_
Definition: diagnostics.hpp:87
std::string topic_
Definition: diagnostics.hpp:79
DiagnosticsRecorder(const std::string &topic, float buffer_frequency=0)
Definition: diagnostics.cpp:28