RLMCollection_Private.hpp 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2016 Realm Inc.
  4. //
  5. // Licensed under the Apache License, Version 2.0 (the "License");
  6. // you may not use this file except in compliance with the License.
  7. // You may obtain a copy of the License at
  8. //
  9. // http://www.apache.org/licenses/LICENSE-2.0
  10. //
  11. // Unless required by applicable law or agreed to in writing, software
  12. // distributed under the License is distributed on an "AS IS" BASIS,
  13. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. // See the License for the specific language governing permissions and
  15. // limitations under the License.
  16. //
  17. ////////////////////////////////////////////////////////////////////////////
  18. #import <Realm/RLMCollection_Private.h>
  19. #import <realm/object-store/collection_notifications.hpp>
  20. #import <vector>
  21. #import <mutex>
  22. namespace realm {
  23. class List;
  24. class Obj;
  25. class Results;
  26. class TableView;
  27. struct CollectionChangeSet;
  28. struct ColKey;
  29. namespace object_store {
  30. class Collection;
  31. class Dictionary;
  32. class Set;
  33. }
  34. }
  35. class RLMClassInfo;
  36. @class RLMFastEnumerator, RLMManagedArray, RLMManagedSet, RLMManagedDictionary, RLMProperty, RLMObjectBase;
  37. @protocol RLMFastEnumerable
  38. @property (nonatomic, readonly) RLMRealm *realm;
  39. @property (nonatomic, readonly) RLMClassInfo *objectInfo;
  40. @property (nonatomic, readonly) NSUInteger count;
  41. - (realm::TableView)tableView;
  42. - (RLMFastEnumerator *)fastEnumerator;
  43. @end
  44. // An object which encapsulates the shared logic for fast-enumerating RLMArray
  45. // RLMSet and RLMResults, and has a buffer to store strong references to the current
  46. // set of enumerated items
  47. @interface RLMFastEnumerator : NSObject
  48. - (instancetype)initWithBackingCollection:(realm::object_store::Collection const&)backingCollection
  49. collection:(id)collection
  50. classInfo:(RLMClassInfo&)info;
  51. - (instancetype)initWithBackingDictionary:(realm::object_store::Dictionary const&)backingDictionary
  52. dictionary:(RLMManagedDictionary *)dictionary
  53. classInfo:(RLMClassInfo&)info;
  54. - (instancetype)initWithResults:(realm::Results&)results
  55. collection:(id)collection
  56. classInfo:(RLMClassInfo&)info;
  57. // Detach this enumerator from the source collection. Must be called before the
  58. // source collection is changed.
  59. - (void)detach;
  60. - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state
  61. count:(NSUInteger)len;
  62. @end
  63. NSUInteger RLMFastEnumerate(NSFastEnumerationState *state, NSUInteger len, id<RLMFastEnumerable> collection);
  64. @interface RLMNotificationToken ()
  65. - (void)suppressNextNotification;
  66. - (RLMRealm *)realm;
  67. @end
  68. @interface RLMCollectionChange ()
  69. - (instancetype)initWithChanges:(realm::CollectionChangeSet)indices;
  70. @end
  71. @interface RLMCancellationToken : RLMNotificationToken {
  72. @public
  73. __unsafe_unretained RLMRealm *_realm;
  74. realm::NotificationToken _token;
  75. std::mutex _mutex;
  76. }
  77. @end
  78. realm::object_store::Set& RLMGetBackingCollection(RLMManagedSet *);
  79. realm::object_store::Dictionary& RLMGetBackingCollection(RLMManagedDictionary *);
  80. realm::List& RLMGetBackingCollection(RLMManagedArray *);
  81. realm::Results& RLMGetBackingCollection(RLMResults *);
  82. template<typename RLMCollection>
  83. RLMNotificationToken *RLMAddNotificationBlock(RLMCollection *collection,
  84. void (^block)(id, RLMCollectionChange *, NSError *),
  85. NSArray<NSString *> *keyPaths,
  86. dispatch_queue_t queue);
  87. template<typename Collection>
  88. NSArray *RLMCollectionValueForKey(Collection& collection, NSString *key, RLMClassInfo& info);
  89. std::vector<std::pair<std::string, bool>> RLMSortDescriptorsToKeypathArray(NSArray<RLMSortDescriptor *> *properties);
  90. realm::ColKey columnForProperty(NSString *propertyName,
  91. realm::object_store::Collection const& backingCollection,
  92. RLMClassInfo *objectInfo,
  93. RLMPropertyType propertyType,
  94. RLMCollectionType collectionType);
  95. static inline bool canAggregate(RLMPropertyType type, bool allowDate) {
  96. switch (type) {
  97. case RLMPropertyTypeInt:
  98. case RLMPropertyTypeFloat:
  99. case RLMPropertyTypeDouble:
  100. case RLMPropertyTypeDecimal128:
  101. case RLMPropertyTypeAny:
  102. return true;
  103. case RLMPropertyTypeDate:
  104. return allowDate;
  105. default:
  106. return false;
  107. }
  108. }