RLMSet_Private.hpp 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2020 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 "RLMSet_Private.h"
  19. #import "RLMCollection_Private.hpp"
  20. #import "RLMResults_Private.hpp"
  21. namespace realm {
  22. class SetBase;
  23. class CollectionBase;
  24. namespace object_store {
  25. class Set;
  26. }
  27. }
  28. @class RLMObjectBase, RLMObjectSchema, RLMProperty;
  29. class RLMClassInfo;
  30. class RLMObservationInfo;
  31. @interface RLMSet () {
  32. @protected
  33. NSString *_objectClassName;
  34. RLMPropertyType _type;
  35. BOOL _optional;
  36. @public
  37. // The name of the property which this RLMSet represents
  38. NSString *_key;
  39. __weak RLMObjectBase *_parentObject;
  40. }
  41. @end
  42. @interface RLMManagedSet () <RLMFastEnumerable>
  43. - (RLMManagedSet *)initWithBackingCollection:(realm::object_store::Set)set
  44. parentInfo:(RLMClassInfo *)parentInfo
  45. property:(__unsafe_unretained RLMProperty *const)property;
  46. - (bool)isBackedBySet:(realm::object_store::Set const&)set;
  47. // deletes all objects in the RLMSet from their containing realms
  48. - (void)deleteObjectsFromRealm;
  49. @end
  50. void RLMValidateSetObservationKey(NSString *keyPath, RLMSet *set);
  51. // Initialize the observation info for a set if needed
  52. void RLMEnsureSetObservationInfo(std::unique_ptr<RLMObservationInfo>& info,
  53. NSString *keyPath, RLMSet *set, id observed);