84a85128d53995de243cb205ba984773adec504b.svn-base
55.2 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
////////////////////////////////////////////////////////////////////////////
//
// Copyright 2014 Realm Inc.
//
// 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.
//
////////////////////////////////////////////////////////////////////////////
#import "RLMQueryUtil.hpp"
#import "RLMArray_Private.hpp"
#import "RLMObject_Private.hpp"
#import "RLMObjectSchema_Private.hpp"
#import "RLMPredicateUtil.hpp"
#import "RLMProperty_Private.h"
#import "RLMSchema_Private.h"
#import "RLMUtil.hpp"
#import "results.hpp"
#include <realm.hpp>
using namespace realm;
NSString * const RLMPropertiesComparisonTypeMismatchException = @"RLMPropertiesComparisonTypeMismatchException";
NSString * const RLMUnsupportedTypesFoundInPropertyComparisonException = @"RLMUnsupportedTypesFoundInPropertyComparisonException";
NSString * const RLMPropertiesComparisonTypeMismatchReason = @"Property type mismatch between %@ and %@";
NSString * const RLMUnsupportedTypesFoundInPropertyComparisonReason = @"Comparison between %@ and %@";
// small helper to create the many exceptions thrown when parsing predicates
static NSException *RLMPredicateException(NSString *name, NSString *format, ...) {
va_list args;
va_start(args, format);
NSString *reason = [[NSString alloc] initWithFormat:format arguments:args];
va_end(args);
return [NSException exceptionWithName:name reason:reason userInfo:nil];
}
// check a precondition and throw an exception if it is not met
// this should be used iff the condition being false indicates a bug in the caller
// of the function checking its preconditions
static void RLMPrecondition(bool condition, NSString *name, NSString *format, ...) {
if (__builtin_expect(condition, 1)) {
return;
}
va_list args;
va_start(args, format);
NSString *reason = [[NSString alloc] initWithFormat:format arguments:args];
va_end(args);
@throw [NSException exceptionWithName:name reason:reason userInfo:nil];
}
// return the property for a validated column name
RLMProperty *RLMValidatedProperty(RLMObjectSchema *desc, NSString *columnName) {
RLMProperty *prop = desc[columnName];
RLMPrecondition(prop, @"Invalid property name",
@"Property '%@' not found in object of type '%@'", columnName, desc.className);
return prop;
}
namespace {
// FIXME: TrueExpression and FalseExpression should be supported by core in some way
struct TrueExpression : realm::Expression {
size_t find_first(size_t start, size_t end) const override
{
if (start != end)
return start;
return realm::not_found;
}
void set_base_table(const Table*) override {}
const Table* get_base_table() const override { return nullptr; }
std::unique_ptr<Expression> clone(QueryNodeHandoverPatches*) const override
{
return std::unique_ptr<Expression>(new TrueExpression(*this));
}
};
struct FalseExpression : realm::Expression {
size_t find_first(size_t, size_t) const override { return realm::not_found; }
void set_base_table(const Table*) override {}
const Table* get_base_table() const override { return nullptr; }
std::unique_ptr<Expression> clone(QueryNodeHandoverPatches*) const override
{
return std::unique_ptr<Expression>(new FalseExpression(*this));
}
};
NSString *operatorName(NSPredicateOperatorType operatorType)
{
switch (operatorType) {
case NSLessThanPredicateOperatorType:
return @"<";
case NSLessThanOrEqualToPredicateOperatorType:
return @"<=";
case NSGreaterThanPredicateOperatorType:
return @">";
case NSGreaterThanOrEqualToPredicateOperatorType:
return @">=";
case NSEqualToPredicateOperatorType:
return @"==";
case NSNotEqualToPredicateOperatorType:
return @"!=";
case NSMatchesPredicateOperatorType:
return @"MATCHES";
case NSLikePredicateOperatorType:
return @"LIKE";
case NSBeginsWithPredicateOperatorType:
return @"BEGINSWITH";
case NSEndsWithPredicateOperatorType:
return @"ENDSWITH";
case NSInPredicateOperatorType:
return @"IN";
case NSContainsPredicateOperatorType:
return @"CONTAINS";
case NSBetweenPredicateOperatorType:
return @"BETWEENS";
case NSCustomSelectorPredicateOperatorType:
return @"custom selector";
}
return [NSString stringWithFormat:@"unknown operator %lu", (unsigned long)operatorType];
}
// A reference to a column within a query. Can be resolved to a Columns<T> for use in query expressions.
class ColumnReference {
public:
ColumnReference(RLMProperty* property, const std::vector<size_t>& links) :
m_property(property), m_links(links)
{
}
explicit ColumnReference(RLMProperty* property) : m_property(property) { }
template <typename T>
auto resolve(Query& query) const
{
return table_for_query(query)->template column<T>(index());
}
template <typename T>
auto resolveWithSubquery(Query& query, Query subquery) const
{
return table_for_query(query)->template column<T>(index(), std::move(subquery));
}
RLMProperty *property() const { return m_property; }
size_t index() const { return m_property.column; }
RLMPropertyType type() const { return m_property.type; }
bool has_links() const { return m_links.size(); }
private:
Table* table_for_query(Query& query) const
{
realm::TableRef& table = query.get_table();
for (size_t col : m_links) {
table->link(col); // mutates m_link_chain on table
}
return table.get();
}
RLMProperty *m_property;
std::vector<size_t> m_links;
};
class CollectionOperation {
public:
enum Type {
Count,
Minimum,
Maximum,
Sum,
Average,
};
CollectionOperation(Type type, ColumnReference link_column, util::Optional<ColumnReference> column)
: m_type(type)
, m_link_column(std::move(link_column))
, m_column(std::move(column))
{
RLMPrecondition(m_link_column.type() == RLMPropertyTypeArray, @"Invalid predicate",
@"Collection operation can only be applied to a property of type RLMArray.");
switch (m_type) {
case Count:
RLMPrecondition(!m_column, @"Invalid predicate", @"Result of @count does not have any properties.");
break;
case Minimum:
case Maximum:
case Sum:
case Average:
RLMPrecondition(m_column && RLMPropertyTypeIsNumeric(m_column->type()), @"Invalid predicate", @"%@ can only be applied to a numeric property.", name_for_type(m_type));
break;
}
}
CollectionOperation(NSString *operationName, ColumnReference link_column, util::Optional<ColumnReference> column = util::none)
: CollectionOperation(type_for_name(operationName), std::move(link_column), std::move(column))
{
}
Type type() const { return m_type; }
const ColumnReference& link_column() const { return m_link_column; }
NSUInteger column_index() const { return m_column->index(); }
RLMPropertyType column_type() const { return m_column->type(); }
void validate_comparison(id value) const {
switch (m_type) {
case Count:
case Average:
RLMPrecondition([value isKindOfClass:[NSNumber class]], @"Invalid operand", @"%@ can only be compared with a numeric value.", name_for_type(m_type));
break;
case Minimum:
case Maximum:
case Sum:
RLMPrecondition(RLMIsObjectValidForProperty(value, m_column->property()), @"Invalid operand", @"%@ on a property of type %@ cannot be compared with '%@'",
name_for_type(m_type), RLMTypeToString(m_column->type()), value);
break;
}
}
void validate_comparison(const ColumnReference& column) const {
switch (m_type) {
case Count:
RLMPrecondition(RLMPropertyTypeIsNumeric(column.type()), @"Invalid operand", @"%@ can only be compared with a numeric value.", name_for_type(m_type));
break;
case Average:
case Minimum:
case Maximum:
case Sum:
RLMPrecondition(RLMPropertyTypeIsNumeric(column.type()), @"Invalid operand", @"%@ on a property of type %@ cannot be compared with property of type '%@'",
name_for_type(m_type), RLMTypeToString(m_column->type()), RLMTypeToString(column.type()));
break;
}
}
private:
static Type type_for_name(NSString *name) {
if ([name isEqualToString:@"@count"]) {
return Count;
}
if ([name isEqualToString:@"@min"]) {
return Minimum;
}
if ([name isEqualToString:@"@max"]) {
return Maximum;
}
if ([name isEqualToString:@"@sum"]) {
return Sum;
}
if ([name isEqualToString:@"@avg"]) {
return Average;
}
@throw RLMPredicateException(@"Invalid predicate", @"Unsupported collection operation '%@'", name);
}
static NSString *name_for_type(Type type) {
switch (type) {
case Count: return @"@count";
case Minimum: return @"@min";
case Maximum: return @"@max";
case Sum: return @"@sum";
case Average: return @"@avg";
}
}
Type m_type;
ColumnReference m_link_column;
util::Optional<ColumnReference> m_column;
};
// add a clause for numeric constraints based on operator type
template <typename A, typename B>
void add_numeric_constraint_to_query(realm::Query& query,
RLMPropertyType datatype,
NSPredicateOperatorType operatorType,
A&& lhs,
B&& rhs)
{
switch (operatorType) {
case NSLessThanPredicateOperatorType:
query.and_query(lhs < rhs);
break;
case NSLessThanOrEqualToPredicateOperatorType:
query.and_query(lhs <= rhs);
break;
case NSGreaterThanPredicateOperatorType:
query.and_query(lhs > rhs);
break;
case NSGreaterThanOrEqualToPredicateOperatorType:
query.and_query(lhs >= rhs);
break;
case NSEqualToPredicateOperatorType:
query.and_query(lhs == rhs);
break;
case NSNotEqualToPredicateOperatorType:
query.and_query(lhs != rhs);
break;
default:
@throw RLMPredicateException(@"Invalid operator type",
@"Operator '%@' not supported for type %@", operatorName(operatorType), RLMTypeToString(datatype));
}
}
template <typename A, typename B>
void add_bool_constraint_to_query(realm::Query &query, NSPredicateOperatorType operatorType, A lhs, B rhs) {
switch (operatorType) {
case NSEqualToPredicateOperatorType:
query.and_query(lhs == rhs);
break;
case NSNotEqualToPredicateOperatorType:
query.and_query(lhs != rhs);
break;
default:
@throw RLMPredicateException(@"Invalid operator type",
@"Operator '%@' not supported for bool type", operatorName(operatorType));
}
}
template <typename T>
void add_string_constraint_to_query(realm::Query &query,
NSPredicateOperatorType operatorType,
NSComparisonPredicateOptions predicateOptions,
Columns<String> &&column,
T value) {
bool caseSensitive = !(predicateOptions & NSCaseInsensitivePredicateOption);
bool diacriticInsensitive = (predicateOptions & NSDiacriticInsensitivePredicateOption);
RLMPrecondition(!diacriticInsensitive, @"Invalid predicate option",
@"NSDiacriticInsensitivePredicateOption not supported for string type");
switch (operatorType) {
case NSBeginsWithPredicateOperatorType:
query.and_query(column.begins_with(value, caseSensitive));
break;
case NSEndsWithPredicateOperatorType:
query.and_query(column.ends_with(value, caseSensitive));
break;
case NSContainsPredicateOperatorType:
query.and_query(column.contains(value, caseSensitive));
break;
case NSEqualToPredicateOperatorType:
query.and_query(column.equal(value, caseSensitive));
break;
case NSNotEqualToPredicateOperatorType:
query.and_query(column.not_equal(value, caseSensitive));
break;
default:
@throw RLMPredicateException(@"Invalid operator type",
@"Operator '%@' not supported for string type", operatorName(operatorType));
}
}
void add_string_constraint_to_query(realm::Query& query,
NSPredicateOperatorType operatorType,
NSComparisonPredicateOptions predicateOptions,
StringData value,
Columns<String>&& column) {
switch (operatorType) {
case NSEqualToPredicateOperatorType:
case NSNotEqualToPredicateOperatorType:
add_string_constraint_to_query(query, operatorType, predicateOptions, std::move(column), value);
break;
default:
@throw RLMPredicateException(@"Invalid operator type",
@"Operator '%@' is not supported for string type with key path on right side of operator",
operatorName(operatorType));
}
}
id value_from_constant_expression_or_value(id value) {
if (NSExpression *exp = RLMDynamicCast<NSExpression>(value)) {
RLMPrecondition(exp.expressionType == NSConstantValueExpressionType,
@"Invalid value",
@"Expressions within predicate aggregates must be constant values");
return exp.constantValue;
}
return value;
}
void validate_and_extract_between_range(id value, RLMProperty *prop, id *from, id *to) {
NSArray *array = RLMDynamicCast<NSArray>(value);
RLMPrecondition(array, @"Invalid value", @"object must be of type NSArray for BETWEEN operations");
RLMPrecondition(array.count == 2, @"Invalid value", @"NSArray object must contain exactly two objects for BETWEEN operations");
*from = value_from_constant_expression_or_value(array.firstObject);
*to = value_from_constant_expression_or_value(array.lastObject);
RLMPrecondition(RLMIsObjectValidForProperty(*from, prop) && RLMIsObjectValidForProperty(*to, prop),
@"Invalid value",
@"NSArray objects must be of type %@ for BETWEEN operations", RLMTypeToString(prop.type));
}
template <typename L, typename R>
void add_constraint_to_query(realm::Query &query, RLMPropertyType type,
NSPredicateOperatorType operatorType,
NSComparisonPredicateOptions predicateOptions,
L lhs, R rhs);
void add_between_constraint_to_query(realm::Query &query, const ColumnReference& column, id value) {
id from, to;
validate_and_extract_between_range(value, column.property(), &from, &to);
RLMPropertyType type = column.type();
if (column.has_links()) {
query.group();
add_constraint_to_query(query, type, NSGreaterThanOrEqualToPredicateOperatorType, 0, column, from);
add_constraint_to_query(query, type, NSLessThanOrEqualToPredicateOperatorType, 0, column, to);
query.end_group();
return;
}
// add to query
NSUInteger index = column.index();
switch (type) {
case type_DateTime:
query.between_datetime(index,
[from timeIntervalSince1970],
[to timeIntervalSince1970]);
break;
case type_Double:
query.between(index, [from doubleValue], [to doubleValue]);
break;
case type_Float:
query.between(index, [from floatValue], [to floatValue]);
break;
case type_Int:
query.between(index, [from longLongValue], [to longLongValue]);
break;
default:
@throw RLMPredicateException(@"Unsupported predicate value type",
@"Object type %@ not supported for BETWEEN operations", RLMTypeToString(type));
}
}
template<typename T>
void add_binary_constraint_to_query(realm::Query & query,
NSPredicateOperatorType operatorType,
const ColumnReference& column,
T value) {
RLMPrecondition(!column.has_links(), @"Unsupported operator", @"NSData properties cannot be queried over an object link.");
size_t index = column.index();
switch (operatorType) {
case NSBeginsWithPredicateOperatorType:
query.begins_with(index, value);
break;
case NSEndsWithPredicateOperatorType:
query.ends_with(index, value);
break;
case NSContainsPredicateOperatorType:
query.contains(index, value);
break;
case NSEqualToPredicateOperatorType:
query.equal(index, value);
break;
case NSNotEqualToPredicateOperatorType:
query.not_equal(index, value);
break;
default:
@throw RLMPredicateException(@"Invalid operator type",
@"Operator '%@' not supported for binary type", operatorName(operatorType));
}
}
void add_binary_constraint_to_query(realm::Query& query, NSPredicateOperatorType operatorType, const ColumnReference& column, id value) {
add_binary_constraint_to_query(query, operatorType, column, RLMBinaryDataForNSData(value));
}
void add_binary_constraint_to_query(realm::Query& query, NSPredicateOperatorType operatorType, id value, const ColumnReference& column) {
switch (operatorType) {
case NSEqualToPredicateOperatorType:
case NSNotEqualToPredicateOperatorType:
add_binary_constraint_to_query(query, operatorType, column, value);
break;
default:
@throw RLMPredicateException(@"Invalid operator type",
@"Operator '%@' is not supported for binary type with key path on right side of operator",
operatorName(operatorType));
}
}
void add_binary_constraint_to_query(realm::Query&, NSPredicateOperatorType, const ColumnReference&, const ColumnReference&) {
@throw RLMPredicateException(@"Invalid predicate", @"Comparisons between two NSData properties are not supported");
}
void add_link_constraint_to_query(realm::Query & query,
NSPredicateOperatorType operatorType,
const ColumnReference& column,
RLMObject *obj) {
RLMPrecondition(!column.has_links(), @"Unsupported operator", @"Multi-level object equality link queries are not supported.");
RLMPrecondition(operatorType == NSEqualToPredicateOperatorType || operatorType == NSNotEqualToPredicateOperatorType,
@"Invalid operator type", @"Only 'Equal' and 'Not Equal' operators supported for object comparison");
if (operatorType == NSNotEqualToPredicateOperatorType) {
query.Not();
}
if (!obj->_row.is_attached()) {
query.and_query(std::unique_ptr<Expression>(new FalseExpression));
return;
}
// NOTE: This precondition assumes that the argument `obj` will be always originating from the
// queried table as verified before by `validate_property_value`
RLMPrecondition(query.get_table()->get_link_target(column.index()).get() == obj->_row.get_table(),
@"Invalid value origin", @"Object must be from the Realm being queried");
query.links_to(column.index(), obj->_row);
}
void add_link_constraint_to_query(realm::Query & query,
NSPredicateOperatorType operatorType,
const ColumnReference& column,
realm::null) {
RLMPrecondition(!column.has_links(), @"Unsupported operator", @"Multi-level object equality link queries are not supported.");
RLMPrecondition(operatorType == NSEqualToPredicateOperatorType || operatorType == NSNotEqualToPredicateOperatorType,
@"Invalid operator type", @"Only 'Equal' and 'Not Equal' operators supported for object comparison");
if (operatorType == NSNotEqualToPredicateOperatorType) {
query.Not();
}
query.and_query(column.resolve<Link>(query).is_null());
}
template<typename T>
void add_link_constraint_to_query(realm::Query& query, NSPredicateOperatorType operatorType, T obj, const ColumnReference& column) {
// Link constraints only support the equal-to and not-equal-to operators. The order of operands
// is not important for those comparisons so we can delegate to the other implementation.
add_link_constraint_to_query(query, operatorType, column, obj);
}
void add_link_constraint_to_query(realm::Query&, NSPredicateOperatorType, const ColumnReference&, const ColumnReference&) {
// This is not actually reachable as this case is caught earlier, but this
// overload is needed for the code to compile
@throw RLMPredicateException(@"Invalid predicate", @"Comparisons between two RLMArray properties are not supported");
}
// iterate over an array of subpredicates, using @func to build a query from each
// one and ORing them together
template<typename Func>
void process_or_group(Query &query, id array, Func&& func) {
RLMPrecondition([array conformsToProtocol:@protocol(NSFastEnumeration)],
@"Invalid value", @"IN clause requires an array of items");
query.group();
bool first = true;
for (id item in array) {
if (!first) {
query.Or();
}
first = false;
func(item);
}
if (first) {
// Queries can't be empty, so if there's zero things in the OR group
// validation will fail. Work around this by adding an expression which
// will never find any rows in a table.
query.and_query(std::unique_ptr<Expression>(new FalseExpression));
}
query.end_group();
}
template <typename RequestedType>
RequestedType convert(id value);
template <>
DateTime convert<DateTime>(id value) {
return [value timeIntervalSince1970];
}
template <>
bool convert<bool>(id value) {
return [value boolValue];
}
template <>
Double convert<Double>(id value) {
return [value doubleValue];
}
template <>
Float convert<Float>(id value) {
return [value floatValue];
}
template <>
Int convert<Int>(id value) {
return [value longLongValue];
}
template <>
String convert<String>(id value) {
return RLMStringDataWithNSString(value);
}
template <typename>
realm::null value_of_type_for_query(Query&, realm::null) {
return realm::null();
}
template <typename RequestedType>
auto value_of_type_for_query(Query&, id value) {
return ::convert<RequestedType>(value);
}
template <typename RequestedType>
auto value_of_type_for_query(Query& query, const ColumnReference& column) {
return column.resolve<RequestedType>(query);
}
template <typename... T>
void do_add_constraint_to_query(realm::Query &query, RLMPropertyType type,
NSPredicateOperatorType operatorType,
NSComparisonPredicateOptions predicateOptions,
T... values)
{
static_assert(sizeof...(T) == 2, "do_add_constraint_to_query accepts only two values as arguments");
switch (type) {
case type_Bool:
add_bool_constraint_to_query(query, operatorType, value_of_type_for_query<bool>(query, values)...);
break;
case type_DateTime:
add_numeric_constraint_to_query(query, type, operatorType, value_of_type_for_query<realm::DateTime>(query, values)...);
break;
case type_Double:
add_numeric_constraint_to_query(query, type, operatorType, value_of_type_for_query<Double>(query, values)...);
break;
case type_Float:
add_numeric_constraint_to_query(query, type, operatorType, value_of_type_for_query<Float>(query, values)...);
break;
case type_Int:
add_numeric_constraint_to_query(query, type, operatorType, value_of_type_for_query<Int>(query, values)...);
break;
case type_String:
add_string_constraint_to_query(query, operatorType, predicateOptions, value_of_type_for_query<String>(query, values)...);
break;
case type_Binary:
add_binary_constraint_to_query(query, operatorType, values...);
break;
case type_Link:
case type_LinkList:
add_link_constraint_to_query(query, operatorType, values...);
break;
default:
@throw RLMPredicateException(@"Unsupported predicate value type",
@"Object type %@ not supported", RLMTypeToString(type));
}
}
void do_add_constraint_to_query(realm::Query&, RLMPropertyType, NSPredicateOperatorType,
NSComparisonPredicateOptions, id, realm::null)
{
// This is not actually reachable as this case is caught earlier, but this
// overload is needed for the code to compile
@throw RLMPredicateException(@"Invalid predicate expressions",
@"Predicate expressions must compare a keypath and another keypath or a constant value");
}
bool is_nsnull(id value) {
return !value || value == NSNull.null;
}
template<typename T>
bool is_nsnull(T) {
return false;
}
template <typename L, typename R>
void add_constraint_to_query(realm::Query &query, RLMPropertyType type,
NSPredicateOperatorType operatorType,
NSComparisonPredicateOptions predicateOptions,
L lhs, R rhs)
{
// The expression operators are only overloaded for realm::null on the rhs
RLMPrecondition(!is_nsnull(lhs), @"Unsupported operator",
@"Nil is only supported on the right side of operators");
if (is_nsnull(rhs)) {
do_add_constraint_to_query(query, type, operatorType, predicateOptions, lhs, realm::null());
}
else {
do_add_constraint_to_query(query, type, operatorType, predicateOptions, lhs, rhs);
}
}
ColumnReference column_reference_from_key_path(RLMSchema *schema, RLMObjectSchema *objectSchema,
NSString *keyPath, bool isAggregate)
{
RLMProperty *property;
std::vector<size_t> indexes;
bool keyPathContainsToManyRelationship = false;
NSUInteger start = 0, length = keyPath.length, end = NSNotFound;
do {
end = [keyPath rangeOfString:@"." options:0 range:{start, length - start}].location;
NSString *propertyName = [keyPath substringWithRange:{start, end == NSNotFound ? length - start : end - start}];
property = objectSchema[propertyName];
RLMPrecondition(property, @"Invalid property name",
@"Property '%@' not found in object of type '%@'", propertyName, objectSchema.className);
if (property.type == RLMPropertyTypeArray)
keyPathContainsToManyRelationship = true;
if (end != NSNotFound) {
RLMPrecondition(property.type == RLMPropertyTypeObject || property.type == RLMPropertyTypeArray,
@"Invalid value", @"Property '%@' is not a link in object of type '%@'", propertyName, objectSchema.className);
indexes.push_back(property.column);
REALM_ASSERT(property.objectClassName);
objectSchema = schema[property.objectClassName];
}
start = end + 1;
} while (end != NSNotFound);
if (isAggregate && !keyPathContainsToManyRelationship) {
@throw RLMPredicateException(@"Invalid predicate",
@"Aggregate operations can only be used on key paths that include an array property");
} else if (!isAggregate && keyPathContainsToManyRelationship) {
@throw RLMPredicateException(@"Invalid predicate",
@"Key paths that include an array property must use aggregate operations");
}
return ColumnReference(property, indexes);
}
void validate_property_value(const ColumnReference& column,
__unsafe_unretained id const value,
__unsafe_unretained NSString *const err,
__unsafe_unretained RLMObjectSchema *const objectSchema,
__unsafe_unretained NSString *const keyPath) {
RLMProperty *prop = column.property();
if (prop.type == RLMPropertyTypeArray) {
RLMPrecondition([RLMObjectBaseObjectSchema(RLMDynamicCast<RLMObjectBase>(value)).className isEqualToString:prop.objectClassName],
@"Invalid value", err, prop.objectClassName, keyPath, objectSchema.className, value);
}
else {
RLMPrecondition(RLMIsObjectValidForProperty(value, prop),
@"Invalid value", err, RLMTypeToString(prop.type), keyPath, objectSchema.className, value);
}
}
template <typename RequestedType, CollectionOperation::Type OperationType>
struct ValueOfTypeWithCollectionOperationHelper;
template <>
struct ValueOfTypeWithCollectionOperationHelper<Int, CollectionOperation::Count> {
static auto convert(Query& query, const CollectionOperation& operation)
{
assert(operation.type() == CollectionOperation::Count);
return operation.link_column().resolve<Link>(query).count();
}
};
#define VALUE_OF_TYPE_WITH_COLLECTION_OPERATOR_HELPER(OperationType, function) \
template <typename T> \
struct ValueOfTypeWithCollectionOperationHelper<T, OperationType> { \
static auto convert(Query& query, const CollectionOperation& operation) \
{ \
REALM_ASSERT(operation.type() == OperationType); \
auto targetColumn = operation.link_column().resolve<Link>(query).template column<T>(operation.column_index()); \
return targetColumn.function(); \
} \
} \
VALUE_OF_TYPE_WITH_COLLECTION_OPERATOR_HELPER(CollectionOperation::Minimum, min);
VALUE_OF_TYPE_WITH_COLLECTION_OPERATOR_HELPER(CollectionOperation::Maximum, max);
VALUE_OF_TYPE_WITH_COLLECTION_OPERATOR_HELPER(CollectionOperation::Sum, sum);
VALUE_OF_TYPE_WITH_COLLECTION_OPERATOR_HELPER(CollectionOperation::Average, average);
#undef VALUE_OF_TYPE_WITH_COLLECTION_OPERATOR_HELPER
template <typename Requested, CollectionOperation::Type OperationType, typename T>
auto value_of_type_for_query_with_collection_operation(Query& query, T&& value) {
return value_of_type_for_query<Requested>(query, std::forward<T>(value));
}
template <typename Requested, CollectionOperation::Type OperationType>
auto value_of_type_for_query_with_collection_operation(Query& query, CollectionOperation operation) {
using helper = ValueOfTypeWithCollectionOperationHelper<Requested, OperationType>;
return helper::convert(query, operation);
}
template <CollectionOperation::Type Operation, typename... T>
void add_collection_operation_constraint_to_query(realm::Query& query, RLMPropertyType propertyType, NSPredicateOperatorType operatorType, T... values)
{
switch (propertyType) {
case RLMPropertyTypeInt:
add_numeric_constraint_to_query(query, propertyType, operatorType, value_of_type_for_query_with_collection_operation<Int, Operation>(query, values)...);
break;
case RLMPropertyTypeFloat:
add_numeric_constraint_to_query(query, propertyType, operatorType, value_of_type_for_query_with_collection_operation<Float, Operation>(query, values)...);
break;
case RLMPropertyTypeDouble:
add_numeric_constraint_to_query(query, propertyType, operatorType, value_of_type_for_query_with_collection_operation<Double, Operation>(query, values)...);
break;
default:
REALM_ASSERT(false && "Only numeric property types should hit this path.");
}
}
template <typename... T>
void add_collection_operation_constraint_to_query(realm::Query& query, NSPredicateOperatorType operatorType,
CollectionOperation collectionOperation, T... values)
{
static_assert(sizeof...(T) == 2, "add_collection_operation_constraint_to_query accepts only two values as arguments");
switch (collectionOperation.type()) {
case CollectionOperation::Count: {
add_numeric_constraint_to_query(query, RLMPropertyTypeInt, operatorType, value_of_type_for_query_with_collection_operation<Int, CollectionOperation::Count>(query, values)...);
break;
}
case CollectionOperation::Minimum: {
add_collection_operation_constraint_to_query<CollectionOperation::Minimum>(query, collectionOperation.column_type(), operatorType, values...);
break;
}
case CollectionOperation::Maximum: {
add_collection_operation_constraint_to_query<CollectionOperation::Maximum>(query, collectionOperation.column_type(), operatorType, values...);
break;
}
case CollectionOperation::Sum: {
add_collection_operation_constraint_to_query<CollectionOperation::Sum>(query, collectionOperation.column_type(), operatorType, values...);
break;
}
case CollectionOperation::Average: {
add_collection_operation_constraint_to_query<CollectionOperation::Average>(query, collectionOperation.column_type(), operatorType, values...);
break;
}
}
}
bool key_path_contains_collection_operator(NSString *keyPath) {
return [keyPath rangeOfString:@"@"].location != NSNotFound;
}
NSString *get_collection_operation_name_from_key_path(NSString *keyPath, NSString **leadingKeyPath, NSString **trailingKey) {
NSRange at = [keyPath rangeOfString:@"@"];
if (at.location == NSNotFound || at.location >= keyPath.length - 1) {
@throw RLMPredicateException(@"Invalid key path", @"'%@' is not a valid key path'", keyPath);
}
if (at.location == 0 || [keyPath characterAtIndex:at.location - 1] != '.') {
@throw RLMPredicateException(@"Invalid key path", @"'%@' is not a valid key path'", keyPath);
}
NSRange trailingKeyRange = [keyPath rangeOfString:@"." options:0 range:{at.location, keyPath.length - at.location} locale:nil];
*leadingKeyPath = [keyPath substringToIndex:at.location - 1];
if (trailingKeyRange.location == NSNotFound) {
*trailingKey = nil;
return [keyPath substringFromIndex:at.location];
} else {
*trailingKey = [keyPath substringFromIndex:trailingKeyRange.location + 1];
return [keyPath substringWithRange:{at.location, trailingKeyRange.location - at.location}];
}
}
CollectionOperation collection_operation_from_key_path(RLMSchema *schema,
RLMObjectSchema *desc,
NSString *keyPath) {
NSString *leadingKeyPath;
NSString *trailingKey;
NSString *collectionOperationName = get_collection_operation_name_from_key_path(keyPath, &leadingKeyPath, &trailingKey);
ColumnReference linkColumn = column_reference_from_key_path(schema, desc, leadingKeyPath, true);
util::Optional<ColumnReference> column;
if (trailingKey) {
RLMPrecondition([trailingKey rangeOfString:@"."].location == NSNotFound, @"Invalid key path", @"Right side of collection operator may only have a single level key");
NSString *fullKeyPath = [leadingKeyPath stringByAppendingFormat:@".%@", trailingKey];
column = column_reference_from_key_path(schema, desc, fullKeyPath, true);
}
return { collectionOperationName, std::move(linkColumn), std::move(column) };
}
void update_query_with_collection_operator_expression(RLMSchema *schema,
RLMObjectSchema *desc,
realm::Query &query,
NSString *keyPath,
id value,
NSComparisonPredicate *pred) {
CollectionOperation operation = collection_operation_from_key_path(schema, desc, keyPath);
operation.validate_comparison(value);
if (pred.leftExpression.expressionType == NSKeyPathExpressionType) {
add_collection_operation_constraint_to_query(query, pred.predicateOperatorType, operation, operation, value);
} else {
add_collection_operation_constraint_to_query(query, pred.predicateOperatorType, operation, value, operation);
}
}
void update_query_with_value_expression(RLMSchema *schema,
RLMObjectSchema *desc,
realm::Query &query,
NSString *keyPath,
id value,
NSComparisonPredicate *pred)
{
if (key_path_contains_collection_operator(keyPath)) {
update_query_with_collection_operator_expression(schema, desc, query, keyPath, value, pred);
return;
}
bool isAny = pred.comparisonPredicateModifier == NSAnyPredicateModifier;
ColumnReference column = column_reference_from_key_path(schema, desc, keyPath, isAny);
// check to see if this is a between query
if (pred.predicateOperatorType == NSBetweenPredicateOperatorType) {
add_between_constraint_to_query(query, std::move(column), value);
return;
}
// turn "key.path IN collection" into ored together ==. "collection IN key.path" is handled elsewhere.
if (pred.predicateOperatorType == NSInPredicateOperatorType) {
process_or_group(query, value, [&](id item) {
id normalized = value_from_constant_expression_or_value(item);
validate_property_value(column, normalized, @"Expected object of type %@ in IN clause for property '%@' on object of type '%@', but received: %@", desc, keyPath);
add_constraint_to_query(query, column.type(), NSEqualToPredicateOperatorType, pred.options, column, normalized);
});
return;
}
validate_property_value(column, value, @"Expected object of type %@ for property '%@' on object of type '%@', but received: %@", desc, keyPath);
if (pred.leftExpression.expressionType == NSKeyPathExpressionType) {
add_constraint_to_query(query, column.type(), pred.predicateOperatorType,
pred.options, std::move(column), value);
} else {
add_constraint_to_query(query, column.type(), pred.predicateOperatorType,
pred.options, value, std::move(column));
}
}
void update_query_with_column_expression(RLMSchema *schema, RLMObjectSchema *desc, Query &query,
NSString *leftKeyPath, NSString *rightKeyPath,
NSComparisonPredicate *predicate)
{
bool left_key_path_contains_collection_operator = key_path_contains_collection_operator(leftKeyPath);
bool right_key_path_contains_collection_operator = key_path_contains_collection_operator(rightKeyPath);
if (left_key_path_contains_collection_operator && right_key_path_contains_collection_operator) {
@throw RLMPredicateException(@"Unsupported predicate", @"Key paths including aggregate operations cannot be compared with other aggregate operations.");
}
if (left_key_path_contains_collection_operator) {
CollectionOperation left = collection_operation_from_key_path(schema, desc, leftKeyPath);
ColumnReference right = column_reference_from_key_path(schema, desc, rightKeyPath, false);
left.validate_comparison(right);
add_collection_operation_constraint_to_query(query, predicate.predicateOperatorType, left, left, std::move(right));
return;
}
if (right_key_path_contains_collection_operator) {
ColumnReference left = column_reference_from_key_path(schema, desc, leftKeyPath, false);
CollectionOperation right = collection_operation_from_key_path(schema, desc, rightKeyPath);
right.validate_comparison(left);
add_collection_operation_constraint_to_query(query, predicate.predicateOperatorType, right, std::move(left), right);
return;
}
bool isAny = false;
ColumnReference left = column_reference_from_key_path(schema, desc, leftKeyPath, isAny);
ColumnReference right = column_reference_from_key_path(schema, desc, rightKeyPath, isAny);
// NOTE: It's assumed that column type must match and no automatic type conversion is supported.
RLMPrecondition(left.type() == right.type(),
RLMPropertiesComparisonTypeMismatchException,
RLMPropertiesComparisonTypeMismatchReason,
RLMTypeToString(left.type()),
RLMTypeToString(right.type()));
// TODO: Should we handle special case where left row is the same as right row (tautology)
add_constraint_to_query(query, left.type(), predicate.predicateOperatorType, predicate.options,
std::move(left), std::move(right));
}
// Identify expressions of the form [SELF valueForKeyPath:]
bool is_self_value_for_key_path_function_expression(NSExpression *expression)
{
if (expression.expressionType != NSFunctionExpressionType)
return false;
if (expression.operand.expressionType != NSEvaluatedObjectExpressionType)
return false;
return [expression.function isEqualToString:@"valueForKeyPath:"];
}
// -[NSPredicate predicateWithSubtitutionVariables:] results in function expressions of the form [SELF valueForKeyPath:]
// that update_query_with_predicate cannot handle. Replace such expressions with equivalent NSKeyPathExpressionType expressions.
NSExpression *simplify_self_value_for_key_path_function_expression(NSExpression *expression) {
if (is_self_value_for_key_path_function_expression(expression)) {
if (NSString *keyPath = [expression.arguments.firstObject keyPath]) {
return [NSExpression expressionForKeyPath:keyPath];
}
}
return expression;
}
void update_query_with_subquery_count_expression(RLMSchema *schema, RLMObjectSchema *objectSchema, realm::Query& query,
NSExpression *subqueryExpression, NSPredicateOperatorType operatorType, NSExpression *right) {
if (right.expressionType != NSConstantValueExpressionType || ![right.constantValue isKindOfClass:[NSNumber class]]) {
@throw RLMPredicateException(@"Invalid predicate expression", @"SUBQUERY(…).@count is only supported when compared with a constant number.");
}
int64_t value = [right.constantValue integerValue];
ColumnReference collectionColumn = column_reference_from_key_path(schema, objectSchema, [subqueryExpression.collection keyPath], true);
RLMObjectSchema *collectionMemberObjectSchema = schema[collectionColumn.property().objectClassName];
// Eliminate references to the iteration variable in the subquery.
NSPredicate *subqueryPredicate = [subqueryExpression.predicate predicateWithSubstitutionVariables:@{ subqueryExpression.variable : [NSExpression expressionForEvaluatedObject] }];
subqueryPredicate = transformPredicate(subqueryPredicate, simplify_self_value_for_key_path_function_expression);
Query subquery = collectionMemberObjectSchema.table->where();
RLMUpdateQueryWithPredicate(&subquery, subqueryPredicate, schema, collectionMemberObjectSchema);
add_numeric_constraint_to_query(query, RLMPropertyTypeInt, operatorType, collectionColumn.resolveWithSubquery<LinkList>(query, std::move(subquery)).count(), value);
}
void update_query_with_function_subquery_expression(RLMSchema *schema, RLMObjectSchema *objectSchema, realm::Query& query,
NSExpression *functionExpression, NSPredicateOperatorType operatorType, NSExpression *right) {
if (![functionExpression.function isEqualToString:@"valueForKeyPath:"] || functionExpression.arguments.count != 1) {
@throw RLMPredicateException(@"Invalid predicate", @"The '%@' function is not supported on the result of a SUBQUERY.", functionExpression.function);
}
NSExpression *keyPathExpression = functionExpression.arguments.firstObject;
if ([keyPathExpression.keyPath isEqualToString:@"@count"]) {
update_query_with_subquery_count_expression(schema, objectSchema, query, functionExpression.operand, operatorType, right);
} else {
@throw RLMPredicateException(@"Invalid predicate", @"SUBQUERY is only supported when immediately followed by .@count that is compared with a constant number.");
}
}
void update_query_with_function_expression(RLMSchema *schema, RLMObjectSchema *objectSchema, realm::Query& query,
NSExpression *functionExpression, NSPredicateOperatorType operatorType, NSExpression *right) {
if (functionExpression.operand.expressionType == NSSubqueryExpressionType) {
update_query_with_function_subquery_expression(schema, objectSchema, query, functionExpression, operatorType, right);
} else {
@throw RLMPredicateException(@"Invalid predicate", @"The '%@' function is not supported.", functionExpression.function);
}
}
void update_query_with_predicate(NSPredicate *predicate, RLMSchema *schema,
RLMObjectSchema *objectSchema, realm::Query &query)
{
// Compound predicates.
if ([predicate isMemberOfClass:[NSCompoundPredicate class]]) {
NSCompoundPredicate *comp = (NSCompoundPredicate *)predicate;
switch ([comp compoundPredicateType]) {
case NSAndPredicateType:
if (comp.subpredicates.count) {
// Add all of the subpredicates.
query.group();
for (NSPredicate *subp in comp.subpredicates) {
update_query_with_predicate(subp, schema, objectSchema, query);
}
query.end_group();
} else {
// NSCompoundPredicate's documentation states that an AND predicate with no subpredicates evaluates to TRUE.
query.and_query(std::unique_ptr<Expression>(new TrueExpression));
}
break;
case NSOrPredicateType: {
// Add all of the subpredicates with ors inbetween.
process_or_group(query, comp.subpredicates, [&](__unsafe_unretained NSPredicate *const subp) {
update_query_with_predicate(subp, schema, objectSchema, query);
});
break;
}
case NSNotPredicateType:
// Add the negated subpredicate
query.Not();
update_query_with_predicate(comp.subpredicates.firstObject, schema, objectSchema, query);
break;
default:
@throw RLMPredicateException(@"Invalid compound predicate type",
@"Only support AND, OR and NOT predicate types");
}
}
else if ([predicate isMemberOfClass:[NSComparisonPredicate class]]) {
NSComparisonPredicate *compp = (NSComparisonPredicate *)predicate;
// check modifier
RLMPrecondition(compp.comparisonPredicateModifier != NSAllPredicateModifier,
@"Invalid predicate", @"ALL modifier not supported");
NSExpressionType exp1Type = compp.leftExpression.expressionType;
NSExpressionType exp2Type = compp.rightExpression.expressionType;
if (compp.comparisonPredicateModifier == NSAnyPredicateModifier) {
// for ANY queries
RLMPrecondition(exp1Type == NSKeyPathExpressionType && exp2Type == NSConstantValueExpressionType,
@"Invalid predicate",
@"Predicate with ANY modifier must compare a KeyPath with RLMArray with a value");
}
if (compp.predicateOperatorType == NSBetweenPredicateOperatorType || compp.predicateOperatorType == NSInPredicateOperatorType) {
// Inserting an array via %@ gives NSConstantValueExpressionType, but including it directly gives NSAggregateExpressionType
if (exp1Type == NSKeyPathExpressionType && (exp2Type == NSAggregateExpressionType || exp2Type == NSConstantValueExpressionType)) {
// "key.path IN %@", "key.path IN {…}", "key.path BETWEEN %@", or "key.path BETWEEN {…}".
exp2Type = NSConstantValueExpressionType;
}
else if (compp.predicateOperatorType == NSInPredicateOperatorType && exp1Type == NSConstantValueExpressionType && exp2Type == NSKeyPathExpressionType) {
// "%@ IN key.path" is equivalent to "ANY key.path IN %@". Rewrite the former into the latter.
compp = [NSComparisonPredicate predicateWithLeftExpression:compp.rightExpression rightExpression:compp.leftExpression
modifier:NSAnyPredicateModifier type:NSEqualToPredicateOperatorType options:0];
exp1Type = NSKeyPathExpressionType;
exp2Type = NSConstantValueExpressionType;
}
else {
if (compp.predicateOperatorType == NSBetweenPredicateOperatorType) {
@throw RLMPredicateException(@"Invalid predicate",
@"Predicate with BETWEEN operator must compare a KeyPath with an aggregate with two values");
}
else if (compp.predicateOperatorType == NSInPredicateOperatorType) {
@throw RLMPredicateException(@"Invalid predicate",
@"Predicate with IN operator must compare a KeyPath with an aggregate");
}
}
}
if (exp1Type == NSKeyPathExpressionType && exp2Type == NSKeyPathExpressionType) {
// both expression are KeyPaths
update_query_with_column_expression(schema, objectSchema, query, compp.leftExpression.keyPath,
compp.rightExpression.keyPath, compp);
}
else if (exp1Type == NSKeyPathExpressionType && exp2Type == NSConstantValueExpressionType) {
// comparing keypath to value
update_query_with_value_expression(schema, objectSchema, query, compp.leftExpression.keyPath,
compp.rightExpression.constantValue, compp);
}
else if (exp1Type == NSConstantValueExpressionType && exp2Type == NSKeyPathExpressionType) {
// comparing value to keypath
update_query_with_value_expression(schema, objectSchema, query, compp.rightExpression.keyPath,
compp.leftExpression.constantValue, compp);
}
else if (exp1Type == NSFunctionExpressionType) {
update_query_with_function_expression(schema, objectSchema, query, compp.leftExpression, compp.predicateOperatorType, compp.rightExpression);
}
else if (exp1Type == NSSubqueryExpressionType) {
// The subquery expressions that we support are handled by the NSFunctionExpressionType case above.
@throw RLMPredicateException(@"Invalid predicate expression", @"SUBQUERY is only supported when immediately followed by .@count.");
}
else {
@throw RLMPredicateException(@"Invalid predicate expressions",
@"Predicate expressions must compare a keypath and another keypath or a constant value");
}
}
else if ([predicate isEqual:[NSPredicate predicateWithValue:YES]]) {
query.and_query(std::unique_ptr<Expression>(new TrueExpression));
} else if ([predicate isEqual:[NSPredicate predicateWithValue:NO]]) {
query.and_query(std::unique_ptr<Expression>(new FalseExpression));
}
else {
// invalid predicate type
@throw RLMPredicateException(@"Invalid predicate",
@"Only support compound, comparison, and constant predicates");
}
}
RLMProperty *RLMValidatedPropertyForSort(RLMObjectSchema *schema, NSString *propName) {
// validate
RLMPrecondition([propName rangeOfString:@"."].location == NSNotFound, @"Invalid sort property", @"Cannot sort on '%@': sorting on key paths is not supported.", propName);
RLMProperty *prop = schema[propName];
RLMPrecondition(prop, @"Invalid sort property", @"Cannot sort on property '%@' on object of type '%@': property not found.", propName, schema.className);
switch (prop.type) {
case RLMPropertyTypeBool:
case RLMPropertyTypeDate:
case RLMPropertyTypeDouble:
case RLMPropertyTypeFloat:
case RLMPropertyTypeInt:
case RLMPropertyTypeString:
break;
default:
@throw RLMPredicateException(@"Invalid sort property type",
@"Cannot sort on property '%@' on object of type '%@': sorting is only supported on bool, date, double, float, integer, and string properties, but property is of type %@.", propName, schema.className, RLMTypeToString(prop.type));
}
return prop;
}
} // namespace
void RLMUpdateQueryWithPredicate(realm::Query *query, NSPredicate *predicate, RLMSchema *schema,
RLMObjectSchema *objectSchema)
{
// passing a nil predicate is a no-op
if (!predicate) {
return;
}
RLMPrecondition([predicate isKindOfClass:NSPredicate.class], @"Invalid argument",
@"predicate must be an NSPredicate object");
update_query_with_predicate(predicate, schema, objectSchema, *query);
// Test the constructed query in core
std::string validateMessage = query->validate();
RLMPrecondition(validateMessage.empty(), @"Invalid query", @"%.*s",
(int)validateMessage.size(), validateMessage.c_str());
}
realm::SortOrder RLMSortOrderFromDescriptors(RLMObjectSchema *objectSchema, NSArray *descriptors) {
realm::SortOrder sort;
sort.columnIndices.reserve(descriptors.count);
sort.ascending.reserve(descriptors.count);
for (RLMSortDescriptor *descriptor in descriptors) {
sort.columnIndices.push_back(RLMValidatedPropertyForSort(objectSchema, descriptor.property).column);
sort.ascending.push_back(descriptor.ascending);
}
return sort;
}