forked from madorin/fibplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FIBSQLMonitor.pas
1301 lines (1168 loc) · 32.9 KB
/
FIBSQLMonitor.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
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{***************************************************************}
{ FIBPlus - component library for direct access to Firebird and }
{ InterBase databases }
{ }
{ FIBPlus is based in part on the product }
{ Free IB Components, written by Gregory H. Deatz for }
{ Hoagland, Longo, Moran, Dunst & Doukas Company. }
{ mailto:gdeatz@hlmdd.com }
{ }
{ Copyright (c) 1998-2007 Devrace Ltd. }
{ Written by Serge Buzadzhy (buzz@devrace.com) }
{ }
{ ------------------------------------------------------------- }
{ FIBPlus home page: http://www.fibplus.com/ }
{ FIBPlus support : http://www.devrace.com/support/ }
{ ------------------------------------------------------------- }
{ }
{ Please see the file License.txt for full license information }
{***************************************************************}
unit FIBSQLMonitor;
interface
{$I FIBPlus.inc}
{$IFNDEF NO_MONITOR}
uses
SysUtils, Windows, Messages, Classes, FIBQuery,ibase,
FIBDataSet, FIBDatabase
{$IFDEF INC_SERVICE_SUPPORT}
,IB_Services
{$ENDIF}
;
const
WM_MIN_FIBSQL_MONITOR = WM_USER;
WM_MAX_FIBSQL_MONITOR = WM_USER + 512;
WM_FIBSQL_SQL_EVENT = WM_MIN_FIBSQL_MONITOR + 1;
CM_RELEASE = $B000 + 33; // cut from Controls
type
TFIBCustomSQLMonitor = class;
TFIBTraceFlag = (tfQPrepare, tfQExecute, tfQFetch,
tfConnect, tfTransact,tfService,tfMisc
);
TFIBTraceFlags = set of TFIBTraceFlag;
{ TFIBSQLMonitor }
TSQLEvent = procedure(EventText: String; EventTime : TDateTime) of object;
TFIBCustomSQLMonitor = class(TComponent)
private
FHWnd: HWND;
FOnSQLEvent: TSQLEvent;
FTraceFlags: TFIBTraceFlags;
FActive: Boolean;
procedure MonitorWndProc(var Message : TMessage);
procedure SetActive(const Value: Boolean);
procedure SetTraceFlags(aTraceFlags:TFIBTraceFlags);
protected
property OnSQL: TSQLEvent read FOnSQLEvent write FOnSQLEvent;
property TraceFlags: TFIBTraceFlags read FTraceFlags write SetTraceFlags;
property Active : Boolean read FActive write SetActive default true;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure Release;
property Handle : HWND read FHwnd;
end;
TFIBSQLMonitor = class(TFIBCustomSQLMonitor)
published
property OnSQL;
property TraceFlags;
property Active;
end;
TSavePointOperation=(soSet,soRollBack,soRelease);
{ TFIBSQLMonitorHook }
TFIBSQLMonitorHook = class(TObject)
private
FActive: Boolean;
vEventsCreated : Boolean;
procedure CreateEvents;
protected
procedure WriteSQLData(const Text: String; DataType: TFIBTraceFlag);
public
constructor Create;
destructor Destroy; override;
procedure TerminateWriteThread;
function SQLString(k:integer):Byte;
procedure RegisterMonitor(SQLMonitor : TFIBCustomSQLMonitor);
procedure UnregisterMonitor(SQLMonitor : TFIBCustomSQLMonitor);
procedure ReleaseMonitor(Arg : TFIBCustomSQLMonitor);
procedure SQLPrepare(qry: TFIBQuery); virtual;
procedure SQLExecute(qry: TFIBQuery; const AdditionalMessage:string ); virtual;
procedure SQLFetch(qry: TFIBQuery); virtual;
procedure DBConnect(db: TFIBDatabase); virtual;
procedure DBDisconnect(db: TFIBDatabase); virtual;
procedure TRStart(tr: TFIBTransaction); virtual;
procedure TRCommit(tr: TFIBTransaction); virtual;
procedure TRSavepoint(tr: TFIBTransaction; const SavePointName:string;
Operation:TSavePointOperation); virtual;
procedure TRCommitRetaining(tr: TFIBTransaction); virtual;
procedure TRRollback(tr: TFIBTransaction); virtual;
procedure TRRollbackRetaining(tr: TFIBTransaction); virtual;
{$IFDEF INC_SERVICE_SUPPORT}
procedure ServiceAttach(service: TpFIBCustomService); virtual;
procedure ServiceDetach(service: TpFIBCustomService); virtual;
procedure ServiceQuery(service: TpFIBCustomService); virtual;
procedure ServiceStart(service: TpFIBCustomService); virtual;
{$ENDIF}
procedure SendMisc(Msg : String);
function GetEnabled: Boolean;
function GetMonitorCount : Integer;
procedure SetEnabled(const Value: Boolean);
property Enabled : Boolean read GetEnabled write SetEnabled default true;
end;
function MonitorHook: TFIBSQLMonitorHook;
procedure EnableMonitoring;
procedure DisableMonitoring;
function MonitoringEnabled: Boolean;
{$ENDIF}
implementation
{$IFNDEF NO_MONITOR}
uses
{$IFNDEF D6+}
Forms,
{$ENDIF}
{$IFDEF D_XE3}
System.Types, // for inline funcs
{$ENDIF}
fib, StdFuncs,StrUtil;
type
TFIBTraceObject = Class(TObject)
private
FDataType : TFIBTraceFlag;
FMsg : String;
FTimeStamp : TDateTime;
FIsUnicodeVersion:boolean;
public
constructor Create(const Msg : String; DataType : TFIBTraceFlag);
end;
TReleaseObject = Class(TObject)
private
FHandle : THandle;
public
constructor Create(Handle : THandle);
end;
TMonitorWriterThread = class(TThread)
private
StopExec:boolean;
FMonitorMsgs : TList;
protected
procedure Lock;
Procedure Unlock;
procedure BeginWrite;
procedure EndWrite;
procedure Execute; override;
procedure WriteToBuffer;
public
constructor Create;
destructor Destroy; override;
procedure WriteSQLData(const Msg : String; DataType : TFIBTraceFlag);
procedure ReleaseMonitor(HWnd : THandle);
end;
TMonitorReaderThread = class(TThread)
private
st : TFIBTraceObject;
FMonitors : TList;
protected
procedure BeginRead;
procedure EndRead;
procedure ReadSQLData;
procedure Execute; override;
public
constructor Create;
destructor Destroy; override;
procedure AddMonitor(Arg : TFIBCustomSQLMonitor);
procedure RemoveMonitor(Arg : TFIBCustomSQLMonitor);
end;
const
MonitorHookNames: array[0..5] of String = (
'FIB.SQL.MONITOR.Mutex',
'FIB.SQL.MONITOR.SharedMem',
'FIB.SQL.MONITOR.WriteEvent',
'FIB.SQL.MONITOR.WriteFinishedEvent',
'FIB.SQL.MONITOR.ReadEvent',
'FIB.SQL.MONITOR.ReadFinishedEvent'
);
cMonitorHookSize = 2048;
cMaxBufferSize = cMonitorHookSize - (9 * SizeOf(Integer)) - SizeOf(TDateTime)
- 2*SizeOf(Byte)
;
cDefaultTimeout = 1000; // 1 seconds
var
FSharedBuffer,
FWriteLock,
FWriteEvent,
FWriteFinishedEvent,
FReadEvent,
FReadFinishedEvent : THandle;
FBuffer : PAnsiChar;
FMonitorCount,
FReaderCount,
FTraceDataType,
FQPrepareReaderCount,
FQExecuteReaderCount,
FQFetchReaderCount,
FConnectReaderCount,
FTransactReaderCount,
FBufferSize : PInteger;
FTimeStamp : PDateTime;
FIsUnicodeVersion : PBoolean;
FReserved : PByte;
FFIBWriterThread : TMonitorWriterThread;
FFIBReaderThread : TMonitorReaderThread;
_MonitorHook: TFIBSQLMonitorHook;
bDone: Boolean;
CS : TRTLCriticalSection;
bEnabledMonitoring:boolean;
{ TFIBCustomSQLMonitor }
{$IFDEF D6+}
{$WARN SYMBOL_DEPRECATED OFF}
{$ENDIF}
constructor TFIBCustomSQLMonitor.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FActive := true;
if not (csDesigning in ComponentState) then
begin
FHWnd := AllocateHWnd(MonitorWndProc);
MonitorHook.RegisterMonitor(self);
end;
TraceFlags := [tfqPrepare .. tfTransact];
end;
destructor TFIBCustomSQLMonitor.Destroy;
begin
if not (csDesigning in ComponentState) then
begin
if (tfQPrepare in TraceFlags) then
InterlockedDecrement(FQPrepareReaderCount^);
if (tfQExecute in TraceFlags) then
InterlockedDecrement(FQExecuteReaderCount^);
if (tfQFetch in TraceFlags) then
InterlockedDecrement(FQFetchReaderCount^);
if (tfConnect in TraceFlags) then
InterlockedDecrement(FConnectReaderCount^);
if (tfTransact in TraceFlags) then
InterlockedDecrement(FTransactReaderCount^);
if FActive then
MonitorHook.UnregisterMonitor(self);
DeallocateHwnd(FHWnd);
end;
inherited Destroy;
end;
{$IFDEF D6+}
{$WARN SYMBOL_DEPRECATED ON}
{$ENDIF}
{$IFDEF D2009+}
{$WARN SYMBOL_DEPRECATED OFF}
{$ENDIF}
procedure TFIBCustomSQLMonitor.MonitorWndProc(var Message: TMessage);
var
st : TFIBTraceObject;
begin
case Message.Msg of
WM_FIBSQL_SQL_EVENT:
begin
st := TFIBTraceObject(Message.LParam);
if (Assigned(FOnSQLEvent)) and
(st.FDataType in FTraceFlags) then
begin
if st.FIsUnicodeVersion then
begin
FOnSQLEvent(UTF8Decode(st.FMsg) , st.FTimeStamp);
end
else
FOnSQLEvent(st.FMsg, st.FTimeStamp);
end;
st.Free;
end;
CM_RELEASE :
Free;
else
Message.Result := DefWindowProc(FHWnd, Message.Msg, Message.WParam, Message.LParam);
end;
end;
procedure TFIBCustomSQLMonitor.Release;
begin
MonitorHook.ReleaseMonitor(self);
end;
procedure TFIBCustomSQLMonitor.SetActive(const Value: Boolean);
begin
if Value <> FActive then
begin
FActive := Value;
if not (csDesigning in ComponentState) then
if FActive then
Monitorhook.RegisterMonitor(self)
else
MonitorHook.UnregisterMonitor(self);
end;
end;
procedure TFIBCustomSQLMonitor.SetTraceFlags(aTraceFlags:TFIBTraceFlags);
begin
if not (csDesigning in ComponentState) then
begin
if (tfQPrepare in TraceFlags) and not (tfQPrepare in aTraceFlags)
then
InterlockedDecrement(FQPrepareReaderCount^)
else
if (not (tfQPrepare in TraceFlags)) and (tfQPrepare in aTraceFlags)
then
InterlockedIncrement(FQPrepareReaderCount^);
if (tfQExecute in TraceFlags) and not (tfQExecute in aTraceFlags)
then
InterlockedDecrement(FQExecuteReaderCount^)
else
if (not (tfQExecute in TraceFlags)) and (tfQExecute in aTraceFlags)
then
InterlockedIncrement(FQExecuteReaderCount^);
if (tfQFetch in TraceFlags) and not (tfQFetch in aTraceFlags)
then
InterlockedDecrement(FQFetchReaderCount^)
else
if (not (tfQFetch in TraceFlags)) and (tfQFetch in aTraceFlags)
then
InterlockedIncrement(FQFetchReaderCount^);
if (tfConnect in TraceFlags) and not (tfConnect in aTraceFlags)
then
InterlockedDecrement(FConnectReaderCount^)
else
if (not (tfConnect in TraceFlags)) and (tfConnect in aTraceFlags)
then
InterlockedIncrement(FConnectReaderCount^);
if (tfTransact in TraceFlags) and not (tfTransact in aTraceFlags)
then
InterlockedDecrement(FTransactReaderCount^)
else
if (not (tfTransact in TraceFlags)) and (tfTransact in aTraceFlags)
then
InterlockedIncrement(FTransactReaderCount^);
end;
fTraceFlags:=aTraceFlags
end;
{ TFIBSQLMonitorHook }
constructor TFIBSQLMonitorHook.Create;
begin
inherited Create;
vEventsCreated := false;
FActive := true;
if not vEventsCreated then
try
CreateEvents;
except
Enabled := false;
Exit;
end;
end;
procedure TFIBSQLMonitorHook.CreateEvents;
var
Sa : TSecurityAttributes;
Sd : TSecurityDescriptor;
MapError: Integer;
{$IFDEF VER100}
const
SECURITY_DESCRIPTOR_REVISION = 1;
{$ENDIF}
function OpenLocalEvent(Idx: Integer): THandle;
begin
Result := OpenEvent(EVENT_ALL_ACCESS, true, PChar(MonitorHookNames[Idx]));
if Result = 0 then
FIBError(feCannotCreateSharedResource, [GetLastError]);
end;
function CreateLocalEvent(Idx: Integer; InitialState: Boolean): THandle;
begin
Result := CreateEvent(@sa, true, InitialState, PChar(MonitorHookNames[Idx]));
if Result = 0 then
FIBError(feCannotCreateSharedResource, [GetLastError]);
end;
begin
InitializeSecurityDescriptor(@Sd,SECURITY_DESCRIPTOR_REVISION);
SetSecurityDescriptorDacl(@Sd,true,nil,false);
Sa.nLength := SizeOf(Sa);
Sa.lpSecurityDescriptor := @Sd;
Sa.bInheritHandle := true;
FSharedBuffer := CreateFileMapping(INVALID_HANDLE_VALUE, @sa, PAGE_READWRITE,
0, cMonitorHookSize, PChar(MonitorHookNames[1]));
MapError:=GetLastError;
if MapError= ERROR_ALREADY_EXISTS then
begin
FSharedBuffer := OpenFileMapping(FILE_MAP_ALL_ACCESS, false, PChar(MonitorHookNames[1]));
if (FSharedBuffer = 0) then
FIBError(feCannotCreateSharedResource, [GetLastError]);
end
else
begin
FWriteLock := CreateMutex(@sa, False, PChar(MonitorHookNames[0]));
FWriteEvent := CreateLocalEvent(2, False);
FWriteFinishedEvent := CreateLocalEvent(3, True);
FReadEvent := CreateLocalEvent(4, False);
FReadFinishedEvent := CreateLocalEvent(5, False);
end;
FBuffer := MapViewOfFile(FSharedBuffer, FILE_MAP_ALL_ACCESS, 0, 0, 0);
if FBuffer = nil then
FIBError(feCannotCreateSharedResource, [GetLastError]);
FMonitorCount := PInteger(FBuffer + cMonitorHookSize - SizeOf(Integer));
FReaderCount := PInteger(PAnsiChar(FMonitorCount) - SizeOf(Integer));
FTraceDataType:= PInteger(PAnsiChar(FMonitorCount) - 2*SizeOf(Integer));
FBufferSize := PInteger(PAnsiChar(FMonitorCount) - 3*SizeOf(Integer));
FQPrepareReaderCount:=PInteger(PAnsiChar(FMonitorCount) - 4*SizeOf(Integer));
FQExecuteReaderCount:=PInteger(PAnsiChar(FMonitorCount) - 5*SizeOf(Integer));
FQFetchReaderCount :=PInteger(PAnsiChar(FMonitorCount) - 6*SizeOf(Integer));
FConnectReaderCount :=PInteger(PAnsiChar(FMonitorCount) - 7*SizeOf(Integer));
FTransactReaderCount:=PInteger(PAnsiChar(FMonitorCount) - 8*SizeOf(Integer));
FTimeStamp := PDateTime(PAnsiChar(FTransactReaderCount)- SizeOf(TDateTime));
FIsUnicodeVersion := PBoolean(PAnsiChar(FTimeStamp)- SizeOf(Byte));
FReserved := PByte(PAnsiChar(FIsUnicodeVersion)- SizeOf(Byte));
if MapError= ERROR_ALREADY_EXISTS then
begin
FWriteLock := OpenMutex(MUTEX_ALL_ACCESS, False, PChar(MonitorHookNames[0]));
FWriteEvent := OpenLocalEvent(2);
FWriteFinishedEvent := OpenLocalEvent(3);
FReadEvent := OpenLocalEvent(4);
FReadFinishedEvent := OpenLocalEvent(5);
end
else
begin
FMonitorCount^ :=0;
FReaderCount^ :=0;
FBufferSize^ :=0;
FQPrepareReaderCount^:=0;
FQExecuteReaderCount^:=0;
FQFetchReaderCount^ :=0;
FConnectReaderCount^ :=0;
FTransactReaderCount^:=0;
end;
if FMonitorCount^ < 0 then
FMonitorCount^ := 0;
if FReaderCount^ < 0 then
FReaderCount^ := 0;
vEventsCreated := true;
end;
function TFIBSQLMonitorHook.SQLString(k:integer):Byte;
begin
Result:=127
end;
procedure TFIBSQLMonitorHook.DBConnect(db: TFIBDatabase);
var
st : String;
begin
if FActive and bEnabledMonitoring and (GetMonitorCount>0)
and (FConnectReaderCount^>0)
then
begin
st := db.Name + ': [Connect]'; {do not localize}
WriteSQLData(st, tfConnect);
end;
end;
procedure TFIBSQLMonitorHook.DBDisconnect(db: TFIBDatabase);
var
st: String;
begin
if FActive and bEnabledMonitoring and (GetMonitorCount>0)
and (FConnectReaderCount^>0)
then
begin
st := db.Name + ': [Disconnect]'; {do not localize}
WriteSQLData(st, tfConnect);
end;
end;
destructor TFIBSQLMonitorHook.Destroy;
begin
if vEventsCreated then
begin
UnmapViewOfFile(FBuffer);
CloseHandle(FSharedBuffer);
CloseHandle(FWriteEvent);
CloseHandle(FWriteFinishedEvent);
CloseHandle(FReadEvent);
CloseHandle(FReadFinishedEvent);
CloseHandle(FWriteLock);
end;
inherited Destroy;
end;
function TFIBSQLMonitorHook.GetEnabled: Boolean;
begin
Result := FActive;
end;
function TFIBSQLMonitorHook.GetMonitorCount: Integer;
begin
if FMonitorCount=nil
then
Result:=0
else
Result := FMonitorCount^;
end;
procedure TFIBSQLMonitorHook.RegisterMonitor(SQLMonitor: TFIBCustomSQLMonitor);
begin
if not vEventsCreated then
try
CreateEvents;
except
SQLMonitor.Active := false;
end;
if not Assigned(FFIBReaderThread) then
FFIBReaderThread := TMonitorReaderThread.Create;
FFIBReaderThread.AddMonitor(SQLMonitor);
end;
procedure TFIBSQLMonitorHook.ReleaseMonitor(Arg: TFIBCustomSQLMonitor);
begin
FFIBWriterThread.ReleaseMonitor(Arg.FHWnd);
end;
procedure TFIBSQLMonitorHook.SendMisc(Msg: String);
begin
if FActive then
WriteSQLData(Msg, tfMisc);
end;
{$IFDEF INC_SERVICE_SUPPORT}
procedure TFIBSQLMonitorHook.ServiceAttach(service: TpFIBCustomService);
var
st: String;
begin
if FActive and bEnabledMonitoring and (GetMonitorCount>0)
then
begin
st := service.Name + ': [Attach]'; {do not localize}
WriteSQLData(st, tfService);
end;
end;
procedure TFIBSQLMonitorHook.ServiceDetach(service: TpFIBCustomService);
var
st: String;
begin
if FActive and bEnabledMonitoring and (GetMonitorCount>0)
then
begin
st := service.Name + ': [Detach]'; {do not localize}
WriteSQLData(st, tfService);
end;
end;
procedure TFIBSQLMonitorHook.ServiceQuery(service: TpFIBCustomService);
var
st: String;
begin
if FActive and bEnabledMonitoring and (GetMonitorCount>0)
then
begin
st := service.Name + ': [Query]'; {do not localize}
WriteSQLData(st, tfService);
end;
end;
procedure TFIBSQLMonitorHook.ServiceStart(service: TpFIBCustomService);
var
st: String;
begin
if FActive and bEnabledMonitoring and (GetMonitorCount>0)
then
begin
st := service.Name + ': [Start]'; {do not localize}
WriteSQLData(st, tfService);
end;
end;
{$ENDIF}
procedure TFIBSQLMonitorHook.SetEnabled(const Value: Boolean);
begin
if FActive <> Value then
FActive := Value;
if (not FActive) and (Assigned(FFIBWriterThread)) then
begin
FFIBWriterThread.Terminate;
FFIBWriterThread.WaitFor;
FFIBWriterThread.Free;
FFIBWriterThread:=nil;
end;
end;
procedure TFIBSQLMonitorHook.SQLExecute(qry: TFIBQuery;const AdditionalMessage:string );
var
st: Ansistring;
i: Integer;
Q: TISC_QUAD;
begin
if FActive and bEnabledMonitoring and (GetMonitorCount>0)
and (FQExecuteReaderCount^>0)
then
begin
if qry.Owner is TFIBCustomDataSet then
st := TFIBCustomDataSet(qry.Owner).Name +'.'+qry.Name
else
st := qry.Name;
st := st + ': [Execute] ' + UTF8Encode(qry.ReadySQLText(False)); {do not localize}
if qry.Params.Count > 0 then
begin
for i := 0 to qry.Params.Count - 1 do
with qry.Params[i] do
begin
st := st + CRLF + ' ' + Name + ' = ';
try
if IsNull then
st := st + '<NULL>' {do not localize}
else
if (SQLType = (SQL_TEXT)) or (SQLType =(SQL_VARYING)) then
st := st +''''+ UTF8Encode(AsString)+''''
else
if ((SQLType and (not 1))= SQL_BLOB) then
begin
Q:=AsQuad;
st := st + '<BLOB> (BLOB_ID='+IntToStr(Q.gds_quad_high)+','+IntToStr(Q.gds_quad_low)+')'
end
else
if ((SQLType and (not 1)) =(SQL_ARRAY)) then
st := st + '<ARRAY>'
else
st := st + AsString;
except
st := st + '<Can''t print value>';
end;
end;
end;
if qry.SQLType in [SQLInsert, SQLUpdate, SQLDelete] then
st:=st + CRLF + 'Rows Affected: ' +IntToStr(qry.RowsAffected);
if Length(AdditionalMessage )>0 then
st:=st +CRLF +AdditionalMessage;
st:=st +CRLF +'Execute tick count '+ IntToStr(qry.CallTime);
// ast:=Utf8Encode( st);
WriteSQLData( st, tfQExecute);
// WriteSQLData(st, tfQExecute);
end;
end;
procedure TFIBSQLMonitorHook.SQLFetch(qry: TFIBQuery);
var
st: AnsiString;
i:integer;
begin
if FActive and bEnabledMonitoring and (GetMonitorCount>0)
and (FQFetchReaderCount^>0)
then
begin
if qry.Owner is TFIBCustomDataSet then
st := TFIBCustomDataSet(qry.Owner).Name
else
st := qry.Name;
st := st + ': [Fetch] ' + UTF8Encode(qry.ReadySQLText(False)); {do not localize}
for i:=0 to Pred(qry.Current.Count) do
begin
st:=st+qry.Fields[i].Name+' = ';
if qry.Fields[i].IsNull then
st := st + 'NULL'
else
st := st + UTF8Encode(qry.Fields[i].asWideString);
st:=st+CRLF;
end;
st:=CRLF+st;
if (qry.Eof) then
st := st + CRLF + ' End of file reached';
WriteSQLData(st, tfQFetch);
end;
end;
procedure TFIBSQLMonitorHook.SQLPrepare(qry: TFIBQuery);
var
st: AnsiString;
begin
if FActive and bEnabledMonitoring and (GetMonitorCount>0)
and (FQPrepareReaderCount^>0)
then
begin
if qry.Owner is TFIBCustomDataSet then
st := TFIBCustomDataSet(qry.Owner).Name
else
st := qry.Name;
st := st + ': [Prepare] ' + UTF8Encode(qry.ReadySQLText(False)) + CRLF; {do not localize}
try
st := st + ' Plan: ' + qry.Plan; {do not localize}
except
st := st + ' Plan: Can''t retrieve plan ';
end;
WriteSQLData(st, tfQPrepare);
end;
end;
procedure TFIBSQLMonitorHook.TRCommit(tr: TFIBTransaction);
var
st: String;
begin
if FActive and bEnabledMonitoring and (GetMonitorCount>0)
and (FTransactReaderCount^>0)
then
begin
if Assigned(tr.DefaultDatabase)
then
begin
st := tr.Name + ': [Commit (Hard commit)]('+
IntToStr(tr.TransactionID)+')';
WriteSQLData(st, tfTransact);
end;
end;
end;
procedure TFIBSQLMonitorHook.TRSavepoint(tr: TFIBTransaction;
const SavePointName:string; Operation:TSavePointOperation);
var
st: String;
begin
if FActive and bEnabledMonitoring and (GetMonitorCount>0)
and (FTransactReaderCount^>0)
then
begin
if Assigned(tr.DefaultDatabase)
then
begin
st:=tr.Name +': Transaction('+IntToStr(tr.TransactionID)+') -';
case Operation of
soSet:
st := st+' [SetSavePoint("'+SavePointName+'")]';
soRollBack:
st := st+' [RollBackToSavePoint("'+SavePointName+'")]';
soRelease:
st := st+' [ReleaseSavePoint("'+SavePointName+'")]';
end;
WriteSQLData(st, tfTransact);
end;
end;
end;
procedure TFIBSQLMonitorHook.TRCommitRetaining(tr: TFIBTransaction);
var
st: String;
begin
if FActive and bEnabledMonitoring and (GetMonitorCount>0)
and (FTransactReaderCount^>0)
then
begin
if Assigned(tr.DefaultDatabase)
then
begin
st := tr.Name + ': [Commit retaining (Soft commit)]('+
IntToStr(tr.TransactionID)+')';
WriteSQLData(st, tfTransact);
end;
end;
end;
procedure TFIBSQLMonitorHook.TRRollback(tr: TFIBTransaction);
var
st: String;
begin
if FActive and bEnabledMonitoring and (GetMonitorCount>0)
and (FTransactReaderCount^>0)
then
begin
if Assigned(tr.DefaultDatabase)
then
begin
st := tr.Name + ': [Rollback]('+
IntToStr(tr.TransactionID)+')';
WriteSQLData(st, tfTransact);
end;
end;
end;
procedure TFIBSQLMonitorHook.TRRollbackRetaining(tr: TFIBTransaction);
var
st: String;
begin
if FActive and bEnabledMonitoring and (GetMonitorCount>0)
and (FTransactReaderCount^>0)
then
begin
if Assigned(tr.DefaultDatabase)
then
begin
st := tr.Name + ': [Rollback retaining (Soft rollback)]('+
IntToStr(tr.TransactionID)+')';
WriteSQLData(st, tfTransact);
end;
end;
end;
procedure TFIBSQLMonitorHook.TRStart(tr: TFIBTransaction);
var
st: String;
begin
if FActive and bEnabledMonitoring and bEnabledMonitoring and (GetMonitorCount>0)
and (FTransactReaderCount^>0)
then
begin
if Assigned(tr.DefaultDatabase)
then
begin
st := tr.Name + ': [Start transaction]('+
IntToStr(tr.TransactionID)+')';
WriteSQLData(st, tfTransact);
end;
end;
end;
procedure TFIBSQLMonitorHook.UnregisterMonitor(SQLMonitor: TFIBCustomSQLMonitor);
begin
FFIBReaderThread.RemoveMonitor(SQLMonitor);
if FFIBReaderThread.FMonitors.Count = 0 then
begin
FFIBReaderThread.Terminate;
if not Assigned(FFIBWriterThread) then
begin
FFIBWriterThread := TMonitorWriterThread.Create;
end;
FFIBWriterThread.WriteSQLData(' ', tfMisc);
FFIBReaderThread.WaitFor;
FFIBReaderThread.Free;
FFIBReaderThread:=nil;
end;
end;
procedure TFIBSQLMonitorHook.WriteSQLData(const Text: String;
DataType: TFIBTraceFlag);
var
vText:string;
begin
if not vEventsCreated then
try
CreateEvents;
except
Enabled := false;
Exit;
end;
vText := CRLF + '[Application: ' + ExtractFileName(ParamStr(0))+ ']' + CRLF + Text; {do not localize}
if not Assigned(FFIBWriterThread) then
FFIBWriterThread := TMonitorWriterThread.Create;
FFIBWriterThread.WriteSQLData(vText, DataType);
end;
procedure TFIBSQLMonitorHook.TerminateWriteThread;
begin
if Assigned(FFIBWriterThread) then
begin
FFIBWriterThread.Free;
FFIBWriterThread:=nil
end;
end;
{ TMonitorWriterThread }
constructor TMonitorWriterThread.Create;
begin
StopExec:=False;
FMonitorMsgs := TList.Create;
inherited Create(False);
{ if FMonitorCount^ <> 0 then
Resume;}
{$IFNDEF D6+}
if FMonitorCount^ = 0 then
Suspend;
{$ENDIF}
end;
destructor TMonitorWriterThread.Destroy;
var Msg:TObject;
begin
{$IFNDEF D6+}
Resume;
{$ENDIF}
inherited Destroy;
if FMonitorMsgs.Count>0 then
begin
Msg:=FMonitorMsgs[0];
FMonitorMsgs.Delete(0);
Msg.Free;
end;
FMonitorMsgs.Free;
end;
procedure TMonitorWriterThread.Execute;
begin
while (((not Terminated) and (not bDone)) or
(FMonitorMsgs.Count <> 0)) and not StopExec do
begin
if (FMonitorCount^ = 0) then
begin
while FMonitorMsgs.Count <> 0 do
begin
TObject(FMonitorMsgs[0]).Free;
FMonitorMsgs.Delete(0);
// FMonitorMsgs.Remove(FMonitorMsgs[0]);
end;
{$IFNDEF D6+}
Suspend;
{$ELSE}
Sleep(50)
{$ENDIF}
end
else
if FMonitorMsgs.Count <> 0 then
begin
if (TObject(FMonitorMsgs.Items[0]) is TReleaseObject)
//or (not bEnabledMonitoring )
then
PostMessage(TReleaseObject(FMonitorMsgs.Items[0]).FHandle, CM_RELEASE, 0, 0)
else
begin
if bEnabledMonitoring then
WriteToBuffer
else
begin
// WriteToBuffer;
BeginWrite;
TFIBTraceObject(FMonitorMsgs[0]).Free;
FMonitorMsgs.Delete(0);
EndWrite;
end;
end;
end
else
{$IFNDEF D6+}
Suspend
{$ELSE}
Sleep(50)
{$ENDIF}
end;
end;
procedure TMonitorWriterThread.Lock;
begin