forked from mongodb/mongo-hhvm-driver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathext_mongodb.php
1861 lines (1550 loc) · 44.8 KB
/
ext_mongodb.php
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
<?hh
namespace MongoDB\BSON;
interface Type
{
}
interface Serializable extends Type
{
function bsonSerialize() : mixed;
}
interface Unserializable
{
function bsonUnserialize(array $data) : void;
}
interface Persistable extends Serializable, Unserializable
{
}
/* == MONITORING ============================================================= */
namespace MongoDB\Driver\Monitoring;
/* ------ Building blocks for value obejcts */
abstract class _CommandEvent
{
private string $commandName;
private \MongoDB\Driver\Server $server;
private integer $operationId;
private integer $requestId;
private function __construct()
{
throw new \MongoDB\Driver\Exception\RunTimeException("Accessing private constructor");
}
public function getCommandName() : string
{
return $this->commandName;
}
// libmongoc use getHost, and the spec uses "connectionId".
public function getServer() : \MongoDB\Driver\Server
{
return $this->server;
}
// technically int64_t
public function getOperationId() : string
{
return (string) $this->operationId;
}
// technically int64_t
public function getRequestId() : string
{
return (string) $this->requestId;
}
}
abstract class _CommandResultEvent extends _CommandEvent
{
private integer $durationMicros;
// spec is unitless, libmongoc does microseconds. Spec suggests "Nanos" as
// another alternative. (technically int64_t, but 2147 sec on 32bit platforms
// ought to be enough)
public function getDurationMicros() : integer
{
return $this->durationMicros;
}
}
/* ------ Value Objects ------------------- */
final class CommandStartedEvent extends _CommandEvent
{
private mixed $command;
private string $databaseName;
// raw command document, with default BSON conversion rules
public function getCommand() : mixed
{
return $this->command;
}
public function getDatabaseName() : string
{
return $this->databaseName;
}
public function __debugInfo() : array
{
return [
'command' => $this->getCommand(),
'commandName' => $this->getCommandName(),
'databaseName' => $this->getDatabaseName(),
'operationId' => $this->getOperationId(),
'requestId' => $this->getRequestId(),
'server' => $this->getServer(),
];
}
}
final class CommandSucceededEvent extends _CommandResultEvent
{
private mixed $reply;
public function getReply() : mixed
{
return $this->reply;
}
public function __debugInfo() : array
{
return [
'commandName' => $this->getCommandName(),
'durationMicros' => $this->getDurationMicros(),
'operationId' => $this->getOperationId(),
'reply' => $this->getReply(),
'requestId' => $this->getRequestId(),
'server' => $this->getServer(),
];
}
}
final class CommandFailedEvent extends _CommandResultEvent
{
private object $error;
// Spec calls it failure, libmongoc returns a bson_error_t.
public function getError() : \MongoDB\Driver\Exception\Exception
{
return $this->error;
}
public function __debugInfo() : array
{
return [
'commandName' => $this->getCommandName(),
'durationMicros' => $this->getDurationMicros(),
'error' => $this->getError(),
'operationId' => $this->getOperationId(),
'requestId' => $this->getRequestId(),
'server' => $this->getServer(),
];
}
}
/* ------ Subscriber Interface ------------ */
interface Subscriber {}
interface CommandSubscriber extends Subscriber
{
public function commandStarted( \MongoDB\Driver\Monitoring\CommandStartedEvent $event );
public function commandSucceeded( \MongoDB\Driver\Monitoring\CommandSucceededEvent $event );
public function commandFailed( \MongoDB\Driver\Monitoring\CommandFailedEvent $event );
}
/* =========================================================================== */
namespace MongoDB\Driver;
final class WriteConcernError {
private $code;
private $message;
private $info;
private function __construct()
{
throw new Exception\RunTimeException("Accessing private constructor");
}
public function getCode() : int
{
return $this->code;
}
public function getMessage() : string
{
return $this->message;
}
public function getInfo() : ?array
{
return $this->info;
}
public function __debugInfo() : array
{
return [
'message' => $this->message,
'code' => $this->code,
'info' => $this->info,
];
}
}
final class WriteError {
private $message;
private $code;
private $index;
private $info;
private function __construct()
{
throw new Exception\RunTimeException("Accessing private constructor");
}
public function getMessage()
{
return $this->message;
}
public function getCode()
{
return $this->code;
}
public function getIndex()
{
return $this->index;
}
public function getInfo()
{
return $this->info;
}
public function __debugInfo()
{
return [
'message' => $this->message,
'code' => $this->code,
'index' => $this->index,
'info' => $this->info
];
}
}
<<__NativeData("MongoDBDriverWriteResult")>>
final class WriteResult {
private $nUpserted = 0;
private $nMatched = 0;
private $nRemoved = 0;
private $nInserted = 0;
private $nModified = 0;
private $upsertedIds = null;
private $writeErrors = [];
private $writeConcernError = NULL;
private $info = null;
private function __construct()
{
throw new Exception\RunTimeException("Accessing private constructor");
}
public function __wakeup()
{
throw new Exception\RunTimeException("MongoDB\\Driver objects cannot be serialized");
}
public function getInsertedCount() { return $this->nInserted; }
public function getMatchedCount() { return $this->nMatched; }
public function getModifiedCount() { return $this->nModified; }
public function getDeletedCount() { return $this->nRemoved; }
public function getUpsertedCount() { return $this->nUpserted; }
<<__Native>>
public function getServer() : Server;
public function getUpsertedIds(): array
{
if ($this->upsertedIds && gettype($this->upsertedIds) == 'array') {
$upsertedIds = [];
foreach( (array) $this->upsertedIds as $idDoc )
{
$idDoc = (array) $idDoc;
$upsertedIds[$idDoc['index']] = $idDoc['_id'];
}
return $upsertedIds;
}
return [];
}
public function getWriteConcernError()
{
if ($this->writeConcernError && gettype($this->writeConcernError) == 'object') {
return $this->writeConcernError;
}
return null;
}
public function getWriteErrors(): array
{
if ($this->writeErrors && gettype($this->writeErrors) == 'array') {
return $this->writeErrors;
}
return [];
}
<<__Native>>
public function isAcknowledged() : bool;
public function __debugInfo() : array
{
$ret = [];
$ret['nInserted'] = $this->nInserted;
$ret['nMatched'] = $this->nMatched;
$ret['nModified'] = $this->nModified;
$ret['nRemoved'] = $this->nRemoved;
$ret['nUpserted'] = $this->nUpserted;
$ret['upsertedIds'] = (array) $this->upsertedIds;
$ret['writeErrors'] = $this->writeErrors;
if (is_object($this->writeConcernError) && $this->writeConcernError instanceof \MongoDB\Driver\WriteConcernError) {
$ret['writeConcernError'] = $this->writeConcernError;
} else {
$ret['writeConcernError'] = NULL;
}
if (is_object($this->writeConcern) && $this->writeConcern instanceof \MongoDB\Driver\WriteConcern) {
$ret['writeConcern'] = $this->writeConcern;
} else {
$ret['writeConcern'] = NULL;
}
return $ret;
}
}
<<__NativeData("MongoDBDriverManager")>>
final class Manager {
<<__Native>>
public function __construct(string $dsn = "", array $options = array(), array $driverOptions = array());
<<__Native>>
public function __debugInfo() : array;
<<__Native>>
public function executeCommand(string $db, Command $command, ReadPreference $readPreference = null): Cursor;
<<__Native>>
public function executeQuery(string $namespace, Query $query, ReadPreference $readPreference = null): Cursor;
<<__Native>>
public function executeBulkWrite(string $namespace, BulkWrite $bulk, WriteConcern $writeConcern = null): WriteResult;
<<__Native>>
public function getServers(): array;
<<__Native>>
public function getReadConcern() : MongoDB\Driver\ReadConcern;
<<__Native>>
public function getReadPreference() : MongoDB\Driver\ReadPreference;
<<__Native>>
public function getWriteConcern() : MongoDB\Driver\WriteConcern;
<<__Native>>
public function __wakeup() : void;
<<__Native>>
public function selectServer(ReadPreference $readPreference): Server;
}
class Utils {
const ERROR_INVALID_ARGUMENT = 1;
const ERROR_RUNTIME = 2;
const ERROR_MONGOC_FAILED = 3;
const ERROR_WRITE_FAILED = 4;
const ERROR_CONNECTION_FAILED = 5;
static public function throwHippoException($domain, $message)
{
switch ($domain) {
case self::ERROR_INVALID_ARGUMENT:
throw new \MongoDB\Driver\Exception\InvalidArgumentException($message);
case self::ERROR_RUNTIME:
case self::ERROR_MONGOC_FAILED:
throw new Exception\RuntimeException($mssage);
case self::ERROR_WRITE_FAILED:
throw new Exception\WriteException($message);
case self::ERROR_CONNECTION_FAILED:
throw new Exception\ConnectionException($message);
}
}
static public function mustBeArrayOrObject(string $name, mixed $value, string $context = '')
{
$valueType = gettype($value);
if (!in_array($valueType, [ 'array', 'object' ])) {
Utils::throwHippoException(
Utils::ERROR_INVALID_ARGUMENT,
($context != '' ? "{$context}() expects" : 'Expected') . " {$name} to be array or object, {$valueType} given"
);
}
}
}
/* {{{ Cursor Classes */
<<__NativeData("MongoDBDriverCursorId")>>
final class CursorId {
private function __construct(string $id)
{
throw new Exception\RunTimeException("Accessing private constructor");
}
<<__Native>>
public function __debugInfo() : array;
<<__Native>>
public function __toString() : string;
}
<<__NativeData("MongoDBDriverCursor")>>
final class Cursor implements Traversable, Iterator {
private function __construct(Server $server, CursorId $cursorId, array $firstBatch)
{
throw new Exception\RunTimeException("Accessing private constructor");
}
<<__Native>>
public function __debugInfo() : array;
<<__Native>>
public function getId() : CursorId;
<<__Native>>
public function getServer() : Server;
<<__Native>>
public function isDead() : bool;
/**
* Get the current element
*
* @return ReturnType -
*/
<<__Native>>
public function current(): mixed;
/**
* Get the current key
*
* @return ReturnType -
*/
<<__Native>>
public function key(): int;
/**
* Move forward to the next element
*
* @return ReturnType -
*/
<<__Native>>
public function next(): mixed;
/**
* Rewind the iterator to the first element
*
* @return ReturnType -
*/
<<__Native>>
public function rewind(): void;
/**
* Check if current position is valid
*
* @return ReturnType -
*/
<<__Native>>
public function valid(): bool;
<<__Native>>
public function toArray(): array;
<<__Native>>
public function setTypeMap(array $typemap): void;
}
/* }}} */
/* {{{ Value Classes */
final class Command {
private array $command;
public function __construct(mixed $command)
{
$this->command = (object) $command;
}
public function __debugInfo()
{
return [ 'command' => $this->command ];
}
}
final class Query {
private mixed $filter = NULL;
private array $opts = [];
private string $readConcernLevel = NULL;
/* Helpers for setting / validating scalar options */
private function _queryOptBool( string $optName, array $options, string $key )
{
if ( array_key_exists( $key, $options ) )
{
$this->opts[$optName] = (bool) $options[$key];
return true;
}
return false;
}
private function _queryOptDocument( string $optName, array $options, string $key )
{
if ( array_key_exists( $key, $options ) )
{
if ( !is_array( $options[$key] ) && !is_object( $options[$key] ) )
{
throw new \MongoDB\Driver\Exception\InvalidArgumentException(
sprintf(
'Expected "%s" %s to be array or object, %s given',
$key, $key[0] == '$' ? 'modifier' : 'option', gettype( $options[$key] )
)
);
}
$this->opts[$optName] = (object) $options[$key];
return true;
}
return false;
}
private function _queryOptInt64( string $optName, array $options, string $key )
{
if ( array_key_exists( $key, $options ) )
{
$this->opts[$optName] = (int) $options[$key];
return true;
}
return false;
}
private function _queryOptString( string $optName, array $options, string $key )
{
if ( array_key_exists( $key, $options ) )
{
if ( !is_string( $options[$key] ) )
{
throw new \MongoDB\Driver\Exception\InvalidArgumentException(
sprintf(
'Expected "%s" %s to be string, %s given',
$key, $key[0] == '$' ? 'modifier' : 'option', gettype( $options[$key] )
)
);
}
$this->opts[$optName] = $options[$key];
return true;
}
return false;
}
/* Helpers for setting / validating complex options */
private function _queryInitHint( array $options, array $modifiers )
{
if ( array_key_exists( 'hint', $options ) )
{
if ( is_string( $options['hint'] ) )
{
$this->_queryOptString( 'hint', $options, 'hint' );
}
else if ( is_object( $options['hint'] ) || is_array( $options['hint'] ) )
{
$this->_queryOptDocument( 'hint', $options, 'hint' );
}
else
{
throw new \MongoDB\Driver\Exception\InvalidArgumentException(
sprintf(
'Expected "hint" option to be string, array, or object, %s given',
gettype( $options['hint'] )
)
);
}
}
else if ( array_key_exists( '$hint', $modifiers ) )
{
if ( is_string( $modifiers['$hint'] ) )
{
$this->_queryOptString( 'hint', $modifiers, '$hint' );
}
else if ( is_object( $modifiers['$hint'] ) || is_array( $modifiers['$hint'] ) )
{
$this->_queryOptDocument( 'hint', $modifiers, '$hint' );
}
else
{
throw new \MongoDB\Driver\Exception\InvalidArgumentException(
sprintf(
'Expected "$hint" modifier to be string, array, or object, %s given',
gettype( $modifiers['$hint'] )
)
);
}
}
}
private function _queryInitLimitAndSingleBatch( array $options )
{
if ( array_key_exists( 'limit', $options ) && $options['limit'] < 0 )
{
$this->opts['limit'] = 0 - (int) $options['limit'];
if ( array_key_exists( 'singleBatch', $options ) && !$options['singleBatch'] )
{
throw new \MongoDB\Driver\Exception\InvalidArgumentException( 'Negative "limit" option conflicts with false "singleBatch" option' );
}
else
{
$this->opts['singleBatch'] = true;
}
}
else
{
$this->_queryOptInt64( 'limit', $options, 'limit' );
$this->_queryOptBool( 'singleBatch', $options, 'singleBatch' );
}
}
private function _queryInitReadConcern( array $options )
{
if ( array_key_exists( 'readConcern', $options ) )
{
if ( !is_object( $options['readConcern'] ) || ! $options['readConcern'] instanceof \MongoDB\Driver\ReadConcern )
{
throw new \MongoDB\Driver\Exception\InvalidArgumentException(
sprintf(
'Expected "readConcern" option to be %s, %s given',
'MongoDB\Driver\ReadConcern',
gettype( $options['readConcern'] )
)
);
}
$this->readConcernLevel = $options['readConcern']->getLevel();
}
}
public function __construct(mixed $filter, array $options = array())
{
$modifiers = [];
Utils::mustBeArrayOrObject('parameter 1', $filter, "MongoDB\Driver\Query::__construct");
$this->filter = $filter;
if ( count( $options ) == 0 )
{
return;
}
if ( array_key_exists( 'modifiers', $options ) )
{
$modifiers = $options['modifiers'];
if ( !is_array( $modifiers ) )
{
throw new \MongoDB\Driver\Exception\InvalidArgumentException(
sprintf(
'Expected "modifiers" option to be array, %s given',
gettype( $options['modifiers'] )
)
);
}
}
$this->_queryOptBool( 'allowPartialResults', $options, 'allowPartialResults' )
|| $this->_queryOptBool( 'allowPartialResults', $options, 'partial' );
$this->_queryOptBool( 'awaitData', $options, 'awaitData' );
$this->_queryOptInt64( 'batchSize', $options, 'batchSize' );
$this->_queryOptDocument( 'collation', $options, 'collation' );
$this->_queryOptString( 'comment', $options, 'comment' )
|| $this->_queryOptString( 'comment', $modifiers, '$comment' );
$this->_queryOptBool( 'exhaust', $options, 'exhaust' );
$this->_queryOptDocument( 'max', $options, 'max' )
|| $this->_queryOptDocument( 'max', $modifiers, '$max' );
$this->_queryOptInt64( 'maxScan', $options, 'maxScan' )
|| $this->_queryOptInt64( 'maxScan', $modifiers, '$maxScan' );
$this->_queryOptInt64( 'maxTimeMS', $options, 'maxTimeMS' )
|| $this->_queryOptInt64( 'maxTimeMS', $modifiers, '$maxTimeMS' );
$this->_queryOptDocument( 'min', $options, 'min' )
|| $this->_queryOptDocument( 'min', $modifiers, '$min' );
$this->_queryOptBool( 'noCursorTimeout', $options, 'noCursorTimeout' );
$this->_queryOptBool( 'oplogReplay', $options, 'oplogReplay' );
$this->_queryOptDocument( 'projection', $options, 'projection' );
$this->_queryOptBool( 'returnKey', $options, 'returnKey' )
|| $this->_queryOptBool( 'returnKey', $modifiers, '$returnKey' );
$this->_queryOptBool( 'showRecordId', $options, 'showRecordId' )
|| $this->_queryOptBool( 'showRecordId', $modifiers, '$showDiskLoc' );
$this->_queryOptInt64( 'skip', $options, 'skip' );
$this->_queryOptDocument( 'sort', $options, 'sort' )
|| $this->_queryOptDocument( 'sort', $modifiers, '$orderby' );
$this->_queryOptBool( 'snapshot', $options, 'snapshot' )
|| $this->_queryOptBool( 'snapshot', $modifiers, '$snapshot' );
$this->_queryOptBool( 'tailable', $options, 'tailable' );
$this->_queryOptBool( 'explain', $modifiers, '$explain' );
$this->_queryInitHint( $options, $modifiers );
$this->_queryInitLimitAndSingleBatch( $options );
$this->_queryInitReadConcern( $options );
}
public function __debugInfo() : Array
{
return [
'filter' => (object) $this->filter,
'options' => (object) $this->opts,
'readConcern' => $this->readConcernLevel ? [ 'level' => $this->readConcernLevel ] : NULL,
];
}
}
<<__NativeData("MongoDBDriverBulkWrite")>>
final class BulkWrite implements \Countable {
<<__Native>>
public function __construct(?array $bulkWriteOptions = array());
private function _isLegacyIndex( mixed $document )
{
$docAsArray = (array) $document;
if (
array_key_exists( 'key', $docAsArray ) &&
( is_array( $docAsArray['key'] ) || is_object( $docAsArray ) ) &&
array_key_exists( 'name', $docAsArray ) &&
is_string( $docAsArray['name'] ) &&
array_key_exists( 'ns', $docAsArray ) &&
is_string( $docAsArray['ns'] )
) {
return true;
}
return false;
}
public function insert( mixed $document ) : mixed
{
$options = [];
if ( $this->_isLegacyIndex( $document ) )
{
$options['legacyIndex'] = true;
}
/* Can throw an exception */
return $this->_insert( $document, $options );
}
<<__Native>>
private function _insert( mixed $document, array $options ) : mixed;
private function _queryOptBool( array &$transformedOptions, array $options, string $key )
{
if ( array_key_exists( $key, $options ) )
{
$transformedOptions[$key] = (bool) $options[$key];
}
}
private function _queryOptDocument( array &$transformedOptions, array $options, string $key )
{
if ( array_key_exists( $key, $options ) )
{
if ( !is_array( $options[$key] ) && !is_object( $options[$key] ) )
{
throw new \MongoDB\Driver\Exception\InvalidArgumentException(
sprintf(
'Expected "%s" option to be array or object, %s given',
$key, gettype( $options[$key] )
)
);
}
$transformedOptions[$key] = (object) $options[$key];
}
}
private function _transformUpdateOptions( array $options = [] ) : array
{
$transformedOptions = [];
$this->_queryOptBool( $transformedOptions, $options, 'multi' );
$this->_queryOptBool( $transformedOptions, $options, 'upsert' );
$this->_queryOptDocument( $transformedOptions, $options, 'collation' );
return $transformedOptions;
}
private function _updateHasOperators( array $update ) : bool
{
foreach ( $update as $key => $value )
{
if ( $key[0] == '$' )
{
return true;
}
}
return false;
}
public function update(mixed $query, mixed $update, array $options = []) : void
{
/* Can throw an exception */
$updateOptions = $this->_transformUpdateOptions( $options );
$hasOperators = $this->_updateHasOperators( (array) $update );
return $this->_update( $hasOperators, $query, $update, $updateOptions );
}
<<__Native>>
private function _update(bool $hasOperators, mixed $query, mixed $update, array $options = []) : void;
private function _transformDeleteOptions( array $options = [] ) : array
{
$transformedOptions = [ 'limit' => 0 ];
if ( array_key_exists( 'limit', $options ) )
{
$transformedOptions['limit'] = (int) ($options['limit'] ? 1 : 0);
}
$this->_queryOptDocument( $transformedOptions, $options, 'collation' );
return $transformedOptions;
}
public function delete(mixed $query, array $options = []) : void
{
/* Can throw an exception */
$deleteOptions = $this->_transformDeleteOptions( $options );
return $this->_delete( $query, $deleteOptions );
}
<<__Native>>
public function _delete(mixed $query, array $options = []) : void;
<<__Native>>
public function count() : int;
<<__Native>>
public function __debugInfo() : array;
}
<<__NativeData("MongoDBDriverReadConcern")>>
final class ReadConcern implements \MongoDB\BSON\Serializable {
<<__Native>>
public function __construct(?string $level = NULL) : void;
<<__Native>>
public function getLevel() : mixed;
<<__Native>>
public function __debugInfo() : array;
<<__Native>>
function bsonSerialize() : mixed;
}
<<__NativeData("MongoDBDriverReadPreference")>>
final class ReadPreference implements \MongoDB\BSON\Serializable {
<<__Native>>
private function _setReadPreference(int $readPreference): void;
<<__Native>>
private function _setReadPreferenceTags(array $tagSets): void;
<<__Native>>
private function _setMaxStalenessSeconds(int $maxStalenessSeconds): void;
public function __construct(mixed $readPreference, array $tagSets = null, array $options = [] )
{
if ($tagSets !== NULL && gettype($tagSets) != 'array') {
return;
}
switch ($readPreference) {
case ReadPreference::RP_PRIMARY:
case ReadPreference::RP_PRIMARY_PREFERRED:
case ReadPreference::RP_SECONDARY:
case ReadPreference::RP_SECONDARY_PREFERRED:
case ReadPreference::RP_NEAREST:
// calling into Native
$this->_setReadPreference($readPreference);
break;
default:
if ( strcasecmp( $readPreference, 'primary' ) == 0 )
{
$this->_setReadPreference(ReadPreference::RP_PRIMARY);
}
else if ( strcasecmp( $readPreference, 'primaryPreferred' ) == 0 )
{
$this->_setReadPreference(ReadPreference::RP_PRIMARY_PREFERRED);
}
else if ( strcasecmp( $readPreference, 'secondary' ) == 0 )
{
$this->_setReadPreference(ReadPreference::RP_SECONDARY);
}
else if ( strcasecmp( $readPreference, 'secondaryPreferred' ) == 0 )
{
$this->_setReadPreference(ReadPreference::RP_SECONDARY_PREFERRED);
}
else if ( strcasecmp( $readPreference, 'nearest' ) == 0 )
{
$this->_setReadPreference(ReadPreference::RP_NEAREST);
}
else
{
Utils::throwHippoException(Utils::ERROR_INVALID_ARGUMENT, "Invalid mode: " . $readPreference);
}
break;
}
if ( $tagSets )
{
$newTagSets = [];
foreach ( $tagSets as $tagSet )
{
if ( is_array( $tagSet ) )
{
$newTagSets[] = (object) $tagSet;
}
else
{
$newTagSets[] = $tagSet;
}
}
// calling into Native, might throw exception
$this->_setReadPreferenceTags( $newTagSets );
}
if ( array_key_exists( 'maxStalenessSeconds', $options ) )
{
$maxStalenessSeconds = (int) $options['maxStalenessSeconds'];
if ( $maxStalenessSeconds != self::NO_MAX_STALENESS )
{
if ( $maxStalenessSeconds < self::SMALLEST_MAX_STALENESS_SECONDS )
{
Utils::throwHippoException( Utils::ERROR_INVALID_ARGUMENT, "Expected maxStalenessSeconds to be >= " . self::SMALLEST_MAX_STALENESS_SECONDS . ", {$maxStalenessSeconds} given" );
}
if ( $maxStalenessSeconds > 2147483647 )
{
Utils::throwHippoException( Utils::ERROR_INVALID_ARGUMENT, "Expected maxStalenessSeconds to be <= 2147483647, {$maxStalenessSeconds} given" );
}
}
$this->_setMaxStalenessSeconds( $maxStalenessSeconds );
}
}
<<__Native>>
public function getMode() : int;
<<__Native>>
public function getTagSets() : array;
<<__Native>>
public function getMaxStalenessSeconds() : int;
<<__Native>>
public function __debugInfo() : array;
<<__Native>>
function bsonSerialize() : mixed;
}
<<__NativeData("MongoDBDriverServer")>>
final class Server {
private $__serverId = NULL;