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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
|
{
This file is part of the Free Component library.
Copyright (c) 2005 by Michael Van Canneyt, member of
the Free Pascal development team
Unit implementing 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.
**********************************************************************}
unit simpleipc;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils;
Const
MsgVersion = 1;
//Message types
mtUnknown = 0;
mtString = 1;
Type
TMessageType = LongInt;
TMsgHeader = Packed record
Version : Byte;
MsgType : TMessageType;
MsgLen : Integer;
end;
TSimpleIPCServer = class;
TSimpleIPCClient = class;
{ TIPCServerComm }
TIPCServerComm = Class(TObject)
Private
FOwner : TSimpleIPCServer;
Protected
Function GetInstanceID : String; virtual; abstract;
Procedure DoError(Msg : String; Args : Array of const);
Procedure SetMsgType(AMsgType: TMessageType);
Function MsgData : TStream;
Public
Constructor Create(AOwner : TSimpleIPCServer); virtual;
Property Owner : TSimpleIPCServer read FOwner;
Procedure StartServer; virtual; Abstract;
Procedure StopServer;virtual; Abstract;
Function PeekMessage(TimeOut : Integer) : Boolean;virtual; Abstract;
Procedure ReadMessage ;virtual; Abstract;
Property InstanceID : String read GetInstanceID;
end;
TIPCServerCommClass = Class of TIPCServerComm;
{ TSimpleIPC }
TSimpleIPC = Class(TComponent)
Private
procedure SetActive(const AValue: Boolean);
procedure SetServerID(const AValue: String);
Protected
FBusy: Boolean;
FActive : Boolean;
FServerID : String;
Procedure DoError(Msg : String; Args : Array of const);
Procedure CheckInactive;
Procedure CheckActive;
Procedure Activate; virtual; abstract;
Procedure Deactivate; virtual; abstract;
Property Busy : Boolean Read FBusy;
Published
Property Active : Boolean Read FActive Write SetActive;
Property ServerID : String Read FServerID Write SetServerID;
end;
{ TSimpleIPCServer }
TSimpleIPCServer = Class(TSimpleIPC)
private
FGlobal: Boolean;
FOnMessage: TNotifyEvent;
FMsgType: TMessageType;
FMsgData : TStream;
function GetInstanceID: String;
function GetStringMessage: String;
procedure SetGlobal(const AValue: Boolean);
Protected
FIPCComm: TIPCServerComm;
Function CommClass : TIPCServerCommClass; virtual;
Procedure Activate; override;
Procedure Deactivate; override;
Procedure ReadMessage;
Public
Constructor Create(AOwner : TComponent); override;
Destructor Destroy; override;
Procedure StartServer;
Procedure StopServer;
Function PeekMessage(TimeOut : Integer; DoReadMessage : Boolean): Boolean;
Property StringMessage : String Read GetStringMessage;
Procedure GetMessageData(Stream : TStream);
Property MsgType: TMessageType Read FMsgType;
Property MsgData : TStream Read FMsgData;
Property InstanceID : String Read GetInstanceID;
Published
Property Global : Boolean Read FGlobal Write SetGlobal;
Property OnMessage : TNotifyEvent Read FOnMessage Write FOnMessage;
end;
{ TIPCClientComm}
TIPCClientComm = Class(TObject)
private
FOwner: TSimpleIPCClient;
protected
Procedure DoError(Msg : String; Args : Array of const);
Public
Constructor Create(AOwner : TSimpleIPCClient); virtual;
Property Owner : TSimpleIPCClient read FOwner;
Procedure Connect; virtual; abstract;
Procedure Disconnect; virtual; abstract;
Function ServerRunning : Boolean; virtual; abstract;
Procedure SendMessage(MsgType : TMessageType; Stream : TStream);virtual;Abstract;
end;
TIPCClientCommClass = Class of TIPCClientComm;
{ TSimpleIPCClient }
TSimpleIPCClient = Class(TSimpleIPC)
Private
FServerInstance: String;
procedure SetServerInstance(const AValue: String);
Protected
FIPCComm : TIPCClientComm;
Procedure Activate; override;
Procedure Deactivate; override;
Function CommClass : TIPCClientCommClass; virtual;
Public
Constructor Create(AOwner : TComponent); override;
Destructor Destroy; override;
Procedure Connect;
Procedure Disconnect;
Function ServerRunning : Boolean;
Procedure SendMessage(MsgType : TMessageType; Stream: TStream);
Procedure SendStringMessage(const Msg : String);
Procedure SendStringMessage(MsgType : TMessageType; const Msg : String);
Procedure SendStringMessageFmt(const Msg : String; Args : Array of const);
Procedure SendStringMessageFmt(MsgType : TMessageType; const Msg : String; Args : Array of const);
Property ServerInstance : String Read FServerInstance Write SetServerInstance;
end;
EIPCError = Class(Exception);
Var
DefaultIPCServerClass : TIPCServerCommClass = Nil;
DefaultIPCClientClass : TIPCClientCommClass = Nil;
resourcestring
SErrServerNotActive = 'Server with ID %s is not active.';
SErrActive = 'This operation is illegal when the server is active.';
SErrInActive = 'This operation is illegal when the server is inactive.';
implementation
{ ---------------------------------------------------------------------
Include platform specific implementation.
Should implement the CommClass method of both server and client component,
as well as the communication class itself.
This comes first, to allow the uses clause to be set.
If the include file defines OSNEEDIPCINITDONE then the unit will
call IPCInit and IPCDone in the initialization/finalization code.
--------------------------------------------------------------------- }
{$UNDEF OSNEEDIPCINITDONE}
{$i simpleipc.inc}
{ ---------------------------------------------------------------------
TIPCServerComm
---------------------------------------------------------------------}
constructor TIPCServerComm.Create(AOwner: TSimpleIPCServer);
begin
FOwner:=AOWner;
end;
Procedure TIPCServerComm.DoError(Msg : String; Args : Array of const);
begin
FOwner.DoError(Msg,Args);
end;
Function TIPCServerComm.MsgData : TStream;
begin
Result:=FOwner.FMsgData;
end;
Procedure TIPCServerComm.SetMsgType(AMsgType: TMessageType);
begin
Fowner.FMsgType:=AMsgType;
end;
{ ---------------------------------------------------------------------
TIPCClientComm
---------------------------------------------------------------------}
constructor TIPCClientComm.Create(AOwner: TSimpleIPCClient);
begin
FOwner:=AOwner;
end;
Procedure TIPCClientComm.DoError(Msg : String; Args : Array of const);
begin
FOwner.DoError(Msg,Args);
end;
{ ---------------------------------------------------------------------
TSimpleIPC
---------------------------------------------------------------------}
procedure TSimpleIPC.DoError(Msg: String; Args: array of const);
begin
Raise EIPCError.Create(Name+': '+Format(Msg,Args));
end;
procedure TSimpleIPC.CheckInactive;
begin
If Active then
DoError(SErrActive,[]);
end;
procedure TSimpleIPC.CheckActive;
begin
If Not Active then
DoError(SErrInActive,[]);
end;
procedure TSimpleIPC.SetActive(const AValue: Boolean);
begin
if (FActive<>AValue) then
begin
If AValue then
Activate
else
Deactivate;
end;
end;
procedure TSimpleIPC.SetServerID(const AValue: String);
begin
if (FServerID<>AValue) then
begin
CheckInactive;
FServerID:=AValue
end;
end;
{ ---------------------------------------------------------------------
TSimpleIPCServer
---------------------------------------------------------------------}
constructor TSimpleIPCServer.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FGlobal:=False;
FActive:=False;
FBusy:=False;
FMsgData:=TStringStream.Create('');
end;
destructor TSimpleIPCServer.Destroy;
begin
Active:=False;
FreeAndNil(FMsgData);
inherited Destroy;
end;
procedure TSimpleIPCServer.SetGlobal(const AValue: Boolean);
begin
if (FGlobal<>AValue) then
begin
CheckInactive;
FGlobal:=AValue;
end;
end;
function TSimpleIPCServer.GetInstanceID: String;
begin
Result:=FIPCComm.InstanceID;
end;
function TSimpleIPCServer.GetStringMessage: String;
begin
Result:=TStringStream(FMsgData).DataString;
end;
procedure TSimpleIPCServer.StartServer;
begin
if Not Assigned(FIPCComm) then
begin
If (FServerID='') then
FServerID:=ApplicationName;
FIPCComm:=CommClass.Create(Self);
FIPCComm.StartServer;
end;
FActive:=True;
end;
procedure TSimpleIPCServer.StopServer;
begin
If Assigned(FIPCComm) then
begin
FIPCComm.StopServer;
FreeAndNil(FIPCComm);
end;
FActive:=False;
end;
function TSimpleIPCServer.PeekMessage(TimeOut: Integer; DoReadMessage: Boolean
): Boolean;
begin
CheckActive;
FBusy:=True;
Try
Result:=FIPCComm.PeekMessage(Timeout);
Finally
FBusy:=False;
end;
If Result then
If DoReadMessage then
Readmessage;
end;
procedure TSimpleIPCServer.ReadMessage;
begin
CheckActive;
FBusy:=True;
Try
FIPCComm.ReadMessage;
If Assigned(FOnMessage) then
FOnMessage(Self);
Finally
FBusy:=False;
end;
end;
procedure TSimpleIPCServer.GetMessageData(Stream: TStream);
begin
Stream.CopyFrom(FMsgData,0);
end;
procedure TSimpleIPCServer.Activate;
begin
StartServer;
end;
procedure TSimpleIPCServer.Deactivate;
begin
StopServer;
end;
{ ---------------------------------------------------------------------
TSimpleIPCClient
---------------------------------------------------------------------}
procedure TSimpleIPCClient.SetServerInstance(const AValue: String);
begin
CheckInactive;
FServerInstance:=AVAlue;
end;
procedure TSimpleIPCClient.Activate;
begin
Connect;
end;
procedure TSimpleIPCClient.Deactivate;
begin
DisConnect;
end;
constructor TSimpleIPCClient.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
end;
destructor TSimpleIPCClient.destroy;
begin
Active:=False;
Inherited;
end;
procedure TSimpleIPCClient.Connect;
begin
If Not assigned(FIPCComm) then
begin
FIPCComm:=CommClass.Create(Self);
Try
FIPCComm.Connect;
Except
FreeAndNil(FIPCComm);
Raise;
end;
FActive:=True;
end;
end;
procedure TSimpleIPCClient.Disconnect;
begin
If Assigned(FIPCComm) then
Try
FIPCComm.DisConnect;
Finally
FActive:=False;
FreeAndNil(FIPCComm);
end;
end;
function TSimpleIPCClient.ServerRunning: Boolean;
begin
If Assigned(FIPCComm) then
Result:=FIPCComm.ServerRunning
else
With CommClass.Create(Self) do
Try
Result:=ServerRunning;
finally
Free;
end;
end;
procedure TSimpleIPCClient.SendMessage(MsgType : TMessageType; Stream: TStream);
begin
CheckActive;
FBusy:=True;
Try
FIPCComm.SendMessage(MsgType,Stream);
Finally
FBusy:=False;
end;
end;
procedure TSimpleIPCClient.SendStringMessage(const Msg: String);
begin
SendStringMessage(mtString,Msg);
end;
procedure TSimpleIPCClient.SendStringMessage(MsgType: TMessageType; const Msg: String
);
Var
S : TStringStream;
begin
S:=TStringStream.Create(Msg);
try
SendMessage(MsgType,S);
finally
S.free;
end;
end;
procedure TSimpleIPCClient.SendStringMessageFmt(const Msg: String;
Args: array of const);
begin
SendStringMessageFmt(mtString,Msg,Args);
end;
procedure TSimpleIPCClient.SendStringMessageFmt(MsgType: TMessageType;
const Msg: String; Args: array of const);
begin
SendStringMessage(MsgType, Format(Msg,Args));
end;
{$IFDEF OSNEEDIPCINITDONE}
initialization
IPCInit;
finalization
IPCDone;
{$ENDIF}
end.
|