File: VirtualThread.pas

package info (click to toggle)
mysql-admin 1.2.5rc-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 80,944 kB
  • ctags: 43,103
  • sloc: sql: 295,916; pascal: 256,535; cpp: 74,487; ansic: 68,881; objc: 26,417; sh: 16,867; yacc: 10,755; java: 9,917; xml: 8,453; php: 2,806; python: 2,068; makefile: 1,252; perl: 3
file content (215 lines) | stat: -rw-r--r-- 6,270 bytes parent folder | download | duplicates (5)
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
unit VirtualThread;

// Version 1.1.17
//   The contents of this file are subject to the Mozilla Public License
// Version 1.1 (the "License"); you may not use this file except
// in compliance with the License. You may obtain a copy of the
// License at
//
// http://www.mozilla.org/MPL/
//
//   Software distributed under the License is distributed on an
// " AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either expressed or
// implied. See the License for the specific language governing rights
// and limitations under the License.
//
//
//   Alternatively, the contents of this file may be used under
// the terms of the GNU General Public License Version 2 or later
// (the "GPL"), in which case the provisions of the GPL are applicable
// instead of those above. If you wish to allow use of your version of
// this file only under the terms of the GPL and not to allow others to
// use your version of this file under the MPL, indicate your decision
// by deleting the provisions above and replace them with the notice and
// other provisions required by the GPL. If you do not delete the provisions
// above, a recipient may use your version of this file under either the
// MPL or the GPL.
//
// The initial developer of this code is Jim Kueneman <jimdk@mindspring.com>
//
//----------------------------------------------------------------------------

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, VirtualUtilities;

type
  TVirtualThread = class
  private
    FHandle: THandle;
    FThreadID: THandle;
    FStub: pointer;
    FTerminated: Boolean;
    FSuspended: Boolean;
    FFinished: Boolean;
    FEvent: THandle;
    FCriticalSectionInitialized: Boolean;
    FCriticalSection: TRTLCriticalSection;
    FRefCount: Integer;
    function GetPriority: TThreadPriority;
    procedure SetPriority(const Value: TThreadPriority);
    procedure SetSuspended(const Value: Boolean);
    procedure ExecuteStub;  stdcall;
    function GetTriggerEvent: THandle;
    function GetLock: TRTLCriticalSection;
  protected
    procedure Execute; virtual; abstract;

    property CriticalSectionInitialized: Boolean read FCriticalSectionInitialized write FCriticalSectionInitialized;
    property Event: THandle read FEvent write FEvent;
    property Stub: pointer read FStub write FStub;
    property Terminated: Boolean read FTerminated;

  public
    constructor Create(CreateSuspended: Boolean);
    destructor Destroy; override;

    procedure AddRef;
    procedure Release;
    procedure Resume;
    procedure SetTriggerEvent;
    procedure Terminate;

    property Finished: Boolean read FFinished;
    property Handle: THandle read FHandle;
    property Lock: TRTLCriticalSection read GetLock;
    property Priority: TThreadPriority read GetPriority write SetPriority;
    property RefCount: Integer read FRefCount write FRefCount;
    property Suspended: Boolean read FSuspended write SetSuspended;
    property ThreadID: THandle read FThreadID;
    property TriggerEvent: THandle read GetTriggerEvent;
  end;

implementation

{ TVirtualThread }

procedure TVirtualThread.AddRef;
begin
  InterlockedIncrement(FRefCount);
end;

constructor TVirtualThread.Create(CreateSuspended: Boolean);
var
  Flags: DWORD;
begin
  IsMultiThread := True;
  Stub := CreateStub(Self, @TVirtualThread.ExecuteStub);
  Flags := 0;
  if CreateSuspended then
  begin
    Flags := CREATE_SUSPENDED;
    FSuspended := True
  end;
  FHandle := CreateThread(nil, 0, Stub, nil, Flags, FThreadID);  
end;

destructor TVirtualThread.Destroy;
begin
  DisposeStub(Stub);
  if Handle <> 0 then
    CloseHandle(Handle);
  if Event <> 0 then
    CloseHandle(Event);
  if CriticalSectionInitialized then
    DeleteCriticalSection(FCriticalSection);
  inherited; 
end;

procedure TVirtualThread.ExecuteStub;
// Called in the context of the thread 
begin
  try
    try
      Execute
    except
    end
  finally
    FFinished := True;
    ExitThread(0);
  end
end;

function TVirtualThread.GetLock: TRTLCriticalSection;
begin
  if not CriticalSectionInitialized then
    InitializeCriticalSection(FCriticalSection);
  Result := FCriticalSection
end;

function TVirtualThread.GetPriority: TThreadPriority;
var
  P: Integer;
begin
  Result := tpNormal;
  P := GetThreadPriority(FHandle);
  case P of
    THREAD_PRIORITY_IDLE:          Result := tpIdle;
    THREAD_PRIORITY_LOWEST:        Result := tpLowest;
    THREAD_PRIORITY_BELOW_NORMAL:  Result := tpLower;
    THREAD_PRIORITY_NORMAL:        Result := tpNormal;
    THREAD_PRIORITY_HIGHEST:       Result := tpHigher;
    THREAD_PRIORITY_ABOVE_NORMAL:  Result := tpHighest;
    THREAD_PRIORITY_TIME_CRITICAL: Result := tpTimeCritical;
  end
end;

function TVirtualThread.GetTriggerEvent: THandle;
begin
  if Event = 0 then
    Event := CreateEvent(nil, True, False, nil);
  Result := Event;
end;

procedure TVirtualThread.Release;
begin
  InterlockedDecrement(FRefCount);
end;

procedure TVirtualThread.Resume;
begin
  Suspended := False
end;

procedure TVirtualThread.SetPriority(const Value: TThreadPriority);
begin
begin
  case Value of
    tpIdle        : SetThreadPriority(Handle,  THREAD_PRIORITY_IDLE);
    tpLowest      : SetThreadPriority(Handle, THREAD_PRIORITY_LOWEST);
    tpLower       : SetThreadPriority(Handle, THREAD_PRIORITY_BELOW_NORMAL);
    tpNormal      : SetThreadPriority(Handle, THREAD_PRIORITY_NORMAL);
    tpHigher      : SetThreadPriority(Handle, THREAD_PRIORITY_HIGHEST);
    tpHighest     : SetThreadPriority(Handle, THREAD_PRIORITY_ABOVE_NORMAL);
    tpTimeCritical: SetThreadPriority (Handle, THREAD_PRIORITY_TIME_CRITICAL);
  end
end;
end;

procedure TVirtualThread.SetSuspended(const Value: Boolean);
begin
  if FSuspended <> Value then
  begin
    if Handle <> 0 then
    begin
      if Value then
        SuspendThread(FHandle)
      else
        ResumeThread(FHandle);
      FSuspended := Value;
    end
  end
end;

procedure TVirtualThread.SetTriggerEvent;
begin
  SetEvent(TriggerEvent);
end;

procedure TVirtualThread.Terminate;
begin
  FTerminated := True
end;

end.