Welcome to mirror list, hosted at ThFree Co, Russian Federation.

thread_pool.cpp « base - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 626061fd2bcac7f6b732dfe0ef7f32ed02d920f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#include "base/thread_pool.hpp"

#include "base/thread.hpp"
#include "base/threaded_list.hpp"

#include "std/vector.hpp"
#include "std/utility.hpp"
#include "std/bind.hpp"

namespace threads
{
  namespace
  {
    typedef function<threads::IRoutine *()> TPopRoutineFn;

    class PoolRoutine : public IRoutine
    {
    public:
      PoolRoutine(const TPopRoutineFn & popFn, const TFinishRoutineFn & finishFn)
        : m_popFn(popFn)
        , m_finishFn(finishFn)
      {
      }

      virtual void Do()
      {
        while (!IsCancelled())
        {
          threads::IRoutine * task = m_popFn();
          if (task == NULL)
          {
            Cancel();
            continue;
          }

          if (!task->IsCancelled())
            task->Do();
          m_finishFn(task);
        }
      }

    private:
      TPopRoutineFn m_popFn;
      TFinishRoutineFn m_finishFn;
    };
  }

  class ThreadPool::Impl
  {
  public:
    Impl(size_t size, const TFinishRoutineFn & finishFn) : m_finishFn(finishFn), m_threads(size)
    {
      for (auto & thread : m_threads)
      {
        thread.reset(new threads::Thread());
        thread->Create(make_unique<PoolRoutine>(bind(&ThreadPool::Impl::PopFront, this), m_finishFn));
      }
    }

    ~Impl()
    {
      Stop();
    }

    void PushBack(threads::IRoutine * routine)
    {
      m_tasks.PushBack(routine);
    }

    void PushFront(threads::IRoutine * routine)
    {
      m_tasks.PushFront(routine);
    }

    threads::IRoutine * PopFront()
    {
      return m_tasks.Front(true);
    }

    void Stop()
    {
      m_tasks.Cancel();

      for (auto & thread : m_threads)
        thread->Cancel();
      m_threads.clear();

      m_tasks.ProcessList([this](list<threads::IRoutine *> & tasks)
                          {
                            FinishTasksOnStop(tasks);
                          });
      m_tasks.Clear();
    }

  private:
    void FinishTasksOnStop(list<threads::IRoutine *> & tasks)
    {
      typedef list<threads::IRoutine *>::iterator task_iter;
      for (task_iter it = tasks.begin(); it != tasks.end(); ++it)
      {
        (*it)->Cancel();
        m_finishFn(*it);
      }
    }

  private:
    ThreadedList<threads::IRoutine *> m_tasks;
    TFinishRoutineFn m_finishFn;

    vector<unique_ptr<threads::Thread>> m_threads;
  };

  ThreadPool::ThreadPool(size_t size, const TFinishRoutineFn & finishFn)
    : m_impl(new Impl(size, finishFn)) {}

  ThreadPool::~ThreadPool()
  {
    delete m_impl;
  }

  void ThreadPool::PushBack(threads::IRoutine * routine)
  {
    m_impl->PushBack(routine);
  }

  void ThreadPool::PushFront(IRoutine * routine)
  {
    m_impl->PushFront(routine);
  }

  void ThreadPool::Stop()
  {
    m_impl->Stop();
  }
}