RLMDictionary_Private.hpp 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2021 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 "RLMDictionary_Private.h"
  19. #import "RLMCollection_Private.hpp"
  20. #import "RLMResults_Private.hpp"
  21. #import <realm/table_ref.hpp>
  22. namespace realm {
  23. class Results;
  24. }
  25. @class RLMObjectBase, RLMObjectSchema, RLMProperty;
  26. class RLMClassInfo;
  27. class RLMObservationInfo;
  28. @interface RLMDictionary () {
  29. @protected
  30. NSString *_objectClassName;
  31. RLMPropertyType _type;
  32. BOOL _optional;
  33. @public
  34. // The name of the property which this RLMDictionary represents
  35. NSString *_key;
  36. __weak RLMObjectBase *_parentObject;
  37. }
  38. @end
  39. @interface RLMManagedDictionary () <RLMFastEnumerable>
  40. - (RLMManagedDictionary *)initWithBackingCollection:(realm::object_store::Dictionary)dictionary
  41. parentInfo:(RLMClassInfo *)parentInfo
  42. property:(__unsafe_unretained RLMProperty *const)property;
  43. - (RLMManagedDictionary *)initWithParent:(realm::Obj)parent
  44. property:(RLMProperty *)property
  45. parentInfo:(RLMClassInfo&)info;
  46. - (bool)isBackedByDictionary:(realm::object_store::Dictionary const&)dictionary;
  47. // deletes all objects in the RLMDictionary from their containing realms
  48. - (void)deleteObjectsFromRealm;
  49. @end
  50. void RLMDictionaryValidateObservationKey(__unsafe_unretained NSString *const keyPath,
  51. __unsafe_unretained RLMDictionary *const collection);
  52. // Initialize the observation info for an dictionary if needed
  53. void RLMEnsureDictionaryObservationInfo(std::unique_ptr<RLMObservationInfo>& info,
  54. NSString *keyPath, RLMDictionary *array, id observed);