123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- ////////////////////////////////////////////////////////////////////////////
- //
- // Copyright 2016 Realm Inc.
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- //
- ////////////////////////////////////////////////////////////////////////////
- #import <Foundation/Foundation.h>
- #import <realm/table_ref.hpp>
- #import <unordered_map>
- #import <vector>
- namespace realm {
- class ObjectSchema;
- class Schema;
- struct Property;
- struct ColKey;
- }
- class RLMObservationInfo;
- @class RLMRealm, RLMSchema, RLMObjectSchema, RLMProperty;
- NS_ASSUME_NONNULL_BEGIN
- namespace std {
- // Add specializations so that NSString can be used as the key for hash containers
- template<> struct hash<NSString *> {
- size_t operator()(__unsafe_unretained NSString *const str) const {
- return [str hash];
- }
- };
- template<> struct equal_to<NSString *> {
- bool operator()(__unsafe_unretained NSString * lhs, __unsafe_unretained NSString *rhs) const {
- return [lhs isEqualToString:rhs];
- }
- };
- }
- // The per-RLMRealm object schema information which stores the cached table
- // reference, handles table column lookups, and tracks observed objects
- class RLMClassInfo {
- public:
- RLMClassInfo(RLMRealm *, RLMObjectSchema *, const realm::ObjectSchema *);
- __unsafe_unretained RLMRealm *const realm;
- __unsafe_unretained RLMObjectSchema *const rlmObjectSchema;
- const realm::ObjectSchema *const objectSchema;
- // Storage for the functionality in RLMObservation for handling indirect
- // changes to KVO-observed things
- std::vector<RLMObservationInfo *> observedObjects;
- // Get the table for this object type. Will return nullptr only if it's a
- // read-only Realm that is missing the table entirely.
- realm::TableRef table() const;
- // Get the RLMProperty for a given table column, or `nil` if it is a column
- // not used by the current schema
- RLMProperty *_Nullable propertyForTableColumn(realm::ColKey) const noexcept;
- // Get the RLMProperty that's used as the primary key, or `nil` if there is
- // no primary key for the current schema
- RLMProperty *_Nullable propertyForPrimaryKey() const noexcept;
- // Get the table column for the given property. The property must be a valid
- // persisted property.
- realm::ColKey tableColumn(NSString *propertyName) const;
- realm::ColKey tableColumn(RLMProperty *property) const;
- // Get the info for the target of the link at the given property index.
- RLMClassInfo &linkTargetType(size_t propertyIndex);
- // Get the info for the target of the given property
- RLMClassInfo &linkTargetType(realm::Property const& property);
- // Get the corresponding ClassInfo for the given Realm
- RLMClassInfo &freeze(RLMRealm *);
- };
- // A per-RLMRealm object schema map which stores RLMClassInfo keyed on the name
- class RLMSchemaInfo {
- using impl = std::unordered_map<NSString *, RLMClassInfo>;
- public:
- RLMSchemaInfo() = default;
- RLMSchemaInfo(RLMRealm *realm);
- RLMSchemaInfo clone(realm::Schema const& source_schema, RLMRealm *target_realm);
- // Look up by name, throwing if it's not present
- RLMClassInfo& operator[](NSString *name);
- impl::iterator begin() noexcept;
- impl::iterator end() noexcept;
- impl::const_iterator begin() const noexcept;
- impl::const_iterator end() const noexcept;
- private:
- std::unordered_map<NSString *, RLMClassInfo> m_objects;
- };
- NS_ASSUME_NONNULL_END
|