RLMObjectSchema.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2014 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 RLMProperty;
  21. /**
  22. This class represents Realm model object schemas.
  23. When using Realm, `RLMObjectSchema` instances allow performing migrations and
  24. introspecting the database's schema.
  25. Object schemas map to tables in the core database.
  26. */
  27. RLM_SWIFT_SENDABLE RLM_FINAL // not actually immutable, but the public API kinda is
  28. @interface RLMObjectSchema : NSObject<NSCopying>
  29. #pragma mark - Properties
  30. /**
  31. An array of `RLMProperty` instances representing the managed properties of a class described by the schema.
  32. @see `RLMProperty`
  33. */
  34. @property (nonatomic, readonly, copy) NSArray<RLMProperty *> *properties;
  35. /**
  36. The name of the class the schema describes.
  37. */
  38. @property (nonatomic, readonly) NSString *className;
  39. /**
  40. The property which serves as the primary key for the class the schema describes, if any.
  41. */
  42. @property (nonatomic, readonly, nullable) RLMProperty *primaryKeyProperty;
  43. /**
  44. Whether this object type is embedded.
  45. */
  46. @property (nonatomic, readonly) BOOL isEmbedded;
  47. /**
  48. Whether this object is asymmetric.
  49. */
  50. @property (nonatomic, readonly) BOOL isAsymmetric;
  51. #pragma mark - Methods
  52. /**
  53. Retrieves an `RLMProperty` object by the property name.
  54. @param propertyName The property's name.
  55. @return An `RLMProperty` object, or `nil` if there is no property with the given name.
  56. */
  57. - (nullable RLMProperty *)objectForKeyedSubscript:(NSString *)propertyName;
  58. /**
  59. Returns whether two `RLMObjectSchema` instances are equal.
  60. */
  61. - (BOOL)isEqualToObjectSchema:(RLMObjectSchema *)objectSchema;
  62. @end
  63. RLM_HEADER_AUDIT_END(nullability, sendability)