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: a2d3d868b7d5befeda0c67f1c0aa3ae57b2f9c60 (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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
#include "base/thread_pool.hpp"

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

#include <functional>
#include <memory>
#include <utility>
#include <vector>

namespace base
{
namespace thread_pool
{
namespace routine
{
using namespace threads;
namespace
{
typedef std::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(std::make_unique<PoolRoutine>(std::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](std::list<threads::IRoutine *> & tasks)
    {
      FinishTasksOnStop(tasks);
    });
    m_tasks.Clear();
  }

private:
  void FinishTasksOnStop(std::list<threads::IRoutine *> & tasks)
  {
    typedef std::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;

  std::vector<std::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();
}
}  // namespace routine

namespace routine_simple
{
ThreadPool::ThreadPool(size_t reserve) { m_pool.reserve(reserve); }

void ThreadPool::Add(std::unique_ptr<threads::IRoutine> && routine)
{
  m_pool.emplace_back(new threads::Thread());
  m_pool.back()->Create(move(routine));
}

void ThreadPool::Join()
{
  for (auto & thread : m_pool)
    thread->Join();
}

threads::IRoutine * ThreadPool::GetRoutine(size_t i) const { return m_pool[i]->GetRoutine(); }
}  // namespace routine_simple
}  // namespace thread_pool
}  // namespace base