File: CThread.cpp

package info (click to toggle)
gridengine 8.1.9%2Bdfsg-13.2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 57,848 kB
  • sloc: ansic: 432,690; java: 87,068; cpp: 31,958; sh: 29,445; jsp: 7,757; perl: 6,336; xml: 5,828; makefile: 4,705; csh: 3,934; ruby: 2,221; tcl: 1,676; lisp: 669; yacc: 519; python: 503; lex: 361; javascript: 200
file content (240 lines) | stat: -rw-r--r-- 6,605 bytes parent folder | download | duplicates (7)
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/*___INFO__MARK_BEGIN__*/
/*************************************************************************
 * 
 *  The Contents of this file are made available subject to the terms of
 *  the Sun Industry Standards Source License Version 1.2
 * 
 *  Sun Microsystems Inc., March, 2001
 * 
 * 
 *  Sun Industry Standards Source License Version 1.2
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.2 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 * 
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 * 
 *   The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 * 
 *   Copyright: 2001 by Sun Microsystems, Inc.
 * 
 *   All Rights Reserved.
 * 
 ************************************************************************/
/*___INFO__MARK_END__*/
#include "stdafx.h"
#include <windows.h>
#include <eh.h>
#include <iostream>

#include "CThread.h"
#include "CError.h"
#include "CException.h"
#include "CSehTranslator.h"
#include "CTrace.h"
#include "CUser.h"

using namespace std;

namespace GridEngine {

DWORD WINAPI CThread::RealMain(LPVOID pvParameter) {
   CTrace::CEnter Enter(CTrace::Layer::KERNEL, L"Thread::RealMain(LPVOID)");
   _se_translator_function pOldTranslator;

   pOldTranslator = _set_se_translator(TranslateSeToCe);
   try {
      CThread *ThisThread = (CThread*)pvParameter;

      return ThisThread->ThreadMain(ThisThread->m_pvThreadParameter);
   } catch (CCodineException& ex) {
      wcerr << ex;
   } catch (CException& ex) {
      wcerr << ex;
   } catch (...) {
      wcerr << L"Caught unknown exception in Thread::RealMain(LPVOID)" << endl;
   }
   _set_se_translator(pOldTranslator);
   return 1;
}

CThread::CThread() : 
   m_dwThreadId(0),
   m_pUser(NULL),
   m_pvThreadParameter(NULL)
{
   CTrace::CEnter Enter(CTrace::Layer::KERNEL, L"Thread::Thread()");
   CreateNewThread();
}

CThread::CThread(const CUser& StartUser) :
   m_dwThreadId(0),
   m_pUser(new CUser(StartUser)),
   m_pvThreadParameter(NULL)
{
   CTrace::CEnter Enter(CTrace::Layer::KERNEL, L"Thread::Thread()");
   CreateNewThread();
}


CThread::CThread(PVOID lpThreadParameter) : 
   m_dwThreadId(0),
   m_pUser(NULL),
   m_pvThreadParameter(lpThreadParameter)
{
   CTrace::CEnter Enter(CTrace::Layer::KERNEL, L"Thread::Thread(PVOID)");
   CreateNewThread();
}

CThread::CThread(DWORD dwThreadId) : 
   m_dwThreadId(dwThreadId),
   m_pUser(NULL),
   m_pvThreadParameter(0)
{
   CTrace::CEnter Enter(CTrace::Layer::KERNEL, L"Thread::Thread(DWORD)");
   OpenExistingThread();
}

CThread::CThread(DWORD dwThreadId, const CUser& User) : 
   m_dwThreadId(dwThreadId),
   m_pUser(new CUser(User)),
   m_pvThreadParameter(0)
{
   CTrace::CEnter Enter(CTrace::Layer::KERNEL, L"Thread::Thread(DWORD)");
   OpenExistingThread();
}

CThread::~CThread() {
   CTrace::CEnter Enter(CTrace::Layer::KERNEL, L"Thread::~Thread()");
   if (m_pUser) {
      delete m_pUser;
      m_pUser = NULL;
   }
}

void CThread::CreateNewThread() {
   CTrace::CEnter Enter(CTrace::Layer::KERNEL, L"Thread::CreateNewThread()");
   HANDLE hThread;

   if (m_pUser) {
      m_pUser->Impersonate();
   }
   hThread = CreateThread(NULL, 0, CThread::RealMain, this, CREATE_SUSPENDED, 
      &m_dwThreadId);
   if (m_pUser) {
      m_pUser->ReturnToSelf();
   }
   if (hThread == 0) {
      throw CCodineException(CError::GetErrorMessage(GetLastError()), __FILE__, __LINE__);
   } else {
      SetHandle(hThread);
   }
}

DWORD CThread::GetExitCode() const {
   CTrace::CEnter Enter(CTrace::Layer::KERNEL, L"Thread::GetExitCode()");
   DWORD dwExitCode;

   GetExitCodeThread(GetHandle(), &dwExitCode);
   return dwExitCode;
}

DWORD CThread::GetThreadId() const {
   CTrace::CEnter Enter(CTrace::Layer::KERNEL, L"Thread::GetThreadId()");
   return m_dwThreadId;
}

void CThread::OpenExistingThread() {
   CTrace::CEnter Enter(CTrace::Layer::KERNEL, L"Thread::OpenExistingThread()");
   HANDLE hThread;

   if (m_pUser) {
      m_pUser->Impersonate();
   }
   hThread = OpenThread(THREAD_ALL_ACCESS, false, m_dwThreadId);
   if (m_pUser) {
      m_pUser->ReturnToSelf();
   }
   if (hThread == 0) {
      throw CCodineException(CError::GetErrorMessage(GetLastError()), __FILE__, __LINE__);
   } else {
      SetHandle(hThread);
   }
}

void CThread::Start() {
   CTrace::CEnter Enter(CTrace::Layer::KERNEL, L"Thread::Start()");
   Resume();
}

void CThread::Suspend() {
   CTrace::CEnter Enter(CTrace::Layer::KERNEL, L"Thread::Suspend()");
   DWORD dwRet;

   if (m_pUser) {
      m_pUser->Impersonate();
   }
   dwRet = SuspendThread(GetHandle());
   if (m_pUser) {
      m_pUser->ReturnToSelf();
   }
   if (dwRet == 0xFFFFFFFF) {
      throw CCodineException(CError::GetErrorMessage(GetLastError()), __FILE__, __LINE__);
   } 
}

void CThread::Resume() {
   CTrace::CEnter Enter(CTrace::Layer::KERNEL, L"Thread::Resume()");
   DWORD dwRet;

   if (m_pUser) {
      m_pUser->Impersonate();
   }
   dwRet = ResumeThread(GetHandle());
   if (m_pUser) {
      m_pUser->ReturnToSelf();
   }
   if (dwRet == 0xFFFFFFFF) {
      throw CCodineException(CError::GetErrorMessage(GetLastError()), __FILE__, __LINE__);
   } 
}

void CThread::Terminate(DWORD dwExitCode) {
   CTrace::CEnter Enter(CTrace::Layer::KERNEL, L"Thread::Terminate(DWORD)");
   BOOL bRet;

   if (m_pUser) {
      m_pUser->Impersonate();
   }
   bRet = TerminateThread(GetHandle(), dwExitCode);
   if (m_pUser) {
      m_pUser->ReturnToSelf();
   }
   if (bRet == 0) {
      throw CCodineException(CError::GetErrorMessage(GetLastError()), __FILE__, __LINE__);
   } 
}

DWORD CThread::ThreadMain(PVOID lpParameter) {
   CTrace::CEnter Enter(CTrace::Layer::KERNEL, L"Thread::ThreadMain(PVOID)");
   return 0;
}

void CThread::WaitForObject(DWORD dwMilliseconds) const {
   CTrace::CEnter Enter(CTrace::Layer::KERNEL, L"Thread::WaitForThread()");
   DWORD dwRet;

   dwRet = WaitForSingleObject(GetHandle(), INFINITE);
   if (dwRet != WAIT_OBJECT_0) {
      throw CCodineException(CError::GetErrorMessage(GetLastError()), __FILE__, __LINE__);
   } 
}

} // namespace