RLMCollection_Private.hpp 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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/RLMRealm.h>
  20. #import <realm/keys.hpp>
  21. #import <realm/object-store/collection_notifications.hpp>
  22. #import <vector>
  23. #import <mutex>
  24. namespace realm {
  25. class CollectionChangeCallback;
  26. class List;
  27. class Obj;
  28. class Results;
  29. class TableView;
  30. struct CollectionChangeSet;
  31. struct ColKey;
  32. namespace object_store {
  33. class Collection;
  34. class Dictionary;
  35. class Set;
  36. }
  37. }
  38. class RLMClassInfo;
  39. @class RLMFastEnumerator, RLMManagedArray, RLMManagedSet, RLMManagedDictionary, RLMProperty, RLMObjectBase;
  40. @protocol RLMCollectionPrivate
  41. @property (nonatomic, readonly) RLMRealm *realm;
  42. @property (nonatomic, readonly) RLMClassInfo *objectInfo;
  43. @property (nonatomic, readonly) NSUInteger count;
  44. - (realm::TableView)tableView;
  45. - (RLMFastEnumerator *)fastEnumerator;
  46. - (realm::NotificationToken)addNotificationCallback:(id)block
  47. keyPaths:(std::optional<std::vector<std::vector<std::pair<realm::TableKey, realm::ColKey>>>>&&)keyPaths;
  48. @end
  49. // An object which encapsulates the shared logic for fast-enumerating RLMArray
  50. // RLMSet and RLMResults, and has a buffer to store strong references to the current
  51. // set of enumerated items
  52. @interface RLMFastEnumerator : NSObject
  53. - (instancetype)initWithBackingCollection:(realm::object_store::Collection const&)backingCollection
  54. collection:(id)collection
  55. classInfo:(RLMClassInfo&)info;
  56. - (instancetype)initWithBackingDictionary:(realm::object_store::Dictionary const&)backingDictionary
  57. dictionary:(RLMManagedDictionary *)dictionary
  58. classInfo:(RLMClassInfo&)info;
  59. - (instancetype)initWithResults:(realm::Results&)results
  60. collection:(id)collection
  61. classInfo:(RLMClassInfo&)info;
  62. // Detach this enumerator from the source collection. Must be called before the
  63. // source collection is changed.
  64. - (void)detach;
  65. - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state
  66. count:(NSUInteger)len;
  67. @end
  68. NSUInteger RLMFastEnumerate(NSFastEnumerationState *state, NSUInteger len, id<RLMCollectionPrivate> collection);
  69. @interface RLMNotificationToken ()
  70. - (void)suppressNextNotification;
  71. - (RLMRealm *)realm;
  72. @end
  73. @interface RLMCollectionChange ()
  74. - (instancetype)initWithChanges:(realm::CollectionChangeSet)indices;
  75. @end
  76. @interface RLMCancellationToken : RLMNotificationToken {
  77. @public
  78. __unsafe_unretained RLMRealm *_realm;
  79. realm::NotificationToken _token;
  80. std::mutex _mutex;
  81. }
  82. @end
  83. realm::CollectionChangeCallback RLMWrapCollectionChangeCallback(void (^block)(id, id, NSError *),
  84. id collection, bool skipFirst);
  85. template<typename Collection>
  86. NSArray *RLMCollectionValueForKey(Collection& collection, NSString *key, RLMClassInfo& info);
  87. std::vector<std::pair<std::string, bool>> RLMSortDescriptorsToKeypathArray(NSArray<RLMSortDescriptor *> *properties);
  88. realm::ColKey columnForProperty(NSString *propertyName,
  89. realm::object_store::Collection const& backingCollection,
  90. RLMClassInfo *objectInfo,
  91. RLMPropertyType propertyType,
  92. RLMCollectionType collectionType);
  93. static inline bool canAggregate(RLMPropertyType type, bool allowDate) {
  94. switch (type) {
  95. case RLMPropertyTypeInt:
  96. case RLMPropertyTypeFloat:
  97. case RLMPropertyTypeDouble:
  98. case RLMPropertyTypeDecimal128:
  99. case RLMPropertyTypeAny:
  100. return true;
  101. case RLMPropertyTypeDate:
  102. return allowDate;
  103. default:
  104. return false;
  105. }
  106. }
  107. NSArray *RLMToIndexPathArray(realm::IndexSet const& set, NSUInteger section);