18#ifndef _LOG4CXX_THREADUTILITY_H
19#define _LOG4CXX_THREADUTILITY_H
50typedef std::function<void(
LogString threadName,
51 std::thread::id threadId,
74 LOG4CXX_NS::helpers::ThreadStartPre preStartFunction();
75 LOG4CXX_NS::helpers::ThreadStarted threadStartedFunction();
76 LOG4CXX_NS::helpers::ThreadStartPost postStartFunction();
78 LOG4CXX_DECLARE_PRIVATE_MEMBER_PTR(priv_data, m_priv)
111 std::thread::id thread_id,
112 std::thread::native_handle_type native_handle);
124 template<
class Function,
class... Args>
129 LOG4CXX_NS::helpers::ThreadStartPre pre_start = preStartFunction();
130 LOG4CXX_NS::helpers::ThreadStarted thread_start = threadStartedFunction();
131 LOG4CXX_NS::helpers::ThreadStartPost post_start = postStartFunction();
138 std::thread t( f, args... );
155 using Period = std::chrono::milliseconds;
Wraps any singleton object so it can be added to APRInitializer.
Definition: singletonholder.h:32
Definition: threadutility.h:69
static ManagerPtr instancePtr()
void removePeriodicTasksMatching(const LogString &namePrefix)
Remove any periodic task matching namePrefix.
void configureFuncs(ThreadStartPre pre_start, ThreadStarted started, ThreadStartPost post_start)
Configure the thread functions that log4cxx will use.
void removePeriodicTask(const LogString &taskName)
Remove the taskName periodic task.
void preThreadBlockSignals()
A pre-start thread function that blocks signals to the new thread (if the system has pthreads).
void threadStartedNameThread(LogString threadName, std::thread::id thread_id, std::thread::native_handle_type native_handle)
A thread_started function that names the thread using the appropriate system call.
void addPeriodicTask(const LogString &taskName, std::function< void()> f, const Period &delay)
Add the taskName periodic task.
std::chrono::milliseconds Period
Definition: threadutility.h:155
static ThreadUtility * instance()
void removeAllPeriodicTasks()
Remove all periodic tasks and stop the processing thread.
std::thread createThread(LogString name, Function &&f, Args &&... args)
Start a thread.
Definition: threadutility.h:125
bool hasPeriodicTask(const LogString &taskName)
Has a taskName periodic task already been added?
void postThreadUnblockSignals()
A post-start thread function that unblocks signals that preThreadBlockSignals blocked before starting...
static void configure(ThreadConfigurationType type)
Utility method for configuring the ThreadUtility in a standard configuration.
std::function< void()> ThreadStartPost
Called after a thread has started.
Definition: threadutility.h:58
ThreadConfigurationType
Definition: threadutility.h:61
@ BlockSignalsAndNameThread
std::function< void(LogString threadName, std::thread::id threadId, std::thread::native_handle_type nativeHandle)> ThreadStarted
Called when a new thread has started.
Definition: threadutility.h:52
std::function< void()> ThreadStartPre
A function that will be called before a thread is started.
Definition: threadutility.h:39
std::basic_string< logchar > LogString
Definition: logstring.h:60