123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- ////////////////////////////////////////////////////////////////////////////
- //
- // Copyright 2014 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>
- #ifdef __cplusplus
- extern "C" {
- #endif
- @class RLMRealm, RLMSchema, RLMObjectBase, RLMResults, RLMProperty;
- typedef NS_ENUM(NSUInteger, RLMUpdatePolicy) {
- RLMUpdatePolicyError = 1,
- RLMUpdatePolicyUpdateChanged = 3,
- RLMUpdatePolicyUpdateAll = 2,
- };
- NS_ASSUME_NONNULL_BEGIN
- void RLMVerifyHasPrimaryKey(Class cls);
- //
- // Accessor Creation
- //
- // create or get cached accessors for the given schema
- void RLMRealmCreateAccessors(RLMSchema *schema);
- //
- // Adding, Removing, Getting Objects
- //
- // add an object to the given realm
- void RLMAddObjectToRealm(RLMObjectBase *object, RLMRealm *realm, RLMUpdatePolicy);
- // delete an object from its realm
- void RLMDeleteObjectFromRealm(RLMObjectBase *object, RLMRealm *realm);
- // deletes all objects from a realm
- void RLMDeleteAllObjectsFromRealm(RLMRealm *realm);
- // get objects of a given class
- RLMResults *RLMGetObjects(RLMRealm *realm, NSString *objectClassName, NSPredicate * _Nullable predicate)
- NS_RETURNS_RETAINED;
- // get an object with the given primary key
- id _Nullable RLMGetObject(RLMRealm *realm, NSString *objectClassName, id _Nullable key) NS_RETURNS_RETAINED;
- // create object from array or dictionary
- RLMObjectBase *RLMCreateObjectInRealmWithValue(RLMRealm *realm, NSString *className,
- id _Nullable value, RLMUpdatePolicy updatePolicy)
- NS_RETURNS_RETAINED;
- //
- // Accessor Creation
- //
- // switch List<> properties from being backed by unmanaged RLMArrays to RLMManagedArray
- void RLMInitializeSwiftAccessorGenerics(RLMObjectBase *object);
- #ifdef __cplusplus
- }
- namespace realm {
- class Table;
- template<typename T> class BasicRowExpr;
- using RowExpr = BasicRowExpr<Table>;
- }
- class RLMClassInfo;
- // Create accessors
- RLMObjectBase *RLMCreateObjectAccessor(RLMClassInfo& info, NSUInteger index) NS_RETURNS_RETAINED;
- RLMObjectBase *RLMCreateObjectAccessor(RLMClassInfo& info, realm::RowExpr row) NS_RETURNS_RETAINED;
- #endif
- NS_ASSUME_NONNULL_END
|