* Merged with tip.
[cacao.git] / src / threads / threadlist.hpp
1 /* src/threads/threadlist.hpp - different thread-lists
2
3    Copyright (C) 2008
4    CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5
6    This file is part of CACAO.
7
8    This program is free software; you can redistribute it and/or
9    modify it under the terms of the GNU General Public License as
10    published by the Free Software Foundation; either version 2, or (at
11    your option) any later version.
12
13    This program is distributed in the hope that it will be useful, but
14    WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16    General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program; if not, write to the Free Software
20    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21    02110-1301, USA.
22
23 */
24
25
26 #ifndef _THREADLIST_HPP
27 #define _THREADLIST_HPP
28
29 #include "config.h"
30
31 #include <stdint.h>
32
33 #include "threads/thread.hpp"
34
35 #include "toolbox/list.hpp"
36
37
38 /* ThreadList *****************************************************************/
39
40 #ifdef __cplusplus
41
42 using std::list;
43
44 class ThreadList {
45 private:
46         static Mutex               _mutex;              // a mutex for all thread lists
47
48         static list<threadobject*> _active_thread_list; // list of active threads
49         static list<threadobject*> _free_thread_list;   // list of free threads
50         static list<int32_t>       _free_index_list;    // list of free thread indexes
51
52         static int32_t             _number_of_non_daemon_threads;
53
54         static inline void          remove_from_active_thread_list(threadobject* t);
55         static inline void          add_to_free_thread_list(threadobject* t);
56         static inline void          add_to_free_index_list(int32_t index);
57
58 private:
59         // Comparator class.
60         class comparator : public std::binary_function<threadobject*, int32_t, bool> {
61         public:
62                 bool operator() (const threadobject* t, const int32_t index) const
63                 {
64                         return (t->index == index);
65                 }
66         };
67
68 public:
69         static inline void          lock()   { _mutex.lock(); }
70         static inline void          unlock() { _mutex.unlock(); }
71
72         // TODO make private
73         static inline void          add_to_active_thread_list(threadobject* t);
74
75         static void                 dump_threads();
76         static inline threadobject* get_main_thread();
77         static threadobject*        get_free_thread();
78         static int32_t              get_free_thread_index();
79         static int32_t              get_number_of_non_daemon_threads();
80         static threadobject*        get_thread_by_index(int32_t index);
81         static threadobject*        get_thread_from_java_object(java_handle_t* h);
82         static void                 release_thread(threadobject* t);
83 };
84
85
86 inline void ThreadList::add_to_active_thread_list(threadobject* t)
87 {
88         _active_thread_list.push_back(t);
89 }
90
91 inline void ThreadList::remove_from_active_thread_list(threadobject* t)
92 {
93         _active_thread_list.remove(t);
94 }
95
96 inline void ThreadList::add_to_free_thread_list(threadobject* t)
97 {
98         _free_thread_list.push_back(t);
99 }
100
101 inline void ThreadList::add_to_free_index_list(int32_t index)
102 {
103         _free_index_list.push_back(index);
104 }
105
106 inline threadobject* ThreadList::get_main_thread()
107 {
108         return _active_thread_list.front();
109 }
110
111 #else
112
113 typedef struct ThreadList ThreadList;
114
115 void ThreadList_lock();
116 void ThreadList_unlock();
117 void ThreadList_dump_threads();
118 void ThreadList_release_thread(threadobject* t);
119 threadobject* ThreadList_get_free_thread();
120 int32_t ThreadList_get_free_thread_index();
121 void ThreadList_add_to_active_thread_list(threadobject* t);
122 threadobject* ThreadList_get_thread_by_index(int32_t index);
123 threadobject* ThreadList_get_main_thread();
124 threadobject* ThreadList_get_thread_from_java_object(java_handle_t* h);
125 int32_t ThreadList_get_number_of_non_daemon_threads();
126
127 #endif
128
129 #endif // _THREADLIST_HPP
130
131
132 /*
133  * These are local overrides for various environment variables in Emacs.
134  * Please do not remove this and leave it at the end of the file, where
135  * Emacs will automagically detect them.
136  * ---------------------------------------------------------------------
137  * Local variables:
138  * mode: c++
139  * indent-tabs-mode: t
140  * c-basic-offset: 4
141  * tab-width: 4
142  * End:
143  * vim:noexpandtab:sw=4:ts=4:
144  */