summaryrefslogtreecommitdiffstats
path: root/src/OSSupport/IsThread.h
blob: 131c6950edf8a40f3fb083d08b2a7355ef0b0b5c (plain) (blame)
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

// IsThread.h

// Interfaces to the cIsThread class representing an OS-independent wrapper for a class that implements a thread.
// This class will eventually suupersede the old cThread class

/*
Usage:
To have a new thread, declare a class descending from cIsClass.
Then override its Execute() method to provide your thread processing.
In the descending class' constructor call the Start() method to start the thread once you're finished with initialization.
*/





#pragma once
#include <thread>





class cIsThread
{
protected:
	/// This is the main thread entrypoint
	virtual void Execute(void) = 0;

	/// The overriden Execute() method should check this value periodically and terminate if this is true
	volatile bool m_ShouldTerminate;

public:
	cIsThread(const AString & a_ThreadName);
	virtual ~cIsThread();

	/// Starts the thread; returns without waiting for the actual start
	bool Start(void);

	/// Signals the thread to terminate and waits until it's finished
	void Stop(void);

	/// Waits for the thread to finish. Doesn't signalize the ShouldTerminate flag
	bool Wait(void);

	/** Returns true if the thread calling this function is the thread contained within this object. */
	bool IsCurrentThread(void) const { return std::this_thread::get_id() == m_Thread.get_id(); }

protected:
	AString m_ThreadName;
	std::thread m_Thread;
} ;