fdcdd6e5ffbb3019463e74e25d1f4981beda2bcc
[cacao.git] / src / threads / threadlist.hpp
1 /* src/threads/threadlist.hpp - different thread-lists
2
3    Copyright (C) 2008, 2009
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 #include "vm/global.h"
38
39
40 /* ThreadList *****************************************************************/
41
42 #ifdef __cplusplus
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         // Thread counters visible to Java.
53         static int32_t             _number_of_started_java_threads;
54         static int32_t             _number_of_active_java_threads;
55         static int32_t             _peak_of_active_java_threads;
56
57         // Thread counters for internal usage.
58         static int32_t             _number_of_non_daemon_threads;
59
60         static void                 remove_from_active_thread_list(threadobject* t);
61         static void                 add_to_free_thread_list(threadobject* t);
62         static void                 add_to_free_index_list(int32_t index);
63
64 private:
65         // Comparator class.
66         class comparator : public std::binary_function<threadobject*, int32_t, bool> {
67         public:
68                 bool operator() (const threadobject* t, const int32_t index) const
69                 {
70                         return (t->index == index);
71                 }
72         };
73
74 public:
75         static void                 lock()   { _mutex.lock(); }
76         static void                 unlock() { _mutex.unlock(); }
77
78         // TODO make private
79         static void                 add_to_active_thread_list(threadobject* t);
80
81         // Thread management methods.
82         static threadobject*        get_main_thread();
83         static threadobject*        get_free_thread();
84         static int32_t              get_free_thread_index();
85         static threadobject*        get_thread_by_index(int32_t index);
86         static threadobject*        get_thread_from_java_object(java_handle_t* h);
87         static void                 release_thread(threadobject* t);
88
89         // Thread listing methods.
90         static void                 get_active_threads(List<threadobject*> &list);
91         static void                 get_active_java_threads(List<threadobject*> &list);
92
93         // Thread counting methods visible to Java.
94         static int32_t              get_number_of_started_java_threads();
95         static int32_t              get_number_of_active_java_threads();
96         static int32_t              get_number_of_daemon_java_threads();
97         static int32_t              get_peak_of_active_java_threads();
98         static void                 reset_peak_of_active_java_threads();
99
100         // Thread counting methods for internal use.
101         static int32_t              get_number_of_active_threads();
102         static int32_t              get_number_of_non_daemon_threads();
103
104         // Debugging methods.
105         static void                 dump_threads();
106 };
107
108 struct ThreadListLocker {
109         ThreadListLocker()  { ThreadList::lock(); }
110         ~ThreadListLocker()  { ThreadList::unlock(); }
111 };
112
113
114 inline void ThreadList::add_to_active_thread_list(threadobject* t)
115 {
116         _active_thread_list.push_back(t);
117
118         // Update counter variables.
119         if ((t->flags & THREAD_FLAG_INTERNAL) == 0) {
120                 _number_of_started_java_threads++;
121                 _number_of_active_java_threads++;
122                 _peak_of_active_java_threads = MAX(_peak_of_active_java_threads, _number_of_active_java_threads);
123         }
124 }
125
126 inline void ThreadList::remove_from_active_thread_list(threadobject* t)
127 {
128         _active_thread_list.remove(t);
129
130         // Update counter variables.
131         if ((t->flags & THREAD_FLAG_INTERNAL) == 0) {
132                 _number_of_active_java_threads--;
133         }
134 }
135
136 inline void ThreadList::add_to_free_thread_list(threadobject* t)
137 {
138         _free_thread_list.push_back(t);
139 }
140
141 inline void ThreadList::add_to_free_index_list(int32_t index)
142 {
143         _free_index_list.push_back(index);
144 }
145
146 inline threadobject* ThreadList::get_main_thread()
147 {
148         return _active_thread_list.front();
149 }
150
151 inline int32_t ThreadList::get_number_of_active_threads()
152 {
153         return _active_thread_list.size();
154 }
155
156 inline int32_t ThreadList::get_number_of_started_java_threads()
157 {
158         return _number_of_started_java_threads;
159 }
160
161 inline int32_t ThreadList::get_number_of_active_java_threads()
162 {
163         return _number_of_active_java_threads;
164 }
165
166 inline int32_t ThreadList::get_peak_of_active_java_threads()
167 {
168         return _peak_of_active_java_threads;
169 }
170
171 inline void ThreadList::reset_peak_of_active_java_threads()
172 {
173         _peak_of_active_java_threads = _number_of_active_java_threads;
174 }
175
176 #else
177
178 typedef struct ThreadList ThreadList;
179
180 void ThreadList_lock();
181 void ThreadList_unlock();
182 void ThreadList_dump_threads();
183 void ThreadList_release_thread(threadobject* t);
184 threadobject* ThreadList_get_free_thread();
185 int32_t ThreadList_get_free_thread_index();
186 void ThreadList_add_to_active_thread_list(threadobject* t);
187 threadobject* ThreadList_get_thread_by_index(int32_t index);
188 threadobject* ThreadList_get_main_thread();
189 threadobject* ThreadList_get_thread_from_java_object(java_handle_t* h);
190 int32_t ThreadList_get_number_of_non_daemon_threads();
191
192 #endif
193
194 #endif // _THREADLIST_HPP
195
196
197 /*
198  * These are local overrides for various environment variables in Emacs.
199  * Please do not remove this and leave it at the end of the file, where
200  * Emacs will automagically detect them.
201  * ---------------------------------------------------------------------
202  * Local variables:
203  * mode: c++
204  * indent-tabs-mode: t
205  * c-basic-offset: 4
206  * tab-width: 4
207  * End:
208  * vim:noexpandtab:sw=4:ts=4:
209  */