]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/libc++/include/thread
MFC r351253:
[FreeBSD/FreeBSD.git] / contrib / libc++ / include / thread
1 // -*- C++ -*-
2 //===--------------------------- thread -----------------------------------===//
3 //
4 //                     The LLVM Compiler Infrastructure
5 //
6 // This file is dual licensed under the MIT and the University of Illinois Open
7 // Source Licenses. See LICENSE.TXT for details.
8 //
9 //===----------------------------------------------------------------------===//
10
11 #ifndef _LIBCPP_THREAD
12 #define _LIBCPP_THREAD
13
14 /*
15
16     thread synopsis
17
18 #define __STDCPP_THREADS__ __cplusplus
19
20 namespace std
21 {
22
23 class thread
24 {
25 public:
26     class id;
27     typedef pthread_t native_handle_type;
28
29     thread() noexcept;
30     template <class F, class ...Args> explicit thread(F&& f, Args&&... args);
31     ~thread();
32
33     thread(const thread&) = delete;
34     thread(thread&& t) noexcept;
35
36     thread& operator=(const thread&) = delete;
37     thread& operator=(thread&& t) noexcept;
38
39     void swap(thread& t) noexcept;
40
41     bool joinable() const noexcept;
42     void join();
43     void detach();
44     id get_id() const noexcept;
45     native_handle_type native_handle();
46
47     static unsigned hardware_concurrency() noexcept;
48 };
49
50 void swap(thread& x, thread& y) noexcept;
51
52 class thread::id
53 {
54 public:
55     id() noexcept;
56 };
57
58 bool operator==(thread::id x, thread::id y) noexcept;
59 bool operator!=(thread::id x, thread::id y) noexcept;
60 bool operator< (thread::id x, thread::id y) noexcept;
61 bool operator<=(thread::id x, thread::id y) noexcept;
62 bool operator> (thread::id x, thread::id y) noexcept;
63 bool operator>=(thread::id x, thread::id y) noexcept;
64
65 template<class charT, class traits>
66 basic_ostream<charT, traits>&
67 operator<<(basic_ostream<charT, traits>& out, thread::id id);
68
69 namespace this_thread
70 {
71
72 thread::id get_id() noexcept;
73
74 void yield() noexcept;
75
76 template <class Clock, class Duration>
77 void sleep_until(const chrono::time_point<Clock, Duration>& abs_time);
78
79 template <class Rep, class Period>
80 void sleep_for(const chrono::duration<Rep, Period>& rel_time);
81
82 }  // this_thread
83
84 }  // std
85
86 */
87
88 #include <__config>
89 #include <iosfwd>
90 #include <__functional_base>
91 #include <type_traits>
92 #include <cstddef>
93 #include <functional>
94 #include <memory>
95 #include <system_error>
96 #include <chrono>
97 #include <__mutex_base>
98 #ifndef _LIBCPP_CXX03_LANG
99 #include <tuple>
100 #endif
101 #include <__threading_support>
102 #include <__debug>
103
104 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
105 #pragma GCC system_header
106 #endif
107
108 _LIBCPP_PUSH_MACROS
109 #include <__undef_macros>
110
111 #define __STDCPP_THREADS__ __cplusplus
112
113 #ifdef _LIBCPP_HAS_NO_THREADS
114 #error <thread> is not supported on this single threaded system
115 #else // !_LIBCPP_HAS_NO_THREADS
116
117 _LIBCPP_BEGIN_NAMESPACE_STD
118
119 template <class _Tp> class __thread_specific_ptr;
120 class _LIBCPP_TYPE_VIS __thread_struct;
121 class _LIBCPP_HIDDEN __thread_struct_imp;
122 class __assoc_sub_state;
123
124 _LIBCPP_FUNC_VIS __thread_specific_ptr<__thread_struct>& __thread_local_data();
125
126 class _LIBCPP_TYPE_VIS __thread_struct
127 {
128     __thread_struct_imp* __p_;
129
130     __thread_struct(const __thread_struct&);
131     __thread_struct& operator=(const __thread_struct&);
132 public:
133     __thread_struct();
134     ~__thread_struct();
135
136     void notify_all_at_thread_exit(condition_variable*, mutex*);
137     void __make_ready_at_thread_exit(__assoc_sub_state*);
138 };
139
140 template <class _Tp>
141 class __thread_specific_ptr
142 {
143     __libcpp_tls_key __key_;
144
145      // Only __thread_local_data() may construct a __thread_specific_ptr
146      // and only with _Tp == __thread_struct.
147     static_assert((is_same<_Tp, __thread_struct>::value), "");
148     __thread_specific_ptr();
149     friend _LIBCPP_FUNC_VIS __thread_specific_ptr<__thread_struct>& __thread_local_data();
150
151     __thread_specific_ptr(const __thread_specific_ptr&);
152     __thread_specific_ptr& operator=(const __thread_specific_ptr&);
153
154     _LIBCPP_HIDDEN static void _LIBCPP_TLS_DESTRUCTOR_CC __at_thread_exit(void*);
155
156 public:
157     typedef _Tp* pointer;
158
159     ~__thread_specific_ptr();
160
161     _LIBCPP_INLINE_VISIBILITY
162     pointer get() const {return static_cast<_Tp*>(__libcpp_tls_get(__key_));}
163     _LIBCPP_INLINE_VISIBILITY
164     pointer operator*() const {return *get();}
165     _LIBCPP_INLINE_VISIBILITY
166     pointer operator->() const {return get();}
167     void set_pointer(pointer __p);
168 };
169
170 template <class _Tp>
171 void _LIBCPP_TLS_DESTRUCTOR_CC
172 __thread_specific_ptr<_Tp>::__at_thread_exit(void* __p)
173 {
174     delete static_cast<pointer>(__p);
175 }
176
177 template <class _Tp>
178 __thread_specific_ptr<_Tp>::__thread_specific_ptr()
179 {
180   int __ec =
181       __libcpp_tls_create(&__key_, &__thread_specific_ptr::__at_thread_exit);
182   if (__ec)
183     __throw_system_error(__ec, "__thread_specific_ptr construction failed");
184 }
185
186 template <class _Tp>
187 __thread_specific_ptr<_Tp>::~__thread_specific_ptr()
188 {
189     // __thread_specific_ptr is only created with a static storage duration
190     // so this destructor is only invoked during program termination. Invoking
191     // pthread_key_delete(__key_) may prevent other threads from deleting their
192     // thread local data. For this reason we leak the key.
193 }
194
195 template <class _Tp>
196 void
197 __thread_specific_ptr<_Tp>::set_pointer(pointer __p)
198 {
199     _LIBCPP_ASSERT(get() == nullptr,
200                    "Attempting to overwrite thread local data");
201     __libcpp_tls_set(__key_, __p);
202 }
203
204 template<>
205 struct _LIBCPP_TEMPLATE_VIS hash<__thread_id>
206     : public unary_function<__thread_id, size_t>
207 {
208     _LIBCPP_INLINE_VISIBILITY
209     size_t operator()(__thread_id __v) const _NOEXCEPT
210     {
211         return hash<__libcpp_thread_id>()(__v.__id_);
212     }
213 };
214
215 template<class _CharT, class _Traits>
216 _LIBCPP_INLINE_VISIBILITY
217 basic_ostream<_CharT, _Traits>&
218 operator<<(basic_ostream<_CharT, _Traits>& __os, __thread_id __id)
219 {return __os << __id.__id_;}
220
221 class _LIBCPP_TYPE_VIS thread
222 {
223     __libcpp_thread_t __t_;
224
225     thread(const thread&);
226     thread& operator=(const thread&);
227 public:
228     typedef __thread_id id;
229     typedef __libcpp_thread_t native_handle_type;
230
231     _LIBCPP_INLINE_VISIBILITY
232     thread() _NOEXCEPT : __t_(_LIBCPP_NULL_THREAD) {}
233 #ifndef _LIBCPP_CXX03_LANG
234     template <class _Fp, class ..._Args,
235               class = typename enable_if
236               <
237                    !is_same<typename __uncvref<_Fp>::type, thread>::value
238               >::type
239              >
240         _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
241         explicit thread(_Fp&& __f, _Args&&... __args);
242 #else  // _LIBCPP_CXX03_LANG
243     template <class _Fp>
244     _LIBCPP_METHOD_TEMPLATE_IMPLICIT_INSTANTIATION_VIS
245     explicit thread(_Fp __f);
246 #endif
247     ~thread();
248
249 #ifndef _LIBCPP_CXX03_LANG
250     _LIBCPP_INLINE_VISIBILITY
251     thread(thread&& __t) _NOEXCEPT : __t_(__t.__t_) {__t.__t_ = _LIBCPP_NULL_THREAD;}
252     _LIBCPP_INLINE_VISIBILITY
253     thread& operator=(thread&& __t) _NOEXCEPT;
254 #endif  // _LIBCPP_CXX03_LANG
255
256     _LIBCPP_INLINE_VISIBILITY
257     void swap(thread& __t) _NOEXCEPT {_VSTD::swap(__t_, __t.__t_);}
258
259     _LIBCPP_INLINE_VISIBILITY
260     bool joinable() const _NOEXCEPT {return !__libcpp_thread_isnull(&__t_);}
261     void join();
262     void detach();
263     _LIBCPP_INLINE_VISIBILITY
264     id get_id() const _NOEXCEPT {return __libcpp_thread_get_id(&__t_);}
265     _LIBCPP_INLINE_VISIBILITY
266     native_handle_type native_handle() _NOEXCEPT {return __t_;}
267
268     static unsigned hardware_concurrency() _NOEXCEPT;
269 };
270
271 #ifndef _LIBCPP_CXX03_LANG
272
273 template <class _TSp, class _Fp, class ..._Args, size_t ..._Indices>
274 inline _LIBCPP_INLINE_VISIBILITY
275 void
276 __thread_execute(tuple<_TSp, _Fp, _Args...>& __t, __tuple_indices<_Indices...>)
277 {
278     __invoke(_VSTD::move(_VSTD::get<1>(__t)), _VSTD::move(_VSTD::get<_Indices>(__t))...);
279 }
280
281 template <class _Fp>
282 void* __thread_proxy(void* __vp)
283 {
284     // _Fp = std::tuple< unique_ptr<__thread_struct>, Functor, Args...>
285     std::unique_ptr<_Fp> __p(static_cast<_Fp*>(__vp));
286     __thread_local_data().set_pointer(_VSTD::get<0>(*__p).release());
287     typedef typename __make_tuple_indices<tuple_size<_Fp>::value, 2>::type _Index;
288     __thread_execute(*__p, _Index());
289     return nullptr;
290 }
291
292 template <class _Fp, class ..._Args,
293           class
294          >
295 thread::thread(_Fp&& __f, _Args&&... __args)
296 {
297     typedef unique_ptr<__thread_struct> _TSPtr;
298     _TSPtr __tsp(new __thread_struct);
299     typedef tuple<_TSPtr, typename decay<_Fp>::type, typename decay<_Args>::type...> _Gp;
300     _VSTD::unique_ptr<_Gp> __p(
301             new _Gp(std::move(__tsp),
302                     __decay_copy(_VSTD::forward<_Fp>(__f)),
303                     __decay_copy(_VSTD::forward<_Args>(__args))...));
304     int __ec = __libcpp_thread_create(&__t_, &__thread_proxy<_Gp>, __p.get());
305     if (__ec == 0)
306         __p.release();
307     else
308         __throw_system_error(__ec, "thread constructor failed");
309 }
310
311 inline
312 thread&
313 thread::operator=(thread&& __t) _NOEXCEPT
314 {
315     if (!__libcpp_thread_isnull(&__t_))
316         terminate();
317     __t_ = __t.__t_;
318     __t.__t_ = _LIBCPP_NULL_THREAD;
319     return *this;
320 }
321
322 #else  // _LIBCPP_CXX03_LANG
323
324 template <class _Fp>
325 struct __thread_invoke_pair {
326     // This type is used to pass memory for thread local storage and a functor
327     // to a newly created thread because std::pair doesn't work with
328     // std::unique_ptr in C++03.
329     __thread_invoke_pair(_Fp& __f) : __tsp_(new __thread_struct), __fn_(__f) {}
330     unique_ptr<__thread_struct> __tsp_;
331     _Fp __fn_;
332 };
333
334 template <class _Fp>
335 void* __thread_proxy_cxx03(void* __vp)
336 {
337     std::unique_ptr<_Fp> __p(static_cast<_Fp*>(__vp));
338     __thread_local_data().set_pointer(__p->__tsp_.release());
339     (__p->__fn_)();
340     return nullptr;
341 }
342
343 template <class _Fp>
344 thread::thread(_Fp __f)
345 {
346
347     typedef __thread_invoke_pair<_Fp> _InvokePair;
348     typedef std::unique_ptr<_InvokePair> _PairPtr;
349     _PairPtr __pp(new _InvokePair(__f));
350     int __ec = __libcpp_thread_create(&__t_, &__thread_proxy_cxx03<_InvokePair>, __pp.get());
351     if (__ec == 0)
352         __pp.release();
353     else
354         __throw_system_error(__ec, "thread constructor failed");
355 }
356
357 #endif  // _LIBCPP_CXX03_LANG
358
359 inline _LIBCPP_INLINE_VISIBILITY
360 void swap(thread& __x, thread& __y) _NOEXCEPT {__x.swap(__y);}
361
362 namespace this_thread
363 {
364
365 _LIBCPP_FUNC_VIS void sleep_for(const chrono::nanoseconds& __ns);
366
367 template <class _Rep, class _Period>
368 void
369 sleep_for(const chrono::duration<_Rep, _Period>& __d)
370 {
371     using namespace chrono;
372     if (__d > duration<_Rep, _Period>::zero())
373     {
374         _LIBCPP_CONSTEXPR duration<long double> _Max = nanoseconds::max();
375         nanoseconds __ns;
376         if (__d < _Max)
377         {
378             __ns = duration_cast<nanoseconds>(__d);
379             if (__ns < __d)
380                 ++__ns;
381         }
382         else
383             __ns = nanoseconds::max();
384         sleep_for(__ns);
385     }
386 }
387
388 template <class _Clock, class _Duration>
389 void
390 sleep_until(const chrono::time_point<_Clock, _Duration>& __t)
391 {
392     using namespace chrono;
393     mutex __mut;
394     condition_variable __cv;
395     unique_lock<mutex> __lk(__mut);
396     while (_Clock::now() < __t)
397         __cv.wait_until(__lk, __t);
398 }
399
400 template <class _Duration>
401 inline _LIBCPP_INLINE_VISIBILITY
402 void
403 sleep_until(const chrono::time_point<chrono::steady_clock, _Duration>& __t)
404 {
405     using namespace chrono;
406     sleep_for(__t - steady_clock::now());
407 }
408
409 inline _LIBCPP_INLINE_VISIBILITY
410 void yield() _NOEXCEPT {__libcpp_thread_yield();}
411
412 }  // this_thread
413
414 _LIBCPP_END_NAMESPACE_STD
415
416 #endif // !_LIBCPP_HAS_NO_THREADS
417
418 _LIBCPP_POP_MACROS
419
420 #endif  // _LIBCPP_THREAD