Subversion Repositories HomeAutomation

Rev

Rev 1625 | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. /*
  2.  *
  3.  *  Copyright (C) 2010  Mattias Runge
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License along
  16.  *  with this program; if not, write to the Free Software Foundation, Inc.,
  17.  *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  18.  *
  19.  */
  20.  
  21. #ifndef COMMON_IOSERVICE_H
  22. #define COMMON_IOSERVICE_H
  23.  
  24. #include <boost/shared_ptr.hpp>
  25. #include <boost/asio.hpp>
  26. #include <boost/thread.hpp>
  27.  
  28. namespace atom {
  29. namespace common {
  30.  
  31. class IoService
  32. {
  33. public:
  34.     typedef boost::shared_ptr<IoService> Pointer;
  35.    
  36.     IoService();
  37.     virtual ~IoService();
  38.    
  39.     boost::asio::io_service& GetIoService();
  40.     void Stop();
  41.    
  42. protected:
  43.     typedef boost::shared_ptr<char> TrackerPointer;
  44.    
  45.     boost::asio::io_service io_service_;
  46.     TrackerPointer tracker_;
  47.    
  48. private:
  49.     boost::thread thread_;
  50.     boost::asio::io_service::work io_service_work_;
  51. };
  52.  
  53. }; // namespace common
  54. }; // namespace atom
  55.  
  56. #endif // COMMON_IOSERVICE_H
  57.