NetNewsWire/Frameworks/Database/AttachmentsTable.swift

256 lines
7.4 KiB
Swift
Raw Normal View History

//
2017-07-17 05:51:08 +02:00
// AttachmentsTable.swift
// Database
//
// Created by Brent Simmons on 7/15/17.
// Copyright © 2017 Ranchero Software. All rights reserved.
//
import Foundation
import RSDatabase
import Data
// Attachments are treated as atomic.
// If an attachment in a feed changes any of its values,
// its actually saved as a new attachment and the old one is deleted.
// (This is rare compared to an article in a feed changing its text, for instance.)
//
// Article -> Attachment is one-to-many.
// Attachment -> Article is one-to-one.
// A given attachment can be owned by one and only one Article.
// An attachment with the same exact values (except for articleID) might exist.
// (That would be quite rare. But its by design.)
//
// All the functions here must be called only from inside the database serial queue.
// (The serial queue makes locking unnecessary.)
//
// Attachments are cached, for the lifetime of the app run, once fetched or saved.
// Because:
// * They dont take up much space.
// * It seriously cuts down on the number of database reads and writes.
2017-08-07 06:16:13 +02:00
//
// CREATE TABLE if not EXISTS attachments(databaseID TEXT NOT NULL PRIMARY KEY, articleID TEXT NOT NULL, url TEXT NOT NULL, mimeType TEXT, title TEXT, sizeInBytes INTEGER, durationInSeconds INTEGER);
2017-07-17 05:51:08 +02:00
final class AttachmentsTable: DatabaseTable {
let name: String
2017-07-29 21:13:38 +02:00
let queue: RSDatabaseQueue
2017-08-04 06:10:01 +02:00
private let cacheByArticleID = ObjectCache<Attachment>(keyPathForID: \Attachment.articleID)
private let cacheByDatabaseID = ObjectCache<Attachment>(keyPathForID: \Attachment.databaseID)
2017-07-29 21:13:38 +02:00
init(name: String, queue: RSDatabaseQueue) {
self.name = name
2017-07-29 21:13:38 +02:00
self.queue = queue
}
private var cachedAttachments = [String: Attachment]() // Attachment.databaseID key
private var cachedAttachmentsByArticle = [String: Set<Attachment>]() // Article.databaseID key
private var articlesWithNoAttachments = Set<String>() // Article.databaseID
func fetchAttachmentsForArticles(_ articles: Set<Article>, database: FMDatabase) {
}
func saveAttachmentsForArticles(_ articles: Set<Article>, database: FMDatabase) {
// This is complex and overly long because its optimized for fewest database hits.
var articlesWithPossiblyAllAttachmentsDeleted = Set<Article>()
var attachmentsToSave = Set<Attachment>()
var attachmentsToDelete = Set<Attachment>()
func reconcileAttachments(incomingAttachments: Set<Attachment>, existingAttachments: Set<Attachment>) {
for oneIncomingAttachment in incomingAttachments { // Add some.
if !existingAttachments.contains(oneIncomingAttachment) {
attachmentsToSave.insert(oneIncomingAttachment)
}
}
for oneExistingAttachment in existingAttachments { // Delete some.
if !incomingAttachments.contains(oneExistingAttachment) {
attachmentsToDelete.insert(oneExistingAttachment)
}
}
}
for oneArticle in articles {
if let oneAttachments = oneArticle.attachments, !oneAttachments.isEmpty {
// If it matches the cache, then do nothing.
if let oneCachedAttachments = cachedAttachmentsByArticle(oneArticle.databaseID) {
if oneCachedAttachments == oneAttachments {
continue
}
// There is a cache and it doesnt match.
reconcileAttachments(incomingAttachments: oneAttachments, existingAttachments: oneCachedAttachments)
}
else { // no cache, but article has attachments
if let resultSet = table.selectRowsWhere(key: DatabaseKey.articleID, equals: oneArticle.databaseID, in: database) {
let existingAttachments = attachmentsWithResultSet(resultSet)
if existingAttachments != oneAttachments { // Dont match?
reconcileAttachments(incomingAttachments: oneAttachments, existingAttachments: existingAttachments)
}
}
else {
// Nothing in database. Just save.
attachmentsToSave.formUnion(oneAttachments)
}
}
cacheAttachmentsForArticle(oneArticle)
}
else {
// No attachments: might need to delete them all from database
if !articlesWithNoAttachments.contains(oneArticle.databaseID) {
articlesWithPossiblyAllAttachmentsDeleted.insert(oneArticle)
uncacheAttachmentsForArticle(oneArticle)
}
}
}
2017-07-17 05:51:08 +02:00
deleteAttachmentsForArticles(articlesWithPossiblyAllAttachmentsDeleted, database)
deleteAttachments(attachmentsToDelete, database)
saveAttachments(attachmentsToSave, database)
}
}
2017-08-04 06:10:01 +02:00
private extension AttachmentsTable {
2017-07-17 05:51:08 +02:00
func deleteAttachmentsForArticles(_ articles: Set<Article>, _ database: FMDatabase) {
2017-07-17 05:51:08 +02:00
if articles.isEmpty {
return
}
articles.forEach { uncacheAttachmentsForArticle($0) }
let articleIDs = articles.map { $0.databaseID }
2017-07-17 05:51:08 +02:00
deleteRowsWhere(key: DatabaseKey.articleID, equalsAnyValue: articlesIDs, in: database)
}
2017-07-17 05:51:08 +02:00
func deleteAttachments(_ attachments: Set<Attachment>, _ database: FMDatabase) {
if attachments.isEmpty {
return
}
let databaseIDs = attachments.map { $0.databaseID }
deleteRowsWhere(key: DatabaseKey.databaseID, equalsAnyValue: databaseIDs, in: database)
}
2017-07-17 05:51:08 +02:00
func saveAttachments(_ attachments: Set<Attachment>, _ database: FMDatabase) {
if attachments.isEmpty {
return
}
2017-07-17 05:51:08 +02:00
}
func addCachedAttachmentsToArticle(_ article: Article) {
if let _ = article.attachments {
return
}
if let attachments = cachedAttachmentsByArticle[article.databaseID] {
article.attachments = attachments
}
}
func fetchAttachmentsForArticle(_ article: Article, database: FMDatabase) {
if articlesWithNoAttachments.contains(article.databaseID) {
return
}
addCachedAttachmentsToArticle(article)
if let _ = article.attachments {
return
}
}
func uncacheAttachmentsForArticle(_ article: Article) {
assert(article.attachments == nil || article.attachments.isEmpty)
articlesWithNoAttachments.insert(article.databaseID)
cachedAttachmentsByArticle[article.databaseID] = nil
}
func cacheAttachmentsForArticle(_ article: Article) {
guard let attachments = article.attachments, !attachments.isEmpty else {
assertionFailure("article.attachments must not be empty")
}
articlesWithNoAttachments.remove(article.databaseID)
cachedAttachmentsByArticle[article.databaseID] = attachments
cacheAttachment(attachments)
}
func cachedAttachmentForDatabaseID(_ databaseID: String) -> Attachment? {
return cachedAttachments[databaseID]
}
func cacheAttachments(_ attachments: Set<Attachment>) {
attachments.forEach { cacheAttachment($) }
}
func cacheAttachment(_ attachment: Attachment) {
cachedAttachments[attachment.databaseID] = attachment
}
func uncacheAttachments(_ attachments: Set<Attachment>) {
attachments.removeO
attachments.forEach { uncacheAttachment($0) }
}
func uncacheAttachment(_ attachment: Attachment) {
cachedAttachments[attachment.databaseID] = nil
}
func saveAttachmentsForArticle(_ article: Article, database: FMDatabase) {
if let attachments = article.attachments {
}
else {
if articlesWithNoAttachments.contains(article.databaseID) {
return
}
articlesWithNoAttachments.insert(article.databaseID)
cachedAttachmentsByArticle[article.databaseID] = nil
deleteAttachmentsForArticleID(article.databaseID)
}
}
func attachmentsWithResultSet(_ resultSet: FMResultSet) -> Set<Attachment> {
2017-08-06 21:37:47 +02:00
return resultSet.mapToSet(attachmentWithRow)
}
func attachmentWithRow(_ row: FMResultSet) -> Attachment? {
let databaseID = row.string(forColumn: DatabaseKey.databaseID)
if let cachedAttachment = cachedAttachmentForDatabaseID(databaseID) {
return cachedAttachment
}
return Attachment(databaseID: databaseID, row: row)
}
}