naoqidriver
log.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 LOG_RECORDER_HPP
19 #define LOG_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 <ros/ros.h>
36 #include <rosgraph_msgs/Log.h>
37 
38 namespace naoqi
39 {
40 namespace recorder
41 {
42 
44 {
45 
46 public:
47  LogRecorder( const std::string& topic, float buffer_frequency = 0 );
48 
49  void write( std::list<rosgraph_msgs::Log>& log_msgs );
50 
51  void reset(boost::shared_ptr<naoqi::recorder::GlobalRecorder> gr, float conv_frequency );
52 
53  void bufferize( std::list<rosgraph_msgs::Log>& log_msgs );
54 
55  void writeDump(const ros::Time& time);
56 
57  void setBufferDuration(float duration);
58 
59  inline std::string topic() const
60  {
61  return topic_;
62  }
63 
64  inline bool isInitialized() const
65  {
66  return is_initialized_;
67  }
68 
69  inline void subscribe( bool state)
70  {
71  is_subscribed_ = state;
72  }
73 
74  inline bool isSubscribed() const
75  {
76  return is_subscribed_;
77  }
78 
79 protected:
80  std::string topic_;
81 
82  boost::circular_buffer< std::list<rosgraph_msgs::Log> > buffer_;
83  size_t buffer_size_;
85 
86  boost::mutex mutex_;
87 
90 
91  boost::shared_ptr<naoqi::recorder::GlobalRecorder> gr_;
92 
95  int counter_;
97 
98 }; // class
99 
100 } //publisher
101 } // naoqi
102 
103 #endif
float buffer_duration_
Definition: log.hpp:84
float conv_frequency_
Definition: log.hpp:94
std::string topic() const
Definition: log.hpp:59
boost::shared_ptr< naoqi::recorder::GlobalRecorder > gr_
Definition: log.hpp:91
boost::mutex mutex_
Definition: log.hpp:86
bool is_initialized_
Definition: log.hpp:88
int counter_
Definition: log.hpp:95
void reset(boost::shared_ptr< naoqi::recorder::GlobalRecorder > gr, float conv_frequency)
Definition: log.cpp:58
float buffer_frequency_
Definition: log.hpp:93
void subscribe(bool state)
Definition: log.hpp:69
void bufferize(std::list< rosgraph_msgs::Log > &log_msgs)
Definition: log.cpp:76
bool isSubscribed() const
Definition: log.hpp:74
void writeDump(const ros::Time &time)
Definition: log.cpp:48
Definition: audio.cpp:29
void setBufferDuration(float duration)
Definition: log.cpp:90
Definition: log.hpp:43
int max_counter_
Definition: log.hpp:96
LogRecorder(const std::string &topic, float buffer_frequency=0)
Definition: log.cpp:25
void write(std::list< rosgraph_msgs::Log > &log_msgs)
Definition: log.cpp:32
size_t buffer_size_
Definition: log.hpp:83
bool isInitialized() const
Definition: log.hpp:64
std::string topic_
Definition: log.hpp:80
bool is_subscribed_
Definition: log.hpp:89
boost::circular_buffer< std::list< rosgraph_msgs::Log > > buffer_
Definition: log.hpp:82