[7297] Fixed profession spells sorting in trainer spell list at client.
[getmangos.git] / dep / src / zthread / ThreadImpl.h
blobae2c8f23960235ed0320a43443337bf4398cbb71
1 /*
2 * Copyright (c) 2005, Eric Crahen
4 * Permission is hereby granted, free of charge, to any person obtaining a copy
5 * of this software and associated documentation files (the "Software"), to deal
6 * in the Software without restriction, including without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to permit persons to whom the Software is furnished
9 * to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in all
12 * copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
19 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 #ifndef __ZTTHREADIMPL_H__
24 #define __ZTTHREADIMPL_H__
26 #include "zthread/ThreadLocalImpl.h"
27 #include "zthread/Thread.h"
28 #include "zthread/Exceptions.h"
29 #include "IntrusivePtr.h"
31 #include "Monitor.h"
32 #include "TSS.h"
33 #include "ThreadOps.h"
34 #include "State.h"
36 #include <map>
37 #include <deque>
39 namespace ZThread {
41 /**
42 * @class ThreadImpl
43 * @author Eric Crahen <http://www.code-foo.com>
44 * @date <2003-07-27T13:39:03-0400>
45 * @version 2.3.0
47 class ThreadImpl : public IntrusivePtr<ThreadImpl, FastLock>, public ThreadOps {
49 typedef std::deque<ThreadImpl*> List;
51 //! TSS to store implementation to current thread mapping.
52 static TSS<ThreadImpl*> _threadMap;
54 //! The Monitor for controlling this thread
55 Monitor _monitor;
57 //! Current state for the thread
58 State _state;
60 //! Joining threads
61 List _joiners;
63 public:
65 typedef std::map<const ThreadLocalImpl*, ThreadLocalImpl::ValuePtr > ThreadLocalMap;
67 private:
69 ThreadLocalMap _tls;
71 //! Cached thread priority
72 Priority _priority;
74 //! Request cancel() when main() goes out of scope
75 bool _autoCancel;
77 void start(const Task& task);
79 public:
81 ThreadImpl();
83 ThreadImpl(const Task&, bool);
85 ~ThreadImpl();
87 Monitor& getMonitor();
89 void cancel(bool autoCancel = false);
91 bool interrupt();
93 bool isInterrupted();
95 bool isCanceled();
97 Priority getPriority() const;
99 // ThreadLocalMap& getThreadLocalMap();
100 ThreadLocalMap& getThreadLocalMap() { return _tls; }
102 bool join(unsigned long);
104 void setPriority(Priority);
106 bool isActive();
108 bool isReference();
110 static void sleep(unsigned long);
112 static void yield();
114 static ThreadImpl* current();
116 static void dispatch(ThreadImpl*, ThreadImpl*, Task);
120 } // namespace ZThread
122 #endif // __ZTTHREADIMPL_H__