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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
|
{
This file is part of the Free Component library.
Copyright (c) 2005 by Michael Van Canneyt, member of
the Free Pascal development team
Windows implementation of one-way IPC between 2 processes
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
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.
**********************************************************************}
uses Windows,messages;
const
MsgWndClassName: WideString = 'FPCMsgWindowCls';
resourcestring
SErrFailedToRegisterWindowClass = 'Failed to register message window class';
SErrFailedToCreateWindow = 'Failed to create message window %s';
var
MsgWindowClass: TWndClassW = (
style: 0;
lpfnWndProc: nil;
cbClsExtra: 0;
cbWndExtra: 0;
hInstance: 0;
hIcon: 0;
hCursor: 0;
hbrBackground: 0;
lpszMenuName: nil;
lpszClassName: nil);
type
TWinMsgServerComm = Class(TIPCServerComm)
strict private
FHWND : HWND;
FWindowName : String;
FWndProcException: Boolean;
FWndProcExceptionMsg: String;
function AllocateHWnd(const aWindowName: WideString) : HWND;
procedure ProcessMessages;
procedure ProcessMessagesWait(TimeOut: Integer);
procedure HandlePostedMessage(const Msg: TMsg); inline;
function HaveQueuedMessages: Boolean; inline;
function CountQueuedMessages: Integer; inline;
procedure CheckWndProcException; inline;
private
procedure ReadMsgData(var Msg: TMsg);
function TryReadMsgData(var Msg: TMsg; out Error: String): Boolean;
procedure SetWndProcException(const ErrorMsg: String); inline;
public
constructor Create(AOwner : TSimpleIPCServer); override;
destructor Destroy; override;
Procedure StartServer; override;
Procedure StopServer; override;
Function PeekMessage(TimeOut : Integer) : Boolean; override;
Procedure ReadMessage ; override;
Function GetInstanceID : String;override;
Property WindowName : String Read FWindowName;
end;
{ ---------------------------------------------------------------------
MsgWndProc
---------------------------------------------------------------------}
function MsgWndProc(Window: HWND; uMsg: UINT; wParam: WPARAM; lParam: LPARAM): LRESULT; {$ifdef wince}cdecl;{$else}stdcall;{$endif}
Var
Server: TWinMsgServerComm;
Msg: TMsg;
MsgError: String;
begin
Result:=0;
if (uMsg=WM_COPYDATA) then
begin
// Post WM_USER to wake up GetMessage call.
PostMessage(Window, WM_USER, 0, 0);
// Read message data and add to message queue.
Server:=TWinMsgServerComm({$ifdef wince}GetWindowLong{$else}GetWindowLongPtr{$endif}(Window,GWL_USERDATA));
if Assigned(Server) then
begin
Msg.Message:=uMsg;
Msg.wParam:=wParam;
Msg.lParam:=lParam;
// Exceptions thrown inside WindowProc may not propagate back
// to the caller in some circumstances (according to MSDN),
// so capture it and raise it outside of WindowProc!
if Server.TryReadMsgData(Msg, MsgError) then
Result:=1 // True
else
begin
Result:=0; // False
Server.SetWndProcException(MsgError);
end;
end;
end
else
begin
Result:=DefWindowProcW(Window,uMsg,wParam,lParam);
end;
end;
{ ---------------------------------------------------------------------
TWinMsgServerComm
---------------------------------------------------------------------}
function TWinMsgServerComm.AllocateHWnd(const aWindowName: WideString): HWND;
var
cls: TWndClassW;
isreg : Boolean;
begin
MsgWindowClass.lpfnWndProc:=@MsgWndProc;
MsgWindowClass.hInstance := HInstance;
MsgWindowClass.lpszClassName:=PWideChar(MsgWndClassName);
isreg:=GetClassInfoW(HInstance,PWideChar(MsgWndClassName),@cls);
if not isreg then
if (Windows.RegisterClassW(MsgWindowClass)=0) then
Owner.DoError(SErrFailedToRegisterWindowClass,[]);
Result:=CreateWindowExW(WS_EX_TOOLWINDOW, PWideChar(MsgWndClassName),
PWideChar(aWindowName), WS_POPUP {!0}, 0, 0, 0, 0, 0, 0, HInstance, nil);
if (Result=0) then
Owner.DoError(SErrFailedToCreateWindow,[aWindowName]);
{$ifdef wince}SetWindowLong{$else}SetWindowLongPtr{$endif}(Result,GWL_USERDATA,PtrInt(Self));
end;
constructor TWinMsgServerComm.Create(AOwner: TSimpleIPCServer);
begin
inherited Create(AOwner);
FWindowName := Owner.ServerID;
If not Owner.Global then
FWindowName := FWindowName+'_'+InstanceID;
FWndProcException := False;
FWndProcExceptionMsg := '';
end;
destructor TWinMsgServerComm.Destroy;
begin
StopServer;
inherited;
end;
procedure TWinMsgServerComm.StartServer;
begin
StopServer;
FHWND := AllocateHWND(WideString(FWindowName));
end;
procedure TWinMsgServerComm.StopServer;
begin
if FHWND <> 0 then
begin
DestroyWindow(FHWND);
FHWND := 0;
end;
end;
procedure TWinMsgServerComm.SetWndProcException(const ErrorMsg: String); inline;
begin
FWndProcException := True;
FWndProcExceptionMsg := ErrorMsg;
end;
procedure TWinMsgServerComm.CheckWndProcException; inline;
var
Msg: String;
begin
if FWndProcException then
begin
Msg := FWndProcExceptionMsg;
FWndProcException := False;
FWndProcExceptionMsg := '';
Owner.DoError(Msg, []);
end;
end;
function TWinMsgServerComm.HaveQueuedMessages: Boolean; inline;
begin
Result := (Owner.Queue.Count > 0);
end;
function TWinMsgServerComm.CountQueuedMessages: Integer; inline;
begin
Result := Owner.Queue.Count;
end;
procedure TWinMsgServerComm.HandlePostedMessage(const Msg: TMsg); inline;
begin
if Msg.message <> WM_USER then
begin
TranslateMessage(Msg);
DispatchMessage(Msg);
end
end;
procedure TWinMsgServerComm.ProcessMessages;
var
Msg: TMsg;
begin
// Windows.PeekMessage dispatches incoming sent messages by directly
// calling associated WindowProc, and then checks the thread message queue
// for posted messages and retrieves a message if any available.
// Note: WM_COPYDATA is a sent message, not posted, so it will be processed
// directly via WindowProc inside of Windows.PeekMessage call.
while Windows.PeekMessage(Msg, FHWND, 0, 0, PM_REMOVE) do
begin
// Empty the message queue by processing all posted messages.
HandlePostedMessage(Msg);
end;
end;
procedure TWinMsgServerComm.ProcessMessagesWait(TimeOut: Integer);
var
Msg: TMsg;
TimerID: UINT_PTR;
GetMessageResult: BOOL;
begin
// Not allowed to wait.
if TimeOut = 0 then
Exit;
// Setup a timer to post WM_TIMER to wake up GetMessage call.
if TimeOut > 0 then
TimerID := SetTimer(FHWND, 0, TimeOut, nil)
else
TimerID := 0;
// Wait until a message arrives.
try
// We either need to wait infinitely or we have a timer.
if (TimeOut < 0) or (TimerID <> 0) then
begin
// Windows.GetMessage dispatches incoming sent messages until a posted
// message is available for retrieval. Note: WM_COPYDATA will not actually
// wake up Windows.GetMessage, so we must post a dummy message when
// we receive WM_COPYDATA inside of WindowProc.
GetMessageResult := Windows.GetMessage(Msg, FHWND, 0, 0);
case LongInt(GetMessageResult) of
-1, 0: ;
else HandlePostedMessage(Msg);
end;
end;
finally
// Destroy timer.
if TimerID <> 0 then
KillTimer(FHWND, TimerID);
end;
end;
function TWinMsgServerComm.PeekMessage(TimeOut: Integer): Boolean;
begin
// Process incoming messages.
ProcessMessages;
// Do we have queued messages?
Result := HaveQueuedMessages;
// Wait for incoming messages.
if (not Result) and (TimeOut <> 0) then
begin
ProcessMessagesWait(TimeOut);
Result := HaveQueuedMessages;
end;
// Check for exception raised inside WindowProc.
CheckWndProcException;
end;
procedure TWinMsgServerComm.ReadMsgData(var Msg: TMsg);
var
CDS: PCopyDataStruct;
MsgItem: TIPCServerMsg;
begin
CDS := PCopyDataStruct(Msg.lParam);
MsgItem := TIPCServerMsg.Create;
try
MsgItem.MsgType := CDS^.dwData;
MsgItem.Stream.WriteBuffer(CDS^.lpData^,CDS^.cbData);
except
FreeAndNil(MsgItem);
// Caller is expected to catch this exception, so not using Owner.DoError()
raise;
end;
PushMessage(MsgItem);
end;
function TWinMsgServerComm.TryReadMsgData(var Msg: TMsg; out Error: String): Boolean;
begin
Result := True;
try
ReadMsgData(Msg);
except on E: Exception do
begin
Result := False;
Error := E.Message;
end;
end;
end;
procedure TWinMsgServerComm.ReadMessage;
begin
// Do nothing, PeekMessages has pushed messages to the queue.
end;
function TWinMsgServerComm.GetInstanceID: String;
begin
Result:=IntToStr(HInstance);
end;
{ ---------------------------------------------------------------------
TWinMsgClientComm
---------------------------------------------------------------------}
Type
TWinMsgClientComm = Class(TIPCClientComm)
Private
FWindowName: String;
FHWND : HWND;
function FindServerWindow: HWND;
function FindServerWindow(const aWindowName: WideString): HWND;
Public
Constructor Create(AOWner : TSimpleIPCClient); override;
Procedure Connect; override;
Procedure Disconnect; override;
Procedure SendMessage(MsgType : TMessageType; Stream : TStream); override;
Function ServerRunning : Boolean; override;
Property WindowName : String Read FWindowName;
end;
constructor TWinMsgClientComm.Create(AOWner: TSimpleIPCClient);
begin
inherited Create(AOWner);
FWindowName:=Owner.ServerID;
If (Owner.ServerInstance<>'') then
FWindowName:=FWindowName+'_'+Owner.ServerInstance;
end;
function TWinMsgClientComm.FindServerWindow: HWND;
begin
Result := FindServerWindow(WideString(FWindowName));
end;
function TWinMsgClientComm.FindServerWindow(const aWindowName: WideString): HWND;
begin
Result := FindWindowW(PWideChar(MsgWndClassName), PWideChar(aWindowName));
end;
procedure TWinMsgClientComm.Connect;
begin
FHWND:=FindServerWindow;
If (FHWND=0) then
Owner.DoError(SErrServerNotActive,[Owner.ServerID]);
end;
procedure TWinMsgClientComm.Disconnect;
begin
FHWND:=0;
end;
procedure TWinMsgClientComm.SendMessage(MsgType: TMessageType; Stream: TStream);
var
CDS : TCopyDataStruct;
Data,FMemstr : TMemorySTream;
begin
if Stream is TMemoryStream then
begin
Data:=TMemoryStream(Stream);
FMemStr:=nil;
end
else
begin
FMemStr:=TMemoryStream.Create;
Data:=FMemstr;
end;
try
if Assigned(FMemStr) then
begin
FMemStr.CopyFrom(Stream,0);
FMemStr.Seek(0,soFromBeginning);
end;
CDS.dwData:=MsgType;
CDS.lpData:=Data.Memory;
CDS.cbData:=Data.Size;
Windows.SendMessage(FHWND,WM_COPYDATA,0,PtrInt(@CDS));
finally
FreeAndNil(FMemStr);
end;
end;
function TWinMsgClientComm.ServerRunning: Boolean;
begin
Result:=FindServerWindow<>0;
end;
{ ---------------------------------------------------------------------
Set TSimpleIPCClient / TSimpleIPCServer defaults.
---------------------------------------------------------------------}
Function TSimpleIPCServer.CommClass : TIPCServerCommClass;
begin
if (DefaultIPCServerClass<>Nil) then
Result:=DefaultIPCServerClass
else
Result:=TWinMsgServerComm;
end;
Function TSimpleIPCClient.CommClass : TIPCClientCommClass;
begin
if (DefaultIPCClientClass<>Nil) then
Result:=DefaultIPCClientClass
else
Result:=TWinMsgClientComm;
end;
|