RLMSwiftValueStorage.h 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 <Realm/RLMConstants.h>
  19. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  20. @class RLMObjectBase, RLMProperty;
  21. /// This class implements the backing storage for `RealmProperty<>` and `RealmOptional<>`.
  22. /// This class should not be subclassed or used directly.
  23. @interface RLMSwiftValueStorage : NSProxy
  24. - (instancetype)init;
  25. @end
  26. /// Retrieves the value that is stored, or nil if it is empty.
  27. FOUNDATION_EXTERN id _Nullable RLMGetSwiftValueStorage(RLMSwiftValueStorage *);
  28. /// Sets a value on the property this instance represents for an object.
  29. FOUNDATION_EXTERN void RLMSetSwiftValueStorage(RLMSwiftValueStorage *, id _Nullable);
  30. /// Initialises managed accessors on an instance of `RLMSwiftValueStorage`
  31. /// @param parent The enclosing parent object.
  32. /// @param prop The property which this class represents.
  33. FOUNDATION_EXTERN void RLMInitializeManagedSwiftValueStorage(RLMSwiftValueStorage *,
  34. RLMObjectBase *parent,
  35. RLMProperty *prop);
  36. /// Initialises unmanaged accessors on an instance of `RLMSwiftValueStorage`
  37. /// @param parent The enclosing parent object.
  38. /// @param prop The property which this class represents.
  39. FOUNDATION_EXTERN void RLMInitializeUnmanagedSwiftValueStorage(RLMSwiftValueStorage *,
  40. RLMObjectBase *parent,
  41. RLMProperty *prop);
  42. /// Gets the property name for the RealmProperty instance. This is required for tracing the key path on
  43. /// objects that use the legacy property declaration syntax.
  44. FOUNDATION_EXTERN NSString *RLMSwiftValueStorageGetPropertyName(RLMSwiftValueStorage *);
  45. RLM_HEADER_AUDIT_END(nullability, sendability)