Add debug Logger to FaviconDownloader.

This commit is contained in:
Brent Simmons 2025-01-22 21:31:44 -08:00
parent 32663a73d7
commit 674dbb5bc3

View File

@ -8,12 +8,13 @@
import Foundation import Foundation
import CoreServices import CoreServices
import UniformTypeIdentifiers
import os
import Articles import Articles
import Account import Account
import RSCore import RSCore
import RSWeb import RSWeb
import Parser import Parser
import UniformTypeIdentifiers
extension Notification.Name { extension Notification.Name {
@ -24,6 +25,9 @@ final class FaviconDownloader {
private static let saveQueue = CoalescingQueue(name: "Cache Save Queue", interval: 1.0) private static let saveQueue = CoalescingQueue(name: "Cache Save Queue", interval: 1.0)
private static let logger = Logger(subsystem: Bundle.main.bundleIdentifier!, category: "FaviconDownloader")
private static let debugLoggingEnabled = false
private let folder: String private let folder: String
private let diskCache: BinaryDiskCache private let diskCache: BinaryDiskCache
private var singleFaviconDownloaderCache = [String: SingleFaviconDownloader]() // faviconURL: SingleFaviconDownloader private var singleFaviconDownloaderCache = [String: SingleFaviconDownloader]() // faviconURL: SingleFaviconDownloader
@ -78,6 +82,10 @@ final class FaviconDownloader {
assert(Thread.isMainThread) assert(Thread.isMainThread)
if Self.debugLoggingEnabled {
Self.logger.debug("FaviconDownloader: favicon for feed \(feed.url)")
}
var homePageURL = feed.homePageURL var homePageURL = feed.homePageURL
if let faviconURL = feed.faviconURL { if let faviconURL = feed.faviconURL {
return favicon(with: faviconURL, homePageURL: homePageURL) return favicon(with: faviconURL, homePageURL: homePageURL)
@ -114,6 +122,11 @@ final class FaviconDownloader {
} }
func favicon(with faviconURL: String, homePageURL: String?) -> IconImage? { func favicon(with faviconURL: String, homePageURL: String?) -> IconImage? {
if Self.debugLoggingEnabled {
Self.logger.debug("FaviconDownloader: downloading favicon with favicon URL \(faviconURL) and home page URL \(homePageURL ?? "()")")
}
let downloader = faviconDownloader(withURL: faviconURL, homePageURL: homePageURL) let downloader = faviconDownloader(withURL: faviconURL, homePageURL: homePageURL)
return downloader.iconImage return downloader.iconImage
} }
@ -128,15 +141,30 @@ final class FaviconDownloader {
} }
} }
if Self.debugLoggingEnabled {
Self.logger.debug("FaviconDownloader: downloading favicon for home page URL \(url)")
}
if homePageURLsWithNoFaviconURLCache.contains(url) { if homePageURLsWithNoFaviconURLCache.contains(url) {
if Self.debugLoggingEnabled {
Self.logger.debug("FaviconDownloader: home page URL \(url) is known to have no favicon")
}
return nil return nil
} }
if let faviconURL = homePageToFaviconURLCache[url] { if let faviconURL = homePageToFaviconURLCache[url] {
if Self.debugLoggingEnabled {
Self.logger.debug("FaviconDownloader: home page URL \(url) has cached favicon URL \(faviconURL)")
}
return favicon(with: faviconURL, homePageURL: url) return favicon(with: faviconURL, homePageURL: url)
} }
if let faviconURLs = findFaviconURLs(with: url) { if let faviconURLs = findFaviconURLs(with: url) {
if Self.debugLoggingEnabled {
Self.logger.debug("FaviconDownloader: found favicon URLs for home page URL \(url): \(faviconURLs)")
}
// If the site explicitly specifies favicon.ico, it will appear twice. // If the site explicitly specifies favicon.ico, it will appear twice.
self.currentHomePageHasOnlyFaviconICO = faviconURLs.count == 1 self.currentHomePageHasOnlyFaviconICO = faviconURLs.count == 1
@ -154,11 +182,17 @@ final class FaviconDownloader {
@objc func didLoadFavicon(_ note: Notification) { @objc func didLoadFavicon(_ note: Notification) {
guard let singleFaviconDownloader = note.object as? SingleFaviconDownloader else { guard let singleFaviconDownloader = note.object as? SingleFaviconDownloader else {
assertionFailure("Expected singleFaviconDownloader as note.object for .DidLoadFavicon notification.")
return return
} }
guard let homePageURL = singleFaviconDownloader.homePageURL else { guard let homePageURL = singleFaviconDownloader.homePageURL else {
return return
} }
if Self.debugLoggingEnabled {
Self.logger.debug("FaviconDownloader: received didLoadFavicon notification for home page URL \(homePageURL)")
}
guard let _ = singleFaviconDownloader.iconImage else { guard let _ = singleFaviconDownloader.iconImage else {
if let faviconURLs = remainingFaviconURLs[homePageURL] { if let faviconURLs = remainingFaviconURLs[homePageURL] {
if let nextIconURL = faviconURLs.first { if let nextIconURL = faviconURLs.first {
@ -188,6 +222,10 @@ final class FaviconDownloader {
return return
} }
if Self.debugLoggingEnabled {
Self.logger.debug("FaviconDownloader: received .htmlMetadataAvailable notification for URL \(url)")
}
Task { @MainActor in Task { @MainActor in
// This will fetch the favicon (if possible) and post a .FaviconDidBecomeAvailable Notification. // This will fetch the favicon (if possible) and post a .FaviconDidBecomeAvailable Notification.
_ = favicon(withHomePageURL: url) _ = favicon(withHomePageURL: url)
@ -213,10 +251,17 @@ private extension FaviconDownloader {
func findFaviconURLs(with homePageURL: String) -> [String]? { func findFaviconURLs(with homePageURL: String) -> [String]? {
if Self.debugLoggingEnabled {
Self.logger.debug("FaviconDownloader: finding favicon URLs for home page URL \(homePageURL)")
}
guard let url = URL(string: homePageURL) else { guard let url = URL(string: homePageURL) else {
return nil return nil
} }
guard let htmlMetadata = HTMLMetadataDownloader.shared.cachedMetadata(for: homePageURL) else { guard let htmlMetadata = HTMLMetadataDownloader.shared.cachedMetadata(for: homePageURL) else {
if Self.debugLoggingEnabled {
Self.logger.debug("FaviconDownloader: skipping finding favicon URLs for home page URL \(homePageURL) because no HTMLMetadata is available yet")
}
return nil return nil
} }
let faviconURLs = htmlMetadata.usableFaviconURLs() ?? [String]() let faviconURLs = htmlMetadata.usableFaviconURLs() ?? [String]()
@ -258,6 +303,11 @@ private extension FaviconDownloader {
func postFaviconDidBecomeAvailableNotification(_ faviconURL: String) { func postFaviconDidBecomeAvailableNotification(_ faviconURL: String) {
DispatchQueue.main.async { DispatchQueue.main.async {
if Self.debugLoggingEnabled {
Self.logger.debug("FaviconDownloader: posting favicon available notification for favicon URL \(faviconURL)")
}
let userInfo: [AnyHashable: Any] = [UserInfoKey.faviconURL: faviconURL] let userInfo: [AnyHashable: Any] = [UserInfoKey.faviconURL: faviconURL]
NotificationCenter.default.post(name: .FaviconDidBecomeAvailable, object: self, userInfo: userInfo) NotificationCenter.default.post(name: .FaviconDidBecomeAvailable, object: self, userInfo: userInfo)
} }
@ -291,6 +341,11 @@ private extension FaviconDownloader {
} }
func saveHomePageToFaviconURLCache() { func saveHomePageToFaviconURLCache() {
if Self.debugLoggingEnabled {
Self.logger.debug("FaviconDownloader: saving homePageToFaviconURLCache")
}
homePageToFaviconURLCacheDirty = false homePageToFaviconURLCacheDirty = false
let encoder = PropertyListEncoder() let encoder = PropertyListEncoder()
@ -305,6 +360,11 @@ private extension FaviconDownloader {
} }
func saveHomePageURLsWithNoFaviconURLCache() { func saveHomePageURLsWithNoFaviconURLCache() {
if Self.debugLoggingEnabled {
Self.logger.debug("FaviconDownloader: saving homePageURLsWithNoFaviconURLCache")
}
homePageURLsWithNoFaviconURLCacheDirty = false homePageURLsWithNoFaviconURLCacheDirty = false
let encoder = PropertyListEncoder() let encoder = PropertyListEncoder()