// // ListObserver.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 Foundation import CoreData // MARK: - ListObserver /** Implement the `ListObserver` protocol to observe changes to a list of `NSManagedObject`s. `ListObserver`s may register themselves to a `ListMonitor`'s `addObserver(_:)` method: ``` let monitor = CoreStore.monitorList( From(), OrderBy(.ascending("lastName")) ) monitor.addObserver(self) ``` */ @available(macOS 10.12, *) public protocol ListObserver: class { /** The `NSManagedObject` type for the observed list */ associatedtype ListEntityType: DynamicObject /** Handles processing just before a change to the observed list occurs. (Optional) The default implementation does nothing. - parameter monitor: the `ListMonitor` monitoring the list being observed */ func listMonitorWillChange(_ monitor: ListMonitor) /** Handles processing right after a change to the observed list occurs. (Required) - parameter monitor: the `ListMonitor` monitoring the object being observed */ func listMonitorDidChange(_ monitor: ListMonitor) /** This method is broadcast from within the `ListMonitor`'s `refetch(...)` method to let observers prepare for the internal `NSFetchedResultsController`'s pending change to its predicate, sort descriptors, etc. (Optional) - Important: All `ListMonitor` access between `listMonitorWillRefetch(_:)` and `listMonitorDidRefetch(_:)` will raise and assertion. The actual refetch will happen after the `NSFetchedResultsController`'s last `controllerDidChangeContent(_:)` notification completes. - parameter monitor: the `ListMonitor` monitoring the object being observed */ func listMonitorWillRefetch(_ monitor: ListMonitor) /** After the `ListMonitor`'s `refetch(...)` method is called, this method is broadcast after the `NSFetchedResultsController`'s last `controllerDidChangeContent(_:)` notification completes. (Required) - Important: When `listMonitorDidRefetch(_:)` is called it should be assumed that all `ListMonitor`'s previous data have been reset, including counts, objects, and persistent stores. - parameter monitor: the `ListMonitor` monitoring the object being observed */ func listMonitorDidRefetch(_ monitor: ListMonitor) } // MARK: - ListObserver (Default Implementations) @available(macOS 10.12, *) public extension ListObserver { public func listMonitorWillChange(_ monitor: ListMonitor) { } public func listMonitorWillRefetch(_ monitor: ListMonitor) { } } // MARK: - ListObjectObserver /** Implement the `ListObjectObserver` protocol to observe detailed changes to a list's object. `ListObjectObserver`s may register themselves to a `ListMonitor`'s `addObserver(_:)` method: ``` let monitor = CoreStore.monitorList( From(), OrderBy(.ascending("lastName")) ) monitor.addObserver(self) ``` */ @available(macOS 10.12, *) public protocol ListObjectObserver: ListObserver { /** Notifies that an object was inserted to the specified `NSIndexPath` in the list. (Optional) The default implementation does nothing. - parameter monitor: the `ListMonitor` monitoring the list being observed - parameter object: the entity type for the inserted object - parameter indexPath: the new `NSIndexPath` for the inserted object */ func listMonitor(_ monitor: ListMonitor, didInsertObject object: ListEntityType, toIndexPath indexPath: IndexPath) /** Notifies that an object was deleted from the specified `NSIndexPath` in the list. (Optional) The default implementation does nothing. - parameter monitor: the `ListMonitor` monitoring the list being observed - parameter object: the entity type for the deleted object - parameter indexPath: the `NSIndexPath` for the deleted object */ func listMonitor(_ monitor: ListMonitor, didDeleteObject object: ListEntityType, fromIndexPath indexPath: IndexPath) /** Notifies that an object at the specified `NSIndexPath` was updated. (Optional) The default implementation does nothing. - parameter monitor: the `ListMonitor` monitoring the list being observed - parameter object: the entity type for the updated object - parameter indexPath: the `NSIndexPath` for the updated object */ func listMonitor(_ monitor: ListMonitor, didUpdateObject object: ListEntityType, atIndexPath indexPath: IndexPath) /** Notifies that an object's index changed. (Optional) The default implementation does nothing. - parameter monitor: the `ListMonitor` monitoring the list being observed - parameter object: the entity type for the moved object - parameter fromIndexPath: the previous `NSIndexPath` for the moved object - parameter toIndexPath: the new `NSIndexPath` for the moved object */ func listMonitor(_ monitor: ListMonitor, didMoveObject object: ListEntityType, fromIndexPath: IndexPath, toIndexPath: IndexPath) } // MARK: - ListObjectObserver (Default Implementations) @available(macOS 10.12, *) public extension ListObjectObserver { public func listMonitor(_ monitor: ListMonitor, didInsertObject object: ListEntityType, toIndexPath indexPath: IndexPath) { } public func listMonitor(_ monitor: ListMonitor, didDeleteObject object: ListEntityType, fromIndexPath indexPath: IndexPath) { } public func listMonitor(_ monitor: ListMonitor, didUpdateObject object: ListEntityType, atIndexPath indexPath: IndexPath) { } public func listMonitor(_ monitor: ListMonitor, didMoveObject object: ListEntityType, fromIndexPath: IndexPath, toIndexPath: IndexPath) { } } // MARK: - ListSectionObserver /** Implement the `ListSectionObserver` protocol to observe changes to a list's section info. `ListSectionObserver`s may register themselves to a `ListMonitor`'s `addObserver(_:)` method: ``` let monitor = CoreStore.monitorSectionedList( From(), SectionBy("age") { "Age \($0)" }, OrderBy(.ascending("lastName")) ) monitor.addObserver(self) ``` */ @available(macOS 10.12, *) public protocol ListSectionObserver: ListObjectObserver { /** Notifies that a section was inserted at the specified index. (Optional) The default implementation does nothing. - parameter monitor: the `ListMonitor` monitoring the list being observed - parameter sectionInfo: the `NSFetchedResultsSectionInfo` for the inserted section - parameter sectionIndex: the new section index for the new section */ func listMonitor(_ monitor: ListMonitor, didInsertSection sectionInfo: NSFetchedResultsSectionInfo, toSectionIndex sectionIndex: Int) /** Notifies that a section was inserted at the specified index. (Optional) The default implementation does nothing. - parameter monitor: the `ListMonitor` monitoring the list being observed - parameter sectionInfo: the `NSFetchedResultsSectionInfo` for the deleted section - parameter sectionIndex: the previous section index for the deleted section */ func listMonitor(_ monitor: ListMonitor, didDeleteSection sectionInfo: NSFetchedResultsSectionInfo, fromSectionIndex sectionIndex: Int) } // MARK: - ListSectionObserver (Default Implementations) @available(macOS 10.12, *) public extension ListSectionObserver { public func listMonitor(_ monitor: ListMonitor, didInsertSection sectionInfo: NSFetchedResultsSectionInfo, toSectionIndex sectionIndex: Int) { } public func listMonitor(_ monitor: ListMonitor, didDeleteSection sectionInfo: NSFetchedResultsSectionInfo, fromSectionIndex sectionIndex: Int) { } }