2017-07-03 19:40:48 +02:00
|
|
|
//
|
|
|
|
// Database.swift
|
|
|
|
// Evergreen
|
|
|
|
//
|
|
|
|
// Created by Brent Simmons on 7/20/15.
|
|
|
|
// Copyright © 2015 Ranchero Software, LLC. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
|
|
|
import RSCore
|
|
|
|
import RSDatabase
|
2017-07-03 20:20:14 +02:00
|
|
|
import RSParser
|
2017-07-03 19:40:48 +02:00
|
|
|
import Data
|
|
|
|
|
2017-09-16 19:38:54 +02:00
|
|
|
// This file and UnreadCountDictionary are the entirety of the public API for Database.framework.
|
|
|
|
// Everything else is implementation.
|
|
|
|
|
2017-08-23 22:23:12 +02:00
|
|
|
public typealias ArticleResultBlock = (Set<Article>) -> Void
|
2017-09-16 19:21:39 +02:00
|
|
|
public typealias UnreadCountCompletionBlock = (UnreadCountDictionary) -> Void
|
2017-09-16 19:38:54 +02:00
|
|
|
public typealias UpdateArticlesWithFeedCompletionBlock = (Set<Article>?, Set<Article>?) -> Void //newArticles, updatedArticles
|
2017-07-03 19:40:48 +02:00
|
|
|
|
2017-08-23 22:23:12 +02:00
|
|
|
public final class Database {
|
2017-07-03 19:40:48 +02:00
|
|
|
|
2017-09-10 03:46:58 +02:00
|
|
|
private let accountID: String
|
2017-08-21 22:31:14 +02:00
|
|
|
private let articlesTable: ArticlesTable
|
2017-08-27 00:37:15 +02:00
|
|
|
|
2017-09-18 02:03:58 +02:00
|
|
|
public init(databaseFilePath: String, accountID: String) {
|
2017-07-03 19:40:48 +02:00
|
|
|
|
2017-09-10 03:46:58 +02:00
|
|
|
self.accountID = accountID
|
2017-09-16 19:38:54 +02:00
|
|
|
|
2017-09-18 02:03:58 +02:00
|
|
|
let queue = RSDatabaseQueue(filepath: databaseFilePath, excludeFromBackup: false)
|
2017-09-10 03:46:58 +02:00
|
|
|
self.articlesTable = ArticlesTable(name: DatabaseTableName.articles, accountID: accountID, queue: queue)
|
2017-08-21 00:56:58 +02:00
|
|
|
|
2017-07-03 20:20:14 +02:00
|
|
|
let createStatementsPath = Bundle(for: type(of: self)).path(forResource: "CreateStatements", ofType: "sql")!
|
2017-07-03 19:40:48 +02:00
|
|
|
let createStatements = try! NSString(contentsOfFile: createStatementsPath, encoding: String.Encoding.utf8.rawValue)
|
|
|
|
queue.createTables(usingStatements: createStatements as String)
|
|
|
|
queue.vacuumIfNeeded()
|
|
|
|
}
|
|
|
|
|
2017-08-21 06:23:17 +02:00
|
|
|
// MARK: - Fetching Articles
|
2017-07-03 19:40:48 +02:00
|
|
|
|
2017-08-23 22:23:12 +02:00
|
|
|
public func fetchArticles(for feed: Feed) -> Set<Article> {
|
2017-07-03 19:40:48 +02:00
|
|
|
|
2017-08-23 22:23:12 +02:00
|
|
|
return articlesTable.fetchArticles(feed)
|
2017-07-03 19:40:48 +02:00
|
|
|
}
|
|
|
|
|
2017-08-23 22:23:12 +02:00
|
|
|
public func fetchArticlesAsync(for feed: Feed, _ resultBlock: @escaping ArticleResultBlock) {
|
2017-07-03 19:40:48 +02:00
|
|
|
|
2017-09-05 02:10:02 +02:00
|
|
|
articlesTable.fetchArticlesAsync(feed, withLimits: true, resultBlock)
|
2017-07-03 19:40:48 +02:00
|
|
|
}
|
|
|
|
|
2017-09-17 00:25:38 +02:00
|
|
|
public func fetchUnreadArticles(for feeds: Set<Feed>) -> Set<Article> {
|
2017-07-03 19:40:48 +02:00
|
|
|
|
2017-09-17 00:25:38 +02:00
|
|
|
return articlesTable.fetchUnreadArticles(for: feeds)
|
2017-07-03 19:40:48 +02:00
|
|
|
}
|
2017-08-21 06:23:17 +02:00
|
|
|
|
|
|
|
// MARK: - Unread Counts
|
2017-07-03 19:40:48 +02:00
|
|
|
|
2017-09-01 22:31:27 +02:00
|
|
|
public func fetchUnreadCounts(for feeds: Set<Feed>, _ completion: @escaping UnreadCountCompletionBlock) {
|
2017-07-03 19:40:48 +02:00
|
|
|
|
2017-09-01 22:31:27 +02:00
|
|
|
articlesTable.fetchUnreadCounts(feeds, completion)
|
2017-07-03 19:40:48 +02:00
|
|
|
}
|
|
|
|
|
2017-09-16 19:38:54 +02:00
|
|
|
// MARK: - Saving and Updating Articles
|
2017-07-03 19:40:48 +02:00
|
|
|
|
2017-09-10 03:46:58 +02:00
|
|
|
public func update(feed: Feed, parsedFeed: ParsedFeed, completion: @escaping UpdateArticlesWithFeedCompletionBlock) {
|
2017-07-03 19:40:48 +02:00
|
|
|
|
2017-08-23 22:23:12 +02:00
|
|
|
return articlesTable.update(feed, parsedFeed, completion)
|
2017-07-03 19:40:48 +02:00
|
|
|
}
|
|
|
|
|
2017-08-21 06:23:17 +02:00
|
|
|
// MARK: - Status
|
2017-07-03 19:40:48 +02:00
|
|
|
|
2017-09-18 02:03:58 +02:00
|
|
|
public func status(for article: Article) -> ArticleStatus? {
|
|
|
|
|
|
|
|
return articlesTable.status(for: article)
|
|
|
|
}
|
|
|
|
|
|
|
|
public func statuses(for articles: Set<Article>) -> Set<ArticleStatus> {
|
|
|
|
|
|
|
|
return articlesTable.statuses(for: articles)
|
|
|
|
}
|
|
|
|
|
2017-09-16 20:04:29 +02:00
|
|
|
public func mark(_ statuses: Set<ArticleStatus>, statusKey: String, flag: Bool) {
|
2017-09-01 22:31:27 +02:00
|
|
|
|
2017-09-16 20:04:29 +02:00
|
|
|
articlesTable.mark(statuses, statusKey, flag)
|
2017-07-03 19:40:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|