MIRA
IOService.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012 by
3  * MetraLabs GmbH (MLAB), GERMANY
4  * and
5  * Neuroinformatics and Cognitive Robotics Labs (NICR) at TU Ilmenau, GERMANY
6  * All rights reserved.
7  *
8  * Contact: info@mira-project.org
9  *
10  * Commercial Usage:
11  * Licensees holding valid commercial licenses may use this file in
12  * accordance with the commercial license agreement provided with the
13  * software or, alternatively, in accordance with the terms contained in
14  * a written agreement between you and MLAB or NICR.
15  *
16  * GNU General Public License Usage:
17  * Alternatively, this file may be used under the terms of the GNU
18  * General Public License version 3.0 as published by the Free Software
19  * Foundation and appearing in the file LICENSE.GPL3 included in the
20  * packaging of this file. Please review the following information to
21  * ensure the GNU General Public License version 3.0 requirements will be
22  * met: http://www.gnu.org/copyleft/gpl.html.
23  * Alternatively you may (at your option) use any later version of the GNU
24  * General Public License if such license has been publicly approved by
25  * MLAB and NICR (or its successors, if any).
26  *
27  * IN NO EVENT SHALL "MLAB" OR "NICR" BE LIABLE TO ANY PARTY FOR DIRECT,
28  * INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF
29  * THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF "MLAB" OR
30  * "NICR" HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  *
32  * "MLAB" AND "NICR" SPECIFICALLY DISCLAIM ANY WARRANTIES, INCLUDING,
33  * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
34  * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
35  * ON AN "AS IS" BASIS, AND "MLAB" AND "NICR" HAVE NO OBLIGATION TO
36  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS OR MODIFICATIONS.
37  */
38 
47 #ifndef _MIRA_IOSERVICE_H_
48 #define _MIRA_IOSERVICE_H_
49 
50 #ifndef Q_MOC_RUN
51 #include <boost/asio.hpp>
52 #endif
53 
54 #include <platform/Platform.h>
55 
57 // Use a forward declaration for boost::thread to reduce compile times.
58 
60 namespace boost {
61  class thread;
62 }
64 
66 
67 namespace mira {
68 
70 
76 {
77 public:
82  IOService();
83 
88  IOService(boost::asio::io_service& service);
89 
91  virtual ~IOService() {}
92 
100  void runThreads(std::size_t threadCount = 0, bool runInThisThread = true);
101 
106  std::size_t run()
107  {
108  return mService.run();
109  }
110 
114  std::size_t runOne()
115  {
116  return mService.run_one();
117  }
118 
122  void stop()
123  {
124  mService.stop();
125  }
126 
130  void reset()
131  {
132  mService.reset();
133  }
134 
138  operator boost::asio::io_service&()
139  {
140  return mService;
141  }
142 
143  template <typename CompletionHandler>
144  void post(CompletionHandler handler)
145  {
146  mService.post(handler);
147  }
148 
152  void join();
153 
154 private:
155  class Pimpl;
156  boost::shared_ptr<Pimpl> mPimpl;
157 
158  boost::asio::io_service& mService;
159  typedef boost::shared_ptr<boost::thread> ThreadPtr;
160  std::vector<ThreadPtr> mThreads;
161 };
162 
164 typedef boost::shared_ptr<boost::asio::io_service> ServicePtr;
165 
167 typedef boost::shared_ptr<IOService> IOServicePtr;
168 
170 
171 } // namespace
172 
173 #endif
Definition: SyncTimedRead.h:62
void post(CompletionHandler handler)
Definition: IOService.h:144
specialize cv::DataType for our ImgPixel and inherit from cv::DataType<Vec>
Definition: IOService.h:67
std::size_t run()
Wrapper for boost::asio::io_service::run() This will block until boost::asio::io_service::run() retur...
Definition: IOService.h:106
void stop()
Wrapper for boost::asio::io_service::stop()
Definition: IOService.h:122
std::size_t runOne()
Wrapper for boost::asio::io_service::run_one()
Definition: IOService.h:114
virtual ~IOService()
The destructor.
Definition: IOService.h:91
boost::shared_ptr< IOService > IOServicePtr
A shared pointer wrapper for class IOService.
Definition: IOService.h:167
Wrapper class for boost::asio::io_service.
Definition: IOService.h:75
boost::shared_ptr< boost::asio::io_service > ServicePtr
A shared pointer wrapper for class boost::asio::io_service.
Definition: IOService.h:164
#define MIRA_BASE_EXPORT
This is required because on windows there is a macro defined called ERROR.
Definition: Platform.h:153
void reset()
Wrapper for boost::asio::io_service::reset()
Definition: IOService.h:130
Platform dependent defines and macros.