Added simple concurrent threads pool

This commit is contained in:
Alex Zolotarev 2011-05-30 02:59:01 +02:00 committed by Alex Zolotarev
parent 7f94026eda
commit b3ff13a3b5
5 changed files with 50 additions and 18 deletions

View file

@ -58,9 +58,9 @@ HEADERS += \
condition.hpp \
commands_queue.hpp \
stats.hpp \
monitor.hpp \
shared_buffer_manager.hpp \
memory_mapped_file.hpp \
buffer_vector.hpp \
path_utils.hpp \
array_adapters.hpp \
runner.hpp \

View file

@ -1,8 +0,0 @@
#pragma once
#include "../std/target_os.hpp"
namespace threads
{
}

35
base/runner.hpp Normal file
View file

@ -0,0 +1,35 @@
#pragma once
#include "../std/function.hpp"
namespace threads
{
typedef function<void()> RunnerFuncT;
/// Automatically uses system thread pools if it's available
class IRunner
{
public:
virtual ~IRunner() {}
virtual void Run(RunnerFuncT f) = 0;
/// Waits until all running threads will stop
virtual void Join() = 0;
};
/// Synchronous implementation
class SimpleRunner : public IRunner
{
public:
virtual void Run(RunnerFuncT f)
{
f();
}
virtual void Join()
{
}
};
}

View file

@ -19,33 +19,37 @@ QT *= core network
wifi_location_service.cpp \
qt_download_manager.cpp \
qt_download.cpp \
qt_concurrent_runner.cpp \
HEADERS += \
qt_download_manager.hpp \
qt_download.hpp \
wifi_info.hpp
} else:iphone* {
SOURCES += ios_concurrent_runner.mm
}
HEADERS += \
platform.hpp \
download_manager.hpp \
location.hpp \
macx|iphone* {
OBJECTIVE_SOURCES += apple_location_service.mm
LIBS += -framework CoreLocation -framework Foundation
} else {
SOURCES +=
OBJECTIVE_SOURCES += apple_location_service.mm
LIBS += -framework CoreLocation -framework Foundation
}
macx:!iphone* {
OBJECTIVE_SOURCES += wifi_info_mac.mm
LIBS += -framework CoreWLAN
}
win32 {
SOURCES += wifi_info_windows.cpp
}
# common sources for all platforms
HEADERS += \
platform.hpp \
download_manager.hpp \
location.hpp \
concurrent_runner.hpp \
SOURCES += \
location_manager.cpp \

View file

@ -26,3 +26,4 @@ SOURCES += \
platform_test.cpp \
download_test.cpp \
jansson_test.cpp \
concurrent_runner_test.cpp \