RLMArray.mm 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664
  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 "RLMArray_Private.hpp"
  19. #import "RLMObjectSchema.h"
  20. #import "RLMObjectStore.h"
  21. #import "RLMObject_Private.h"
  22. #import "RLMProperty_Private.h"
  23. #import "RLMQueryUtil.hpp"
  24. #import "RLMSchema_Private.h"
  25. #import "RLMSwiftSupport.h"
  26. #import "RLMThreadSafeReference_Private.hpp"
  27. #import "RLMUtil.hpp"
  28. // See -countByEnumeratingWithState:objects:count
  29. @interface RLMArrayHolder : NSObject {
  30. @public
  31. std::unique_ptr<id[]> items;
  32. }
  33. @end
  34. @implementation RLMArrayHolder
  35. @end
  36. @interface RLMArray () <RLMThreadConfined_Private>
  37. @end
  38. @implementation RLMArray {
  39. // Backing array when this instance is unmanaged
  40. @public
  41. NSMutableArray *_backingCollection;
  42. }
  43. #pragma mark - Initializers
  44. - (instancetype)initWithObjectClassName:(__unsafe_unretained NSString *const)objectClassName
  45. keyType:(__unused RLMPropertyType)keyType {
  46. return [self initWithObjectClassName:objectClassName];
  47. }
  48. - (instancetype)initWithObjectType:(RLMPropertyType)type optional:(BOOL)optional
  49. keyType:(__unused RLMPropertyType)keyType {
  50. return [self initWithObjectType:type optional:optional];
  51. }
  52. - (instancetype)initWithObjectClassName:(__unsafe_unretained NSString *const)objectClassName {
  53. REALM_ASSERT([objectClassName length] > 0);
  54. self = [super init];
  55. if (self) {
  56. _objectClassName = objectClassName;
  57. _type = RLMPropertyTypeObject;
  58. }
  59. return self;
  60. }
  61. - (instancetype)initWithObjectType:(RLMPropertyType)type optional:(BOOL)optional {
  62. self = [super init];
  63. if (self) {
  64. _type = type;
  65. _optional = optional;
  66. }
  67. return self;
  68. }
  69. - (void)setParent:(RLMObjectBase *)parentObject property:(RLMProperty *)property {
  70. _parentObject = parentObject;
  71. _key = property.name;
  72. _isLegacyProperty = property.isLegacy;
  73. }
  74. #pragma mark - Convenience wrappers used for all RLMArray types
  75. - (void)addObjects:(id<NSFastEnumeration>)objects {
  76. for (id obj in objects) {
  77. [self addObject:obj];
  78. }
  79. }
  80. - (void)addObject:(id)object {
  81. [self insertObject:object atIndex:self.count];
  82. }
  83. - (void)removeLastObject {
  84. NSUInteger count = self.count;
  85. if (count) {
  86. [self removeObjectAtIndex:count-1];
  87. }
  88. }
  89. - (id)objectAtIndexedSubscript:(NSUInteger)index {
  90. return [self objectAtIndex:index];
  91. }
  92. - (void)setObject:(id)newValue atIndexedSubscript:(NSUInteger)index {
  93. [self replaceObjectAtIndex:index withObject:newValue];
  94. }
  95. - (RLMResults *)sortedResultsUsingKeyPath:(NSString *)keyPath ascending:(BOOL)ascending {
  96. return [self sortedResultsUsingDescriptors:@[[RLMSortDescriptor sortDescriptorWithKeyPath:keyPath ascending:ascending]]];
  97. }
  98. - (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat, ... {
  99. va_list args;
  100. va_start(args, predicateFormat);
  101. NSUInteger index = [self indexOfObjectWhere:predicateFormat args:args];
  102. va_end(args);
  103. return index;
  104. }
  105. - (NSUInteger)indexOfObjectWhere:(NSString *)predicateFormat args:(va_list)args {
  106. return [self indexOfObjectWithPredicate:[NSPredicate predicateWithFormat:predicateFormat
  107. arguments:args]];
  108. }
  109. #pragma mark - Unmanaged RLMArray implementation
  110. - (RLMRealm *)realm {
  111. return nil;
  112. }
  113. - (id)firstObject {
  114. if (self.count) {
  115. return [self objectAtIndex:0];
  116. }
  117. return nil;
  118. }
  119. - (id)lastObject {
  120. NSUInteger count = self.count;
  121. if (count) {
  122. return [self objectAtIndex:count-1];
  123. }
  124. return nil;
  125. }
  126. - (id)objectAtIndex:(NSUInteger)index {
  127. validateArrayBounds(self, index);
  128. return [_backingCollection objectAtIndex:index];
  129. }
  130. - (NSUInteger)count {
  131. return _backingCollection.count;
  132. }
  133. - (BOOL)isInvalidated {
  134. return NO;
  135. }
  136. - (NSUInteger)countByEnumeratingWithState:(NSFastEnumerationState *)state
  137. objects:(__unused __unsafe_unretained id [])buffer
  138. count:(__unused NSUInteger)len {
  139. if (state->state != 0) {
  140. return 0;
  141. }
  142. // We need to enumerate a copy of the backing array so that it doesn't
  143. // reflect changes made during enumeration. This copy has to be autoreleased
  144. // (since there's nowhere for us to store a strong reference), and uses
  145. // RLMArrayHolder rather than an NSArray because NSArray doesn't guarantee
  146. // that it'll use a single contiguous block of memory, and if it doesn't
  147. // we'd need to forward multiple calls to this method to the same NSArray,
  148. // which would require holding a reference to it somewhere.
  149. __autoreleasing RLMArrayHolder *copy = [[RLMArrayHolder alloc] init];
  150. copy->items = std::make_unique<id[]>(self.count);
  151. NSUInteger i = 0;
  152. for (id object in _backingCollection) {
  153. copy->items[i++] = object;
  154. }
  155. state->itemsPtr = (__unsafe_unretained id *)(void *)copy->items.get();
  156. // needs to point to something valid, but the whole point of this is so
  157. // that it can't be changed
  158. state->mutationsPtr = state->extra;
  159. state->state = i;
  160. return i;
  161. }
  162. template<typename IndexSetFactory>
  163. static void changeArray(__unsafe_unretained RLMArray *const ar,
  164. NSKeyValueChange kind, dispatch_block_t f, IndexSetFactory&& is) {
  165. if (!ar->_backingCollection) {
  166. ar->_backingCollection = [NSMutableArray new];
  167. }
  168. if (RLMObjectBase *parent = ar->_parentObject) {
  169. NSIndexSet *indexes = is();
  170. [parent willChange:kind valuesAtIndexes:indexes forKey:ar->_key];
  171. f();
  172. [parent didChange:kind valuesAtIndexes:indexes forKey:ar->_key];
  173. }
  174. else {
  175. f();
  176. }
  177. }
  178. static void changeArray(__unsafe_unretained RLMArray *const ar, NSKeyValueChange kind,
  179. NSUInteger index, dispatch_block_t f) {
  180. changeArray(ar, kind, f, [=] { return [NSIndexSet indexSetWithIndex:index]; });
  181. }
  182. static void changeArray(__unsafe_unretained RLMArray *const ar, NSKeyValueChange kind,
  183. NSRange range, dispatch_block_t f) {
  184. changeArray(ar, kind, f, [=] { return [NSIndexSet indexSetWithIndexesInRange:range]; });
  185. }
  186. static void changeArray(__unsafe_unretained RLMArray *const ar, NSKeyValueChange kind,
  187. NSIndexSet *is, dispatch_block_t f) {
  188. changeArray(ar, kind, f, [=] { return is; });
  189. }
  190. void RLMArrayValidateMatchingObjectType(__unsafe_unretained RLMArray *const array,
  191. __unsafe_unretained id const value) {
  192. if (!value && !array->_optional) {
  193. @throw RLMException(@"Invalid nil value for array of '%@'.",
  194. array->_objectClassName ?: RLMTypeToString(array->_type));
  195. }
  196. if (array->_type != RLMPropertyTypeObject) {
  197. if (!RLMValidateValue(value, array->_type, array->_optional, false, nil)) {
  198. @throw RLMException(@"Invalid value '%@' of type '%@' for expected type '%@%s'.",
  199. value, [value class], RLMTypeToString(array->_type),
  200. array->_optional ? "?" : "");
  201. }
  202. return;
  203. }
  204. auto object = RLMDynamicCast<RLMObjectBase>(value);
  205. if (!object) {
  206. return;
  207. }
  208. if (!object->_objectSchema) {
  209. @throw RLMException(@"Object cannot be inserted unless the schema is initialized. "
  210. "This can happen if you try to insert objects into a RLMArray / List from a default value or from an overriden unmanaged initializer (`init()`).");
  211. }
  212. if (![array->_objectClassName isEqualToString:object->_objectSchema.className]
  213. && (array->_type != RLMPropertyTypeAny)) {
  214. @throw RLMException(@"Object of type '%@' does not match RLMArray type '%@'.",
  215. object->_objectSchema.className, array->_objectClassName);
  216. }
  217. }
  218. static void validateArrayBounds(__unsafe_unretained RLMArray *const ar,
  219. NSUInteger index, bool allowOnePastEnd=false) {
  220. NSUInteger max = ar->_backingCollection.count + allowOnePastEnd;
  221. if (index >= max) {
  222. @throw RLMException(@"Index %llu is out of bounds (must be less than %llu).",
  223. (unsigned long long)index, (unsigned long long)max);
  224. }
  225. }
  226. - (void)addObjectsFromArray:(NSArray *)array {
  227. for (id obj in array) {
  228. RLMArrayValidateMatchingObjectType(self, obj);
  229. }
  230. changeArray(self, NSKeyValueChangeInsertion, NSMakeRange(_backingCollection.count, array.count), ^{
  231. [_backingCollection addObjectsFromArray:array];
  232. });
  233. }
  234. - (void)insertObject:(id)anObject atIndex:(NSUInteger)index {
  235. RLMArrayValidateMatchingObjectType(self, anObject);
  236. validateArrayBounds(self, index, true);
  237. changeArray(self, NSKeyValueChangeInsertion, index, ^{
  238. [_backingCollection insertObject:anObject atIndex:index];
  239. });
  240. }
  241. - (void)insertObjects:(id<NSFastEnumeration>)objects atIndexes:(NSIndexSet *)indexes {
  242. changeArray(self, NSKeyValueChangeInsertion, indexes, ^{
  243. NSUInteger currentIndex = [indexes firstIndex];
  244. for (RLMObject *obj in objects) {
  245. RLMArrayValidateMatchingObjectType(self, obj);
  246. [_backingCollection insertObject:obj atIndex:currentIndex];
  247. currentIndex = [indexes indexGreaterThanIndex:currentIndex];
  248. }
  249. });
  250. }
  251. - (void)removeObjectAtIndex:(NSUInteger)index {
  252. validateArrayBounds(self, index);
  253. changeArray(self, NSKeyValueChangeRemoval, index, ^{
  254. [_backingCollection removeObjectAtIndex:index];
  255. });
  256. }
  257. - (void)removeObjectsAtIndexes:(NSIndexSet *)indexes {
  258. changeArray(self, NSKeyValueChangeRemoval, indexes, ^{
  259. [_backingCollection removeObjectsAtIndexes:indexes];
  260. });
  261. }
  262. - (void)replaceObjectAtIndex:(NSUInteger)index withObject:(id)anObject {
  263. RLMArrayValidateMatchingObjectType(self, anObject);
  264. validateArrayBounds(self, index);
  265. changeArray(self, NSKeyValueChangeReplacement, index, ^{
  266. [_backingCollection replaceObjectAtIndex:index withObject:anObject];
  267. });
  268. }
  269. - (void)moveObjectAtIndex:(NSUInteger)sourceIndex toIndex:(NSUInteger)destinationIndex {
  270. validateArrayBounds(self, sourceIndex);
  271. validateArrayBounds(self, destinationIndex);
  272. id original = _backingCollection[sourceIndex];
  273. auto start = std::min(sourceIndex, destinationIndex);
  274. auto len = std::max(sourceIndex, destinationIndex) - start + 1;
  275. changeArray(self, NSKeyValueChangeReplacement, {start, len}, ^{
  276. [_backingCollection removeObjectAtIndex:sourceIndex];
  277. [_backingCollection insertObject:original atIndex:destinationIndex];
  278. });
  279. }
  280. - (void)exchangeObjectAtIndex:(NSUInteger)index1 withObjectAtIndex:(NSUInteger)index2 {
  281. validateArrayBounds(self, index1);
  282. validateArrayBounds(self, index2);
  283. changeArray(self, NSKeyValueChangeReplacement, ^{
  284. [_backingCollection exchangeObjectAtIndex:index1 withObjectAtIndex:index2];
  285. }, [=] {
  286. NSMutableIndexSet *set = [[NSMutableIndexSet alloc] initWithIndex:index1];
  287. [set addIndex:index2];
  288. return set;
  289. });
  290. }
  291. - (NSUInteger)indexOfObject:(id)object {
  292. RLMArrayValidateMatchingObjectType(self, object);
  293. if (!_backingCollection) {
  294. return NSNotFound;
  295. }
  296. if (_type != RLMPropertyTypeObject) {
  297. return [_backingCollection indexOfObject:object];
  298. }
  299. NSUInteger index = 0;
  300. for (RLMObjectBase *cmp in _backingCollection) {
  301. if (RLMObjectBaseAreEqual(object, cmp)) {
  302. return index;
  303. }
  304. index++;
  305. }
  306. return NSNotFound;
  307. }
  308. - (void)removeAllObjects {
  309. changeArray(self, NSKeyValueChangeRemoval, NSMakeRange(0, _backingCollection.count), ^{
  310. [_backingCollection removeAllObjects];
  311. });
  312. }
  313. - (void)replaceAllObjectsWithObjects:(NSArray *)objects {
  314. if (_backingCollection.count) {
  315. changeArray(self, NSKeyValueChangeRemoval, NSMakeRange(0, _backingCollection.count), ^{
  316. [_backingCollection removeAllObjects];
  317. });
  318. }
  319. if (![objects respondsToSelector:@selector(count)] || !objects.count) {
  320. return;
  321. }
  322. changeArray(self, NSKeyValueChangeInsertion, NSMakeRange(0, objects.count), ^{
  323. for (id object in objects) {
  324. [_backingCollection addObject:object];
  325. }
  326. });
  327. }
  328. - (RLMResults *)objectsWhere:(NSString *)predicateFormat, ... {
  329. va_list args;
  330. va_start(args, predicateFormat);
  331. RLMResults *results = [self objectsWhere:predicateFormat args:args];
  332. va_end(args);
  333. return results;
  334. }
  335. - (RLMResults *)objectsWhere:(NSString *)predicateFormat args:(va_list)args {
  336. return [self objectsWithPredicate:[NSPredicate predicateWithFormat:predicateFormat arguments:args]];
  337. }
  338. - (RLMPropertyType)typeForProperty:(NSString *)propertyName {
  339. if ([propertyName isEqualToString:@"self"]) {
  340. return _type;
  341. }
  342. RLMObjectSchema *objectSchema;
  343. if (_backingCollection.count) {
  344. objectSchema = [_backingCollection[0] objectSchema];
  345. }
  346. else {
  347. objectSchema = [RLMSchema.partialPrivateSharedSchema schemaForClassName:_objectClassName];
  348. }
  349. return RLMValidatedProperty(objectSchema, propertyName).type;
  350. }
  351. - (id)aggregateProperty:(NSString *)key operation:(NSString *)op method:(SEL)sel {
  352. // Although delegating to valueForKeyPath: here would allow to support
  353. // nested key paths as well, limiting functionality gives consistency
  354. // between unmanaged and managed arrays.
  355. if ([key rangeOfString:@"."].location != NSNotFound) {
  356. @throw RLMException(@"Nested key paths are not supported yet for KVC collection operators.");
  357. }
  358. bool allowDate = false;
  359. bool sum = false;
  360. if ([op isEqualToString:@"@min"] || [op isEqualToString:@"@max"]) {
  361. allowDate = true;
  362. }
  363. else if ([op isEqualToString:@"@sum"]) {
  364. sum = true;
  365. }
  366. else if (![op isEqualToString:@"@avg"]) {
  367. // Just delegate to NSArray for all other operators
  368. return [_backingCollection valueForKeyPath:[op stringByAppendingPathExtension:key]];
  369. }
  370. RLMPropertyType type = [self typeForProperty:key];
  371. if (!canAggregate(type, allowDate)) {
  372. NSString *method = sel ? NSStringFromSelector(sel) : op;
  373. if (_type == RLMPropertyTypeObject) {
  374. @throw RLMException(@"%@: is not supported for %@ property '%@.%@'",
  375. method, RLMTypeToString(type), _objectClassName, key);
  376. }
  377. else {
  378. @throw RLMException(@"%@ is not supported for %@%s array",
  379. method, RLMTypeToString(_type), _optional ? "?" : "");
  380. }
  381. }
  382. NSArray *values = [key isEqualToString:@"self"] ? _backingCollection : [_backingCollection valueForKey:key];
  383. if (_optional) {
  384. // Filter out NSNull values to match our behavior on managed arrays
  385. NSIndexSet *nonnull = [values indexesOfObjectsPassingTest:^BOOL(id obj, NSUInteger, BOOL *) {
  386. return obj != NSNull.null;
  387. }];
  388. if (nonnull.count < values.count) {
  389. values = [values objectsAtIndexes:nonnull];
  390. }
  391. }
  392. id result = [values valueForKeyPath:[op stringByAppendingString:@".self"]];
  393. return sum && !result ? @0 : result;
  394. }
  395. - (id)valueForKeyPath:(NSString *)keyPath {
  396. if ([keyPath characterAtIndex:0] != '@') {
  397. return _backingCollection ? [_backingCollection valueForKeyPath:keyPath] : [super valueForKeyPath:keyPath];
  398. }
  399. if (!_backingCollection) {
  400. _backingCollection = [NSMutableArray new];
  401. }
  402. NSUInteger dot = [keyPath rangeOfString:@"."].location;
  403. if (dot == NSNotFound) {
  404. return [_backingCollection valueForKeyPath:keyPath];
  405. }
  406. NSString *op = [keyPath substringToIndex:dot];
  407. NSString *key = [keyPath substringFromIndex:dot + 1];
  408. return [self aggregateProperty:key operation:op method:nil];
  409. }
  410. - (id)valueForKey:(NSString *)key {
  411. if ([key isEqualToString:RLMInvalidatedKey]) {
  412. return @NO; // Unmanaged arrays are never invalidated
  413. }
  414. if (!_backingCollection) {
  415. _backingCollection = [NSMutableArray new];
  416. }
  417. return [_backingCollection valueForKey:key];
  418. }
  419. - (void)setValue:(id)value forKey:(NSString *)key {
  420. if ([key isEqualToString:@"self"]) {
  421. RLMArrayValidateMatchingObjectType(self, value);
  422. for (NSUInteger i = 0, count = _backingCollection.count; i < count; ++i) {
  423. _backingCollection[i] = value;
  424. }
  425. return;
  426. }
  427. else if (_type == RLMPropertyTypeObject) {
  428. [_backingCollection setValue:value forKey:key];
  429. }
  430. else {
  431. [self setValue:value forUndefinedKey:key];
  432. }
  433. }
  434. - (id)minOfProperty:(NSString *)property {
  435. return [self aggregateProperty:property operation:@"@min" method:_cmd];
  436. }
  437. - (id)maxOfProperty:(NSString *)property {
  438. return [self aggregateProperty:property operation:@"@max" method:_cmd];
  439. }
  440. - (id)sumOfProperty:(NSString *)property {
  441. return [self aggregateProperty:property operation:@"@sum" method:_cmd];
  442. }
  443. - (id)averageOfProperty:(NSString *)property {
  444. return [self aggregateProperty:property operation:@"@avg" method:_cmd];
  445. }
  446. - (NSUInteger)indexOfObjectWithPredicate:(NSPredicate *)predicate {
  447. if (!_backingCollection) {
  448. return NSNotFound;
  449. }
  450. return [_backingCollection indexOfObjectPassingTest:^BOOL(id obj, NSUInteger, BOOL *) {
  451. return [predicate evaluateWithObject:obj];
  452. }];
  453. }
  454. - (NSArray *)objectsAtIndexes:(NSIndexSet *)indexes {
  455. NSUInteger count = self.count;
  456. __block BOOL didStop = NO;
  457. [indexes enumerateIndexesUsingBlock:^(NSUInteger idx, BOOL * _Nonnull stop) {
  458. if (idx < 0 || idx >= count || count == 0) {
  459. *stop = YES;
  460. didStop = YES;
  461. }
  462. }];
  463. if (didStop) {
  464. return nil;
  465. }
  466. if (!_backingCollection) {
  467. _backingCollection = [NSMutableArray new];
  468. }
  469. return [_backingCollection objectsAtIndexes:indexes];
  470. }
  471. - (BOOL)isEqual:(id)object {
  472. if (auto array = RLMDynamicCast<RLMArray>(object)) {
  473. if (array.realm) {
  474. return NO;
  475. }
  476. NSArray *otherCollection = array->_backingCollection;
  477. return (_backingCollection.count == 0 && otherCollection.count == 0)
  478. || [_backingCollection isEqual:otherCollection];
  479. }
  480. return NO;
  481. }
  482. - (void)addObserver:(NSObject *)observer forKeyPath:(NSString *)keyPath
  483. options:(NSKeyValueObservingOptions)options context:(void *)context {
  484. RLMValidateArrayObservationKey(keyPath, self);
  485. [super addObserver:observer forKeyPath:keyPath options:options context:context];
  486. }
  487. #pragma mark - Methods unsupported on unmanaged RLMArray instances
  488. #pragma clang diagnostic push
  489. #pragma clang diagnostic ignored "-Wunused-parameter"
  490. - (RLMResults *)objectsWithPredicate:(NSPredicate *)predicate {
  491. @throw RLMException(@"This method may only be called on RLMArray instances retrieved from an RLMRealm");
  492. }
  493. - (RLMResults *)sortedResultsUsingDescriptors:(NSArray<RLMSortDescriptor *> *)properties {
  494. @throw RLMException(@"This method may only be called on RLMArray instances retrieved from an RLMRealm");
  495. }
  496. - (RLMResults *)distinctResultsUsingKeyPaths:(NSArray<NSString *> *)keyPaths {
  497. @throw RLMException(@"This method may only be called on RLMArray instances retrieved from an RLMRealm");
  498. }
  499. // The compiler complains about the method's argument type not matching due to
  500. // it not having the generic type attached, but it doesn't seem to be possible
  501. // to actually include the generic type
  502. // http://www.openradar.me/radar?id=6135653276319744
  503. #pragma clang diagnostic ignored "-Wmismatched-parameter-types"
  504. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMArray *, RLMCollectionChange *, NSError *))block {
  505. return [self addNotificationBlock:block queue:nil];
  506. }
  507. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMArray *, RLMCollectionChange *, NSError *))block
  508. queue:(nullable dispatch_queue_t)queue {
  509. @throw RLMException(@"This method may only be called on RLMArray instances retrieved from an RLMRealm");
  510. }
  511. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMArray *, RLMCollectionChange *, NSError *))block
  512. keyPaths:(NSArray<NSString *> *)keyPaths
  513. queue:(nullable dispatch_queue_t)queue {
  514. @throw RLMException(@"This method may only be called on RLMArray instances retrieved from an RLMRealm");
  515. }
  516. - (RLMNotificationToken *)addNotificationBlock:(void (^)(RLMArray *, RLMCollectionChange *, NSError *))block
  517. keyPaths:(NSArray<NSString *> *)keyPaths {
  518. @throw RLMException(@"This method may only be called on RLMArray instances retrieved from an RLMRealm");
  519. }
  520. - (instancetype)freeze {
  521. @throw RLMException(@"This method may only be called on RLMArray instances retrieved from an RLMRealm");
  522. }
  523. - (instancetype)thaw {
  524. @throw RLMException(@"This method may only be called on RLMArray instances retrieved from an RLMRealm");
  525. }
  526. #pragma mark - Thread Confined Protocol Conformance
  527. - (realm::ThreadSafeReference)makeThreadSafeReference {
  528. REALM_TERMINATE("Unexpected handover of unmanaged `RLMArray`");
  529. }
  530. - (id)objectiveCMetadata {
  531. REALM_TERMINATE("Unexpected handover of unmanaged `RLMArray`");
  532. }
  533. + (instancetype)objectWithThreadSafeReference:(realm::ThreadSafeReference)reference
  534. metadata:(id)metadata
  535. realm:(RLMRealm *)realm {
  536. REALM_TERMINATE("Unexpected handover of unmanaged `RLMArray`");
  537. }
  538. #pragma clang diagnostic pop // unused parameter warning
  539. #pragma mark - Superclass Overrides
  540. - (NSString *)description {
  541. return [self descriptionWithMaxDepth:RLMDescriptionMaxDepth];
  542. }
  543. - (NSString *)descriptionWithMaxDepth:(NSUInteger)depth {
  544. return RLMDescriptionWithMaxDepth(@"RLMArray", self, depth);
  545. }
  546. #pragma mark - Key Path Strings
  547. - (NSString *)propertyKey {
  548. return _key;
  549. }
  550. @end
  551. @implementation RLMSortDescriptor
  552. + (instancetype)sortDescriptorWithKeyPath:(NSString *)keyPath ascending:(BOOL)ascending {
  553. RLMSortDescriptor *desc = [[RLMSortDescriptor alloc] init];
  554. desc->_keyPath = keyPath;
  555. desc->_ascending = ascending;
  556. return desc;
  557. }
  558. - (instancetype)reversedSortDescriptor {
  559. return [self.class sortDescriptorWithKeyPath:_keyPath ascending:!_ascending];
  560. }
  561. @end