RLMSchema.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 RLMObjectSchema;
  21. /**
  22. `RLMSchema` instances represent collections of model object schemas managed by a Realm.
  23. When using Realm, `RLMSchema` instances allow performing migrations and
  24. introspecting the database's schema.
  25. Schemas map to collections of tables in the core database.
  26. */
  27. RLM_SWIFT_SENDABLE // not actually immutable, but the public API kinda is
  28. @interface RLMSchema : NSObject<NSCopying>
  29. #pragma mark - Properties
  30. /**
  31. An `NSArray` containing `RLMObjectSchema`s for all object types in the Realm.
  32. This property is intended to be used during migrations for dynamic introspection.
  33. @see `RLMObjectSchema`
  34. */
  35. @property (nonatomic, readonly, copy) NSArray<RLMObjectSchema *> *objectSchema;
  36. #pragma mark - Methods
  37. /**
  38. Returns an `RLMObjectSchema` for the given class name in the schema.
  39. @param className The object class name.
  40. @return An `RLMObjectSchema` for the given class in the schema.
  41. @see `RLMObjectSchema`
  42. */
  43. - (nullable RLMObjectSchema *)schemaForClassName:(NSString *)className;
  44. /**
  45. Looks up and returns an `RLMObjectSchema` for the given class name in the Realm.
  46. If there is no object of type `className` in the schema, an exception will be thrown.
  47. @param className The object class name.
  48. @return An `RLMObjectSchema` for the given class in this Realm.
  49. @see `RLMObjectSchema`
  50. */
  51. - (RLMObjectSchema *)objectForKeyedSubscript:(NSString *)className;
  52. /**
  53. Returns whether two `RLMSchema` instances are equivalent.
  54. */
  55. - (BOOL)isEqualToSchema:(RLMSchema *)schema;
  56. @end
  57. RLM_HEADER_AUDIT_END(nullability, sendability)