NetNewsWire/Frameworks/Database/StatusesTable.swift

214 lines
4.8 KiB
Swift
Raw Normal View History

//
// StatusesTable.swift
// Evergreen
//
// Created by Brent Simmons on 5/8/16.
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
//
import Foundation
import RSCore
import RSDatabase
import Data
2017-08-06 21:37:47 +02:00
// Article->ArticleStatus is a to-one relationship.
//
// CREATE TABLE if not EXISTS statuses (articleID TEXT NOT NULL PRIMARY KEY, read BOOL NOT NULL DEFAULT 0, starred BOOL NOT NULL DEFAULT 0, userDeleted BOOL NOT NULL DEFAULT 0, dateArrived DATE NOT NULL DEFAULT 0, accountInfo BLOB);
typealias StatusesCompletionBlock = ([String: ArticleStatus]) -> Void // [articleID: Status]
final class StatusesTable: DatabaseTable {
2017-07-30 20:22:21 +02:00
let name = DatabaseTableName.statuses
private let cache = StatusCache()
2017-09-05 17:53:45 +02:00
private let queue: RSDatabaseQueue
init(queue: RSDatabaseQueue) {
self.queue = queue
}
// MARK: Cache
2017-09-05 17:53:45 +02:00
func cachedStatus(for articleID: String) -> ArticleStatus? {
2017-07-29 21:13:38 +02:00
2017-09-05 17:53:45 +02:00
assert(Thread.isMainThread)
assert(cache[articleID] != nil)
return cache[articleID]
2017-08-27 00:37:15 +02:00
}
func addIfNotCached(_ statuses: Set<ArticleStatus>) {
if statuses.isEmpty {
return
}
if Thread.isMainThread {
self.cache.addIfNotCached(statuses)
}
else {
DispatchQueue.main.async {
self.cache.addIfNotCached(statuses)
}
}
}
// MARK: Creating/Updating
func ensureStatusesForArticleIDs(_ articleIDs: Set<String>, _ completion: @escaping StatusesCompletionBlock) {
2017-09-05 17:53:45 +02:00
// Adds them to the cache if not cached.
assert(Thread.isMainThread)
// Check cache.
let articleIDsMissingCachedStatus = articleIDsWithNoCachedStatus(articleIDs)
if articleIDsMissingCachedStatus.isEmpty {
completion(statusesDictionary(articleIDs))
return
}
2017-09-05 17:53:45 +02:00
// Check database.
2017-09-05 17:53:45 +02:00
fetchAndCacheStatusesForArticleIDs(articleIDsMissingCachedStatus) {
let articleIDsNeedingStatus = self.articleIDsWithNoCachedStatus(articleIDs)
2017-09-14 06:41:01 +02:00
if !articleIDsNeedingStatus.isEmpty {
// Create new statuses.
self.createAndSaveStatusesForArticleIDs(articleIDsNeedingStatus)
2017-09-05 17:53:45 +02:00
}
2017-09-14 06:41:01 +02:00
completion(self.statusesDictionary(articleIDs))
}
}
// MARK: Marking
func markArticleIDs(_ articleIDs: Set<String>, _ statusKey: String, _ flag: Bool, _ database: FMDatabase) {
// TODO: replace statuses in cache.
updateRowsWithValue(NSNumber(value: flag), valueKey: statusKey, whereKey: DatabaseKey.articleID, matches: Array(articleIDs), database: database)
}
// MARK: Fetching
func statusWithRow(_ row: FMResultSet) -> ArticleStatus? {
2017-08-06 21:37:47 +02:00
guard let articleID = row.string(forColumn: DatabaseKey.articleID) else {
return nil
}
guard let dateArrived = row.date(forColumn: DatabaseKey.dateArrived) else {
return nil
2017-08-06 21:37:47 +02:00
}
let articleStatus = ArticleStatus(articleID: articleID, dateArrived: dateArrived, row: row)
return articleStatus
}
}
// MARK: - Private
private extension StatusesTable {
2017-09-05 17:53:45 +02:00
// MARK: Cache
func articleIDsWithNoCachedStatus(_ articleIDs: Set<String>) -> Set<String> {
assert(Thread.isMainThread)
return Set(articleIDs.filter { cache[$0] == nil })
}
func statusesDictionary(_ articleIDs: Set<String>) -> [String: ArticleStatus] {
assert(Thread.isMainThread)
var d = [String: ArticleStatus]()
for articleID in articleIDs {
if let articleStatus = cache[articleID] {
d[articleID] = articleStatus
}
}
return d
}
// MARK: Creating
2017-09-05 17:53:45 +02:00
func saveStatuses(_ statuses: Set<ArticleStatus>) {
2017-08-27 00:37:15 +02:00
2017-09-05 17:53:45 +02:00
queue.update { (database) in
2017-09-14 06:41:01 +02:00
let statusArray = statuses.map { $0.databaseDictionary()! }
self.insertRows(statusArray, insertType: .orIgnore, in: database)
2017-09-05 17:53:45 +02:00
}
2017-08-27 00:37:15 +02:00
}
2017-09-14 06:41:01 +02:00
func createAndSaveStatusesForArticleIDs(_ articleIDs: Set<String>) {
2017-08-27 00:37:15 +02:00
2017-09-05 17:53:45 +02:00
assert(Thread.isMainThread)
2017-08-27 00:37:15 +02:00
let now = Date()
let statuses = Set(articleIDs.map { ArticleStatus(articleID: $0, dateArrived: now) })
2017-09-05 17:53:45 +02:00
cache.addIfNotCached(statuses)
saveStatuses(statuses)
2017-08-27 00:37:15 +02:00
}
2017-09-05 17:53:45 +02:00
func fetchAndCacheStatusesForArticleIDs(_ articleIDs: Set<String>, _ completion: @escaping RSVoidCompletionBlock) {
queue.fetch { (database) in
guard let resultSet = self.selectRowsWhere(key: DatabaseKey.articleID, inValues: Array(articleIDs), in: database) else {
2017-09-05 17:53:45 +02:00
completion()
return
}
let statuses = resultSet.mapToSet(self.statusWithRow)
2017-09-05 17:53:45 +02:00
DispatchQueue.main.async {
self.cache.addIfNotCached(statuses)
2017-09-05 17:53:45 +02:00
completion()
}
}
}
}
private final class StatusCache {
2017-09-05 17:53:45 +02:00
// Main thread only.
var dictionary = [String: ArticleStatus]()
func add(_ statuses: Set<ArticleStatus>) {
// Replaces any cached statuses.
for status in statuses {
self[status.articleID] = status
}
}
2017-09-05 17:53:45 +02:00
func addIfNotCached(_ statuses: Set<ArticleStatus>) {
// Does not replace already cached statuses.
for status in statuses {
let articleID = status.articleID
if let _ = self[articleID] {
continue
}
2017-09-05 17:53:45 +02:00
self[articleID] = status
}
}
2017-09-05 17:53:45 +02:00
subscript(_ articleID: String) -> ArticleStatus? {
get {
return self[articleID]
}
set {
self[articleID] = newValue
}
}
}