123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751 |
- import Foundation
- import Realm
- import Realm.Private
- public class ListBase: RLMListBase {
-
-
-
-
- @objc public override var description: String {
- return descriptionWithMaxDepth(RLMDescriptionMaxDepth)
- }
- @objc private func descriptionWithMaxDepth(_ depth: UInt) -> String {
- return RLMDescriptionWithMaxDepth("List", _rlmArray, depth)
- }
-
- public var count: Int { return Int(_rlmArray.count) }
- }
- public final class List<Element: RealmCollectionValue>: ListBase {
-
-
- public var realm: Realm? {
- return _rlmArray.realm.map { Realm($0) }
- }
-
- public var isInvalidated: Bool { return _rlmArray.isInvalidated }
-
-
- public override init() {
- super.init(array: Element._rlmArray())
- }
- internal init(rlmArray: RLMArray<AnyObject>) {
- super.init(array: rlmArray)
- }
-
-
- public func index(of object: Element) -> Int? {
- return notFoundToNil(index: _rlmArray.index(of: dynamicBridgeCast(fromSwift: object) as AnyObject))
- }
-
- public func index(matching predicate: NSPredicate) -> Int? {
- return notFoundToNil(index: _rlmArray.indexOfObject(with: predicate))
- }
-
- public func index(matching predicateFormat: String, _ args: Any...) -> Int? {
- return index(matching: NSPredicate(format: predicateFormat, argumentArray: unwrapOptionals(in: args)))
- }
-
-
- public subscript(position: Int) -> Element {
- get {
- throwForNegativeIndex(position)
- return dynamicBridgeCast(fromObjectiveC: _rlmArray.object(at: UInt(position)))
- }
- set {
- throwForNegativeIndex(position)
- _rlmArray.replaceObject(at: UInt(position), with: dynamicBridgeCast(fromSwift: newValue) as AnyObject)
- }
- }
-
- public var first: Element? { return _rlmArray.firstObject().map(dynamicBridgeCast) }
-
- public var last: Element? { return _rlmArray.lastObject().map(dynamicBridgeCast) }
-
-
- @nonobjc public func value(forKey key: String) -> [AnyObject] {
- return _rlmArray.value(forKeyPath: key)! as! [AnyObject]
- }
-
- @nonobjc public func value(forKeyPath keyPath: String) -> [AnyObject] {
- return _rlmArray.value(forKeyPath: keyPath) as! [AnyObject]
- }
-
- public override func setValue(_ value: Any?, forKey key: String) {
- return _rlmArray.setValue(value, forKeyPath: key)
- }
-
-
- public func filter(_ predicateFormat: String, _ args: Any...) -> Results<Element> {
- return Results<Element>(_rlmArray.objects(with: NSPredicate(format: predicateFormat,
- argumentArray: unwrapOptionals(in: args))))
- }
-
- public func filter(_ predicate: NSPredicate) -> Results<Element> {
- return Results<Element>(_rlmArray.objects(with: predicate))
- }
-
-
- public func sorted(byKeyPath keyPath: String, ascending: Bool = true) -> Results<Element> {
- return sorted(by: [SortDescriptor(keyPath: keyPath, ascending: ascending)])
- }
-
- public func sorted<S: Sequence>(by sortDescriptors: S) -> Results<Element>
- where S.Iterator.Element == SortDescriptor {
- return Results<Element>(_rlmArray.sortedResults(using: sortDescriptors.map { $0.rlmSortDescriptorValue }))
- }
-
-
- public func min<T: MinMaxType>(ofProperty property: String) -> T? {
- return _rlmArray.min(ofProperty: property).map(dynamicBridgeCast)
- }
-
- public func max<T: MinMaxType>(ofProperty property: String) -> T? {
- return _rlmArray.max(ofProperty: property).map(dynamicBridgeCast)
- }
-
- public func sum<T: AddableType>(ofProperty property: String) -> T {
- return dynamicBridgeCast(fromObjectiveC: _rlmArray.sum(ofProperty: property))
- }
-
- public func average(ofProperty property: String) -> Double? {
- return _rlmArray.average(ofProperty: property).map(dynamicBridgeCast)
- }
-
-
- public func append(_ object: Element) {
- _rlmArray.add(dynamicBridgeCast(fromSwift: object) as AnyObject)
- }
-
- public func append<S: Sequence>(objectsIn objects: S) where S.Iterator.Element == Element {
- for obj in objects {
- _rlmArray.add(dynamicBridgeCast(fromSwift: obj) as AnyObject)
- }
- }
-
- public func insert(_ object: Element, at index: Int) {
- throwForNegativeIndex(index)
- _rlmArray.insert(dynamicBridgeCast(fromSwift: object) as AnyObject, at: UInt(index))
- }
-
- public func remove(at index: Int) {
- throwForNegativeIndex(index)
- _rlmArray.removeObject(at: UInt(index))
- }
-
- public func removeAll() {
- _rlmArray.removeAllObjects()
- }
-
- public func replace(index: Int, object: Element) {
- throwForNegativeIndex(index)
- _rlmArray.replaceObject(at: UInt(index), with: dynamicBridgeCast(fromSwift: object) as AnyObject)
- }
-
- public func move(from: Int, to: Int) {
- throwForNegativeIndex(from)
- throwForNegativeIndex(to)
- _rlmArray.moveObject(at: UInt(from), to: UInt(to))
- }
-
- public func swapAt(_ index1: Int, _ index2: Int) {
- throwForNegativeIndex(index1, parameterName: "index1")
- throwForNegativeIndex(index2, parameterName: "index2")
- _rlmArray.exchangeObject(at: UInt(index1), withObjectAt: UInt(index2))
- }
-
-
- public func observe(_ block: @escaping (RealmCollectionChange<List>) -> Void) -> NotificationToken {
- return _rlmArray.addNotificationBlock { _, change, error in
- block(RealmCollectionChange.fromObjc(value: self, change: change, error: error))
- }
- }
- }
- extension List where Element: MinMaxType {
-
- public func min() -> Element? {
- return _rlmArray.min(ofProperty: "self").map(dynamicBridgeCast)
- }
-
- public func max() -> Element? {
- return _rlmArray.max(ofProperty: "self").map(dynamicBridgeCast)
- }
- }
- extension List where Element: AddableType {
-
- public func sum() -> Element {
- return sum(ofProperty: "self")
- }
-
- public func average() -> Double? {
- return average(ofProperty: "self")
- }
- }
- extension List: RealmCollection {
-
- public typealias ElementType = Element
-
-
- public func makeIterator() -> RLMIterator<Element> {
- return RLMIterator(collection: _rlmArray)
- }
- #if swift(>=4)
-
- public func replaceSubrange<C: Collection, R>(_ subrange: R, with newElements: C)
- where C.Iterator.Element == Element, R: RangeExpression, List<Element>.Index == R.Bound {
- let subrange = subrange.relative(to: self)
- for _ in subrange.lowerBound..<subrange.upperBound {
- remove(at: subrange.lowerBound)
- }
- for x in newElements.reversed() {
- insert(x, at: subrange.lowerBound)
- }
- }
- #else
-
- public func replaceSubrange<C: Collection>(_ subrange: Range<Int>, with newElements: C)
- where C.Iterator.Element == Element {
- for _ in subrange.lowerBound..<subrange.upperBound {
- remove(at: subrange.lowerBound)
- }
- for x in newElements.reversed() {
- insert(x, at: subrange.lowerBound)
- }
- }
- #endif
-
-
- public var startIndex: Int { return 0 }
-
-
-
- public var endIndex: Int { return count }
- public func index(after i: Int) -> Int { return i + 1 }
- public func index(before i: Int) -> Int { return i - 1 }
-
- public func _observe(_ block: @escaping (RealmCollectionChange<AnyRealmCollection<Element>>) -> Void) -> NotificationToken {
- let anyCollection = AnyRealmCollection(self)
- return _rlmArray.addNotificationBlock { _, change, error in
- block(RealmCollectionChange.fromObjc(value: anyCollection, change: change, error: error))
- }
- }
- }
- #if swift(>=4.0)
- extension List: MutableCollection {
- #if swift(>=4.1)
- public typealias SubSequence = Slice<List>
- #else
- public typealias SubSequence = RandomAccessSlice<List>
- #endif
-
- public subscript(bounds: Range<Int>) -> SubSequence {
- get {
- return SubSequence(base: self, bounds: bounds)
- }
- set {
- replaceSubrange(bounds.lowerBound..<bounds.upperBound, with: newValue)
- }
- }
-
- public func removeFirst(_ number: Int = 1) {
- let count = Int(_rlmArray.count)
- guard number <= count else {
- throwRealmException("It is not possible to remove more objects (\(number)) from a list"
- + " than it already contains (\(count)).")
- return
- }
- for _ in 0..<number {
- _rlmArray.removeObject(at: 0)
- }
- }
-
- public func removeLast(_ number: Int = 1) {
- let count = Int(_rlmArray.count)
- guard number <= count else {
- throwRealmException("It is not possible to remove more objects (\(number)) from a list"
- + " than it already contains (\(count)).")
- return
- }
- for _ in 0..<number {
- _rlmArray.removeLastObject()
- }
- }
-
- public func insert<C: Collection>(contentsOf newElements: C, at i: Int) where C.Iterator.Element == Element {
- var currentIndex = i
- for item in newElements {
- insert(item, at: currentIndex)
- currentIndex += 1
- }
- }
- #if swift(>=4.1.50)
-
- public func removeSubrange<R>(_ boundsExpression: R) where R: RangeExpression, List<Element>.Index == R.Bound {
- let bounds = boundsExpression.relative(to: self)
- for _ in bounds {
- remove(at: bounds.lowerBound)
- }
- }
- #else
-
- public func removeSubrange(_ bounds: Range<Int>) {
- removeSubrange(bounds.lowerBound..<bounds.upperBound)
- }
-
- public func removeSubrange(_ bounds: ClosedRange<Int>) {
- removeSubrange(bounds.lowerBound...bounds.upperBound)
- }
-
- public func removeSubrange(_ bounds: CountableRange<Int>) {
- for _ in bounds {
- remove(at: bounds.lowerBound)
- }
- }
-
- public func removeSubrange(_ bounds: CountableClosedRange<Int>) {
- for _ in bounds {
- remove(at: bounds.lowerBound)
- }
- }
-
- public func removeSubrange(_ bounds: DefaultRandomAccessIndices<List>) {
- removeSubrange(bounds.startIndex..<bounds.endIndex)
- }
-
- public func replaceSubrange<C: Collection>(_ subrange: ClosedRange<Int>, with newElements: C)
- where C.Iterator.Element == Element {
- removeSubrange(subrange)
- insert(contentsOf: newElements, at: subrange.lowerBound)
- }
-
- public func replaceSubrange<C: Collection>(_ subrange: CountableRange<Int>, with newElements: C)
- where C.Iterator.Element == Element {
- removeSubrange(subrange)
- insert(contentsOf: newElements, at: subrange.lowerBound)
- }
-
- public func replaceSubrange<C: Collection>(_ subrange: CountableClosedRange<Int>, with newElements: C)
- where C.Iterator.Element == Element {
- removeSubrange(subrange)
- insert(contentsOf: newElements, at: subrange.lowerBound)
- }
-
- public func replaceSubrange<C: Collection>(_ subrange: DefaultRandomAccessIndices<List>, with newElements: C)
- where C.Iterator.Element == Element {
- removeSubrange(subrange)
- insert(contentsOf: newElements, at: subrange.startIndex)
- }
- #endif
- }
- #else
- extension List: RangeReplaceableCollection {
-
- public func removeLast() {
- guard _rlmArray.count > 0 else {
- throwRealmException("It is not possible to remove an object from an empty list.")
- return
- }
- _rlmArray.removeLastObject()
- }
- }
- #endif
- #if swift(>=4.1)
- extension List: Decodable where Element: Decodable {
- public convenience init(from decoder: Decoder) throws {
- self.init()
- var container = try decoder.unkeyedContainer()
- while !container.isAtEnd {
- append(try container.decode(Element.self))
- }
- }
- }
- extension List: Encodable where Element: Encodable {
- public func encode(to encoder: Encoder) throws {
- var container = encoder.unkeyedContainer()
- for value in self {
- try container.encode(value)
- }
- }
- }
- #endif
- extension List: AssistedObjectiveCBridgeable {
- internal static func bridging(from objectiveCValue: Any, with metadata: Any?) -> List {
- guard let objectiveCValue = objectiveCValue as? RLMArray<AnyObject> else { preconditionFailure() }
- return List(rlmArray: objectiveCValue)
- }
- internal var bridged: (objectiveCValue: Any, metadata: Any?) {
- return (objectiveCValue: _rlmArray, metadata: nil)
- }
- }
- extension List {
- @available(*, unavailable, renamed: "remove(at:)")
- public func remove(objectAtIndex: Int) { fatalError() }
- }
|