cannam@147
|
1 // Copyright (c) 2013-2014 Sandstorm Development Group, Inc. and contributors
|
cannam@147
|
2 // Licensed under the MIT License:
|
cannam@147
|
3 //
|
cannam@147
|
4 // Permission is hereby granted, free of charge, to any person obtaining a copy
|
cannam@147
|
5 // of this software and associated documentation files (the "Software"), to deal
|
cannam@147
|
6 // in the Software without restriction, including without limitation the rights
|
cannam@147
|
7 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
cannam@147
|
8 // copies of the Software, and to permit persons to whom the Software is
|
cannam@147
|
9 // furnished to do so, subject to the following conditions:
|
cannam@147
|
10 //
|
cannam@147
|
11 // The above copyright notice and this permission notice shall be included in
|
cannam@147
|
12 // all copies or substantial portions of the Software.
|
cannam@147
|
13 //
|
cannam@147
|
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
cannam@147
|
15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
cannam@147
|
16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
cannam@147
|
17 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
cannam@147
|
18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
cannam@147
|
19 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
cannam@147
|
20 // THE SOFTWARE.
|
cannam@147
|
21
|
cannam@147
|
22 #ifndef KJ_THREAD_H_
|
cannam@147
|
23 #define KJ_THREAD_H_
|
cannam@147
|
24
|
cannam@147
|
25 #if defined(__GNUC__) && !KJ_HEADER_WARNINGS
|
cannam@147
|
26 #pragma GCC system_header
|
cannam@147
|
27 #endif
|
cannam@147
|
28
|
cannam@147
|
29 #include "common.h"
|
cannam@147
|
30 #include "function.h"
|
cannam@147
|
31 #include "exception.h"
|
cannam@147
|
32
|
cannam@147
|
33 namespace kj {
|
cannam@147
|
34
|
cannam@147
|
35 class Thread {
|
cannam@147
|
36 // A thread! Pass a lambda to the constructor, and it runs in the thread. The destructor joins
|
cannam@147
|
37 // the thread. If the function throws an exception, it is rethrown from the thread's destructor
|
cannam@147
|
38 // (if not unwinding from another exception).
|
cannam@147
|
39
|
cannam@147
|
40 public:
|
cannam@147
|
41 explicit Thread(Function<void()> func);
|
cannam@147
|
42 KJ_DISALLOW_COPY(Thread);
|
cannam@147
|
43
|
cannam@147
|
44 ~Thread() noexcept(false);
|
cannam@147
|
45
|
cannam@147
|
46 #if !_WIN32
|
cannam@147
|
47 void sendSignal(int signo);
|
cannam@147
|
48 // Send a Unix signal to the given thread, using pthread_kill or an equivalent.
|
cannam@147
|
49 #endif
|
cannam@147
|
50
|
cannam@147
|
51 void detach();
|
cannam@147
|
52 // Don't join the thread in ~Thread().
|
cannam@147
|
53
|
cannam@147
|
54 private:
|
cannam@147
|
55 struct ThreadState {
|
cannam@147
|
56 Function<void()> func;
|
cannam@147
|
57 kj::Maybe<kj::Exception> exception;
|
cannam@147
|
58
|
cannam@147
|
59 unsigned int refcount;
|
cannam@147
|
60 // Owned by the parent thread and the child thread.
|
cannam@147
|
61
|
cannam@147
|
62 void unref();
|
cannam@147
|
63 };
|
cannam@147
|
64 ThreadState* state;
|
cannam@147
|
65
|
cannam@147
|
66 #if _WIN32
|
cannam@147
|
67 void* threadHandle;
|
cannam@147
|
68 #else
|
cannam@147
|
69 unsigned long long threadId; // actually pthread_t
|
cannam@147
|
70 #endif
|
cannam@147
|
71 bool detached = false;
|
cannam@147
|
72
|
cannam@147
|
73 #if _WIN32
|
cannam@147
|
74 static unsigned long __stdcall runThread(void* ptr);
|
cannam@147
|
75 #else
|
cannam@147
|
76 static void* runThread(void* ptr);
|
cannam@147
|
77 #endif
|
cannam@147
|
78 };
|
cannam@147
|
79
|
cannam@147
|
80 } // namespace kj
|
cannam@147
|
81
|
cannam@147
|
82 #endif // KJ_THREAD_H_
|