// // ListSnapshot.swift // CoreStore // // Copyright © 2018 John Rommel Estropia // // Permission is hereby granted, free of charge, to any person obtaining a copy // of this software and associated documentation files (the "Software"), to deal // in the Software without restriction, including without limitation the rights // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell // copies of the Software, and to permit persons to whom the Software is // furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included in all // copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE // SOFTWARE. // import CoreData #if canImport(UIKit) import UIKit #elseif canImport(AppKit) import AppKit #endif // MARK: - ListSnapshot public struct ListSnapshot: SnapshotResult, RandomAccessCollection, Hashable { // MARK: Public public typealias SectionID = String public typealias ItemID = O.ObjectID public init(byCloning snapshot: ListSnapshot, for dataStack: DataStack) { // if #available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) { // // self.init( // diffableSnapshot: snapshot.diffableSnapshot as! NSDiffableDataSourceSnapshot, // context: dataStack.mainContext // ) // } // else { self.init( diffableSnapshot: snapshot.diffableSnapshot as! Internals.DiffableDataSourceSnapshot, context: dataStack.mainContext ) // } } public subscript(indices indices: S) -> [LiveObject] where S.Element == Index { let context = self.context! let itemIDs = self.diffableSnapshot.itemIdentifiers return indices.map { position in let itemID = itemIDs[position] return LiveObject(objectID: itemID, context: context) } } public subscript(section sectionID: SectionID) -> [LiveObject] { let context = self.context! let itemIDs = self.diffableSnapshot.itemIdentifiers(inSection: sectionID) return itemIDs.map { return LiveObject(objectID: $0, context: context) } } public subscript(section sectionID: SectionID, itemIndices itemIndices: S) -> [LiveObject] where S.Element == Int { let context = self.context! let itemIDs = self.diffableSnapshot.itemIdentifiers(inSection: sectionID) return itemIndices.map { position in let itemID = itemIDs[position] return LiveObject(objectID: itemID, context: context) } } public var numberOfItems: Int { return self.diffableSnapshot.numberOfItems } public var numberOfSections: Int { return self.diffableSnapshot.numberOfSections } public var sectionIdentifiers: [SectionID] { return self.diffableSnapshot.sectionIdentifiers } public var itemIdentifiers: [ItemID] { return self.diffableSnapshot.itemIdentifiers } public func numberOfItems(inSection identifier: SectionID) -> Int { return self.diffableSnapshot.numberOfItems(inSection: identifier) } public func itemIdentifiers(inSection identifier: SectionID) -> [ItemID] { return self.diffableSnapshot.itemIdentifiers(inSection: identifier) } public func itemIdentifiers(inSection identifier: SectionID, atIndices indices: IndexSet) -> [ItemID] { let itemIDs = self.diffableSnapshot.itemIdentifiers(inSection: identifier) return indices.map({ itemIDs[$0] }) } public func sectionIdentifier(containingItem identifier: ItemID) -> SectionID? { return self.diffableSnapshot.sectionIdentifier(containingItem: identifier) } public func indexOfItem(_ identifier: ItemID) -> Index? { return self.diffableSnapshot.indexOfItem(identifier) } public func indexOfSection(_ identifier: SectionID) -> Int? { return self.diffableSnapshot.indexOfSection(identifier) } public mutating func appendItems(_ identifiers: [ItemID], toSection sectionIdentifier: SectionID? = nil) { self.diffableSnapshot.appendItems(identifiers, toSection: sectionIdentifier) } public mutating func insertItems(_ identifiers: [ItemID], beforeItem beforeIdentifier: ItemID) { self.diffableSnapshot.insertItems(identifiers, beforeItem: beforeIdentifier) } public mutating func insertItems(_ identifiers: [ItemID], afterItem afterIdentifier: ItemID) { self.diffableSnapshot.insertItems(identifiers, afterItem: afterIdentifier) } public mutating func deleteItems(_ identifiers: [ItemID]) { self.diffableSnapshot.deleteItems(identifiers) } public mutating func deleteAllItems() { self.diffableSnapshot.deleteAllItems() } public mutating func moveItem(_ identifier: ItemID, beforeItem toIdentifier: ItemID) { self.diffableSnapshot.moveItem(identifier, beforeItem: toIdentifier) } public mutating func moveItem(_ identifier: ItemID, afterItem toIdentifier: ItemID) { self.diffableSnapshot.moveItem(identifier, afterItem: toIdentifier) } public mutating func reloadItems(_ identifiers: [ItemID]) { self.diffableSnapshot.reloadItems(identifiers) } public mutating func appendSections(_ identifiers: [SectionID]) { self.diffableSnapshot.appendSections(identifiers) } public mutating func insertSections(_ identifiers: [SectionID], beforeSection toIdentifier: SectionID) { self.diffableSnapshot.insertSections(identifiers, beforeSection: toIdentifier) } public mutating func insertSections(_ identifiers: [SectionID], afterSection toIdentifier: SectionID) { self.diffableSnapshot.insertSections(identifiers, afterSection: toIdentifier) } public mutating func deleteSections(_ identifiers: [SectionID]) { self.diffableSnapshot.deleteSections(identifiers) } public mutating func moveSection(_ identifier: SectionID, beforeSection toIdentifier: SectionID) { self.diffableSnapshot.moveSection(identifier, beforeSection: toIdentifier) } public mutating func moveSection(_ identifier: SectionID, afterSection toIdentifier: SectionID) { self.diffableSnapshot.moveSection(identifier, afterSection: toIdentifier) } public mutating func reloadSections(_ identifiers: [SectionID]) { self.diffableSnapshot.reloadSections(identifiers) } // MARK: SnapshotResult public typealias ObjectType = O // MARK: RandomAccessCollection public var startIndex: Index { return self.diffableSnapshot.itemIdentifiers.startIndex } public var endIndex: Index { return self.diffableSnapshot.itemIdentifiers.endIndex } public subscript(position: Index) -> Element { let context = self.context! let itemID = self.diffableSnapshot.itemIdentifiers[position] return LiveObject(objectID: itemID, context: context) } // MARK: Sequence public typealias Element = LiveObject public typealias Index = Int // MARK: Equatable public static func == (_ lhs: Self, _ rhs: Self) -> Bool { return lhs.id == rhs.id } // MARK: Hashable public func hash(into hasher: inout Hasher) { hasher.combine(self.id) } // MARK: Internal internal private(set) var diffableSnapshot: DiffableDataSourceSnapshotProtocol internal init() { // if #available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) { // // self.diffableSnapshot = NSDiffableDataSourceSnapshot() // } // else { self.diffableSnapshot = Internals.DiffableDataSourceSnapshot() // } self.context = nil } // @available(iOS 13.0, tvOS 13.0, watchOS 6.0, macOS 10.15, *) // internal init(diffableSnapshot: NSDiffableDataSourceSnapshot, context: NSManagedObjectContext) { // // self.diffableSnapshot = diffableSnapshot // self.context = context // } internal init(diffableSnapshot: Internals.DiffableDataSourceSnapshot, context: NSManagedObjectContext) { self.diffableSnapshot = diffableSnapshot self.context = context } // MARK: Private private let id: UUID = .init() private let context: NSManagedObjectContext? }