RLMSwiftProperty.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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 <Foundation/Foundation.h>
  19. #import <stdint.h>
  20. @class RLMObjectBase, RLMArray, RLMSet;
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. RLM_HEADER_AUDIT_BEGIN(nullability)
  25. #define REALM_FOR_EACH_SWIFT_PRIMITIVE_TYPE(macro) \
  26. macro(bool, Bool, bool) \
  27. macro(double, Double, double) \
  28. macro(float, Float, float) \
  29. macro(int64_t, Int64, int)
  30. #define REALM_FOR_EACH_SWIFT_OBJECT_TYPE(macro) \
  31. macro(NSString, String, string) \
  32. macro(NSDate, Date, date) \
  33. macro(NSData, Data, data) \
  34. macro(NSUUID, UUID, uuid) \
  35. macro(RLMDecimal128, Decimal128, decimal128) \
  36. macro(RLMObjectId, ObjectId, objectId)
  37. #define REALM_SWIFT_PROPERTY_ACCESSOR(objc, swift, rlmtype) \
  38. objc RLMGetSwiftProperty##swift(RLMObjectBase *, uint16_t); \
  39. objc RLMGetSwiftProperty##swift##Optional(RLMObjectBase *, uint16_t, bool *); \
  40. void RLMSetSwiftProperty##swift(RLMObjectBase *, uint16_t, objc);
  41. REALM_FOR_EACH_SWIFT_PRIMITIVE_TYPE(REALM_SWIFT_PROPERTY_ACCESSOR)
  42. #undef REALM_SWIFT_PROPERTY_ACCESSOR
  43. #define REALM_SWIFT_PROPERTY_ACCESSOR(objc, swift, rlmtype) \
  44. objc *_Nullable RLMGetSwiftProperty##swift(RLMObjectBase *, uint16_t); \
  45. void RLMSetSwiftProperty##swift(RLMObjectBase *, uint16_t, objc *_Nullable);
  46. REALM_FOR_EACH_SWIFT_OBJECT_TYPE(REALM_SWIFT_PROPERTY_ACCESSOR)
  47. #undef REALM_SWIFT_PROPERTY_ACCESSOR
  48. id<RLMValue> _Nullable RLMGetSwiftPropertyAny(RLMObjectBase *, uint16_t);
  49. void RLMSetSwiftPropertyAny(RLMObjectBase *, uint16_t, id<RLMValue>);
  50. RLMObjectBase *_Nullable RLMGetSwiftPropertyObject(RLMObjectBase *, uint16_t);
  51. void RLMSetSwiftPropertyNil(RLMObjectBase *, uint16_t);
  52. void RLMSetSwiftPropertyObject(RLMObjectBase *, uint16_t, RLMObjectBase *_Nullable);
  53. RLMArray *_Nonnull RLMGetSwiftPropertyArray(RLMObjectBase *obj, uint16_t);
  54. RLMSet *_Nonnull RLMGetSwiftPropertySet(RLMObjectBase *obj, uint16_t);
  55. RLMDictionary *_Nonnull RLMGetSwiftPropertyMap(RLMObjectBase *obj, uint16_t);
  56. RLM_HEADER_AUDIT_END(nullability)
  57. #ifdef __cplusplus
  58. } // extern "C"
  59. #endif