LCOV - code coverage report
Current view: top level - include/comphelper - threadpool.hxx (source / functions) Hit Total Coverage
Test: commit 10e77ab3ff6f4314137acd6e2702a6e5c1ce1fae Lines: 2 2 100.0 %
Date: 2014-11-03 Functions: 2 3 66.7 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
       2             : /*
       3             :  * This file is part of the LibreOffice project.
       4             :  *
       5             :  * This Source Code Form is subject to the terms of the Mozilla Public
       6             :  * License, v. 2.0. If a copy of the MPL was not distributed with this
       7             :  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
       8             :  */
       9             : 
      10             : #ifndef INCLUDED_COMPHELPER_THREADPOOL_HXX
      11             : #define INCLUDED_COMPHELPER_THREADPOOL_HXX
      12             : 
      13             : #include <sal/config.h>
      14             : #include <salhelper/thread.hxx>
      15             : #include <osl/mutex.hxx>
      16             : #include <osl/conditn.hxx>
      17             : #include <rtl/ref.hxx>
      18             : #include <vector>
      19             : #include <comphelper/comphelperdllapi.h>
      20             : 
      21             : namespace comphelper
      22             : {
      23             : 
      24         260 : class COMPHELPER_DLLPUBLIC ThreadTask
      25             : {
      26             : public:
      27         260 :     virtual      ~ThreadTask() {}
      28             :     virtual void doWork() = 0;
      29             : };
      30             : 
      31             : /// A very basic thread pool implementation
      32             : class COMPHELPER_DLLPUBLIC ThreadPool
      33             : {
      34             : public:
      35             :     /// returns a pointer to a shared pool with optimal thread
      36             :     /// count for the CPU
      37             :     static      ThreadPool& getSharedOptimalPool();
      38             : 
      39             :                 ThreadPool( sal_Int32 nWorkers );
      40             :     virtual    ~ThreadPool();
      41             : 
      42             :     /// push a new task onto the work queue
      43             :     void        pushTask( ThreadTask *pTask /* takes ownership */ );
      44             : 
      45             :     /// wait until all queued tasks are completed
      46             :     void        waitUntilEmpty();
      47             : 
      48             : private:
      49             :     class ThreadWorker;
      50             :     friend class ThreadWorker;
      51             : 
      52             :     /// wait until all work is completed, then join all threads
      53             :     void        waitAndCleanupWorkers();
      54             : 
      55             :     ThreadTask *waitForWork( osl::Condition &rNewWork );
      56             :     ThreadTask *popWork();
      57             :     void        startWork();
      58             :     void        stopWork();
      59             : 
      60             :     osl::Mutex     maGuard;
      61             :     sal_Int32      mnThreadsWorking;
      62             :     /// signalled when all in-progress tasks are complete
      63             :     osl::Condition maTasksComplete;
      64             :     bool           mbTerminate;
      65             :     std::vector< rtl::Reference< ThreadWorker > > maWorkers;
      66             :     std::vector< ThreadTask * >   maTasks;
      67             : };
      68             : 
      69             : } // namespace comphelper
      70             : 
      71             : #endif // INCLUDED_COMPHELPER_THREADPOOL_HXX
      72             : 
      73             : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */

Generated by: LCOV version 1.10