mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
333 lines
14 KiB
Swift
333 lines
14 KiB
Swift
import Foundation
|
|
import ValueBox
|
|
import Table
|
|
import PostboxCoding
|
|
import PostboxDataTypes
|
|
import Buffers
|
|
|
|
private enum MetadataPrefix: Int8 {
|
|
case ChatListInitialized = 0
|
|
case PeerNextMessageIdByNamespace = 2
|
|
case NextStableMessageId = 3
|
|
case ChatListTotalUnreadState = 4
|
|
case NextPeerOperationLogIndex = 5
|
|
case ChatListGroupInitialized = 6
|
|
case GroupFeedIndexInitialized = 7
|
|
case ShouldReindexUnreadCounts = 8
|
|
case PeerHistoryInitialized = 9
|
|
}
|
|
|
|
private struct InitializedChatListKey: Hashable {
|
|
let groupId: PeerGroupId
|
|
}
|
|
|
|
public final class MessageHistoryMetadataTable: Table {
|
|
public static func tableSpec(_ id: Int32) -> ValueBoxTable {
|
|
return ValueBoxTable(id: id, keyType: .binary, compactValuesOnCreation: true)
|
|
}
|
|
|
|
private let sharedPeerHistoryInitializedKey = ValueBoxKey(length: 8 + 1)
|
|
private let sharedGroupFeedIndexInitializedKey = ValueBoxKey(length: 4 + 1)
|
|
private let sharedChatListGroupHistoryInitializedKey = ValueBoxKey(length: 4 + 1)
|
|
private let sharedPeerNextMessageIdByNamespaceKey = ValueBoxKey(length: 8 + 1 + 4)
|
|
private let sharedBuffer = WriteBuffer()
|
|
|
|
private var initializedChatList = Set<InitializedChatListKey>()
|
|
private var initializedHistoryPeerIds = Set<PeerId>()
|
|
private var initializedGroupFeedIndexIds = Set<PeerGroupId>()
|
|
|
|
private var peerNextMessageIdByNamespace: [PeerId: [MessageId.Namespace: MessageId.Id]] = [:]
|
|
private var updatedPeerNextMessageIdByNamespace: [PeerId: Set<MessageId.Namespace>] = [:]
|
|
|
|
private var nextMessageStableId: UInt32?
|
|
private var nextMessageStableIdUpdated = false
|
|
|
|
private var chatListTotalUnreadState: ChatListTotalUnreadState?
|
|
private var chatListTotalUnreadStateUpdated = false
|
|
|
|
private var nextPeerOperationLogIndex: UInt32?
|
|
private var nextPeerOperationLogIndexUpdated = false
|
|
|
|
private var currentPinnedChatPeerIds: Set<PeerId>?
|
|
private var currentPinnedChatPeerIdsUpdated = false
|
|
|
|
private func peerHistoryInitializedKey(_ id: PeerId) -> ValueBoxKey {
|
|
self.sharedPeerHistoryInitializedKey.setInt64(0, value: id.toInt64())
|
|
self.sharedPeerHistoryInitializedKey.setInt8(8, value: MetadataPrefix.PeerHistoryInitialized.rawValue)
|
|
return self.sharedPeerHistoryInitializedKey
|
|
}
|
|
|
|
private func groupFeedIndexInitializedKey(_ id: PeerGroupId) -> ValueBoxKey {
|
|
self.sharedGroupFeedIndexInitializedKey.setInt32(0, value: id.rawValue)
|
|
self.sharedGroupFeedIndexInitializedKey.setInt8(4, value: MetadataPrefix.GroupFeedIndexInitialized.rawValue)
|
|
return self.sharedGroupFeedIndexInitializedKey
|
|
}
|
|
|
|
private func chatListGroupInitializedKey(_ key: InitializedChatListKey) -> ValueBoxKey {
|
|
self.sharedChatListGroupHistoryInitializedKey.setInt32(0, value: key.groupId.rawValue)
|
|
self.sharedChatListGroupHistoryInitializedKey.setInt8(4, value: MetadataPrefix.ChatListGroupInitialized.rawValue)
|
|
return self.sharedChatListGroupHistoryInitializedKey
|
|
}
|
|
|
|
private func peerNextMessageIdByNamespaceKey(_ id: PeerId, namespace: MessageId.Namespace) -> ValueBoxKey {
|
|
self.sharedPeerNextMessageIdByNamespaceKey.setInt64(0, value: id.toInt64())
|
|
self.sharedPeerNextMessageIdByNamespaceKey.setInt8(8, value: MetadataPrefix.PeerNextMessageIdByNamespace.rawValue)
|
|
self.sharedPeerNextMessageIdByNamespaceKey.setInt32(8 + 1, value: namespace)
|
|
|
|
return self.sharedPeerNextMessageIdByNamespaceKey
|
|
}
|
|
|
|
private func key(_ prefix: MetadataPrefix) -> ValueBoxKey {
|
|
let key = ValueBoxKey(length: 1)
|
|
key.setInt8(0, value: prefix.rawValue)
|
|
return key
|
|
}
|
|
|
|
public func setInitializedChatList(groupId: PeerGroupId) {
|
|
switch groupId {
|
|
case .root:
|
|
self.valueBox.set(self.table, key: self.key(MetadataPrefix.ChatListInitialized), value: MemoryBuffer())
|
|
case .group:
|
|
self.valueBox.set(self.table, key: self.chatListGroupInitializedKey(InitializedChatListKey(groupId: groupId)), value: MemoryBuffer())
|
|
}
|
|
self.initializedChatList.insert(InitializedChatListKey(groupId: groupId))
|
|
}
|
|
|
|
public func isInitializedChatList(groupId: PeerGroupId) -> Bool {
|
|
let key = InitializedChatListKey(groupId: groupId)
|
|
if self.initializedChatList.contains(key) {
|
|
return true
|
|
} else {
|
|
switch groupId {
|
|
case .root:
|
|
if self.valueBox.exists(self.table, key: self.key(MetadataPrefix.ChatListInitialized)) {
|
|
self.initializedChatList.insert(key)
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
case .group:
|
|
if self.valueBox.exists(self.table, key: self.chatListGroupInitializedKey(key)) {
|
|
self.initializedChatList.insert(key)
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
public func setShouldReindexUnreadCounts(value: Bool) {
|
|
if value {
|
|
self.valueBox.set(self.table, key: self.key(MetadataPrefix.ShouldReindexUnreadCounts), value: MemoryBuffer())
|
|
} else {
|
|
self.valueBox.remove(self.table, key: self.key(MetadataPrefix.ShouldReindexUnreadCounts), secure: false)
|
|
}
|
|
}
|
|
|
|
public func shouldReindexUnreadCounts() -> Bool {
|
|
if self.valueBox.exists(self.table, key: self.key(MetadataPrefix.ShouldReindexUnreadCounts)) {
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
|
|
public func setInitialized(_ peerId: PeerId) {
|
|
self.initializedHistoryPeerIds.insert(peerId)
|
|
self.sharedBuffer.reset()
|
|
self.valueBox.set(self.table, key: self.peerHistoryInitializedKey(peerId), value: self.sharedBuffer)
|
|
}
|
|
|
|
public func isInitialized(_ peerId: PeerId) -> Bool {
|
|
if self.initializedHistoryPeerIds.contains(peerId) {
|
|
return true
|
|
} else {
|
|
if self.valueBox.exists(self.table, key: self.peerHistoryInitializedKey(peerId)) {
|
|
self.initializedHistoryPeerIds.insert(peerId)
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
}
|
|
|
|
public func setGroupFeedIndexInitialized(_ groupId: PeerGroupId) {
|
|
self.initializedGroupFeedIndexIds.insert(groupId)
|
|
self.sharedBuffer.reset()
|
|
self.valueBox.set(self.table, key: self.groupFeedIndexInitializedKey(groupId), value: self.sharedBuffer)
|
|
}
|
|
|
|
public func isGroupFeedIndexInitialized(_ groupId: PeerGroupId) -> Bool {
|
|
if self.initializedGroupFeedIndexIds.contains(groupId) {
|
|
return true
|
|
} else {
|
|
if self.valueBox.exists(self.table, key: self.groupFeedIndexInitializedKey(groupId)) {
|
|
self.initializedGroupFeedIndexIds.insert(groupId)
|
|
return true
|
|
} else {
|
|
return false
|
|
}
|
|
}
|
|
}
|
|
|
|
public func getNextMessageIdAndIncrement(_ peerId: PeerId, namespace: MessageId.Namespace) -> MessageId {
|
|
if let messageIdByNamespace = self.peerNextMessageIdByNamespace[peerId] {
|
|
if let nextId = messageIdByNamespace[namespace] {
|
|
self.peerNextMessageIdByNamespace[peerId]![namespace] = nextId + 1
|
|
if updatedPeerNextMessageIdByNamespace[peerId] != nil {
|
|
updatedPeerNextMessageIdByNamespace[peerId]!.insert(namespace)
|
|
} else {
|
|
updatedPeerNextMessageIdByNamespace[peerId] = Set<MessageId.Namespace>([namespace])
|
|
}
|
|
return MessageId(peerId: peerId, namespace: namespace, id: nextId)
|
|
} else {
|
|
var nextId: Int32 = 1
|
|
if let value = self.valueBox.get(self.table, key: self.peerNextMessageIdByNamespaceKey(peerId, namespace: namespace)) {
|
|
value.read(&nextId, offset: 0, length: 4)
|
|
}
|
|
self.peerNextMessageIdByNamespace[peerId]![namespace] = nextId + 1
|
|
if updatedPeerNextMessageIdByNamespace[peerId] != nil {
|
|
updatedPeerNextMessageIdByNamespace[peerId]!.insert(namespace)
|
|
} else {
|
|
updatedPeerNextMessageIdByNamespace[peerId] = Set<MessageId.Namespace>([namespace])
|
|
}
|
|
return MessageId(peerId: peerId, namespace: namespace, id: nextId)
|
|
}
|
|
} else {
|
|
var nextId: Int32 = 1
|
|
if let value = self.valueBox.get(self.table, key: self.peerNextMessageIdByNamespaceKey(peerId, namespace: namespace)) {
|
|
value.read(&nextId, offset: 0, length: 4)
|
|
}
|
|
|
|
self.peerNextMessageIdByNamespace[peerId] = [namespace: nextId + 1]
|
|
if updatedPeerNextMessageIdByNamespace[peerId] != nil {
|
|
updatedPeerNextMessageIdByNamespace[peerId]!.insert(namespace)
|
|
} else {
|
|
updatedPeerNextMessageIdByNamespace[peerId] = Set<MessageId.Namespace>([namespace])
|
|
}
|
|
return MessageId(peerId: peerId, namespace: namespace, id: nextId)
|
|
}
|
|
}
|
|
|
|
public func getNextStableMessageIndexId() -> UInt32 {
|
|
if let nextId = self.nextMessageStableId {
|
|
self.nextMessageStableId = nextId + 1
|
|
self.nextMessageStableIdUpdated = true
|
|
return nextId
|
|
} else {
|
|
if let value = self.valueBox.get(self.table, key: self.key(.NextStableMessageId)) {
|
|
var nextId: UInt32 = 0
|
|
value.read(&nextId, offset: 0, length: 4)
|
|
self.nextMessageStableId = nextId + 1
|
|
self.nextMessageStableIdUpdated = true
|
|
return nextId
|
|
} else {
|
|
let nextId: UInt32 = 1
|
|
self.nextMessageStableId = nextId + 1
|
|
self.nextMessageStableIdUpdated = true
|
|
return nextId
|
|
}
|
|
}
|
|
}
|
|
|
|
public func getNextPeerOperationLogIndex() -> UInt32 {
|
|
if let nextId = self.nextPeerOperationLogIndex {
|
|
self.nextPeerOperationLogIndex = nextId + 1
|
|
self.nextPeerOperationLogIndexUpdated = true
|
|
return nextId
|
|
} else {
|
|
if let value = self.valueBox.get(self.table, key: self.key(.NextPeerOperationLogIndex)) {
|
|
var nextId: UInt32 = 0
|
|
value.read(&nextId, offset: 0, length: 4)
|
|
self.nextPeerOperationLogIndex = nextId + 1
|
|
self.nextPeerOperationLogIndexUpdated = true
|
|
return nextId
|
|
} else {
|
|
let nextId: UInt32 = 1
|
|
self.nextPeerOperationLogIndex = nextId + 1
|
|
self.nextPeerOperationLogIndexUpdated = true
|
|
return nextId
|
|
}
|
|
}
|
|
}
|
|
|
|
public func getChatListTotalUnreadState() -> ChatListTotalUnreadState {
|
|
if let cached = self.chatListTotalUnreadState {
|
|
return cached
|
|
} else {
|
|
if let value = self.valueBox.get(self.table, key: self.key(.ChatListTotalUnreadState)), let state = PostboxDecoder(buffer: value).decodeObjectForKey("_", decoder: {
|
|
ChatListTotalUnreadState(decoder: $0)
|
|
}) as? ChatListTotalUnreadState {
|
|
self.chatListTotalUnreadState = state
|
|
return state
|
|
} else {
|
|
let state = ChatListTotalUnreadState(absoluteCounters: [:], filteredCounters: [:])
|
|
self.chatListTotalUnreadState = state
|
|
return state
|
|
}
|
|
}
|
|
}
|
|
|
|
public func setChatListTotalUnreadState(_ state: ChatListTotalUnreadState) {
|
|
let current = self.getChatListTotalUnreadState()
|
|
if current != state {
|
|
self.chatListTotalUnreadState = state
|
|
self.chatListTotalUnreadStateUpdated = true
|
|
}
|
|
}
|
|
|
|
override public func clearMemoryCache() {
|
|
self.initializedChatList.removeAll()
|
|
self.initializedHistoryPeerIds.removeAll()
|
|
self.peerNextMessageIdByNamespace.removeAll()
|
|
self.updatedPeerNextMessageIdByNamespace.removeAll()
|
|
self.nextMessageStableId = nil
|
|
self.nextMessageStableIdUpdated = false
|
|
self.chatListTotalUnreadState = nil
|
|
self.chatListTotalUnreadStateUpdated = false
|
|
}
|
|
|
|
override public func beforeCommit() {
|
|
let sharedBuffer = WriteBuffer()
|
|
for (peerId, namespaces) in self.updatedPeerNextMessageIdByNamespace {
|
|
for namespace in namespaces {
|
|
if let messageIdByNamespace = self.peerNextMessageIdByNamespace[peerId], let maxId = messageIdByNamespace[namespace] {
|
|
sharedBuffer.reset()
|
|
var mutableMaxId = maxId
|
|
sharedBuffer.write(&mutableMaxId, offset: 0, length: 4)
|
|
self.valueBox.set(self.table, key: self.peerNextMessageIdByNamespaceKey(peerId, namespace: namespace), value: sharedBuffer)
|
|
} else {
|
|
self.valueBox.remove(self.table, key: self.peerNextMessageIdByNamespaceKey(peerId, namespace: namespace), secure: false)
|
|
}
|
|
}
|
|
}
|
|
self.updatedPeerNextMessageIdByNamespace.removeAll()
|
|
|
|
if self.nextMessageStableIdUpdated {
|
|
if let nextMessageStableId = self.nextMessageStableId {
|
|
var nextId: UInt32 = nextMessageStableId
|
|
self.valueBox.set(self.table, key: self.key(.NextStableMessageId), value: MemoryBuffer(memory: &nextId, capacity: 4, length: 4, freeWhenDone: false))
|
|
self.nextMessageStableIdUpdated = false
|
|
}
|
|
}
|
|
|
|
if self.nextPeerOperationLogIndexUpdated {
|
|
if let nextPeerOperationLogIndex = self.nextPeerOperationLogIndex {
|
|
var nextId: UInt32 = nextPeerOperationLogIndex
|
|
self.valueBox.set(self.table, key: self.key(.NextPeerOperationLogIndex), value: MemoryBuffer(memory: &nextId, capacity: 4, length: 4, freeWhenDone: false))
|
|
self.nextPeerOperationLogIndexUpdated = false
|
|
}
|
|
}
|
|
|
|
if self.chatListTotalUnreadStateUpdated {
|
|
if let state = self.chatListTotalUnreadState {
|
|
let buffer = PostboxEncoder()
|
|
buffer.encodeObject(state, forKey: "_")
|
|
self.valueBox.set(self.table, key: self.key(.ChatListTotalUnreadState), value: buffer.readBufferNoCopy())
|
|
}
|
|
self.chatListTotalUnreadStateUpdated = false
|
|
}
|
|
}
|
|
}
|