diff --git a/SessionMessagingKit/Sending & Receiving/Attachments/SignalAttachment.swift b/SessionMessagingKit/Sending & Receiving/Attachments/SignalAttachment.swift index 16dcf5216..ba55cd2b6 100644 --- a/SessionMessagingKit/Sending & Receiving/Attachments/SignalAttachment.swift +++ b/SessionMessagingKit/Sending & Receiving/Attachments/SignalAttachment.swift @@ -94,7 +94,7 @@ public enum TSImageQuality: UInt { // [SignalAttachment hasError] will be true for non-valid attachments. // // TODO: Perhaps do conversion off the main thread? -public class SignalAttachment: Equatable, Hashable { +public class SignalAttachment: Equatable { // MARK: Properties @@ -1111,20 +1111,4 @@ public class SignalAttachment: Equatable, Hashable { lhs.isVoiceMessage == rhs.isVoiceMessage ) } - - // MARK: - Hashable - - public func hash(into hasher: inout Hasher) { - dataUTI.hash(into: &hasher) - captionText.hash(into: &hasher) - linkPreviewDraft.hash(into: &hasher) - isConvertibleToTextMessage.hash(into: &hasher) - isConvertibleToContactShare.hash(into: &hasher) - isVoiceMessage.hash(into: &hasher) - dataSource.hash(into: &hasher) - cachedImage?.size.width.hash(into: &hasher) - cachedImage?.size.height.hash(into: &hasher) - cachedVideoPreview?.size.width.hash(into: &hasher) - cachedVideoPreview?.size.height.hash(into: &hasher) - } } diff --git a/SessionUtilitiesKit/Media/DataSource.swift b/SessionUtilitiesKit/Media/DataSource.swift index 2db8110e8..d14195f00 100644 --- a/SessionUtilitiesKit/Media/DataSource.swift +++ b/SessionUtilitiesKit/Media/DataSource.swift @@ -4,7 +4,7 @@ import Foundation // MARK: - DataSource -public protocol DataSource: Equatable, Hashable { +public protocol DataSource: Equatable { var data: Data { get } var dataUrl: URL? { get } @@ -140,13 +140,6 @@ public class DataSourceValue: DataSource { try data.write(to: URL(fileURLWithPath: path), options: .atomic) } - public func hash(into hasher: inout Hasher) { - data.hash(into: &hasher) - sourceFilename.hash(into: &hasher) - fileExtension.hash(into: &hasher) - shouldDeleteOnDeinit.hash(into: &hasher) - } - public static func == (lhs: DataSourceValue, rhs: DataSourceValue) -> Bool { return ( lhs.data == rhs.data && @@ -234,12 +227,6 @@ public class DataSourcePath: DataSource { try FileManager.default.copyItem(atPath: filePath, toPath: path) } - public func hash(into hasher: inout Hasher) { - filePath.hash(into: &hasher) - sourceFilename.hash(into: &hasher) - shouldDeleteOnDeinit.hash(into: &hasher) - } - public static func == (lhs: DataSourcePath, rhs: DataSourcePath) -> Bool { return ( lhs.filePath == rhs.filePath && diff --git a/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentApprovalViewController.swift b/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentApprovalViewController.swift index caab513c4..cb0c64439 100644 --- a/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentApprovalViewController.swift +++ b/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentApprovalViewController.swift @@ -91,7 +91,7 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC set { setCurrentItem(newValue, direction: .forward, animated: false) } } - private var cachedPages: [SignalAttachmentItem: AttachmentPrepViewController] = [:] + private var cachedPages: [UUID: AttachmentPrepViewController] = [:] public var shouldHideControls: Bool { guard let pageViewController: AttachmentPrepViewController = pageViewControllers?.first else { @@ -417,7 +417,7 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC } private func buildPage(item: SignalAttachmentItem) -> AttachmentPrepViewController? { - if let cachedPage = cachedPages[item] { + if let cachedPage = cachedPages[item.uniqueIdentifier] { Log.debug("[AttachmentApprovalViewController] cache hit.") return cachedPage } @@ -425,7 +425,7 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC Log.debug("[AttachmentApprovalViewController] cache miss.") let viewController = AttachmentPrepViewController(attachmentItem: item, using: dependencies) viewController.prepDelegate = self - cachedPages[item] = viewController + cachedPages[item.uniqueIdentifier] = viewController return viewController } diff --git a/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentItemCollection.swift b/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentItemCollection.swift index 98188f870..225669dfc 100644 --- a/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentItemCollection.swift +++ b/SignalUtilitiesKit/Media Viewing & Editing/Attachment Approval/AttachmentItemCollection.swift @@ -24,12 +24,13 @@ class AddMoreRailItem: GalleryRailItem { } } -class SignalAttachmentItem: Hashable { +class SignalAttachmentItem: Equatable { enum SignalAttachmentItemError: Error { case noThumbnail } + let uniqueIdentifier: UUID = UUID() let attachment: SignalAttachment // This might be nil if the attachment is not a valid image. @@ -63,12 +64,6 @@ class SignalAttachmentItem: Hashable { return attachment.staticThumbnail() } - // MARK: Hashable - - func hash(into hasher: inout Hasher) { - attachment.hash(into: &hasher) - } - // MARK: Equatable static func == (lhs: SignalAttachmentItem, rhs: SignalAttachmentItem) -> Bool {