MutableSet.swift 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2020 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 Foundation
  19. import Realm
  20. import Realm.Private
  21. /**
  22. `MutableSet` is the container type in Realm used to define to-many relationships with distinct values as objects.
  23. Like Swift's `Set`, `MutableSet` is a generic type that is parameterized on the type it stores. This can be either an `Object`
  24. subclass or one of the following types: `Bool`, `Int`, `Int8`, `Int16`, `Int32`, `Int64`, `Float`, `Double`,
  25. `String`, `Data`, `Date`, `Decimal128`, and `ObjectId` (and their optional versions)
  26. Unlike Swift's native collections, `MutableSet`s are reference types, and are only immutable if the Realm that manages them
  27. is opened as read-only.
  28. MutableSet's can be filtered and sorted with the same predicates as `Results<Element>`.
  29. Properties of `MutableSet` type defined on `Object` subclasses must be declared as `let` and cannot be `dynamic`.
  30. */
  31. public final class MutableSet<Element: RealmCollectionValue>: RLMSwiftCollectionBase {
  32. // MARK: Properties
  33. /// The Realm which manages the set, or `nil` if the set is unmanaged.
  34. public var realm: Realm? {
  35. return rlmSet.realm.map { Realm($0) }
  36. }
  37. /// Indicates if the set can no longer be accessed.
  38. public var isInvalidated: Bool { return rlmSet.isInvalidated }
  39. /// Contains the last accessed property names when tracing the key path.
  40. internal var lastAccessedNames: NSMutableArray?
  41. internal var rlmSet: RLMSet<AnyObject> {
  42. _rlmCollection as! RLMSet
  43. }
  44. // MARK: Initializers
  45. /// Creates a `MutableSet` that holds Realm model objects of type `Element`.
  46. public override init() {
  47. super.init()
  48. }
  49. internal init(objc rlmSet: RLMSet<AnyObject>) {
  50. super.init(collection: rlmSet)
  51. }
  52. // MARK: Count
  53. /// Returns the number of objects in this MutableSet.
  54. public var count: Int { return Int(rlmSet.count) }
  55. // MARK: KVC
  56. /**
  57. Returns an `Array` containing the results of invoking `valueForKey(_:)` using `key` on each of the collection's
  58. objects.
  59. */
  60. @nonobjc public func value(forKey key: String) -> [AnyObject] {
  61. return (rlmSet.value(forKeyPath: key)! as! NSSet).allObjects as [AnyObject]
  62. }
  63. /**
  64. Returns an `Array` containing the results of invoking `valueForKeyPath(_:)` using `keyPath` on each of the
  65. collection's objects.
  66. - parameter keyPath: The key path to the property whose values are desired.
  67. */
  68. @nonobjc public func value(forKeyPath keyPath: String) -> [AnyObject] {
  69. return (rlmSet.value(forKeyPath: keyPath)! as! NSSet).allObjects as [AnyObject]
  70. }
  71. /**
  72. Invokes `setValue(_:forKey:)` on each of the collection's objects using the specified `value` and `key`.
  73. - warning: This method can only be called during a write transaction.
  74. - parameter value: The object value.
  75. - parameter key: The name of the property whose value should be set on each object.
  76. */
  77. public func setValue(_ value: Any?, forKey key: String) {
  78. return rlmSet.setValue(value, forKeyPath: key)
  79. }
  80. // MARK: Filtering
  81. /**
  82. Returns a `Results` containing all objects matching the given predicate in the set.
  83. - parameter predicate: The predicate with which to filter the objects.
  84. */
  85. public func filter(_ predicate: NSPredicate) -> Results<Element> {
  86. return Results<Element>(rlmSet.objects(with: predicate))
  87. }
  88. /**
  89. Returns a Boolean value indicating whether the Set contains the
  90. given object.
  91. - parameter object: The element to find in the MutableSet.
  92. */
  93. public func contains(_ object: Element) -> Bool {
  94. return rlmSet.contains(dynamicBridgeCast(fromSwift: object) as AnyObject)
  95. }
  96. /**
  97. Returns a Boolean value that indicates whether this set is a subset
  98. of the given set.
  99. - Parameter object: Another MutableSet to compare.
  100. */
  101. public func isSubset(of possibleSuperset: MutableSet<Element>) -> Bool {
  102. return rlmSet.isSubset(of: possibleSuperset.rlmSet)
  103. }
  104. /**
  105. Returns a Boolean value that indicates whether this set intersects
  106. with another given set.
  107. - Parameter object: Another MutableSet to compare.
  108. */
  109. public func intersects(_ otherSet: MutableSet<Element>) -> Bool {
  110. return rlmSet.intersects(otherSet.rlmSet)
  111. }
  112. // MARK: Sorting
  113. /**
  114. Returns a `Results` containing the objects in the set, but sorted.
  115. Objects are sorted based on the values of the given key path. For example, to sort a set of `Student`s from
  116. youngest to oldest based on their `age` property, you might call
  117. `students.sorted(byKeyPath: "age", ascending: true)`.
  118. - warning: MutableSets may only be sorted by properties of boolean, `Date`, `NSDate`, single and double-precision
  119. floating point, integer, and string types.
  120. - parameter keyPath: The key path to sort by.
  121. - parameter ascending: The direction to sort in.
  122. */
  123. public func sorted(byKeyPath keyPath: String, ascending: Bool = true) -> Results<Element> {
  124. return sorted(by: [SortDescriptor(keyPath: keyPath, ascending: ascending)])
  125. }
  126. /**
  127. Returns a `Results` containing the objects in the set, but sorted.
  128. - warning: MutableSets may only be sorted by properties of boolean, `Date`, `NSDate`, single and double-precision
  129. floating point, integer, and string types.
  130. - see: `sorted(byKeyPath:ascending:)`
  131. */
  132. public func sorted<S: Sequence>(by sortDescriptors: S) -> Results<Element>
  133. where S.Iterator.Element == SortDescriptor {
  134. return Results<Element>(rlmSet.sortedResults(using: sortDescriptors.map { $0.rlmSortDescriptorValue }))
  135. }
  136. // MARK: Aggregate Operations
  137. /**
  138. Returns the minimum (lowest) value of the given property among all the objects in the set, or `nil` if the set is
  139. empty.
  140. - warning: Only a property whose type conforms to the `MinMaxType` protocol can be specified.
  141. - parameter property: The name of a property whose minimum value is desired.
  142. */
  143. public func min<T: MinMaxType>(ofProperty property: String) -> T? {
  144. return rlmSet.min(ofProperty: property).map(dynamicBridgeCast)
  145. }
  146. /**
  147. Returns the maximum (highest) value of the given property among all the objects in the set, or `nil` if the set
  148. is empty.
  149. - warning: Only a property whose type conforms to the `MinMaxType` protocol can be specified.
  150. - parameter property: The name of a property whose maximum value is desired.
  151. */
  152. public func max<T: MinMaxType>(ofProperty property: String) -> T? {
  153. return rlmSet.max(ofProperty: property).map(dynamicBridgeCast)
  154. }
  155. /**
  156. Returns the sum of the values of a given property over all the objects in the set.
  157. - warning: Only a property whose type conforms to the `AddableType` protocol can be specified.
  158. - parameter property: The name of a property whose values should be summed.
  159. */
  160. public func sum<T: AddableType>(ofProperty property: String) -> T {
  161. return dynamicBridgeCast(fromObjectiveC: rlmSet.sum(ofProperty: property))
  162. }
  163. /**
  164. Returns the average value of a given property over all the objects in the set, or `nil` if the set is empty.
  165. - warning: Only a property whose type conforms to the `AddableType` protocol can be specified.
  166. - parameter property: The name of a property whose average value should be calculated.
  167. */
  168. public func average<T: AddableType>(ofProperty property: String) -> T? {
  169. return rlmSet.average(ofProperty: property).map(dynamicBridgeCast)
  170. }
  171. // MARK: Mutation
  172. /**
  173. Inserts an object to the set if not already present.
  174. - warning: This method may only be called during a write transaction.
  175. - parameter object: An object.
  176. */
  177. public func insert(_ object: Element) {
  178. rlmSet.add(dynamicBridgeCast(fromSwift: object) as AnyObject)
  179. }
  180. /**
  181. Inserts the given sequence of objects into the set if not already present.
  182. - warning: This method may only be called during a write transaction.
  183. */
  184. public func insert<S: Sequence>(objectsIn objects: S) where S.Iterator.Element == Element {
  185. for obj in objects {
  186. rlmSet.add(dynamicBridgeCast(fromSwift: obj) as AnyObject)
  187. }
  188. }
  189. /**
  190. Removes an object in the set if present. The object is not removed from the Realm that manages it.
  191. - warning: This method may only be called during a write transaction.
  192. - parameter object: The object to remove.
  193. */
  194. public func remove(_ object: Element) {
  195. rlmSet.remove(dynamicBridgeCast(fromSwift: object) as AnyObject)
  196. }
  197. /**
  198. Removes all objects from the set. The objects are not removed from the Realm that manages them.
  199. - warning: This method may only be called during a write transaction.
  200. */
  201. public func removeAll() {
  202. rlmSet.removeAllObjects()
  203. }
  204. /**
  205. Mutates the set in place with the elements that are common to both this set and the given sequence.
  206. - warning: This method may only be called during a write transaction.
  207. - parameter other: Another set.
  208. */
  209. public func formIntersection(_ other: MutableSet<Element>) {
  210. rlmSet.intersect(other.rlmSet)
  211. }
  212. /**
  213. Mutates the set in place and removes the elements of the given set from this set.
  214. - warning: This method may only be called during a write transaction.
  215. - parameter other: Another set.
  216. */
  217. public func subtract(_ other: MutableSet<Element>) {
  218. rlmSet.minus(other.rlmSet)
  219. }
  220. /**
  221. Inserts the elements of the given sequence into the set.
  222. - warning: This method may only be called during a write transaction.
  223. - parameter other: Another set.
  224. */
  225. public func formUnion(_ other: MutableSet<Element>) {
  226. rlmSet.union(other.rlmSet)
  227. }
  228. // MARK: Notifications
  229. /**
  230. Registers a block to be called each time the collection changes.
  231. The block will be asynchronously called with the initial results, and then called again after each write
  232. transaction which changes either any of the objects in the collection, or which objects are in the collection.
  233. The `change` parameter that is passed to the block reports, in the form of indices within the collection, which of
  234. the objects were added, removed, or modified during each write transaction. See the `RealmCollectionChange`
  235. documentation for more information on the change information supplied and an example of how to use it to update a
  236. `UITableView`.
  237. At the time when the block is called, the collection will be fully evaluated and up-to-date, and as long as you do
  238. not perform a write transaction on the same thread or explicitly call `realm.refresh()`, accessing it will never
  239. perform blocking work.
  240. If no queue is given, notifications are delivered via the standard run loop, and so can't be delivered while the
  241. run loop is blocked by other activity. If a queue is given, notifications are delivered to that queue instead. When
  242. notifications can't be delivered instantly, multiple notifications may be coalesced into a single notification.
  243. This can include the notification with the initial collection.
  244. For example, the following code performs a write transaction immediately after adding the notification block, so
  245. there is no opportunity for the initial notification to be delivered first. As a result, the initial notification
  246. will reflect the state of the Realm after the write transaction.
  247. ```swift
  248. let dogs = realm.objects(Dog.self)
  249. print("dogs.count: \(dogs?.count)") // => 0
  250. let token = dogs.observe { changes in
  251. switch changes {
  252. case .initial(let dogs):
  253. // Will print "dogs.count: 1"
  254. print("dogs.count: \(dogs.count)")
  255. break
  256. case .update:
  257. // Will not be hit in this example
  258. break
  259. case .error:
  260. break
  261. }
  262. }
  263. try! realm.write {
  264. let dog = Dog()
  265. dog.name = "Rex"
  266. person.dogs.insert(dog)
  267. }
  268. // end of run loop execution context
  269. ```
  270. You must retain the returned token for as long as you want updates to be sent to the block. To stop receiving
  271. updates, call `invalidate()` on the token.
  272. - warning: This method cannot be called during a write transaction, or when the containing Realm is read-only.
  273. - parameter queue: The serial dispatch queue to receive notification on. If
  274. `nil`, notifications are delivered to the current thread.
  275. - parameter block: The block to be called whenever a change occurs.
  276. - returns: A token which must be held for as long as you want updates to be delivered.
  277. */
  278. public func observe(on queue: DispatchQueue? = nil,
  279. _ block: @escaping (RealmCollectionChange<MutableSet>) -> Void) -> NotificationToken {
  280. return rlmSet.addNotificationBlock(wrapObserveBlock(block), queue: queue)
  281. }
  282. /**
  283. Registers a block to be called each time the collection changes.
  284. The block will be asynchronously called with the initial results, and then called again after each write
  285. transaction which changes either any of the objects in the collection, or which objects are in the collection.
  286. The `change` parameter that is passed to the block reports, in the form of indices within the collection, which of
  287. the objects were added, removed, or modified during each write transaction. See the `RealmCollectionChange`
  288. documentation for more information on the change information supplied and an example of how to use it to update a
  289. `UITableView`.
  290. At the time when the block is called, the collection will be fully evaluated and up-to-date, and as long as you do
  291. not perform a write transaction on the same thread or explicitly call `realm.refresh()`, accessing it will never
  292. perform blocking work.
  293. If no queue is given, notifications are delivered via the standard run loop, and so can't be delivered while the
  294. run loop is blocked by other activity. If a queue is given, notifications are delivered to that queue instead. When
  295. notifications can't be delivered instantly, multiple notifications may be coalesced into a single notification.
  296. This can include the notification with the initial collection.
  297. For example, the following code performs a write transaction immediately after adding the notification block, so
  298. there is no opportunity for the initial notification to be delivered first. As a result, the initial notification
  299. will reflect the state of the Realm after the write transaction.
  300. ```swift
  301. let dogs = realm.objects(Dog.self)
  302. print("dogs.count: \(dogs?.count)") // => 0
  303. let token = dogs.observe { changes in
  304. switch changes {
  305. case .initial(let dogs):
  306. // Will print "dogs.count: 1"
  307. print("dogs.count: \(dogs.count)")
  308. break
  309. case .update:
  310. // Will not be hit in this example
  311. break
  312. case .error:
  313. break
  314. }
  315. }
  316. try! realm.write {
  317. let dog = Dog()
  318. dog.name = "Rex"
  319. person.dogs.insert(dog)
  320. }
  321. // end of run loop execution context
  322. ```
  323. If no key paths are given, the block will be executed on any insertion,
  324. modification, or deletion for all object properties and the properties of
  325. any nested, linked objects. If a key path or key paths are provided,
  326. then the block will be called for changes which occur only on the
  327. provided key paths. For example, if:
  328. ```swift
  329. class Dog: Object {
  330. @Persisted var name: String
  331. @Persisted var age: Int
  332. @Persisted var toys: List<Toy>
  333. }
  334. // ...
  335. let dogs = realm.objects(Dog.self)
  336. let token = dogs.observe(keyPaths: ["name"]) { changes in
  337. switch changes {
  338. case .initial(let dogs):
  339. // ...
  340. case .update:
  341. // This case is hit:
  342. // - after the token is intialized
  343. // - when the name property of an object in the
  344. // collection is modified
  345. // - when an element is inserted or removed
  346. // from the collection.
  347. // This block is not triggered:
  348. // - when a value other than name is modified on
  349. // one of the elements.
  350. case .error:
  351. // ...
  352. }
  353. }
  354. // end of run loop execution context
  355. ```
  356. - If the observed key path were `["toys.brand"]`, then any insertion or
  357. deletion to the `toys` list on any of the collection's elements would trigger the block.
  358. Changes to the `brand` value on any `Toy` that is linked to a `Dog` in this
  359. collection will trigger the block. Changes to a value other than `brand` on any `Toy` that
  360. is linked to a `Dog` in this collection would not trigger the block.
  361. Any insertion or removal to the `Dog` type collection being observed
  362. would also trigger a notification.
  363. - If the above example observed the `["toys"]` key path, then any insertion,
  364. deletion, or modification to the `toys` list for any element in the collection
  365. would trigger the block.
  366. Changes to any value on any `Toy` that is linked to a `Dog` in this collection
  367. would *not* trigger the block.
  368. Any insertion or removal to the `Dog` type collection being observed
  369. would still trigger a notification.
  370. - note: Multiple notification tokens on the same object which filter for
  371. separate key paths *do not* filter exclusively. If one key path
  372. change is satisfied for one notification token, then all notification
  373. token blocks for that object will execute.
  374. You must retain the returned token for as long as you want updates to be sent to the block. To stop receiving
  375. updates, call `invalidate()` on the token.
  376. - warning: This method cannot be called during a write transaction, or when the containing Realm is read-only.
  377. - parameter keyPaths: Only properties contained in the key paths array will trigger
  378. the block when they are modified. If `nil`, notifications
  379. will be delivered for any property change on the object.
  380. String key paths which do not correspond to a valid a property
  381. will throw an exception.
  382. See description above for more detail on linked properties.
  383. - parameter queue: The serial dispatch queue to receive notification on. If
  384. `nil`, notifications are delivered to the current thread.
  385. - parameter block: The block to be called whenever a change occurs.
  386. - returns: A token which must be held for as long as you want updates to be delivered.
  387. */
  388. public func observe(keyPaths: [String]? = nil,
  389. on queue: DispatchQueue? = nil,
  390. _ block: @escaping (RealmCollectionChange<MutableSet>) -> Void) -> NotificationToken {
  391. return rlmSet.addNotificationBlock(wrapObserveBlock(block), keyPaths: keyPaths, queue: queue)
  392. }
  393. /**
  394. Registers a block to be called each time the collection changes.
  395. The block will be asynchronously called with the initial results, and then called again after each write
  396. transaction which changes either any of the objects in the collection, or which objects are in the collection.
  397. The `change` parameter that is passed to the block reports, in the form of indices within the collection, which of
  398. the objects were added, removed, or modified during each write transaction. See the `RealmCollectionChange`
  399. documentation for more information on the change information supplied and an example of how to use it to update a
  400. `UITableView`.
  401. At the time when the block is called, the collection will be fully evaluated and up-to-date, and as long as you do
  402. not perform a write transaction on the same thread or explicitly call `realm.refresh()`, accessing it will never
  403. perform blocking work.
  404. If no queue is given, notifications are delivered via the standard run loop, and so can't be delivered while the
  405. run loop is blocked by other activity. If a queue is given, notifications are delivered to that queue instead. When
  406. notifications can't be delivered instantly, multiple notifications may be coalesced into a single notification.
  407. This can include the notification with the initial collection.
  408. For example, the following code performs a write transaction immediately after adding the notification block, so
  409. there is no opportunity for the initial notification to be delivered first. As a result, the initial notification
  410. will reflect the state of the Realm after the write transaction.
  411. ```swift
  412. let dogs = realm.objects(Dog.self)
  413. print("dogs.count: \(dogs?.count)") // => 0
  414. let token = dogs.observe { changes in
  415. switch changes {
  416. case .initial(let dogs):
  417. // Will print "dogs.count: 1"
  418. print("dogs.count: \(dogs.count)")
  419. break
  420. case .update:
  421. // Will not be hit in this example
  422. break
  423. case .error:
  424. break
  425. }
  426. }
  427. try! realm.write {
  428. let dog = Dog()
  429. dog.name = "Rex"
  430. person.dogs.insert(dog)
  431. }
  432. // end of run loop execution context
  433. ```
  434. If no key paths are given, the block will be executed on any insertion,
  435. modification, or deletion for all object properties and the properties of
  436. any nested, linked objects. If a key path or key paths are provided,
  437. then the block will be called for changes which occur only on the
  438. provided key paths. For example, if:
  439. ```swift
  440. class Dog: Object {
  441. @Persisted var name: String
  442. @Persisted var age: Int
  443. @Persisted var toys: List<Toy>
  444. }
  445. // ...
  446. let dogs = realm.objects(Dog.self)
  447. let token = dogs.observe(keyPaths: [\Dog.name]) { changes in
  448. switch changes {
  449. case .initial(let dogs):
  450. // ...
  451. case .update:
  452. // This case is hit:
  453. // - after the token is intialized
  454. // - when the name property of an object in the
  455. // collection is modified
  456. // - when an element is inserted or removed
  457. // from the collection.
  458. // This block is not triggered:
  459. // - when a value other than name is modified on
  460. // one of the elements.
  461. case .error:
  462. // ...
  463. }
  464. }
  465. // end of run loop execution context
  466. ```
  467. - If the observed key path were `[\Dog.toys.brand]`, then any insertion or
  468. deletion to the `toys` list on any of the collection's elements would trigger the block.
  469. Changes to the `brand` value on any `Toy` that is linked to a `Dog` in this
  470. collection will trigger the block. Changes to a value other than `brand` on any `Toy` that
  471. is linked to a `Dog` in this collection would not trigger the block.
  472. Any insertion or removal to the `Dog` type collection being observed
  473. would also trigger a notification.
  474. - If the above example observed the `[\Dog.toys]` key path, then any insertion,
  475. deletion, or modification to the `toys` list for any element in the collection
  476. would trigger the block.
  477. Changes to any value on any `Toy` that is linked to a `Dog` in this collection
  478. would *not* trigger the block.
  479. Any insertion or removal to the `Dog` type collection being observed
  480. would still trigger a notification.
  481. - note: Multiple notification tokens on the same object which filter for
  482. separate key paths *do not* filter exclusively. If one key path
  483. change is satisfied for one notification token, then all notification
  484. token blocks for that object will execute.
  485. You must retain the returned token for as long as you want updates to be sent to the block. To stop receiving
  486. updates, call `invalidate()` on the token.
  487. - warning: This method cannot be called during a write transaction, or when the containing Realm is read-only.
  488. - parameter keyPaths: Only properties contained in the key paths array will trigger
  489. the block when they are modified. If `nil`, notifications
  490. will be delivered for any property change on the object.
  491. See description above for more detail on linked properties.
  492. - parameter queue: The serial dispatch queue to receive notification on. If
  493. `nil`, notifications are delivered to the current thread.
  494. - parameter block: The block to be called whenever a change occurs.
  495. - returns: A token which must be held for as long as you want updates to be delivered.
  496. */
  497. public func observe<T: ObjectBase>(keyPaths: [PartialKeyPath<T>],
  498. on queue: DispatchQueue? = nil,
  499. _ block: @escaping (RealmCollectionChange<MutableSet>) -> Void) -> NotificationToken {
  500. return rlmSet.addNotificationBlock(wrapObserveBlock(block), keyPaths: keyPaths.map(_name(for:)), queue: queue)
  501. }
  502. // MARK: Frozen Objects
  503. public var isFrozen: Bool {
  504. return rlmSet.isFrozen
  505. }
  506. public func freeze() -> MutableSet {
  507. return MutableSet(objc: rlmSet.freeze())
  508. }
  509. public func thaw() -> MutableSet? {
  510. return MutableSet(objc: rlmSet.thaw())
  511. }
  512. // swiftlint:disable:next identifier_name
  513. @objc class func _unmanagedCollection() -> RLMSet<AnyObject> {
  514. if let type = Element.self as? ObjectBase.Type {
  515. return RLMSet(objectClassName: type.className())
  516. }
  517. return RLMSet(objectType: Element._rlmType, optional: Element._rlmOptional)
  518. }
  519. /// :nodoc:
  520. @objc public override class func _backingCollectionType() -> AnyClass {
  521. return RLMManagedSet.self
  522. }
  523. // Printable requires a description property defined in Swift (and not obj-c),
  524. // and it has to be defined as override, which can't be done in a
  525. // generic class.
  526. /// Returns a human-readable description of the objects contained in the MutableSet.
  527. @objc public override var description: String {
  528. return descriptionWithMaxDepth(RLMDescriptionMaxDepth)
  529. }
  530. @objc private func descriptionWithMaxDepth(_ depth: UInt) -> String {
  531. return RLMDescriptionWithMaxDepth("MutableSet", rlmSet, depth)
  532. }
  533. }
  534. extension MutableSet where Element: MinMaxType {
  535. /**
  536. Returns the minimum (lowest) value in the set, or `nil` if the set is empty.
  537. */
  538. public func min() -> Element? {
  539. return rlmSet.min(ofProperty: "self").map(dynamicBridgeCast)
  540. }
  541. /**
  542. Returns the maximum (highest) value in the set, or `nil` if the set is empty.
  543. */
  544. public func max() -> Element? {
  545. return rlmSet.max(ofProperty: "self").map(dynamicBridgeCast)
  546. }
  547. }
  548. extension MutableSet where Element: AddableType {
  549. /**
  550. Returns the sum of the values in the set.
  551. */
  552. public func sum() -> Element {
  553. return sum(ofProperty: "self")
  554. }
  555. /**
  556. Returns the average of the values in the set, or `nil` if the set is empty.
  557. */
  558. public func average<T: AddableType>() -> T? {
  559. return average(ofProperty: "self")
  560. }
  561. }
  562. extension MutableSet: RealmCollection {
  563. /// The type of the objects stored within the set.
  564. public typealias ElementType = Element
  565. // MARK: Sequence Support
  566. /// Returns a `RLMIterator` that yields successive elements in the `MutableSet`.
  567. public func makeIterator() -> RLMIterator<Element> {
  568. return RLMIterator(collection: rlmSet)
  569. }
  570. /// The position of the first element in a non-empty collection.
  571. /// Identical to endIndex in an empty collection.
  572. public var startIndex: Int { return 0 }
  573. /// The collection's "past the end" position.
  574. /// endIndex is not a valid argument to subscript, and is always reachable from startIndex by
  575. /// zero or more applications of successor().
  576. public var endIndex: Int { return count }
  577. public func index(after i: Int) -> Int { return i + 1 }
  578. public func index(before i: Int) -> Int { return i - 1 }
  579. /// :nodoc:
  580. public func _observe(_ keyPaths: [String]?,
  581. _ queue: DispatchQueue?,
  582. _ block: @escaping (RealmCollectionChange<AnyRealmCollection<Element>>) -> Void)
  583. -> NotificationToken {
  584. return rlmSet.addNotificationBlock(wrapObserveBlock(block), keyPaths: keyPaths, queue: queue)
  585. }
  586. // MARK: Object Retrieval
  587. /**
  588. - warning: Ordering is not guaranteed on a MutableSet. Subscripting is implemented for
  589. convenience should not be relied on.
  590. */
  591. public subscript(position: Int) -> Element {
  592. if let lastAccessedNames = lastAccessedNames {
  593. return Element._rlmKeyPathRecorder(with: lastAccessedNames)
  594. }
  595. throwForNegativeIndex(position)
  596. return dynamicBridgeCast(fromObjectiveC: rlmSet.object(at: UInt(position)))
  597. }
  598. /// :nodoc:
  599. public func index(of object: Element) -> Int? {
  600. fatalError("index(of:) is not available on MutableSet")
  601. }
  602. /// :nodoc:
  603. public func index(matching predicate: NSPredicate) -> Int? {
  604. fatalError("index(matching:) is not available on MutableSet")
  605. }
  606. /// :nodoc:
  607. public func objects(at indexes: IndexSet) -> [Element] {
  608. fatalError("objects(at indexes:) is not available on MutableSet")
  609. }
  610. /**
  611. - warning: Ordering is not guaranteed on a MutableSet. `first` is implemented for
  612. convenience should not be relied on.
  613. */
  614. public var first: Element? {
  615. guard count > 0 else {
  616. return nil
  617. }
  618. return self[0]
  619. }
  620. }
  621. // MARK: - Codable
  622. extension MutableSet: Decodable where Element: Decodable {
  623. public convenience init(from decoder: Decoder) throws {
  624. self.init()
  625. var container = try decoder.unkeyedContainer()
  626. while !container.isAtEnd {
  627. insert(try container.decode(Element.self))
  628. }
  629. }
  630. }
  631. extension MutableSet: Encodable where Element: Encodable {
  632. public func encode(to encoder: Encoder) throws {
  633. var container = encoder.unkeyedContainer()
  634. for value in self {
  635. try container.encode(value)
  636. }
  637. }
  638. }
  639. // MARK: - AssistedObjectiveCBridgeable
  640. extension MutableSet: AssistedObjectiveCBridgeable {
  641. internal static func bridging(from objectiveCValue: Any, with metadata: Any?) -> MutableSet {
  642. guard let objectiveCValue = objectiveCValue as? RLMSet<AnyObject> else { preconditionFailure() }
  643. return MutableSet(objc: objectiveCValue)
  644. }
  645. internal var bridged: (objectiveCValue: Any, metadata: Any?) {
  646. return (objectiveCValue: rlmSet, metadata: nil)
  647. }
  648. }
  649. // MARK: Key Path Strings
  650. extension MutableSet: PropertyNameConvertible {
  651. var propertyInformation: (key: String, isLegacy: Bool)? {
  652. return (key: rlmSet.propertyKey, isLegacy: rlmSet.isLegacyProperty)
  653. }
  654. }