jthread.cpp
4.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/***************************************************************************
* Copyright (C) 2005 by Jeff Ferr *
* root@sat *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include "jthread.h"
#include "jthreadexception.h"
#include <errno.h>
namespace jthread {
Thread::Thread()
{
_is_running = false;
}
Thread::~Thread()
{
// Interrupt();
}
/** Private */
void * Thread::ThreadMain(void *owner_)
{
if (owner_ == NULL) {
return NULL;
}
Thread *owner = (Thread *)(owner_);
if (owner->SetUp() == 0) {
owner->_is_running = true;
owner->Run();
owner->_is_running = false;
owner->CleanUp();
}
owner->SignalThreadDead();
// pthread_exit(NULL);
return NULL;
}
void Thread::SignalThreadDead()
{
// _condition.Notify();
}
/** End */
/** Protected */
int Thread::SetUp()
{
return 0;
}
void Thread::Run()
{
return;
}
int Thread::CleanUp()
{
return 0;
}
/** End */
void Thread::Start() throw(ThreadException)
{
/**
* Permitir criar varias instancias na chamada de Start()
*/
if (pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL) == EINVAL) {
throw ThreadException("Interrupt is not allowed !");
}
if (pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, NULL) == EINVAL) {
throw ThreadException("Thread is not asynchronous !");
}
if (pthread_create(&_thread, NULL, &(Thread::ThreadMain), this)) {
throw ThreadException("Unable to create a process to suport the ... !");
}
pthread_detach(_thread);
}
void Thread::Interrupt() throw(ThreadException)
{
if (_is_running == true) {
_is_running = false;
SignalThreadDead();
if (pthread_cancel(_thread) == ESRCH) {
// throw ThreadException("Thread cancel exception !");
}
}
}
void Thread::Suspend()
{
}
void Thread::Resume()
{
}
bool Thread::IsStarted()
{
return _is_running;
}
void Thread::SetPolicy(thread_policy_t policy, thread_priority_t priority) throw(ThreadException)
{
struct sched_param param;
param.__sched_priority = priority;
int result;
result = pthread_setschedparam(_thread, policy, ¶m);
if (result == EINVAL) {
throw ThreadException("Policy is not defined !");
} else if (result == EPERM) {
throw ThreadException("The process does not have superuser permission !");
} else if (result == ESRCH) {
throw ThreadException("This thread has already terminated !");
} else if (result < 0) {
throw ThreadException("Unknown exception in set policy !");
}
}
void Thread::GetPolicy(thread_policy_t *policy, thread_priority_t *priority) throw(ThreadException)
{
struct sched_param param;
int policy_int, result;
result = pthread_getschedparam(_thread, &policy_int, ¶m);
if (result == ESRCH) {
throw ThreadException("This thread has already terminated !");
} else if (result < 0) {
throw ThreadException("Unknown exception in set policy !");
}
switch (param.__sched_priority) {
case 0:
(*priority) = LOW_PRIORITY;
break;
case 1:
case 2:
case 3:
case 4:
case 5:
(*priority) = NORMAL_PRIORITY;
break;
case 6:
case 7:
case 8:
case 9:
case 10:
(*priority) = HIGH_PRIORITY;
break;
default:
(*priority) = NORMAL_PRIORITY;
break;
}
switch (policy_int) {
case SCHED_OTHER:
(*policy) = POLICY_OTHER;
break;
case SCHED_FIFO:
(*policy) = POLICY_FIFO;
break;
case SCHED_RR:
(*policy) = POLICY_ROUND_ROBIN;
break;
}
}
void Thread::WaitThread()
{
/*
while (_is_running == true) {
_condition.Wait();
}
*/
sleep(1);
}
};