Merge pull request #1010 from mpretty-cyro/fix/attachment-dictionary-crash-2

Reworked the SignalAttachmentItem hash function
pull/1021/head
Morgan Pretty 7 months ago committed by GitHub
commit dfe690cc1a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -104,7 +104,7 @@ public enum TSImageQuality: UInt {
// [SignalAttachment hasError] will be true for non-valid attachments. // [SignalAttachment hasError] will be true for non-valid attachments.
// //
// TODO: Perhaps do conversion off the main thread? // TODO: Perhaps do conversion off the main thread?
public class SignalAttachment: Equatable, Hashable { public class SignalAttachment: Equatable {
// MARK: Properties // MARK: Properties
@ -1131,20 +1131,4 @@ public class SignalAttachment: Equatable, Hashable {
lhs.isVoiceMessage == rhs.isVoiceMessage 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)
}
} }

@ -4,7 +4,7 @@ import Foundation
// MARK: - DataSource // MARK: - DataSource
public protocol DataSource: Equatable, Hashable { public protocol DataSource: Equatable {
var data: Data { get } var data: Data { get }
var dataUrl: URL? { get } var dataUrl: URL? { get }
@ -140,13 +140,6 @@ public class DataSourceValue: DataSource {
try data.write(to: URL(fileURLWithPath: path), options: .atomic) 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 { public static func == (lhs: DataSourceValue, rhs: DataSourceValue) -> Bool {
return ( return (
lhs.data == rhs.data && lhs.data == rhs.data &&
@ -234,12 +227,6 @@ public class DataSourcePath: DataSource {
try FileManager.default.copyItem(atPath: filePath, toPath: path) 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 { public static func == (lhs: DataSourcePath, rhs: DataSourcePath) -> Bool {
return ( return (
lhs.filePath == rhs.filePath && lhs.filePath == rhs.filePath &&

@ -95,7 +95,7 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC
set { setCurrentItem(newValue, direction: .forward, animated: false) } set { setCurrentItem(newValue, direction: .forward, animated: false) }
} }
private var cachedPages: [SignalAttachmentItem: AttachmentPrepViewController] = [:] private var cachedPages: [UUID: AttachmentPrepViewController] = [:]
public var shouldHideControls: Bool { public var shouldHideControls: Bool {
guard let pageViewController: AttachmentPrepViewController = pageViewControllers?.first else { guard let pageViewController: AttachmentPrepViewController = pageViewControllers?.first else {
@ -477,7 +477,7 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC
} }
private func buildPage(item: SignalAttachmentItem) -> AttachmentPrepViewController? { private func buildPage(item: SignalAttachmentItem) -> AttachmentPrepViewController? {
if let cachedPage = cachedPages[item] { if let cachedPage = cachedPages[item.uniqueIdentifier] {
Log.debug("[AttachmentApprovalViewController] cache hit.") Log.debug("[AttachmentApprovalViewController] cache hit.")
return cachedPage return cachedPage
} }
@ -485,7 +485,7 @@ public class AttachmentApprovalViewController: UIPageViewController, UIPageViewC
Log.debug("[AttachmentApprovalViewController] cache miss.") Log.debug("[AttachmentApprovalViewController] cache miss.")
let viewController = AttachmentPrepViewController(attachmentItem: item, using: dependencies) let viewController = AttachmentPrepViewController(attachmentItem: item, using: dependencies)
viewController.prepDelegate = self viewController.prepDelegate = self
cachedPages[item] = viewController cachedPages[item.uniqueIdentifier] = viewController
return viewController return viewController
} }

@ -24,12 +24,13 @@ class AddMoreRailItem: GalleryRailItem {
} }
} }
class SignalAttachmentItem: Hashable { class SignalAttachmentItem: Equatable {
enum SignalAttachmentItemError: Error { enum SignalAttachmentItemError: Error {
case noThumbnail case noThumbnail
} }
let uniqueIdentifier: UUID = UUID()
let attachment: SignalAttachment let attachment: SignalAttachment
// This might be nil if the attachment is not a valid image. // This might be nil if the attachment is not a valid image.
@ -63,12 +64,6 @@ class SignalAttachmentItem: Hashable {
return attachment.staticThumbnail() return attachment.staticThumbnail()
} }
// MARK: Hashable
func hash(into hasher: inout Hasher) {
attachment.hash(into: &hasher)
}
// MARK: Equatable // MARK: Equatable
static func == (lhs: SignalAttachmentItem, rhs: SignalAttachmentItem) -> Bool { static func == (lhs: SignalAttachmentItem, rhs: SignalAttachmentItem) -> Bool {

Loading…
Cancel
Save