forked from danielmewes/php-rql
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphp-patches.patch
669 lines (669 loc) · 20.5 KB
/
php-patches.patch
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
25c25
< var r = require('rethinkdb');
---
> require_once('rdb/rdb.php');
31,34c31
< r\connect(options)
< r\connect(host)
< r\connect(options) → promise
< r\connect(host) → promise
---
> r\connect(host, port=28015[, db[, authKey[, timeout]]]) → connection
42,52c39
< r\connect(array(
< 'db' => 'marvel'
< ), function($err, $conn) {
< // ...
< });
< ```
<
< If no callback is provided, a promise will be returned.
<
< ```php
< var $promise = r\connect(array('db' => 'marvel'));
---
> $conn = r\connect('localhost', 28015, "myDb")
60,61c47
< conn->close([array('noreplyWait' => true)])
< conn->close([array('noreplyWait' => true)]) → promise
---
> conn->close(noreplyWait=true)
66,67d51
< If no callback is provided, a promise will be returned.
<
71c55
< $conn->close(function($err) { if ($err) throw $err; })
---
> $conn->close()
79,80c63
< conn->reconnect([array('noreplyWait' => true)])
< conn->reconnect([array('noreplyWait' => true)]) → promise
---
> conn->reconnect(noreplyWait=true)
85,86d67
< If no callback is provided, a promise will be returned.
<
90c71
< $conn->reconnect(array('noreplyWait' => false), function($error, $connection) { ... })
---
> $conn->reconnect(false)
95c76
< ## [use](use/) ##
---
> ## [useDb](useDb/) ##
98c79
< conn->use(dbName)
---
> conn->useDb(dbName)
107,108c88,89
< $conn->use('marvel')
< r\table('heroes')->run($conn, ...) // refers to r.db('marvel').table('heroes')
---
> $conn->useDb('marvel')
> r\table('heroes')->run($conn) // refers to r\db('marvel').table('heroes')
114,115c95,96
< query->run(conn[, options])
< query->run(conn[, options]) → promise
---
> query->run(conn[, options]) → cursor
> query->run(conn[, options]) → datum
120,121c101
< The callback will get either an error, a single JSON result, or a
< cursor, depending on the query.
---
> Returns either a single result or a cursor, depending on the query.
127c107,108
< r\table('marvel')->run($conn, function($err, $cursor) { $cursor->each($console->$log); })
---
> $cursor = r\table('marvel')->run($conn)
> foreach ($cursor as $x) { print_r($x); }
136d116
< conn->noreplyWait() → promise
146c126
< $conn->noreplyWait(function($err) { ... })
---
> $conn->noreplyWait()
163c143
< // Result passed to callback
---
> // Result
167,260d146
< If no callback is provided, a promise will be returned.
<
<
< ## [EventEmitter (connection)](event_emitter/) ##
<
< {% apibody %}
< connection->addListener(event, listener)
< connection->on(event, listener)
< connection->once(event, listener)
< connection->removeListener(event, listener)
< connection->removeAllListeners([event])
< connection->setMaxListeners(n)
< connection->listeners(event)
< connection->emit(event, [arg1], [arg2], [...])
< {% endapibody %}
<
< Connections implement the same interface as Node's [EventEmitter](http://nodejs.org/api/events.html#events_class_events_eventemitter).
< This allows you to listen for changes in connection state.
<
< [Read more about this command →](event_emitter/)
<
< {% endapisection %}
<
< {% apisection Cursors %}
<
< ## [next](next/) ##
<
< {% apibody %}
< cursor->next()
< array->next()
< cursor->next() → promise
< array->next() → promise
< {% endapibody %}
<
< Get the next element in the cursor.
<
< __Example:__ Retrieve the next element.
<
< ```php
< $cursor->next(function($err, $row) {
< if ($err) throw $err;
< processRow($row);
< });
< ```
<
< [Read more about this command →](next/)
<
<
< ## [each](each/) ##
<
< {% apibody %}
< cursor->each([, onFinishedCallback])
< array->each([, onFinishedCallback])
< feed->each()
< {% endapibody %}
<
< Lazily iterate over the result set one element at a time.
<
< __Example:__ Let's process all the elements!
<
< ```php
< $cursor->each(function($err, $row) {
< if ($err) throw $err;
< processRow($row);
< });
< ```
<
< [Read more about this command →](each/)
<
<
< ## [eachAsync](each_async/) ##
<
< {% apibody %}
< cursor->eachAsync(function) → promise
< array->eachAsync(function) → promise
< feed->eachAsync(function) → promise
< {% endapibody %}
<
< Lazily iterate over a result set one element at a time in an identical fashion to [each](/api/javascript/each/), returning a Promise that will be resolved once all rows are returned.
<
< __Example:__ Process all the elements in a stream.
<
< ```php
< $cursor->eachAsync(function($row) {
< // if a Promise is returned, it will be processed before the cursor
< // continues iteration.
< return asyncRowHandler($row);
< })->then(function () {
< $console->log("done processing");
< });
< ```
<
< [Read more about this command →](each_async/)
<
264,267c150
< cursor->toArray()
< array->toArray()
< cursor->toArray() → promise
< array->toArray() → promise
---
> cursor->toArray() → array
270c153
< Retrieve all results and pass them as an array to the given callback.
---
> Retrieve all results and return them as an array.
276,279c159
< $cursor->toArray(function($err, $results) {
< if ($err) throw $err;
< processResults($results);
< });
---
> $fullResult = $cursor->toArray()
432c312,315
< table->indexCreate(indexName[, indexFunction][, array('multi' => false, 'geo' => false)]) → object
---
> table->indexCreate(indexName[, indexFunction]) → object
> table->indexCreateMulti(indexName[, indexFunction]) → object
> table->indexCreateGeo(indexName[, indexFunction]) → object
> table->indexCreateMultiGeo(indexName[, indexFunction]) → object
436a320,321
> The index can be either a regular index, a multi index, a geo index, or a multi geo index.
>
491c376,378
< table->indexStatus([, index...]) → array
---
> table->indexStatus() → array
> table->indexStatus(index) → array
> table->indexStatus(array(index, ...)) → array
512c399,401
< table->indexWait([, index...]) → array
---
> table->indexWait() → array
> table->indexWait(index) → array
> table->indexWait(array(index, ...)) → array
542,544c431,434
< r\table('games')->changes()->run($conn, function($err, $cursor) {
< $cursor->each($console->$log)
< })
---
> $feed = r\table('games')->changes()->run($conn);
> foreach ($feed as $change) {
> print_r($change);
> }
557c447
< table->insert(object | [object1, object2, ...][, array('durability' => "hard", 'return_changes' => false, 'conflict' => "error")]) → object
---
> table->insert(object | array(object, ...)[, array('durability' => "hard", 'return_changes' => false, 'conflict' => "error")]) → object
736c626,627
< table->getAll(key[, key2...], [, array('index' =>'id')]) → selection
---
> table->getAll(key[, array('index' =>'id')]) → selection
> table->getMultiple(array(key, ...)[, array('index' =>'id')]) → selection
739a631
> Use `getMultiple` for retrieving documents under multiple keys at once.
819c711
< return marvelRow('strength')->lt(dcRow('strength'))
---
> return $marvelRow('strength')->lt($dcRow('strength'));
838c730
< return marvelRow('strength')->lt(dcRow('strength'))
---
> return $marvelRow('strength')->lt($dcRow('strength'));
873,875c765,767
< ```
< r.table('marvel').eqJoin('main_dc_collaborator', r.table('dc'))
< .zip().run(conn, callback)
---
> ```php
> r\table('marvel')->eqJoin('main_dc_collaborator', r\table('dc'))
> ->zip()->run($conn)
888,891c780,785
< sequence1->map([sequence2, ...], function) → stream
< array1->map([array2, ...], function) → array
< r\map(sequence1[, sequence2, ...], function) → stream
< r\map(array1[, array2, ...], function) → array
---
> sequence->map(mappingFunction) → stream
> array->map(mappingFunction) → array
> sequence1->mapMultiple(array(sequence2, ...), mappingFunction) → stream
> array1->mapMultiple(array(array2, ...), mappingFunction) → array
> r\mapMultiple(array(sequence1, sequence2, ...), mappingFunction) → stream
> r\mapMultiple(array(array1, array2, ...), mappingFunction) → array
894c788
< Transform each element of one or more sequences by applying a mapping function to them. If `map` is run with two or more sequences, it will iterate for as many items as there are in the shortest sequence.
---
> Transform each element of one or more sequences by applying a mapping function to them. For mapping over multiple sequences, `mapMultiple` must be used. `mapMultiple` will iterate for as many items as there are in the shortest sequence.
899c793
< r\expr(array(1, 2, 3, 4, 5))->map(function ($val) {
---
> $result = r\expr(array(1, 2, 3, 4, 5))->map(function ($val) {
902c796
< // Result passed to callback
---
> // Result
911,912c805,806
< sequence->withFields([selector1, selector2...]) → stream
< array->withFields([selector1, selector2...]) → array
---
> sequence->withFields(selector | array(selector1, selector2...)) → stream
> array->withFields(selector | array(selector1, selector2...)) → array
920c814
< r\table('users')->withFields('id', 'username', 'posts')->run($conn)
---
> r\table('users')->withFields(array('id', 'username', 'posts'))->run($conn)
938c832
< return hero('defeatedMonsters')
---
> return $hero('defeatedMonsters');
947,949c841,843
< table->orderBy([key | function...], {'index' => index_name}) → table_slice
< selection->orderBy(key | function[, ...]) → selection<array>
< sequence->orderBy(key | function[, ...]) → array
---
> table->orderBy(keyOrFunction2 | array(keyOrFunction2, ...), array('index' => index_name)) → table_slice
> selection->orderBy(keyOrFunction | array(keyOrFunction1, ,,,)) → selection<array>
> sequence->orderBy(keyOrFunction | array(keyOrFunction1, ...)) → array
953c847
< the ordering, wrap the attribute with either `r.asc` or `r.desc`
---
> the ordering, wrap the attribute with either `r\asc` or `r\desc`
957c851
< memory, and is limited to 100,000 documents (or the setting of the `arrayLimit` option for [run](/api/javascript/run)). Sorting with an index can
---
> memory, and is limited to 100,000 documents (or the setting of the `array_limit` option for run). Sorting with an index can
1081,1082c975,976
< stream->union(sequence[, sequence, ...]) → stream
< array->union(sequence[, sequence, ...]) → array
---
> stream->union(sequence) → stream
> array->union(sequence) → array
1085c979
< Merge two or more sequences. (Note that ordering is not guaranteed by `union`.)
---
> Merge two sequences. (Note that ordering is not guaranteed by `union`.)
1121c1015
< sequence->group(field | function..., [{'index' => <indexname>, 'multi' => false}]) → grouped_stream
---
> sequence->group(fieldOrFunction[, array('index' => "indexName", 'multi' => false)]) → grouped_stream
1177c1071
< return 1
---
> return 1;
1179c1073
< return $left->add($right)
---
> return $left->add($right);
1303c1197
< return hero('villainList')
---
> return $hero('villainList');
1313c1207
< sequence->contains([value | predicate_function, ...]) → bool
---
> sequence->contains(value | function) → bool
1316,1318c1210,1212
< Returns whether or not a sequence contains all the specified values, or if functions are
< provided instead, returns whether or not a sequence contains values matching all the
< specified functions.
---
> Returns whether or not a sequence contains the specified value, or if functions are
> provided instead, returns whether or not a sequence contains values matching the
> specified function.
1338c1232
< r\row → value
---
> r\row([field]) → value
1355,1358c1249,1252
< sequence->pluck([selector1, selector2...]) → stream
< array->pluck([selector1, selector2...]) → array
< object->pluck([selector1, selector2...]) → object
< singleSelection->pluck([selector1, selector2...]) → object
---
> sequence->pluck(selector | array(selector1, selector2...)) → stream
> array->pluck(selector | array(selector1, selector2...)) → array
> object->pluck(selector | array(selector1, selector2...)) → object
> singleSelection->pluck(selector | array(selector1, selector2...)) → object
1368c1262
< r\table('marvel')->get('IronMan')->pluck('reactorState', 'reactorPower')->run($conn)
---
> r\table('marvel')->get('IronMan')->pluck(array('reactorState', 'reactorPower'))->run($conn)
1376,1379c1270,1273
< sequence->without([selector1, selector2...]) → stream
< array->without([selector1, selector2...]) → array
< singleSelection->without([selector1, selector2...]) → object
< object->without([selector1, selector2...]) → object
---
> sequence->without(selector | array(selector1, selector2...)) → stream
> array->without(selector | array(selector1, selector2...)) → array
> singleSelection->without(selector | array(selector1, selector2...)) → object
> object->without(selector | array(selector1, selector2...)) → object
1537c1431,1432
< r\table('marvel')->get('IronMan')->getField('firstAppearance')->run($conn)
---
> $ironMan = r\table('marvel')->get('IronMan');
> $ironMan('firstAppearance')->run($conn)
1563,1565c1458,1460
< sequence->hasFields([selector1, selector2...]) → stream
< array->hasFields([selector1, selector2...]) → array
< object->hasFields([selector1, selector2...]) → boolean
---
> sequence->hasFields(selector | array(selector1, selector2...)) → stream
> array->hasFields(selector | array(selector1, selector2...)) → array
> object->hasFields(selector | array(selector1, selector2...)) → boolean
1621c1516
< // result passed to callback
---
> // result
1656c1551
< // Result passed to callback
---
> // Result
1677c1572
< // Result passed to callback
---
> // Result
1698c1593
< r\object([key, value,]...) → object
---
> r\object(array(key, value,...)) → object
1702c1597
< be strings. `r.object(A, B, C, D)` is equivalent to
---
> be strings. `r.object(array(A, B, C, D))` is equivalent to
1708c1603
< r\object('id', 5, 'data', array('foo', 'bar'))->run($conn)
---
> r\object(r.array('id', 5, 'data', array('foo', 'bar')))->run($conn)
1717c1612
< ## [match](match/) ##
---
> ## [rMatch](rMatch/) ##
1720c1615
< string->match(regexp) → null/object
---
> string->rMatch(regexp) → null/object
1736c1631
< return doc('name')->match("^A")
---
> return $doc('name')->rMatch("^A");
1742c1637
< [Read more about this command →](match/)
---
> [Read more about this command →](rMatch/)
1888c1783
< ## [and](and/) ##
---
> ## [rAnd](rAnd/) ##
1891,1892c1786,1787
< bool->and([bool, bool, ...]) → bool
< r\and([bool, bool, ...]) → bool
---
> bool->rAnd(bool) → bool
> r\rAnd(bool, bool) → bool
1895c1790
< Compute the logical "and" of one or more values.
---
> Compute the logical "and" of two values.
1901,1902c1796,1797
< r\expr($a)->and($b)->run($conn);
< // result passed to callback
---
> r\expr($a)->rAnd($b)->run($conn);
> // result
1906c1801
< ## [or](or/) ##
---
> ## [rOr](rOr/) ##
1909,1910c1804,1805
< bool->or([bool, bool, ...]) → bool
< r\or([bool, bool, ...]) → bool
---
> bool->rOr(bool) → bool
> r\rOr(bool, bool) → bool
1913c1808
< Compute the logical "or" of one or more values.
---
> Compute the logical "or" of two values.
1919,1920c1814,1815
< r\expr($a)->or($b)->run($conn);
< // result passed to callback
---
> r\expr($a)->rOr($b)->run($conn);
> // result
1949,1950c1844,1845
< ```rb
< r.table('users').get(1)('role').ne('administrator').run(conn, callback);
---
> ```php
> r\table('users')->get(1)->getField('role')->ne('administrator')->run($conn);
2424c2319
< // Result passed to callback
---
> // Result
2450,2469d2344
< ## [args](args/) ##
<
< {% apibody %}
< r\args(array) → special
< {% endapibody %}
<
< `r.args` is a special term that's used to splice an array of arguments
< into another term. This is useful when you want to call a variadic
< term such as `getAll` with a set of arguments produced at runtime.
<
< This is analogous to using **apply** in JavaScript.
<
< __Example:__ Get Alice and Bob from the table `people`.
<
< ```php
< r\table('people')->getAll('Alice', 'Bob')->run($conn)
< // or
< r\table('people')->getAll(r\args(array('Alice', 'Bob')))->run($conn)
< ```
<
2481,2491c2356,2359
< var $fs = require('fs');
< $fs->readFile('./defaultAvatar.png', function ($err, $avatarImage) {
< if ($err) array(
< // Handle error
< )
< else array(
< r\table('users')->get(100)->update(array(
< 'avatar' => $avatarImage
< ))
< )
< });
---
> $avatarImage = file_get_contents('./defaultAvatar.png');
> r\table('users')->get(100)->update(array(
> 'avatar' => r\binary($avatarImage)
> ))->run($conn)
2496c2364
< ## [do](do/) ##
---
> ## [rDo](rDo/) ##
2499,2502c2367,2370
< any->do(function) → any
< r\do([args]*, function) → any
< any->do(expr) → any
< r\do([args]*, expr) → any
---
> any->rDo(function) → any
> r\rDo(arg | array(arg,...), function) → any
> any->rDo(expr) → any
> r\rDo(arg | array(arg,...), expr) → any
2510c2378
< r\table('players')->get('f19b5f16-ef14-468f-bd48-e194761df255')->do(
---
> r\table('players')->get('f19b5f16-ef14-468f-bd48-e194761df255')->rDo(
2512c2380
< return player('gross_score')->sub(player('course_handicap'));
---
> return $player('gross_score')->sub($player('course_handicap'));
2534c2402
< // Result passed to callback
---
> // Result
2540c2408
< ## [forEach](for_each/) ##
---
> ## [rForeach](rForeach/) ##
2543c2411
< sequence->forEach(write_function) → object
---
> sequence->rForeach(write_function) → object
2551,2552c2419,2420
< r\table('marvel')->forEach(function($hero) {
< return r\table('villains')->get(hero('villainDefeated'))->delete()
---
> r\table('marvel')->rForeach(function($hero) {
> return r\table('villains')->get($hero('villainDefeated'))->delete()
2586c2454
< return r\branch(ironman('victories')->lt(ironman('battles')),
---
> return r\branch($ironman('victories')->lt($ironman('battles')),
2608,2609c2476,2477
< 'title' => post("title"),
< 'author' => post("author")->default("Anonymous")
---
> 'title' => $post("title"),
> 'author' => $post("author")->default("Anonymous")
2627c2495
< r\expr(array('a' =>'b'))->merge(array('b' =>array(1,2,3)))->run($conn)
---
> r\expr(array('a' => 'b'))->merge(array('b' => array(1,2,3)))->run($conn)
2716c2584
< ## [toJsonString, toJSON](to_json_string/) ##
---
> ## [toJsonString](to_json_string/) ##
2720d2587
< value->toJSON() → string
2723c2590
< Convert a ReQL value or object to a JSON string. You may use either `toJsonString` or `toJSON`.
---
> Convert a ReQL value or object to a JSON string.
2728,2729c2595,2596
< > r\table('hero')->get(1)->toJSON()
< // result returned to callback
---
> > r\table('hero')->get(1)->toJsonString()
> // result
2761c2628
< // result returned to callback
---
> // result
2774c2641
< r\circle([longitude, latitude], radius[, array('num_vertices' => 32, 'geo_system' => 'WGS84', 'unit' => 'm', 'fill' => true)]) → geometry
---
> r\circle(array(longitude, latitude), radius[, array('num_vertices' => 32, 'geo_system' => 'WGS84', 'unit' => 'm', 'fill' => true)]) → geometry
2807c2674
< // result returned to callback
---
> // result
2826c2693
< 'rectangle' => r\line(
---
> 'rectangle' => r\line(array(
2831c2698
< )
---
> ))
2879c2746
< // result passed to callback
---
> // result
2899c2766
< var $circle1 = r\circle(array(-117.220406,32.719464), 10, array('unit' => 'mi'));
---
> $circle1 = r\circle(array(-117.220406,32.719464), 10, array('unit' => 'mi'));
2916c2783
< var $secretBase = r\point(-122.422876,37.777128);
---
> $secretBase = r\point(-122.422876,37.777128);
2939c2806
< // result returned to callback
---
> // result
2962c2829
< // result returned to callback
---
> // result
2971,2972c2838,2839
< r\line([lon1, lat1], [lon2, lat1], ...) → line
< r\line(point1, point2, ...) → line
---
> r\line(array(array(lon1, lat1), array(lon2, lat2), ...)) → line
> r\line(array(point1, point2, ...)) → line
2985c2852
< 'route' => r\line(array(-122.423246,37.779388), array(-121.886420,37.329898))
---
> 'route' => r\line(array(array(-122.423246,37.779388), array(-121.886420,37.329898)))
3014,3015c2881,2882
< r\polygon([lon1, lat1], [lon2, lat2], [lon3, lat3], ...) → polygon
< r\polygon(point1, point2, point3, ...) → polygon
---
> r\polygon(array(array(lon1, lat1), array(lon2, lat2), ...)) → polygon
> r\polygon(array(point1, point2, ...)) → polygon
3028c2895
< 'rectangle' => r\polygon(
---
> 'rectangle' => r\polygon(array(
3033c2900
< )
---
> ))
3051c2918
< var $outerPolygon = r\polygon(
---
> var $outerPolygon = r\polygon(array(
3056,3057c2923,2924
< );
< var $innerPolygon = r\polygon(
---
> ));
> var $innerPolygon = r\polygon(array(
3062c2929
< );
---
> ));