-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathRowFilter.php
More file actions
1032 lines (945 loc) · 39 KB
/
RowFilter.php
File metadata and controls
1032 lines (945 loc) · 39 KB
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
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/bigtable/v2/data.proto
namespace Google\Cloud\Bigtable\V2;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBUtil;
use Google\Protobuf\RepeatedField;
/**
* Takes a row as input and produces an alternate view of the row based on
* specified rules. For example, a RowFilter might trim down a row to include
* just the cells from columns matching a given regular expression, or might
* return all the cells of a row but not their values. More complicated filters
* can be composed out of these components to express requests such as, "within
* every column of a particular family, give just the two most recent cells
* which are older than timestamp X."
* There are two broad categories of RowFilters (true filters and transformers),
* as well as two ways to compose simple filters into more complex ones
* (chains and interleaves). They work as follows:
* * True filters alter the input row by excluding some of its cells wholesale
* from the output row. An example of a true filter is the `value_regex_filter`,
* which excludes cells whose values don't match the specified pattern. All
* regex true filters use RE2 syntax (https://github.com/google/re2/wiki/Syntax)
* in raw byte mode (RE2::Latin1), and are evaluated as full matches. An
* important point to keep in mind is that `RE2(.)` is equivalent by default to
* `RE2([^\n])`, meaning that it does not match newlines. When attempting to
* match an arbitrary byte, you should therefore use the escape sequence `\C`,
* which may need to be further escaped as `\\C` in your client language.
* * Transformers alter the input row by changing the values of some of its
* cells in the output, without excluding them completely. Currently, the only
* supported transformer is the `strip_value_transformer`, which replaces every
* cell's value with the empty string.
* * Chains and interleaves are described in more detail in the
* RowFilter.Chain and RowFilter.Interleave documentation.
* The total serialized size of a RowFilter message must not
* exceed 20480 bytes, and RowFilters may not be nested within each other
* (in Chains or Interleaves) to a depth of more than 20.
*
* Generated from protobuf message <code>google.bigtable.v2.RowFilter</code>
*/
class RowFilter extends \Google\Protobuf\Internal\Message
{
protected $filter;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Google\Cloud\Bigtable\V2\RowFilter\Chain $chain
* Applies several RowFilters to the data in sequence, progressively
* narrowing the results.
* @type \Google\Cloud\Bigtable\V2\RowFilter\Interleave $interleave
* Applies several RowFilters to the data in parallel and combines the
* results.
* @type \Google\Cloud\Bigtable\V2\RowFilter\Condition $condition
* Applies one of two possible RowFilters to the data based on the output of
* a predicate RowFilter.
* @type bool $sink
* ADVANCED USE ONLY.
* Hook for introspection into the RowFilter. Outputs all cells directly to
* the output of the read rather than to any parent filter. Consider the
* following example:
* Chain(
* FamilyRegex("A"),
* Interleave(
* All(),
* Chain(Label("foo"), Sink())
* ),
* QualifierRegex("B")
* )
* A,A,1,w
* A,B,2,x
* B,B,4,z
* |
* FamilyRegex("A")
* |
* A,A,1,w
* A,B,2,x
* |
* +------------+-------------+
* | |
* All() Label(foo)
* | |
* A,A,1,w A,A,1,w,labels:[foo]
* A,B,2,x A,B,2,x,labels:[foo]
* | |
* | Sink() --------------+
* | | |
* +------------+ x------+ A,A,1,w,labels:[foo]
* | A,B,2,x,labels:[foo]
* A,A,1,w |
* A,B,2,x |
* | |
* QualifierRegex("B") |
* | |
* A,B,2,x |
* | |
* +--------------------------------+
* |
* A,A,1,w,labels:[foo]
* A,B,2,x,labels:[foo] // could be switched
* A,B,2,x // could be switched
* Despite being excluded by the qualifier filter, a copy of every cell
* that reaches the sink is present in the final result.
* As with an [Interleave][google.bigtable.v2.RowFilter.Interleave],
* duplicate cells are possible, and appear in an unspecified mutual order.
* In this case we have a duplicate with column "A:B" and timestamp 2,
* because one copy passed through the all filter while the other was
* passed through the label and sink. Note that one copy has label "foo",
* while the other does not.
* Cannot be used within the `predicate_filter`, `true_filter`, or
* `false_filter` of a [Condition][google.bigtable.v2.RowFilter.Condition].
* @type bool $pass_all_filter
* Matches all cells, regardless of input. Functionally equivalent to
* leaving `filter` unset, but included for completeness.
* @type bool $block_all_filter
* Does not match any cells, regardless of input. Useful for temporarily
* disabling just part of a filter.
* @type string $row_key_regex_filter
* Matches only cells from rows whose keys satisfy the given RE2 regex. In
* other words, passes through the entire row when the key matches, and
* otherwise produces an empty row.
* Note that, since row keys can contain arbitrary bytes, the `\C` escape
* sequence must be used if a true wildcard is desired. The `.` character
* will not match the new line character `\n`, which may be present in a
* binary key.
* @type float $row_sample_filter
* Matches all cells from a row with probability p, and matches no cells
* from the row with probability 1-p.
* @type string $family_name_regex_filter
* Matches only cells from columns whose families satisfy the given RE2
* regex. For technical reasons, the regex must not contain the `:`
* character, even if it is not being used as a literal.
* Note that, since column families cannot contain the new line character
* `\n`, it is sufficient to use `.` as a full wildcard when matching
* column family names.
* @type string $column_qualifier_regex_filter
* Matches only cells from columns whose qualifiers satisfy the given RE2
* regex.
* Note that, since column qualifiers can contain arbitrary bytes, the `\C`
* escape sequence must be used if a true wildcard is desired. The `.`
* character will not match the new line character `\n`, which may be
* present in a binary qualifier.
* @type \Google\Cloud\Bigtable\V2\ColumnRange $column_range_filter
* Matches only cells from columns within the given range.
* @type \Google\Cloud\Bigtable\V2\TimestampRange $timestamp_range_filter
* Matches only cells with timestamps within the given range.
* @type string $value_regex_filter
* Matches only cells with values that satisfy the given regular expression.
* Note that, since cell values can contain arbitrary bytes, the `\C` escape
* sequence must be used if a true wildcard is desired. The `.` character
* will not match the new line character `\n`, which may be present in a
* binary value.
* @type \Google\Cloud\Bigtable\V2\ValueRange $value_range_filter
* Matches only cells with values that fall within the given range.
* @type int $cells_per_row_offset_filter
* Skips the first N cells of each row, matching all subsequent cells.
* If duplicate cells are present, as is possible when using an Interleave,
* each copy of the cell is counted separately.
* @type int $cells_per_row_limit_filter
* Matches only the first N cells of each row.
* If duplicate cells are present, as is possible when using an Interleave,
* each copy of the cell is counted separately.
* @type int $cells_per_column_limit_filter
* Matches only the most recent N cells within each column. For example,
* if N=2, this filter would match column `foo:bar` at timestamps 10 and 9,
* skip all earlier cells in `foo:bar`, and then begin matching again in
* column `foo:bar2`.
* If duplicate cells are present, as is possible when using an Interleave,
* each copy of the cell is counted separately.
* @type bool $strip_value_transformer
* Replaces each cell's value with the empty string.
* @type string $apply_label_transformer
* Applies the given label to all cells in the output row. This allows
* the client to determine which results were produced from which part of
* the filter.
* Values must be at most 15 characters in length, and match the RE2
* pattern `[a-z0-9\\-]+`
* Due to a technical limitation, it is not currently possible to apply
* multiple labels to a cell. As a result, a Chain may have no more than
* one sub-filter which contains a `apply_label_transformer`. It is okay for
* an Interleave to contain multiple `apply_label_transformers`, as they
* will be applied to separate copies of the input. This may be relaxed in
* the future.
* @type \Google\Cloud\Bigtable\V2\ValueBitmask $value_bitmask_filter
* Matches only cells with values that satisfy the condition `(value & mask)
* == mask`.
* The mask length must exactly match the value length, otherwise the cell
* is not considered a match.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Bigtable\V2\Data::initOnce();
parent::__construct($data);
}
/**
* Applies several RowFilters to the data in sequence, progressively
* narrowing the results.
*
* Generated from protobuf field <code>.google.bigtable.v2.RowFilter.Chain chain = 1;</code>
* @return \Google\Cloud\Bigtable\V2\RowFilter\Chain|null
*/
public function getChain()
{
return $this->readOneof(1);
}
public function hasChain()
{
return $this->hasOneof(1);
}
/**
* Applies several RowFilters to the data in sequence, progressively
* narrowing the results.
*
* Generated from protobuf field <code>.google.bigtable.v2.RowFilter.Chain chain = 1;</code>
* @param \Google\Cloud\Bigtable\V2\RowFilter\Chain $var
* @return $this
*/
public function setChain($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Bigtable\V2\RowFilter\Chain::class);
$this->writeOneof(1, $var);
return $this;
}
/**
* Applies several RowFilters to the data in parallel and combines the
* results.
*
* Generated from protobuf field <code>.google.bigtable.v2.RowFilter.Interleave interleave = 2;</code>
* @return \Google\Cloud\Bigtable\V2\RowFilter\Interleave|null
*/
public function getInterleave()
{
return $this->readOneof(2);
}
public function hasInterleave()
{
return $this->hasOneof(2);
}
/**
* Applies several RowFilters to the data in parallel and combines the
* results.
*
* Generated from protobuf field <code>.google.bigtable.v2.RowFilter.Interleave interleave = 2;</code>
* @param \Google\Cloud\Bigtable\V2\RowFilter\Interleave $var
* @return $this
*/
public function setInterleave($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Bigtable\V2\RowFilter\Interleave::class);
$this->writeOneof(2, $var);
return $this;
}
/**
* Applies one of two possible RowFilters to the data based on the output of
* a predicate RowFilter.
*
* Generated from protobuf field <code>.google.bigtable.v2.RowFilter.Condition condition = 3;</code>
* @return \Google\Cloud\Bigtable\V2\RowFilter\Condition|null
*/
public function getCondition()
{
return $this->readOneof(3);
}
public function hasCondition()
{
return $this->hasOneof(3);
}
/**
* Applies one of two possible RowFilters to the data based on the output of
* a predicate RowFilter.
*
* Generated from protobuf field <code>.google.bigtable.v2.RowFilter.Condition condition = 3;</code>
* @param \Google\Cloud\Bigtable\V2\RowFilter\Condition $var
* @return $this
*/
public function setCondition($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Bigtable\V2\RowFilter\Condition::class);
$this->writeOneof(3, $var);
return $this;
}
/**
* ADVANCED USE ONLY.
* Hook for introspection into the RowFilter. Outputs all cells directly to
* the output of the read rather than to any parent filter. Consider the
* following example:
* Chain(
* FamilyRegex("A"),
* Interleave(
* All(),
* Chain(Label("foo"), Sink())
* ),
* QualifierRegex("B")
* )
* A,A,1,w
* A,B,2,x
* B,B,4,z
* |
* FamilyRegex("A")
* |
* A,A,1,w
* A,B,2,x
* |
* +------------+-------------+
* | |
* All() Label(foo)
* | |
* A,A,1,w A,A,1,w,labels:[foo]
* A,B,2,x A,B,2,x,labels:[foo]
* | |
* | Sink() --------------+
* | | |
* +------------+ x------+ A,A,1,w,labels:[foo]
* | A,B,2,x,labels:[foo]
* A,A,1,w |
* A,B,2,x |
* | |
* QualifierRegex("B") |
* | |
* A,B,2,x |
* | |
* +--------------------------------+
* |
* A,A,1,w,labels:[foo]
* A,B,2,x,labels:[foo] // could be switched
* A,B,2,x // could be switched
* Despite being excluded by the qualifier filter, a copy of every cell
* that reaches the sink is present in the final result.
* As with an [Interleave][google.bigtable.v2.RowFilter.Interleave],
* duplicate cells are possible, and appear in an unspecified mutual order.
* In this case we have a duplicate with column "A:B" and timestamp 2,
* because one copy passed through the all filter while the other was
* passed through the label and sink. Note that one copy has label "foo",
* while the other does not.
* Cannot be used within the `predicate_filter`, `true_filter`, or
* `false_filter` of a [Condition][google.bigtable.v2.RowFilter.Condition].
*
* Generated from protobuf field <code>bool sink = 16;</code>
* @return bool
*/
public function getSink()
{
return $this->readOneof(16);
}
public function hasSink()
{
return $this->hasOneof(16);
}
/**
* ADVANCED USE ONLY.
* Hook for introspection into the RowFilter. Outputs all cells directly to
* the output of the read rather than to any parent filter. Consider the
* following example:
* Chain(
* FamilyRegex("A"),
* Interleave(
* All(),
* Chain(Label("foo"), Sink())
* ),
* QualifierRegex("B")
* )
* A,A,1,w
* A,B,2,x
* B,B,4,z
* |
* FamilyRegex("A")
* |
* A,A,1,w
* A,B,2,x
* |
* +------------+-------------+
* | |
* All() Label(foo)
* | |
* A,A,1,w A,A,1,w,labels:[foo]
* A,B,2,x A,B,2,x,labels:[foo]
* | |
* | Sink() --------------+
* | | |
* +------------+ x------+ A,A,1,w,labels:[foo]
* | A,B,2,x,labels:[foo]
* A,A,1,w |
* A,B,2,x |
* | |
* QualifierRegex("B") |
* | |
* A,B,2,x |
* | |
* +--------------------------------+
* |
* A,A,1,w,labels:[foo]
* A,B,2,x,labels:[foo] // could be switched
* A,B,2,x // could be switched
* Despite being excluded by the qualifier filter, a copy of every cell
* that reaches the sink is present in the final result.
* As with an [Interleave][google.bigtable.v2.RowFilter.Interleave],
* duplicate cells are possible, and appear in an unspecified mutual order.
* In this case we have a duplicate with column "A:B" and timestamp 2,
* because one copy passed through the all filter while the other was
* passed through the label and sink. Note that one copy has label "foo",
* while the other does not.
* Cannot be used within the `predicate_filter`, `true_filter`, or
* `false_filter` of a [Condition][google.bigtable.v2.RowFilter.Condition].
*
* Generated from protobuf field <code>bool sink = 16;</code>
* @param bool $var
* @return $this
*/
public function setSink($var)
{
GPBUtil::checkBool($var);
$this->writeOneof(16, $var);
return $this;
}
/**
* Matches all cells, regardless of input. Functionally equivalent to
* leaving `filter` unset, but included for completeness.
*
* Generated from protobuf field <code>bool pass_all_filter = 17;</code>
* @return bool
*/
public function getPassAllFilter()
{
return $this->readOneof(17);
}
public function hasPassAllFilter()
{
return $this->hasOneof(17);
}
/**
* Matches all cells, regardless of input. Functionally equivalent to
* leaving `filter` unset, but included for completeness.
*
* Generated from protobuf field <code>bool pass_all_filter = 17;</code>
* @param bool $var
* @return $this
*/
public function setPassAllFilter($var)
{
GPBUtil::checkBool($var);
$this->writeOneof(17, $var);
return $this;
}
/**
* Does not match any cells, regardless of input. Useful for temporarily
* disabling just part of a filter.
*
* Generated from protobuf field <code>bool block_all_filter = 18;</code>
* @return bool
*/
public function getBlockAllFilter()
{
return $this->readOneof(18);
}
public function hasBlockAllFilter()
{
return $this->hasOneof(18);
}
/**
* Does not match any cells, regardless of input. Useful for temporarily
* disabling just part of a filter.
*
* Generated from protobuf field <code>bool block_all_filter = 18;</code>
* @param bool $var
* @return $this
*/
public function setBlockAllFilter($var)
{
GPBUtil::checkBool($var);
$this->writeOneof(18, $var);
return $this;
}
/**
* Matches only cells from rows whose keys satisfy the given RE2 regex. In
* other words, passes through the entire row when the key matches, and
* otherwise produces an empty row.
* Note that, since row keys can contain arbitrary bytes, the `\C` escape
* sequence must be used if a true wildcard is desired. The `.` character
* will not match the new line character `\n`, which may be present in a
* binary key.
*
* Generated from protobuf field <code>bytes row_key_regex_filter = 4;</code>
* @return string
*/
public function getRowKeyRegexFilter()
{
return $this->readOneof(4);
}
public function hasRowKeyRegexFilter()
{
return $this->hasOneof(4);
}
/**
* Matches only cells from rows whose keys satisfy the given RE2 regex. In
* other words, passes through the entire row when the key matches, and
* otherwise produces an empty row.
* Note that, since row keys can contain arbitrary bytes, the `\C` escape
* sequence must be used if a true wildcard is desired. The `.` character
* will not match the new line character `\n`, which may be present in a
* binary key.
*
* Generated from protobuf field <code>bytes row_key_regex_filter = 4;</code>
* @param string $var
* @return $this
*/
public function setRowKeyRegexFilter($var)
{
GPBUtil::checkString($var, False);
$this->writeOneof(4, $var);
return $this;
}
/**
* Matches all cells from a row with probability p, and matches no cells
* from the row with probability 1-p.
*
* Generated from protobuf field <code>double row_sample_filter = 14;</code>
* @return float
*/
public function getRowSampleFilter()
{
return $this->readOneof(14);
}
public function hasRowSampleFilter()
{
return $this->hasOneof(14);
}
/**
* Matches all cells from a row with probability p, and matches no cells
* from the row with probability 1-p.
*
* Generated from protobuf field <code>double row_sample_filter = 14;</code>
* @param float $var
* @return $this
*/
public function setRowSampleFilter($var)
{
GPBUtil::checkDouble($var);
$this->writeOneof(14, $var);
return $this;
}
/**
* Matches only cells from columns whose families satisfy the given RE2
* regex. For technical reasons, the regex must not contain the `:`
* character, even if it is not being used as a literal.
* Note that, since column families cannot contain the new line character
* `\n`, it is sufficient to use `.` as a full wildcard when matching
* column family names.
*
* Generated from protobuf field <code>string family_name_regex_filter = 5;</code>
* @return string
*/
public function getFamilyNameRegexFilter()
{
return $this->readOneof(5);
}
public function hasFamilyNameRegexFilter()
{
return $this->hasOneof(5);
}
/**
* Matches only cells from columns whose families satisfy the given RE2
* regex. For technical reasons, the regex must not contain the `:`
* character, even if it is not being used as a literal.
* Note that, since column families cannot contain the new line character
* `\n`, it is sufficient to use `.` as a full wildcard when matching
* column family names.
*
* Generated from protobuf field <code>string family_name_regex_filter = 5;</code>
* @param string $var
* @return $this
*/
public function setFamilyNameRegexFilter($var)
{
GPBUtil::checkString($var, True);
$this->writeOneof(5, $var);
return $this;
}
/**
* Matches only cells from columns whose qualifiers satisfy the given RE2
* regex.
* Note that, since column qualifiers can contain arbitrary bytes, the `\C`
* escape sequence must be used if a true wildcard is desired. The `.`
* character will not match the new line character `\n`, which may be
* present in a binary qualifier.
*
* Generated from protobuf field <code>bytes column_qualifier_regex_filter = 6;</code>
* @return string
*/
public function getColumnQualifierRegexFilter()
{
return $this->readOneof(6);
}
public function hasColumnQualifierRegexFilter()
{
return $this->hasOneof(6);
}
/**
* Matches only cells from columns whose qualifiers satisfy the given RE2
* regex.
* Note that, since column qualifiers can contain arbitrary bytes, the `\C`
* escape sequence must be used if a true wildcard is desired. The `.`
* character will not match the new line character `\n`, which may be
* present in a binary qualifier.
*
* Generated from protobuf field <code>bytes column_qualifier_regex_filter = 6;</code>
* @param string $var
* @return $this
*/
public function setColumnQualifierRegexFilter($var)
{
GPBUtil::checkString($var, False);
$this->writeOneof(6, $var);
return $this;
}
/**
* Matches only cells from columns within the given range.
*
* Generated from protobuf field <code>.google.bigtable.v2.ColumnRange column_range_filter = 7;</code>
* @return \Google\Cloud\Bigtable\V2\ColumnRange|null
*/
public function getColumnRangeFilter()
{
return $this->readOneof(7);
}
public function hasColumnRangeFilter()
{
return $this->hasOneof(7);
}
/**
* Matches only cells from columns within the given range.
*
* Generated from protobuf field <code>.google.bigtable.v2.ColumnRange column_range_filter = 7;</code>
* @param \Google\Cloud\Bigtable\V2\ColumnRange $var
* @return $this
*/
public function setColumnRangeFilter($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Bigtable\V2\ColumnRange::class);
$this->writeOneof(7, $var);
return $this;
}
/**
* Matches only cells with timestamps within the given range.
*
* Generated from protobuf field <code>.google.bigtable.v2.TimestampRange timestamp_range_filter = 8;</code>
* @return \Google\Cloud\Bigtable\V2\TimestampRange|null
*/
public function getTimestampRangeFilter()
{
return $this->readOneof(8);
}
public function hasTimestampRangeFilter()
{
return $this->hasOneof(8);
}
/**
* Matches only cells with timestamps within the given range.
*
* Generated from protobuf field <code>.google.bigtable.v2.TimestampRange timestamp_range_filter = 8;</code>
* @param \Google\Cloud\Bigtable\V2\TimestampRange $var
* @return $this
*/
public function setTimestampRangeFilter($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Bigtable\V2\TimestampRange::class);
$this->writeOneof(8, $var);
return $this;
}
/**
* Matches only cells with values that satisfy the given regular expression.
* Note that, since cell values can contain arbitrary bytes, the `\C` escape
* sequence must be used if a true wildcard is desired. The `.` character
* will not match the new line character `\n`, which may be present in a
* binary value.
*
* Generated from protobuf field <code>bytes value_regex_filter = 9;</code>
* @return string
*/
public function getValueRegexFilter()
{
return $this->readOneof(9);
}
public function hasValueRegexFilter()
{
return $this->hasOneof(9);
}
/**
* Matches only cells with values that satisfy the given regular expression.
* Note that, since cell values can contain arbitrary bytes, the `\C` escape
* sequence must be used if a true wildcard is desired. The `.` character
* will not match the new line character `\n`, which may be present in a
* binary value.
*
* Generated from protobuf field <code>bytes value_regex_filter = 9;</code>
* @param string $var
* @return $this
*/
public function setValueRegexFilter($var)
{
GPBUtil::checkString($var, False);
$this->writeOneof(9, $var);
return $this;
}
/**
* Matches only cells with values that fall within the given range.
*
* Generated from protobuf field <code>.google.bigtable.v2.ValueRange value_range_filter = 15;</code>
* @return \Google\Cloud\Bigtable\V2\ValueRange|null
*/
public function getValueRangeFilter()
{
return $this->readOneof(15);
}
public function hasValueRangeFilter()
{
return $this->hasOneof(15);
}
/**
* Matches only cells with values that fall within the given range.
*
* Generated from protobuf field <code>.google.bigtable.v2.ValueRange value_range_filter = 15;</code>
* @param \Google\Cloud\Bigtable\V2\ValueRange $var
* @return $this
*/
public function setValueRangeFilter($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\Bigtable\V2\ValueRange::class);
$this->writeOneof(15, $var);
return $this;
}
/**
* Skips the first N cells of each row, matching all subsequent cells.
* If duplicate cells are present, as is possible when using an Interleave,
* each copy of the cell is counted separately.
*
* Generated from protobuf field <code>int32 cells_per_row_offset_filter = 10;</code>
* @return int
*/
public function getCellsPerRowOffsetFilter()
{
return $this->readOneof(10);
}
public function hasCellsPerRowOffsetFilter()
{
return $this->hasOneof(10);
}
/**
* Skips the first N cells of each row, matching all subsequent cells.
* If duplicate cells are present, as is possible when using an Interleave,
* each copy of the cell is counted separately.
*
* Generated from protobuf field <code>int32 cells_per_row_offset_filter = 10;</code>
* @param int $var
* @return $this
*/
public function setCellsPerRowOffsetFilter($var)
{
GPBUtil::checkInt32($var);
$this->writeOneof(10, $var);
return $this;
}
/**
* Matches only the first N cells of each row.
* If duplicate cells are present, as is possible when using an Interleave,
* each copy of the cell is counted separately.
*
* Generated from protobuf field <code>int32 cells_per_row_limit_filter = 11;</code>
* @return int
*/
public function getCellsPerRowLimitFilter()
{
return $this->readOneof(11);
}
public function hasCellsPerRowLimitFilter()
{
return $this->hasOneof(11);
}
/**
* Matches only the first N cells of each row.
* If duplicate cells are present, as is possible when using an Interleave,
* each copy of the cell is counted separately.
*
* Generated from protobuf field <code>int32 cells_per_row_limit_filter = 11;</code>
* @param int $var
* @return $this
*/
public function setCellsPerRowLimitFilter($var)
{
GPBUtil::checkInt32($var);
$this->writeOneof(11, $var);
return $this;
}
/**
* Matches only the most recent N cells within each column. For example,
* if N=2, this filter would match column `foo:bar` at timestamps 10 and 9,
* skip all earlier cells in `foo:bar`, and then begin matching again in
* column `foo:bar2`.
* If duplicate cells are present, as is possible when using an Interleave,
* each copy of the cell is counted separately.
*
* Generated from protobuf field <code>int32 cells_per_column_limit_filter = 12;</code>
* @return int
*/
public function getCellsPerColumnLimitFilter()
{
return $this->readOneof(12);
}
public function hasCellsPerColumnLimitFilter()
{
return $this->hasOneof(12);
}
/**
* Matches only the most recent N cells within each column. For example,
* if N=2, this filter would match column `foo:bar` at timestamps 10 and 9,
* skip all earlier cells in `foo:bar`, and then begin matching again in
* column `foo:bar2`.
* If duplicate cells are present, as is possible when using an Interleave,
* each copy of the cell is counted separately.
*
* Generated from protobuf field <code>int32 cells_per_column_limit_filter = 12;</code>
* @param int $var
* @return $this
*/
public function setCellsPerColumnLimitFilter($var)
{
GPBUtil::checkInt32($var);
$this->writeOneof(12, $var);
return $this;
}
/**
* Replaces each cell's value with the empty string.
*
* Generated from protobuf field <code>bool strip_value_transformer = 13;</code>
* @return bool
*/
public function getStripValueTransformer()
{
return $this->readOneof(13);
}
public function hasStripValueTransformer()
{
return $this->hasOneof(13);
}
/**
* Replaces each cell's value with the empty string.
*
* Generated from protobuf field <code>bool strip_value_transformer = 13;</code>
* @param bool $var
* @return $this
*/
public function setStripValueTransformer($var)
{
GPBUtil::checkBool($var);
$this->writeOneof(13, $var);
return $this;
}
/**
* Applies the given label to all cells in the output row. This allows
* the client to determine which results were produced from which part of
* the filter.
* Values must be at most 15 characters in length, and match the RE2
* pattern `[a-z0-9\\-]+`
* Due to a technical limitation, it is not currently possible to apply
* multiple labels to a cell. As a result, a Chain may have no more than
* one sub-filter which contains a `apply_label_transformer`. It is okay for
* an Interleave to contain multiple `apply_label_transformers`, as they
* will be applied to separate copies of the input. This may be relaxed in
* the future.
*
* Generated from protobuf field <code>string apply_label_transformer = 19;</code>
* @return string
*/
public function getApplyLabelTransformer()
{
return $this->readOneof(19);
}
public function hasApplyLabelTransformer()
{
return $this->hasOneof(19);
}
/**
* Applies the given label to all cells in the output row. This allows
* the client to determine which results were produced from which part of
* the filter.
* Values must be at most 15 characters in length, and match the RE2
* pattern `[a-z0-9\\-]+`
* Due to a technical limitation, it is not currently possible to apply
* multiple labels to a cell. As a result, a Chain may have no more than
* one sub-filter which contains a `apply_label_transformer`. It is okay for
* an Interleave to contain multiple `apply_label_transformers`, as they
* will be applied to separate copies of the input. This may be relaxed in
* the future.
*
* Generated from protobuf field <code>string apply_label_transformer = 19;</code>
* @param string $var
* @return $this
*/
public function setApplyLabelTransformer($var)
{
GPBUtil::checkString($var, True);
$this->writeOneof(19, $var);
return $this;
}
/**
* Matches only cells with values that satisfy the condition `(value & mask)
* == mask`.
* The mask length must exactly match the value length, otherwise the cell
* is not considered a match.
*
* Generated from protobuf field <code>.google.bigtable.v2.ValueBitmask value_bitmask_filter = 20;</code>
* @return \Google\Cloud\Bigtable\V2\ValueBitmask|null
*/
public function getValueBitmaskFilter()
{
return $this->readOneof(20);
}
public function hasValueBitmaskFilter()