review fixes

This commit is contained in:
ExMix 2013-10-30 17:05:44 +03:00 committed by Alex Zolotarev
parent 56e40f7a44
commit a08b17fa8a
4 changed files with 10 additions and 9 deletions

View file

@ -87,6 +87,7 @@ UNIT_TEST(ThreadPool_ExecutionTaskTest)
vector<threads::IRoutine *> tasks;
for (int i = 0; i < TASK_COUNT - 1; ++i)
tasks.push_back(new CancelTestTask(true));
// CancelTastTask::Do method should not be called for last task
tasks.push_back(new CancelTestTask(false));
int finishCounter = 0;
@ -96,6 +97,7 @@ UNIT_TEST(ThreadPool_ExecutionTaskTest)
for (size_t i = 0; i < tasks.size(); ++i)
pool.AddTask(tasks[i]);
// CancelTastTask::Do method should not be called for last task
tasks.back()->Cancel();
tasks.clear();

View file

@ -5,6 +5,7 @@
#include "../std/stdint.hpp"
#include "../std/vector.hpp"
#include "../std/utility.hpp"
#include "../std/noncopyable.hpp"
#ifdef OMIM_OS_WINDOWS
#include "../std/windows.hpp" // for DWORD
@ -54,14 +55,11 @@ namespace threads
};
/// Simple threads container. Takes ownership for every added IRoutine.
class SimpleThreadPool
class SimpleThreadPool : public noncopyable
{
typedef pair<Thread *, IRoutine *> ValueT;
vector<ValueT> m_pool;
SimpleThreadPool(SimpleThreadPool const &);
SimpleThreadPool & operator=(Thread const &);
public:
SimpleThreadPool(size_t reserve = 0);
~SimpleThreadPool();

View file

@ -15,7 +15,7 @@ namespace threads
class PoolRoutine : public IRoutine
{
public:
PoolRoutine(pop_routine_fn popFn, finish_routine_fn finishFn)
PoolRoutine(const pop_routine_fn & popFn, const finish_routine_fn & finishFn)
: m_popFn(popFn)
, m_finishFn(finishFn)
{
@ -47,9 +47,9 @@ namespace threads
class ThreadPool::Impl
{
public:
Impl(size_t size, finish_routine_fn finishFn)
Impl(size_t size, const finish_routine_fn & finishFn)
{
m_threads.reserve(size);
m_threads.resize(size);
for (size_t i = 0; i < size; ++i)
{
thread_info_t info = make_pair(new threads::Thread(), new PoolRoutine(bind(&ThreadPool::Impl::PopFront, this),
@ -97,7 +97,7 @@ namespace threads
vector<thread_info_t> m_threads;
};
ThreadPool::ThreadPool(size_t size, finish_routine_fn finishFn)
ThreadPool::ThreadPool(size_t size, const finish_routine_fn & finishFn)
: m_impl(new Impl(size, finishFn)) {}
void ThreadPool::AddTask(threads::IRoutine * routine)

View file

@ -11,8 +11,9 @@ namespace threads
class ThreadPool
{
public:
ThreadPool(size_t size, finish_routine_fn finishFn);
ThreadPool(size_t size, const finish_routine_fn & finishFn);
// ThreadPool will not delete routine. You can delete it in finish_routine_fn if need
void AddTask(threads::IRoutine * routine);
void Stop();