LCOV - code coverage report
Current view: top level - co - worker.h (source / functions) Hit Total Coverage
Test: lcov2.info Lines: 3 5 60.0 %
Date: 2014-10-06 Functions: 3 6 50.0 %

          Line data    Source code
       1             : 
       2             : /* Copyright (c) 2011-2014, Stefan Eilemann <eile@eyescale.ch>
       3             :  *
       4             :  * This file is part of Collage <https://github.com/Eyescale/Collage>
       5             :  *
       6             :  * This library is free software; you can redistribute it and/or modify it under
       7             :  * the terms of the GNU Lesser General Public License version 2.1 as published
       8             :  * by the Free Software Foundation.
       9             :  *
      10             :  * This library is distributed in the hope that it will be useful, but WITHOUT
      11             :  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
      12             :  * FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
      13             :  * details.
      14             :  *
      15             :  * You should have received a copy of the GNU Lesser General Public License
      16             :  * along with this library; if not, write to the Free Software Foundation, Inc.,
      17             :  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
      18             :  */
      19             : 
      20             : #ifndef CO_WORKER_H
      21             : #define CO_WORKER_H
      22             : 
      23             : #include <co/api.h>          // CO_API definition
      24             : #include <co/types.h>
      25             : #include <lunchbox/thread.h>  // base class
      26             : #include <limits.h>
      27             : 
      28             : #ifndef CO_WORKER_API
      29             : #  define CO_WORKER_API CO_API
      30             : #endif
      31             : 
      32             : namespace co
      33             : {
      34             : /** A worker thread processing items out of a CommandQueue. */
      35             : template< class Q > class WorkerThread : public lunchbox::Thread
      36             : {
      37             : public:
      38             :     /** Construct a new worker thread. @version 1.0 */
      39          51 :     WorkerThread( const size_t maxSize = ULONG_MAX ) : _commands( maxSize ) {}
      40             : 
      41             :     /** Destruct the worker. @version 1.0 */
      42          49 :     virtual ~WorkerThread() {}
      43             : 
      44             :     /** @return the queue to the worker thread. @version 1.0 */
      45         138 :     Q* getWorkerQueue() { return &_commands; }
      46             : 
      47             : protected:
      48             :     /** @sa lunchbox::Thread::run() */
      49             :     CO_WORKER_API void run() override;
      50             : 
      51             :     /** @return true to stop the worker thread. @version 1.0 */
      52           0 :     virtual bool stopRunning() { return false; }
      53             : 
      54             :     /** @return true to indicate pending idle tasks. @version 1.0 */
      55           0 :     virtual bool notifyIdle() { return false; }
      56             : 
      57             : private:
      58             :     /** The receiver->worker thread command queue. */
      59             :     Q _commands;
      60             : };
      61             : 
      62             : typedef WorkerThread< CommandQueue > Worker; // instantiated in worker.cpp
      63             : }
      64             : #endif //CO_WORKER_H

Generated by: LCOV version 1.10