-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
SharedMemoryStream.pas
816 lines (693 loc) · 28.8 KB
/
SharedMemoryStream.pas
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
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
{-------------------------------------------------------------------------------
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-------------------------------------------------------------------------------}
{===============================================================================
Shared memory stream
Provides classes for accessing shared (system-wide) memory, possibly using
standard stream interface.
Sharing of the memory is based on the name - same name (case-insensitive)
results in access to the same memory. For the sake of sanity, it is not
allowed to use an empty name.
The actual shared memory is implemented in T(Simple)SharedMemory classes
and T(Simple)SharedMemoryStream are just stream-interface wrappers around
them.
Classes with "simple" in name do not provide any locking, others can be
locked (methods Lock and Unlock) to prevent data corruption (internally
implemented via mutex). Simple classes are provided for situations where
locking is not needed or is implemented by external means.
NOTE - in Windows OS for non-simple classes, the name of mapping is
suffixed and is therefore not exactly the same as the name given
in creation. This is done because the same name is used for named
mutex used in locking, but Windows do not allow two different
objects to have the same name.
In non-simple streams, the methods Read and Write are protected by a lock,
so it is not necessary to lock the access explicitly.
Version 1.2.6 (2024-05-03)
Last change 2024-09-09
©2018-2024 František Milt
Contacts:
František Milt: [email protected]
Support:
If you find this code useful, please consider supporting its author(s) by
making a small donation using the following link(s):
https://www.paypal.me/FMilt
Changelog:
For detailed changelog and history please refer to this git repository:
github.com/TheLazyTomcat/Lib.SharedMemoryStream
Dependencies:
AuxClasses - github.com/TheLazyTomcat/Lib.AuxClasses
* AuxExceptions - github.com/TheLazyTomcat/Lib.AuxExceptions
AuxTypes - github.com/TheLazyTomcat/Lib.AuxTypes
* SimpleFutex - github.com/TheLazyTomcat/Lib.SimpleFutex
StaticMemoryStream - github.com/TheLazyTomcat/Lib.StaticMemoryStream
StrRect - github.com/TheLazyTomcat/Lib.StrRect
Library AuxExceptions is required only when rebasing local exception classes
(see symbol SharedMemoryStream_UseAuxExceptions for details).
Library SimpleFutex is required only when compiling for Linux operating
system.
Library AuxExceptions might also be required as an indirect dependency.
Indirect dependencies:
InterlockedOps - github.com/TheLazyTomcat/Lib.InterlockedOps
SimpleCPUID - github.com/TheLazyTomcat/Lib.SimpleCPUID
UInt64Utils - github.com/TheLazyTomcat/Lib.UInt64Utils
WinFileInfo - github.com/TheLazyTomcat/Lib.WinFileInfo
===============================================================================}
unit SharedMemoryStream;
{
SharedMemoryStream_UseAuxExceptions
If you want library-specific exceptions to be based on more advanced classes
provided by AuxExceptions library instead of basic Exception class, and don't
want to or cannot change code in this unit, you can define global symbol
SharedMemoryStream_UseAuxExceptions to achieve this.
}
{$IF Defined(SharedMemoryStream_UseAuxExceptions)}
{$DEFINE UseAuxExceptions}
{$IFEND}
//------------------------------------------------------------------------------
{$IF defined(CPU64) or defined(CPU64BITS)}
{$DEFINE CPU64bit}
{$ELSEIF defined(CPU16)}
{$MESSAGE FATAL '16bit CPU not supported'}
{$ELSE}
{$DEFINE CPU32bit}
{$IFEND}
{$IF Defined(WINDOWS) or Defined(MSWINDOWS)}
{$DEFINE Windows}
{$ELSEIF Defined(LINUX) and Defined(FPC)}
{$DEFINE Linux}
{$ELSE}
{$MESSAGE FATAL 'Unsupported operating system.'}
{$IFEND}
{$IFDEF FPC}
{$MODE ObjFPC}
{$MODESWITCH DuplicateLocals+}
{$DEFINE FPC_DisableWarns}
{$MACRO ON}
{$ENDIF}
{$H+}
interface
uses
SysUtils, Classes, {$IFDEF Linux}baseunix,{$ENDIF}
AuxTypes, AuxClasses, StaticMemoryStream{$IFDEF Linux}, SimpleFutex{$ENDIF}
{$IFDEF UseAuxExceptions}, AuxExceptions{$ENDIF};
{===============================================================================
Library-specific exceptions
===============================================================================}
type
ESHMSException = class({$IFDEF UseAuxExceptions}EAEGeneralException{$ELSE}Exception{$ENDIF});
ESHMSInvalidValue = class(ESHMSException);
ESHMSMutexCreationError = class(ESHMSException);
ESHMSMappingCreationError = class(ESHMSException);
ESHMSMappingTruncateError = class(ESHMSException); // linux only
ESHMSMemoryMappingError = class(ESHMSException);
ESHMSLockError = class(ESHMSException);
ESHMSUnlockError = class(ESHMSException);
{===============================================================================
--------------------------------------------------------------------------------
TSimpleSharedMemory
--------------------------------------------------------------------------------
===============================================================================}
{$IFDEF Linux}
type
TSharedMemoryHeader = record
RefLock: TFutex;
RefCount: Int32;
Synchronizer: pthread_mutex_t;
end;
PSharedMemoryHeader = ^TSharedMemoryHeader;
{$ENDIF}
{===============================================================================
TSimpleSharedMemory - class declaration
===============================================================================}
type
TSimpleSharedMemory = class(TCustomObject)
protected
fName: String;
fMemory: Pointer;
fSize: TMemSize;
{$IFDEF Windows}
fMappingObj: THandle;
class Function GetMappingSuffix: String; virtual;
{$ELSE}
fMemoryBase: Pointer;
fFullSize: TMemSize;
fHeaderPtr: PSharedMemoryHeader;
procedure InitializeMutex; virtual;
procedure FinalizeMutex; virtual;
Function TryInitialize: Boolean; virtual;
{$ENDIF}
procedure Initialize; virtual;
procedure Finalize; virtual;
class Function RectifyName(const Name: String): String; virtual;
public
constructor Create(InitSize: TMemSize; const Name: String);
destructor Destroy; override;
property Name: String read fName;
property Memory: Pointer read fMemory;
property Size: TMemSize read fSize;
end;
{===============================================================================
--------------------------------------------------------------------------------
TSharedMemory
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TSharedMemory - class declaration
===============================================================================}
type
TSharedMemory = class(TSimpleSharedMemory)
protected
{$IFDEF Windows}
fMappingSync: THandle;
class Function GetMappingSuffix: String; override;
procedure Initialize; override;
procedure Finalize; override;
{$ELSE}
procedure InitializeMutex; override;
procedure FinalizeMutex; override;
{$ENDIF}
public
procedure Lock; virtual;
procedure Unlock; virtual;
end;
{===============================================================================
--------------------------------------------------------------------------------
TSimpleSharedMemoryStream
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TSimpleSharedMemoryStream - class declaration
===============================================================================}
type
TSimpleSharedMemoryStream = class(TWritableStaticMemoryStream)
protected
fSharedMemory: TSimpleSharedMemory;
Function GetName: String; virtual;
class Function GetSharedMemoryInstance(InitSize: TMemSize; const Name: String): TSimpleSharedMemory; virtual;
public
constructor Create(InitSize: TMemSize; const Name: String);
destructor Destroy; override;
Function Read(var Buffer; Count: LongInt): LongInt; override;
Function Write(const Buffer; Count: LongInt): LongInt; override;
property Name: String read GetName;
end;
{===============================================================================
--------------------------------------------------------------------------------
TSharedMemoryStream
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TSharedMemoryStream - class declaration
===============================================================================}
type
TSharedMemoryStream = class(TSimpleSharedMemoryStream)
protected
class Function GetSharedMemoryInstance(InitSize: TMemSize; const Name: String): TSimpleSharedMemory; override;
public
procedure Lock; virtual;
procedure Unlock; virtual;
Function Read(var Buffer; Count: LongInt): LongInt; override;
Function Write(const Buffer; Count: LongInt): LongInt; override;
end;
implementation
uses
{$IFDEF Windows}Windows,{$ELSE}unixtype, StrUtils,{$ENDIF}
StrRect;
{$IFDEF Linux}
{$LINKLIB libc}
{$LINKLIB librt}
{$LINKLIB pthread}
{$ENDIF}
{$IFDEF FPC_DisableWarns}
{$DEFINE FPCDWM}
{$DEFINE W4055:={$WARN 4055 OFF}} // Conversion between ordinals and pointers is not portable
{$ENDIF}
{===============================================================================
--------------------------------------------------------------------------------
TSimpleSharedMemory
--------------------------------------------------------------------------------
===============================================================================}
{$IFDEF Windows}
const
{
Do not change to prefixes! It would interfere with system prefixes added to
the name by user.
Both suffixes MUST be the same length.
}
SHMS_NAME_SUFFIX_SECT = '@shms_sect'; // section :P
SHMS_NAME_SUFFIX_SYNC = '@shms_sync';
SHMS_NAME_SUFFIX_LEN = Length(SHMS_NAME_SUFFIX_SECT);
{$IF not Declared(UNICODE_STRING_MAX_CHARS)}
UNICODE_STRING_MAX_CHARS = 32767;
{$IFEND}
{$ELSE}
Function errno_ptr: pcint; cdecl; external name '__errno_location';
Function sched_yield: cint; cdecl; external;
Function close(fd: cint): cint; cdecl; external;
Function ftruncate(fd: cint; length: off_t): cint; cdecl; external;
Function mmap(addr: Pointer; length: size_t; prot,flags,fd: cint; offset: off_t): Pointer; cdecl; external;
Function munmap(addr: Pointer; length: size_t): cint; cdecl; external;
type
pthread_mutexattr_p = ^pthread_mutexattr_t;
pthread_mutex_p = ^pthread_mutex_t;
const
PTHREAD_PROCESS_SHARED = 1;
PTHREAD_MUTEX_RECURSIVE = 1;
PTHREAD_MUTEX_ROBUST = 1;
Function pthread_mutexattr_init(attr: pthread_mutexattr_p): cint; cdecl; external;
Function pthread_mutexattr_destroy(attr: pthread_mutexattr_p): cint; cdecl; external;
Function pthread_mutexattr_setpshared(attr: pthread_mutexattr_p; pshared: cint): cint; cdecl; external;
Function pthread_mutexattr_settype(attr: pthread_mutexattr_p; _type: cint): cint; cdecl; external;
Function pthread_mutexattr_setrobust(attr: pthread_mutexattr_p; robustness: cint): cint; cdecl; external;
Function pthread_mutex_init(mutex: pthread_mutex_p; attr: pthread_mutexattr_p): cint; cdecl; external;
Function pthread_mutex_destroy(mutex: pthread_mutex_p): cint; cdecl; external;
Function pthread_mutex_lock(mutex: pthread_mutex_p): cint; cdecl; external;
Function pthread_mutex_unlock(mutex: pthread_mutex_p): cint; cdecl; external;
Function pthread_mutex_consistent(mutex: pthread_mutex_p): cint; cdecl; external;
Function shm_open(name: pchar; oflag: cint; mode: mode_t): cint; cdecl; external;
Function shm_unlink(name: pchar): cint; cdecl; external;
threadvar
ThrErrorCode: cInt;
Function ErrChk(ErrorCode: cInt): Boolean;
begin
Result := ErrorCode = 0;
If Result then
ThrErrorCode := 0
else
ThrErrorCode := ErrorCode;
end;
{$ENDIF}
{===============================================================================
TSimpleSharedMemory - class implementation
===============================================================================}
{-------------------------------------------------------------------------------
TSimpleSharedMemory - protected methods
-------------------------------------------------------------------------------}
{$IFDEF Windows}
class Function TSimpleSharedMemory.GetMappingSuffix: String;
begin
Result := '';
end;
//------------------------------------------------------------------------------
procedure TSimpleSharedMemory.Initialize;
begin
// create/open memory mapping
fMappingObj := CreateFileMappingW(INVALID_HANDLE_VALUE,nil,PAGE_READWRITE or SEC_COMMIT,DWORD(UInt64(fSize) shr 32),
DWORD(fSize),PWideChar(StrToWide(fName + GetMappingSuffix)));
If fMappingObj = 0 then
raise ESHMSMappingCreationError.CreateFmt('TSimpleSharedMemory.Initialize: Failed to create mapping (%d).',[GetLastError]);
// map memory
fMemory := MapViewOfFile(fMappingObj,FILE_MAP_ALL_ACCESS,0,0,fSize);
If not Assigned(fMemory) then
raise ESHMSMemoryMappingError.CreateFmt('TSimpleSharedMemory.Initialize: Failed to map memory (%d).',[GetLastError]);
end;
//------------------------------------------------------------------------------
procedure TSimpleSharedMemory.Finalize;
begin
UnmapViewOfFile(Memory);
CloseHandle(fMappingObj);
end;
//------------------------------------------------------------------------------
class Function TSimpleSharedMemory.RectifyName(const Name: String): String;
var
i,Cnt: Integer;
begin
{
Convert to lower case and limit the length while accounting for suffixes.
There can be exactly one backslash (separating namespace prefix), replace
other backslashes by underscores.
}
Result := AnsiLowerCase(Name);
If (Length(Result) + SHMS_NAME_SUFFIX_LEN) > UNICODE_STRING_MAX_CHARS then
SetLength(Result,UNICODE_STRING_MAX_CHARS - SHMS_NAME_SUFFIX_LEN);
Cnt := 0;
For i := 1 to Length(Result) do
If Result[i] = '\' then
begin
If Cnt > 0 then
Result[i] := '_';
Inc(Cnt);
end;
end;
{$ELSE}//=======================================================================
procedure TSimpleSharedMemory.InitializeMutex;
begin
// do nothing
end;
//------------------------------------------------------------------------------
procedure TSimpleSharedMemory.FinalizeMutex;
begin
// do nothing
end;
//------------------------------------------------------------------------------
Function TSimpleSharedMemory.TryInitialize: Boolean;
var
MappingObj: cint;
begin
Result := False;
// add space for header
fFullSize := (TMemSize(SizeOf(TSharedMemoryHeader) + 127) and not TMemSize(127)) + fSize;
// create/open mapping
MappingObj := shm_open(PChar(StrToSys(fName)),O_CREAT or O_RDWR,S_IRWXU);
If MappingObj >= 0 then
try
If ftruncate(MappingObj,off_t(fFullSize)) < 0 then
raise ESHMSMappingTruncateError.CreateFmt('TSimpleSharedMemory.Initialize: Failed to truncate mapping (%d).',[errno_ptr^]);
// map file into memory
fMemoryBase := mmap(nil,size_t(fFullSize),PROT_READ or PROT_WRITE,MAP_SHARED,MappingObj,0);
If Assigned(fMemoryBase) and (fMemoryBase <> Pointer(-1){MAP_FAILED}) then
begin
fHeaderPtr := fMemoryBase;
{$IFDEF FPCDWM}{$PUSH}W4055{$ENDIF}
fMemory := Pointer(PtrUInt(fMemoryBase) + (PtrUInt(SizeOf(TSharedMemoryHeader) + 127) and not PtrUInt(127)));
{$IFDEF FPCDWM}{$POP}{$ENDIF}
SimpleMutexLock(fHeaderPtr^.RefLock);
try
If fHeaderPtr^.RefCount = 0 then
begin
{
This is the first time the mapping is accessed - create mutex and
set reference count to 1.
}
InitializeMutex;
fHeaderPtr^.RefCount := 1;
Result := True
end
else If fHeaderPtr^.RefCount > 0 then
begin
// The mapping and mutex is set up, only increase reference count.
Inc(fHeaderPtr^.RefCount);
Result := True;
end
{
The mapping was unlinked and mutex destroyed somewhere between
shm_open and SimpleFutexLock - drop current mapping and start mapping
again from scratch.
}
else munmap(fMemoryBase,size_t(fFullSize));
finally
SimpleMutexUnlock(fHeaderPtr^.RefLock);
end;
end
else raise ESHMSMemoryMappingError.CreateFmt('TSimpleSharedMemory.Initialize: Failed to map memory (%d).',[errno_ptr^]);
finally
close(MappingObj);
end
else raise ESHMSMappingCreationError.CreateFmt('TSimpleSharedMemory.Initialize: Failed to create mapping (%d).',[errno_ptr^]);
end;
//------------------------------------------------------------------------------
procedure TSimpleSharedMemory.Initialize;
begin
while not TryInitialize do
sched_yield;
end;
//------------------------------------------------------------------------------
procedure TSimpleSharedMemory.Finalize;
begin
{
If there was exception in the constructor, the header pointer might not be
set by this point.
}
If Assigned(fHeaderPtr) then
begin
SimpleMutexLock(fHeaderPtr^.RefLock);
try
If fHeaderPtr^.RefCount = 0 then
begin
{
Zero should be possible only if the initialization failed when
creating the mutex.
Unlink the mapping but do not destroy mutex (it should not exist).
}
fHeaderPtr^.RefCount := -1;
shm_unlink(PChar(StrToSys(fName)));
end
else If fHeaderPtr^.RefCount = 1 then
begin
{
This is the last instance, destroy mutex and unlink the mapping.
Set reference counter to -1 to indicate it is being destroyed.
}
fHeaderPtr^.RefCount := -1;
// destroy mutex
FinalizeMutex;
// unlink mapping (ignore errors)
shm_unlink(PChar(StrToSys(fName)));
end
else If fHeaderPtr^.RefCount > 1 then
Dec(fHeaderPtr^.RefCount);
{
Negative value means the mapping is already being destroyed elsewhere,
so do nothing.
}
finally
SimpleMutexUnlock(fHeaderPtr^.RefLock);
end;
end;
// unmapping is done in any case...
If Assigned(fMemoryBase) and (fMemoryBase <> Pointer(-1)) then
munmap(fMemoryBase,size_t(fFullSize));
end;
//------------------------------------------------------------------------------
class Function TSimpleSharedMemory.RectifyName(const Name: String): String;
var
i: Integer;
begin
{
The name must start with forward slash and must not contain any more fwd.
slashes.
Check if there is leading slash and add it when isn't, replace other slashes
with underscores and convert to lower case. Also limit the length to NAME_MAX
characters.
}
If not AnsiStartsText('/',Name) then
Result := AnsiLowerCase('/' + Name)
else
Result := AnsiLowerCase(Name);
If Length(Result) > NAME_MAX then
SetLength(Result,NAME_MAX);
For i := 2 to Length(Result) do
If Result[i] = '/' then
Result[i] := '_';
end;
{$ENDIF}
{-------------------------------------------------------------------------------
TSimpleSharedMemory - public methods
-------------------------------------------------------------------------------}
constructor TSimpleSharedMemory.Create(InitSize: TMemSize; const Name: String);
begin
inherited Create;
fName := RectifyName(Name);
If Length(fName) <= 0 then
raise ESHMSInvalidValue.Create('TSimpleSharedMemory.Create: Empty name not allowed.');
fSize := InitSize;
Initialize;
end;
//------------------------------------------------------------------------------
destructor TSimpleSharedMemory.Destroy;
begin
Finalize;
inherited;
end;
{===============================================================================
--------------------------------------------------------------------------------
TSharedMemory
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TSharedMemory - class declaration
===============================================================================}
{-------------------------------------------------------------------------------
TSharedMemory - protected methods
-------------------------------------------------------------------------------}
{$IFDEF Windows}
class Function TSharedMemory.GetMappingSuffix: String;
begin
// do not call inherited code
Result := SHMS_NAME_SUFFIX_SECT;
end;
//------------------------------------------------------------------------------
procedure TSharedMemory.Initialize;
begin
// create/open synchronization mutex
fMappingSync := CreateMutexW(nil,False,PWideChar(StrToWide(fName + SHMS_NAME_SUFFIX_SYNC)));
If fMappingSync = 0 then
raise ESHMSMutexCreationError.CreateFmt('TSharedMemory.Initialize: Failed to create mutex (%d).',[GetLastError]);
inherited;
end;
//------------------------------------------------------------------------------
procedure TSharedMemory.Finalize;
begin
inherited;
CloseHandle(fMappingSync);
end;
{$ELSE}
//------------------------------------------------------------------------------
procedure TSharedMemory.InitializeMutex;
var
MutexAttr: pthread_mutexattr_t;
begin
If ErrChk(pthread_mutexattr_init(@MutexAttr)) then
try
If not ErrChk(pthread_mutexattr_setpshared(@MutexAttr,PTHREAD_PROCESS_SHARED)) then
raise ESHMSMutexCreationError.CreateFmt('TSharedMemory.InitializeMutex: Failed to set mutex attribute pshared (%d).',[ThrErrorCode]);
If not ErrChk(pthread_mutexattr_settype(@MutexAttr,PTHREAD_MUTEX_RECURSIVE)) then
raise ESHMSMutexCreationError.CreateFmt('TSharedMemory.InitializeMutex: Failed to set mutex attribute type (%d).',[ThrErrorCode]);
If not ErrChk(pthread_mutexattr_setrobust(@MutexAttr,PTHREAD_MUTEX_ROBUST)) then
raise ESHMSMutexCreationError.CreateFmt('TSharedMemory.InitializeMutex: Failed to set mutex attribute robust (%d).',[ThrErrorCode]);
If not ErrChk(pthread_mutex_init(Addr(fHeaderPtr^.Synchronizer),@MutexAttr)) then
raise ESHMSMutexCreationError.CreateFmt('TSharedMemory.InitializeMutex: Failed to init mutex (%d).',[ThrErrorCode]);
finally
pthread_mutexattr_destroy(@MutexAttr);
end
else raise ESHMSMutexCreationError.CreateFmt('TSharedMemory.InitializeMutex: Failed to init mutex attributes (%d).',[ThrErrorCode]);
end;
//------------------------------------------------------------------------------
procedure TSharedMemory.FinalizeMutex;
begin
// ignore errors
pthread_mutex_destroy(Addr(fHeaderPtr^.Synchronizer));
end;
{$ENDIF}
{-------------------------------------------------------------------------------
TSharedMemory - public methods
-------------------------------------------------------------------------------}
procedure TSharedMemory.Lock;
{$IFDEF Windows}
begin
If not(WaitForSingleObject(fMappingSync,INFINITE) in [WAIT_ABANDONED,WAIT_OBJECT_0]) then
raise ESHMSLockError.Create('TSharedMemory.Lock: Failed to lock.');
end;
{$ELSE}
var
ReturnValue: cint;
begin
ReturnValue := pthread_mutex_lock(Addr(fHeaderPtr^.Synchronizer));
If ReturnValue = ESysEOWNERDEAD then
begin
{
Owner of the mutex died, it is now owned by the calling thread, but must
be made consistent to use it again.
}
If not ErrChk(pthread_mutex_consistent(Addr(fHeaderPtr^.Synchronizer))) then
raise ESHMSLockError.CreateFmt('TSharedMemory.Lock: Failed to make mutex consistent (%d).',[ThrErrorCode]);
end
else If not ErrChk(ReturnValue) then
raise ESHMSLockError.CreateFmt('TSharedMemory.Lock: Failed to lock (%d).',[ThrErrorCode]);
end;
{$ENDIF}
//------------------------------------------------------------------------------
procedure TSharedMemory.Unlock;
begin
{$IFDEF Windows}
If not ReleaseMutex(fMappingSync) then
raise ESHMSUnlockError.CreateFmt('TSharedMemory.Unlock: Failed to unlock (%d).',[GetLastError]);
{$ELSE}
If not ErrChk(pthread_mutex_unlock(Addr(fHeaderPtr^.Synchronizer))) then
raise ESHMSUnlockError.CreateFmt('TSharedMemory.Unlock: Failed to unlock (%d).',[ThrErrorCode]);
{$ENDIF}
end;
{===============================================================================
--------------------------------------------------------------------------------
TSimpleSharedMemoryStream
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TSimpleSharedMemoryStream - class implementation
===============================================================================}
{-------------------------------------------------------------------------------
TSharedMemoryStream - protected methods
-------------------------------------------------------------------------------}
Function TSimpleSharedMemoryStream.GetName: String;
begin
Result := fSharedMemory.Name;
end;
//------------------------------------------------------------------------------
class Function TSimpleSharedMemoryStream.GetSharedMemoryInstance(InitSize: TMemSize; const Name: String): TSimpleSharedMemory;
begin
Result := TSimpleSharedMemory.Create(InitSize,Name);
end;
{-------------------------------------------------------------------------------
TSharedMemoryStream - public methods
-------------------------------------------------------------------------------}
constructor TSimpleSharedMemoryStream.Create(InitSize: TMemSize; const Name: String);
var
SharedMemory: TSimpleSharedMemory;
begin
SharedMemory := GetSharedMemoryInstance(InitSize,Name);
try
inherited Create(SharedMemory.Memory,SharedMemory.Size);
except
// in case inherited constructor fails
FreeAndNil(SharedMemory);
raise;
end;
fSharedMemory := SharedMemory;
end;
//------------------------------------------------------------------------------
destructor TSimpleSharedMemoryStream.Destroy;
begin
FreeAndNil(fSharedMemory);
inherited;
end;
//------------------------------------------------------------------------------
Function TSimpleSharedMemoryStream.Read(var Buffer; Count: LongInt): LongInt;
begin
Result := inherited Read(Buffer,Count);
end;
//------------------------------------------------------------------------------
Function TSimpleSharedMemoryStream.Write(const Buffer; Count: LongInt): LongInt;
begin
Result := inherited Write(Buffer,Count);
end;
{===============================================================================
--------------------------------------------------------------------------------
TSharedMemoryStream
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TSharedMemoryStream - class declaration
===============================================================================}
{-------------------------------------------------------------------------------
TSharedMemoryStream - protected methods
-------------------------------------------------------------------------------}
class Function TSharedMemoryStream.GetSharedMemoryInstance(InitSize: TMemSize; const Name: String): TSimpleSharedMemory;
begin
// do not call inherited code
Result := TSharedMemory.Create(InitSize,Name);
end;
{-------------------------------------------------------------------------------
TSharedMemoryStream - public methods
-------------------------------------------------------------------------------}
procedure TSharedMemoryStream.Lock;
begin
TSharedMemory(fSharedMemory).Lock;
end;
//------------------------------------------------------------------------------
procedure TSharedMemoryStream.Unlock;
begin
TSharedMemory(fSharedMemory).Unlock;
end;
//------------------------------------------------------------------------------
Function TSharedMemoryStream.Read(var Buffer; Count: LongInt): LongInt;
begin
Lock;
try
Result := inherited Read(Buffer,Count);
finally
Unlock;
end;
end;
//------------------------------------------------------------------------------
Function TSharedMemoryStream.Write(const Buffer; Count: LongInt): LongInt;
begin
Lock;
try
Result := inherited Write(Buffer,Count);
finally
Unlock;
end;
end;
end.