-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathMVCBr.MongoModel.pas
971 lines (831 loc) · 25.8 KB
/
MVCBr.MongoModel.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
unit MVCBr.MongoModel;
{ *************************************************************************** }
{ }
{ MVCBr é o resultado de esforços de um grupo }
{ }
{ Copyright (C) 2017 MVCBr }
{ }
{ amarildo lacerda }
{ http://www.tireideletra.com.br }
{ }
{ }
{ *************************************************************************** }
{ }
{ Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 }
{ }
{ Unless required by applicable law or agreed to in writing, software }
{ distributed under the License is distributed on an "AS IS" BASIS, }
{ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. }
{ See the License for the specific language governing permissions and }
{ limitations under the License. }
{ }
{ *************************************************************************** }
interface
uses
System.classes, System.SysUtils,
Data.DB,
MVCBr.Interf, MVCBr.Model,
MongoWire, MongoAuth3, JsonDoc,
bsonTools,
{bsonDoc,} {bsonUtils,} MVCBr.Patterns.Adapter;
type
TMongoModelFactory = class;
IJSONDocument = JsonDoc.IJSONDocument;
IJSONDoc = interface(IJSONDocument)
['{4AC5C079-4EAC-4F28-BCA3-83794D899F36}']
function ToJson: String;
End;
IJSONArray = JsonDoc.IJSONArray;
IJSONDocArray = JsonDoc.IJSONDocArray;
IMongoConnection = IMVCBrAdapter<TMongoWire>;
IMongoQuery = IMVCBrAdapter<TMongoWireQuery>;
//IBSONDocument = bsonDoc.IBSONDocument;
TJSONDocument = class(JsonDoc.TJSONDocument, IJSONDoc)
public
class Function New: IJSONDocument; overload;
class function New(const x: array of Variant): IJSONDocument; overload;
//class function BsonToJson(Doc: IBSONDocument): WideString;
class function JSON(const x: Variant): IJSONDocument;
function ToJson: String;
class function AsArray(item: Variant): IJSONArray;
class function NewDocArray: IJSONDocArray;
class function ToDocArray(Doc: IJSONDocument): IJSONDocArray;
end;
TJSONDocArray = Class(JsonDoc.TJSONDocArray)
public
class function New: IJSONDocArray;
end;
IMongoModel = interface(IModel)
['{0A93DBFF-13C6-46A7-9A5D-C59551F32CB9}']
function This: TMongoModelFactory;
procedure SetDatabase(const Value: string);
procedure SetHost(const Value: string);
procedure SetPassword(const Value: string);
procedure SetPort(const Value: integer);
procedure SetUserName(const Value: string);
function GetDatabase: string;
function GetHost: string;
function GetPassword: string;
function GetPort: integer;
function GetUserName: string;
function Database(ADatabase: string): IMongoModel;
function Host(AHost: String): IMongoModel;
function Port(APort: integer): IMongoModel;
function Password(APass: string): IMongoModel;
function UserName(AUser: string): IMongoModel;
function SetConnection(AConn: TMongoWire = nil): IMongoModel;
/// mongo
function MongoConnection: TMongoWire;
// function NewQuery: IMongoQuery;
procedure SetActive(const Value: Boolean);
function GetActive: Boolean;
property Active: Boolean read GetActive write SetActive;
function Get(const ACollection: String; const AWhere: IJSONDocument)
: IJSONDocument; overload;
function Get(const ACollection: String; const AJsonWhere: string)
: IJSONDocument; overload;
function Query(Const ACollection: String; const AWhere: IJSONDocument)
: IJSONDocArray; overload;
function Query(Const ACollection: String;
const AArrayWhere: array of IJSONDocument): IJSONDocArray; overload;
function FillDataset(Doc: IJSONDocArray; ADataset: TDataset;
AEventBoforePost: TProc = nil): integer;
function GetDataset(ACollection: string;
const AArrayWhere: array of IJSONDocument; ADataset: TDataset;
AEvent: TProc = nil): integer; overload;
function GetDataset(ACommand: IJSONDocument; ADataset: TDataset;
AEvent: TProc = nil): integer; overload;
procedure Update(const ACollection: String;
const AWhere, ADoc: IJSONDocument; AUpsert: Boolean = false;
AMultiUpdate: Boolean = false); overload;
procedure Insert(const ACollection: WideString;
const ADoc: IJSONDocument); overload;
procedure Insert(const ACollection: WideString;
const ADocs: array of IJSONDocument); overload;
procedure Insert(const ACollection: WideString;
const ADocs: IJSONDocArray); overload;
procedure Delete(const ACollection: WideString; const AWhere: IJSONDocument;
ASingleRemove: Boolean = true);
function Ping: Boolean;
procedure EnsureIndex(const ACollection: WideString;
const AIndex: IJSONDocument; const AOptions: IJSONDocument = nil);
function RunCommand(const ACmdObj: IJSONDocument): IJSONDocument;
function Count(const ACollection: WideString): integer;
function Distinct(const ACollection, AKey: WideString;
const AQuery: IJSONDocument = nil): Variant;
function Eval(const ACollection, AJSFn: WideString;
const AArgs: array of Variant; ANoLock: Boolean = false): Variant;
function AsArray(Doc: Variant): IJSONArray;
end;
TMongoExpression = record
public
class function like(AField: string; AText: string; AOptions: String = 'i')
: IJSONDocument; static;
class function contains(AField: string; AText: string;
AOptions: String = 'i'): IJSONDocument; static;
class function between(AField: string; AFrom, ATo: Variant)
: IJSONDocument; static;
class function gt(AField: string; AValue: Variant): IJSONDocument; static;
class function gte(AField: string; AValue: Variant): IJSONDocument; static;
class function lt(AField: string; AValue: Variant): IJSONDocument; static;
class function lte(AField: string; AValue: Variant): IJSONDocument; static;
class function eq(AField: string; AValue: Variant): IJSONDocument; static;
class function ne(AField: string; AValue: Variant): IJSONDocument; static;
class function search(AField: string; AString: string)
: IJSONDocument; static;
end;
/// <summary>
/// MongoModel
/// </summary>
TMongoModelFactory = class(TModelFactory, IMongoModel)
private
FPort: integer;
FDatabase: string;
FPassword: string;
FHost: string;
FUserName: string;
FConnection: TMVCBrAdapter<TMongoWire>;
FActive: Boolean;
function SetConnection(AConn: TMongoWire = nil): IMongoModel;
procedure SetActive(const Value: Boolean);
function GetActive: Boolean;
function GetSequence(FCollection, AMongoCampo: string): Int64;
protected
function OpenIfNeed: TMongoWire; virtual;
public
procedure SetDatabase(const Value: string); virtual;
procedure SetHost(const Value: string); virtual;
procedure SetPassword(const Value: string); virtual;
procedure SetPort(const Value: integer); virtual;
procedure SetUserName(const Value: string); virtual;
function GetDatabase: string; virtual;
function GetHost: string; virtual;
function GetPassword: string; virtual;
function GetPort: integer; virtual;
function GetUserName: string; virtual;
function Default: TMVCBrAdapter<TMongoWire>;
public
constructor Create; override;
destructor Destroy; override;
class function New(AController: IController; ADatabase: string = '')
: IMongoModel; overload; virtual;
class function New(AController: IController; AConnection: TMongoWire)
: IMongoModel; overload; virtual;
[weak]
function This: TMongoModelFactory; virtual;
function MongoConnection: TMongoWire;
procedure Open;
procedure Close;
function NewQuery(FConnection: IMongoConnection): IMongoQuery;
/// Base
{$REGION "Base connections"}
[weak]
function Database(ADatabase: string): IMongoModel; virtual;
[weak]
function Host(AHost: String): IMongoModel; virtual;
[weak]
function Port(APort: integer): IMongoModel; virtual;
[weak]
function Password(APass: string): IMongoModel; virtual;
[weak]
function UserName(AUser: string): IMongoModel; virtual;
{$ENDREGION}
[weak]
property Active: Boolean read GetActive write SetActive;
/// Operations
{$REGION "Mongo Base Operations"}
/// <summary>
/// Get retrieve data with AWhere conditions
/// </summary>
function Get(const ACollection: String; const AWhere: IJSONDocument)
: IJSONDocument; overload;
function Get(const ACollection: String; const AJsonWhere: string)
: IJSONDocument; overload;
// query
function Query(Const ACollection: String; const AWhere: IJSONDocument)
: IJSONDocArray; overload;
function Query(Const ACollection: String; AWhere: string)
: IJSONDocArray; overload;
function Query(Const ACollection: String;
const AArrayWhere: array of IJSONDocument): IJSONDocArray; overload;
// dataset
function FillDataset(Doc: IJSONDocArray; ADataset: TDataset;
AEventBoforePost: TProc = nil): integer;
function GetDataset(ACollection: string;
const AArrayWhere: array of IJSONDocument; ADataset: TDataset;
AEventBoforePost: TProc = nil): integer; overload;
function GetDataset(ACommand: IJSONDocument; ADataset: TDataset;
AEvent: TProc = nil): integer; overload;
// operations
procedure Update(const ACollection: String;
const AWhere, ADoc: IJSONDocument; AUpsert: Boolean = false;
AMultiUpdate: Boolean = false);
procedure Insert(const ACollection: WideString;
const ADoc: IJSONDocument); overload;
procedure Insert(const ACollection: WideString;
const ADocs: array of IJSONDocument); overload;
procedure Insert(const ACollection: WideString;
const ADocs: IJSONDocArray); overload;
procedure Delete(const ACollection: WideString; const AWhere: IJSONDocument;
ASingleRemove: Boolean = true);
function Ping: Boolean;
procedure EnsureIndex(const ACollection: WideString;
const AIndex: IJSONDocument; const AOptions: IJSONDocument = nil);
function RunCommand(const ACmdObj: IJSONDocument): IJSONDocument;
function Count(const ACollection: WideString): integer;
function Distinct(const ACollection, AKey: WideString;
const AQuery: IJSONDocument = nil): Variant;
function Eval(const ACollection, AJSFn: WideString;
const AArgs: array of Variant; ANoLock: Boolean = false): Variant;
function AsArray(Doc: Variant): IJSONArray;
{$ENDREGION}
{$REGION "Samples Extends commands"}
function QueryRegEx(ACollection, AField, AText: String): IJSONDocArray;
{$ENDREGION}
end;
function MongoJSON: IJSONDocument; overload;
function MongoJSON(const x: array of Variant): IJSONDocument; overload;
function MongoJSON(const x: Variant): IJSONDocument; overload;
function MongoJSONArray(): IJSONDocArray; overload;
//function JsonToBson(AJson: String): IBSONDocument;
implementation
uses vcl.Dialogs, Data.DB.Helper, System.JSON, System.JSON.Helper;
{function JsonToBson(AJson: String): IBSONDocument;
begin
bsonUtils.JsonToBson(AJson);
end;
}
function MongoJSONArray(): IJSONDocArray; overload;
begin
result := JsonDoc.JSONDocArray;
end;
function MongoJSON: IJSONDocument;
begin
result := JsonDoc.JSON as IJSONDocument;
end;
function MongoJSON(const x: array of Variant): IJSONDocument; overload;
begin
result := JSON(x) as IJSONDocument;
end;
function MongoJSON(const x: Variant): IJSONDocument; overload;
begin
result := JSON(x) as IJSONDocument;
end;
{ TMongoModelFactory }
function TMongoModelFactory.AsArray(Doc: Variant): IJSONArray;
begin
result := ja(Doc);
end;
procedure TMongoModelFactory.Close;
begin
Active := false;
end;
function TMongoModelFactory.SetConnection(AConn: TMongoWire): IMongoModel;
begin
result := self;
if assigned(AConn) then
FConnection.SetInstance(AConn, false { free on caller } );
end;
function TMongoModelFactory.Count(const ACollection: WideString): integer;
begin
result := OpenIfNeed.Count(ACollection);
end;
constructor TMongoModelFactory.Create;
begin
inherited;
FDatabase := 'mvcbrDB';
FHost := 'localhost';
FPort := 27017;
end;
function TMongoModelFactory.Database(ADatabase: string): IMongoModel;
begin
result := self;
SetDatabase(ADatabase);
end;
function TMongoModelFactory.Default: TMVCBrAdapter<TMongoWire>;
begin
if not assigned(FConnection) then
begin
FConnection := TMVCBrAdapter<TMongoWire>.Create(nil);
FConnection.DelegateTo(
function: TMongoWire
begin
result := TMongoWire.Create(FDatabase);
end);
end;
if not FActive then
begin
SetDatabase(FDatabase);
SetPort(FPort);
SetPassword(FPassword);
SetHost(FHost);
SetUserName(FUserName);
end;
result := FConnection;
end;
procedure TMongoModelFactory.Delete(const ACollection: WideString;
const AWhere: IJSONDocument; ASingleRemove: Boolean);
begin
OpenIfNeed.Delete(ACollection, AWhere, ASingleRemove);
end;
destructor TMongoModelFactory.Destroy;
begin
if assigned(FConnection) then
begin
FConnection.DisposeOf;
FConnection := nil;
end;
inherited;
end;
function TMongoModelFactory.Distinct(const ACollection, AKey: WideString;
const AQuery: IJSONDocument): Variant;
begin
result := OpenIfNeed.Distinct(ACollection, AKey, AQuery);
end;
procedure TMongoModelFactory.EnsureIndex(const ACollection: WideString;
const AIndex, AOptions: IJSONDocument);
begin
OpenIfNeed.EnsureIndex(ACollection, AIndex, AOptions);
end;
function TMongoModelFactory.Eval(const ACollection, AJSFn: WideString;
const AArgs: array of Variant; ANoLock: Boolean): Variant;
begin
result := OpenIfNeed.Eval(ACollection, AJSFn, AArgs, ANoLock);
end;
function TMongoModelFactory.FillDataset(Doc: IJSONDocArray; ADataset: TDataset;
AEventBoforePost: TProc): integer;
var
i: integer;
item: IJSONDocument;
begin
if not ADataset.Active then
ADataset.Active := true;
ADataset.DisableControls;
try
for i := 0 to Doc.Count - 1 do
begin
item := TJSONDocument.JSON(Doc.item[i]);
ADataset.append;
ADataset.Fields.FillFromJson(item.ToString);
if assigned(AEventBoforePost) then
AEventBoforePost;
ADataset.post;
end;
result := ADataset.RecordCount;
finally
ADataset.EnableControls;
end;
end;
function TMongoModelFactory.Get(const ACollection: String;
const AWhere: IJSONDocument): IJSONDocument;
begin
result := OpenIfNeed.Get(ACollection, AWhere) as IJSONDocument;
end;
function TMongoModelFactory.Get(const ACollection, AJsonWhere: string)
: IJSONDocument;
begin
result := Get(ACollection, JSON.Parse(AJsonWhere) as IJSONDocument);
end;
function TMongoModelFactory.GetActive: Boolean;
begin
result := FActive;
end;
function TMongoModelFactory.GetDatabase: string;
begin
result := FDatabase;
end;
function TMongoModelFactory.GetDataset(ACommand: IJSONDocument;
ADataset: TDataset; AEvent: TProc): integer;
var
Doc: IJSONDocument;
i: integer;
item: IJSONDocument;
begin
result := 0;
OpenIfNeed;
Doc := RunCommand(ACommand);
if ADataset.FieldCount = 0 then
begin
{ TODO: dinamics create fields }
end;
if not ADataset.Active then
ADataset.Active := true;
ADataset.DisableControls;
try
{ for i := 0 to Doc.Count - 1 do
begin
item := TJSONDocument.JSON(Doc.item[i]);
ADataset.append;
ADataset.Fields.FillFromJson(item.ToString);
if assigned(AEventBoforePost) then
AEventBoforePost;
ADataset.post;
end;
}
result := ADataset.RecordCount;
finally
ADataset.EnableControls;
end;
end;
function TMongoModelFactory.GetDataset(ACollection: string;
const AArrayWhere: array of IJSONDocument; ADataset: TDataset;
AEventBoforePost: TProc = nil): integer;
var
Doc: IJSONDocArray;
i: integer;
item: IJSONDocument;
begin
result := 0;
OpenIfNeed;
Doc := Query(ACollection, AArrayWhere);
if ADataset.FieldCount = 0 then
begin
{ TODO: dinamics create fields }
showMessage(Doc.ToString);
end;
result := FillDataset(Doc, ADataset, AEventBoforePost);
end;
function TMongoModelFactory.GetHost: string;
begin
result := FHost;
end;
function TMongoModelFactory.GetPassword: string;
begin
result := FPassword;
end;
function TMongoModelFactory.GetPort: integer;
begin
result := FPort;
end;
function TMongoModelFactory.GetUserName: string;
begin
result := FUserName;
end;
function TMongoModelFactory.Host(AHost: String): IMongoModel;
begin
result := self;
SetHost(AHost);
end;
procedure TMongoModelFactory.Insert(const ACollection: WideString;
const ADocs: array of IJSONDocument);
begin
OpenIfNeed.Insert(ACollection, ADocs);
end;
procedure TMongoModelFactory.Insert(const ACollection: WideString;
const ADoc: IJSONDocument);
begin
OpenIfNeed.Insert(ACollection, ADoc);
end;
procedure TMongoModelFactory.Insert(const ACollection: WideString;
const ADocs: IJSONDocArray);
begin
OpenIfNeed.Insert(ACollection, ADocs);
end;
function TMongoModelFactory.MongoConnection: TMongoWire;
begin
result := Default.Adapter;
end;
class function TMongoModelFactory.New(AController: IController;
AConnection: TMongoWire): IMongoModel;
begin
result := self.New(AController, '');
with result.This do
begin
FConnection.SetInstance(AConnection, true);
end;
end;
function TMongoModelFactory.NewQuery(FConnection: IMongoConnection)
: IMongoQuery;
var
r: TMVCBrAdapter<TMongoWireQuery>;
begin
r := TMVCBrAdapter<TMongoWireQuery>.Create(nil);
r.FreeOnExit := true;
r.DelegateTo(
function: TMongoWireQuery
begin
result := TMongoWireQuery.Create(FConnection);
end);
result := r;
end;
procedure TMongoModelFactory.Open;
begin
if not FActive then
Active := true;
end;
function TMongoModelFactory.OpenIfNeed: TMongoWire;
begin
self.Default;
result := MongoConnection;
if not Active then
Open;
end;
class function TMongoModelFactory.New(AController: IController;
ADatabase: string): IMongoModel;
begin
result := TMongoModelFactory.Create;
result.Controller(AController);
if ADatabase <> '' then
result.SetDatabase(ADatabase);
end;
function TMongoModelFactory.Password(APass: string): IMongoModel;
begin
result := self;
SetPassword(APass);
end;
function TMongoModelFactory.Ping: Boolean;
begin
result := MongoConnection.Ping;
end;
function TMongoModelFactory.Port(APort: integer): IMongoModel;
begin
result := self;
SetPort(APort);
end;
function TMongoModelFactory.Query(const ACollection: String;
const AWhere: IJSONDocument): IJSONDocArray;
var
d: IJSONDocument;
i: integer;
q: TMongoWireQuery;
r: TJSONDocArray;
begin
d := JSON;
OpenIfNeed;
q := TMongoWireQuery.Create(MongoConnection);
try
r := TJSONDocArray.Create;
// with q do
// begin
q.Query(ACollection, AWhere);
// end;
while q.Next(d) do
begin
r.Add(d);
end;
finally
q.free;
end;
result := r;
end;
function TMongoModelFactory.RunCommand(const ACmdObj: IJSONDocument)
: IJSONDocument;
begin
result := OpenIfNeed.RunCommand(ACmdObj);
end;
procedure TMongoModelFactory.SetActive(const Value: Boolean);
begin
if not Value then
begin
if FActive then
Default.Adapter.Close;
FActive := false;
exit;
end;
if (not FActive) and Value then
with Default do
begin
Default.Adapter.Close;
Adapter.Open(FHost, FPort);
if not FActive then
begin
with Adapter do
begin
NameSpace := FDatabase;
if (FUserName <> '') and (FPassword <> '') then
begin
MongoWireAuthenticate(Adapter, FUserName, FPassword);
end;
end;
end;
FActive := Value;
exit;
end;
end;
procedure TMongoModelFactory.SetDatabase(const Value: string);
begin
FDatabase := Value;
end;
procedure TMongoModelFactory.SetHost(const Value: string);
begin
FHost := Value;
end;
procedure TMongoModelFactory.SetPassword(const Value: string);
begin
FPassword := Value;
end;
procedure TMongoModelFactory.SetPort(const Value: integer);
begin
FPort := Value;
end;
procedure TMongoModelFactory.SetUserName(const Value: string);
begin
FUserName := Value;
end;
function TMongoModelFactory.This: TMongoModelFactory;
begin
result := self;
end;
procedure TMongoModelFactory.Update(const ACollection: String;
const AWhere, ADoc: IJSONDocument; AUpsert, AMultiUpdate: Boolean);
begin
OpenIfNeed.Update(ACollection, AWhere, ADoc, AUpsert, AMultiUpdate);
end;
function TMongoModelFactory.UserName(AUser: string): IMongoModel;
begin
result := self;
SetUserName(AUser);
end;
{ TJSONDocument }
class function TJSONDocument.New: IJSONDocument;
begin
result := TJSONDocument.Create;
end;
class function TJSONDocument.AsArray(item: Variant): IJSONArray;
begin
result := ja(item);
end;
{class function TJSONDocument.BsonToJson(Doc: IBSONDocument): WideString;
begin
result := bsonUtils.BsonToJson(Doc);
end;
}
class function TJSONDocument.JSON(const x: Variant): IJSONDocument;
begin
result := MongoJSON(x);
end;
class function TJSONDocument.New(const x: array of Variant): IJSONDocument;
begin
result := JsonDoc.JSON(x);
end;
class function TJSONDocument.NewDocArray: IJSONDocArray;
begin
result := JSONDocArray;
end;
class function TJSONDocument.ToDocArray(Doc: IJSONDocument): IJSONDocArray;
begin
result := JSONDocArray;
result.Add(Doc);
end;
function TJSONDocument.ToJson: String;
begin
result := ToString;
end;
{ TJSONDocArray }
class function TJSONDocArray.New: IJSONDocArray;
begin
result := TJSONDocArray.Create;
end;
// System.Json.Helper;
function TMongoModelFactory.Query(const ACollection: String;
const AArrayWhere: array of IJSONDocument): IJSONDocArray;
var
j: TJsonObject;
i: integer;
v: TJsonObject;
p: TJsonPair;
s: string;
begin
j := TJsonObject.Create;
try
for i := low(AArrayWhere) to high(AArrayWhere) do
begin
try
s := AArrayWhere[i].ToString;
v := TJsonObject.ParseJSONValue(s) as TJsonObject;
for p in v do
j.AddPair(p);
finally
end;
end;
result := Query(ACollection, JSON.Parse(j.ToJson));
finally
j.free;
end;
end;
function TMongoModelFactory.Query(const ACollection: string; AWhere: string)
: IJSONDocArray;
var
j: TJsonObject;
begin
result := Query(ACollection, JSON(AWhere) );
end;
function TMongoModelFactory.QueryRegEx(ACollection, AField, AText: String)
: IJSONDocArray;
begin
result := Query(ACollection, TMongoExpression.like(AField, AText));
end;
function TMongoModelFactory.GetSequence(FCollection,
AMongoCampo: string): Int64;
Var
d, dChave, e: IJSONDocument; // Obj BSON
j: TJsonObject; // Obj JSON
sField, sComand_Save, sComand_Modify: TStringBuilder;
sCollectionSeq, sCollectionField: string;
iRetorno: Int64;
begin
// -- Gerando o Sequence para o AutoIncremento
sField := TStringBuilder.Create;
sComand_Save := TStringBuilder.Create;
sComand_Modify := TStringBuilder.Create;
j := TJsonObject.Create;
try
sComand_Save.clear;
sComand_Modify.clear;
sField.clear;
sField.append('_id_').append(AnsiLowerCase(AMongoCampo));
sCollectionSeq := '_sequence';
sCollectionField := '_id';
sComand_Save.append('{ findAndModify: "').append(sCollectionSeq)
.append('", query: { ').append(sCollectionField).append(': "')
.append(FCollection).append('" }, update: {').append(sCollectionField)
.append(': "').append(FCollection).append('", ').append(sField.ToString)
.append(': 0 }, upsert:true }');
sComand_Modify.append('{ findAndModify: "').append(sCollectionSeq)
.append('", query: { ').append(sCollectionField).append(': "')
.append(FCollection).append('" }, update: { $inc: { ')
.append(sField.ToString).append(': 1 } }, new:true }');
j.AddPair(sCollectionField, TJSONString.Create(FCollection));
dChave := JSON.Parse(j.ToJson);
try
d := Get(sCollectionSeq, dChave);
iRetorno := StrToInt64(d[sField.ToString]);
except
d := JSON.Parse(sComand_Save.ToString);
e := RunCommand(d);
end;
try
d := JSON.Parse(sComand_Modify.ToString);
e := RunCommand(d);
// result := StrToInt(VarToStr(BSON(e['value'])[sField.ToString]));
result := StrToInt(sField.ToString);
except
result := -1;
raise EMongoException.Create
('Mongo: não foi possível gerar o AutoIncremento.');
end;
finally
sField.free;
sComand_Save.free;
sComand_Modify.free;
j.free;
end;
end;
{ TMongoExpression }
class function TMongoExpression.between(AField: string; AFrom, ATo: Variant)
: IJSONDocument;
begin
result := JSON([AField, JSON(['$gte', AFrom, '$lte', ATo])]);
end;
class function TMongoExpression.contains(AField, AText: string;
AOptions: String = 'i'): IJSONDocument;
begin
result := JSON([AField, JSON(['$regex', bsonRegExPrefix + '/' + AText,
'$options', AOptions])])
end;
class function TMongoExpression.eq(AField: string; AValue: Variant)
: IJSONDocument;
begin
result := JSON([AField, JSON(['$eq', AValue])]);
end;
class function TMongoExpression.gt(AField: string; AValue: Variant)
: IJSONDocument;
begin
result := JSON([AField, JSON(['$gt', AValue])]);
end;
class function TMongoExpression.gte(AField: string; AValue: Variant)
: IJSONDocument;
begin
result := JSON([AField, JSON(['$gte', AValue])]);
end;
class function TMongoExpression.lt(AField: string; AValue: Variant)
: IJSONDocument;
begin
result := JSON([AField, JSON(['$lt', AValue])]);
end;
class function TMongoExpression.lte(AField: string; AValue: Variant)
: IJSONDocument;
begin
result := JSON([AField, JSON(['$lte', AValue])]);
end;
class function TMongoExpression.ne(AField: string; AValue: Variant)
: IJSONDocument;
begin
result := JSON([AField, JSON(['$ne', AValue])]);
end;
class function TMongoExpression.search(AField: string; AString: string)
: IJSONDocument;
begin
result := JSON([AField, JSON(['$search', AString])]);
end;
class function TMongoExpression.like(AField, AText: string;
AOptions: String = 'i'): IJSONDocument;
begin
result := JSON([AField, JSON(['$regex', bsonRegExPrefix + '/^' + AText,
'$options', AOptions])])
end;
end.