forked from organicmaps/organicmaps-tmp
Added simple concurrent threads pool
This commit is contained in:
parent
7f94026eda
commit
b3ff13a3b5
5 changed files with 50 additions and 18 deletions
|
@ -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 \
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
#pragma once
|
||||
|
||||
#include "../std/target_os.hpp"
|
||||
|
||||
namespace threads
|
||||
{
|
||||
|
||||
}
|
35
base/runner.hpp
Normal file
35
base/runner.hpp
Normal 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()
|
||||
{
|
||||
}
|
||||
};
|
||||
|
||||
}
|
|
@ -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 \
|
||||
|
|
|
@ -26,3 +26,4 @@ SOURCES += \
|
|||
platform_test.cpp \
|
||||
download_test.cpp \
|
||||
jansson_test.cpp \
|
||||
concurrent_runner_test.cpp \
|
||||
|
|
Loading…
Add table
Reference in a new issue