-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathSnapshotStructure.swift
More file actions
296 lines (234 loc) · 10.6 KB
/
SnapshotStructure.swift
File metadata and controls
296 lines (234 loc) · 10.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
import Foundation
import DifferenceKit
struct SnapshotStructure<SectionID: Hashable, ItemID: Hashable> {
struct Item: Differentiable, Equatable {
var differenceIdentifier: Int
var contentIdentifier: ItemID
var isReloaded: Bool
init(id: ItemID, isReloaded: Bool) {
self.contentIdentifier = id
self.differenceIdentifier = id.hashValue
self.isReloaded = isReloaded
}
init(id: ItemID) {
self.init(id: id, isReloaded: false)
}
func isContentEqual(to source: Item) -> Bool {
return !isReloaded && contentIdentifier == source.contentIdentifier
}
}
struct Section: DifferentiableSection, Equatable {
var differenceIdentifier: SectionID
var elements: [Item] = []
var isReloaded: Bool
init(id: SectionID, items: [Item], isReloaded: Bool) {
self.differenceIdentifier = id
self.elements = items
self.isReloaded = isReloaded
}
init(id: SectionID) {
self.init(id: id, items: [], isReloaded: false)
}
init<C: Collection>(source: Section, elements: C) where C.Element == Item {
self.init(id: source.differenceIdentifier, items: Array(elements), isReloaded: source.isReloaded)
}
func isContentEqual(to source: Section) -> Bool {
return !isReloaded && differenceIdentifier == source.differenceIdentifier
}
}
var sections: [Section] = []
var allSectionIDs: [SectionID] {
return sections.map { $0.differenceIdentifier }
}
var allItemIDs: [ItemID] {
return sections.lazy
.flatMap { $0.elements }
.map { $0.contentIdentifier }
}
func items(in sectionID: SectionID, file: StaticString = #file, line: UInt = #line) -> [ItemID] {
guard let sectionIndex = sectionIndex(of: sectionID) else {
specifiedSectionIsNotFound(sectionID, file: file, line: line)
}
return sections[sectionIndex].elements.map { $0.contentIdentifier }
}
func section(containing itemID: ItemID) -> SectionID? {
return itemPositionMap()[itemID]?.section.differenceIdentifier
}
mutating func append(itemIDs: [ItemID], to sectionID: SectionID? = nil, file: StaticString = #file, line: UInt = #line) {
let index: Array<Section>.Index
if let sectionID = sectionID {
guard let sectionIndex = sectionIndex(of: sectionID) else {
specifiedSectionIsNotFound(sectionID, file: file, line: line)
}
index = sectionIndex
}
else {
guard !sections.isEmpty else {
thereAreCurrentlyNoSections(file: file, line: line)
}
index = sections.index(before: sections.endIndex)
}
let items = itemIDs.lazy.map(Item.init)
sections[index].elements.append(contentsOf: items)
}
mutating func insert(itemIDs: [ItemID], before beforeItemID: ItemID, file: StaticString = #file, line: UInt = #line) {
guard let itemPosition = itemPositionMap()[beforeItemID] else {
specifiedItemIsNotFound(beforeItemID, file: file, line: line)
}
let items = itemIDs.lazy.map(Item.init)
sections[itemPosition.sectionIndex].elements.insert(contentsOf: items, at: itemPosition.itemRelativeIndex)
}
mutating func insert(itemIDs: [ItemID], after afterItemID: ItemID, file: StaticString = #file, line: UInt = #line) {
guard let itemPosition = itemPositionMap()[afterItemID] else {
specifiedItemIsNotFound(afterItemID, file: file, line: line)
}
let itemIndex = sections[itemPosition.sectionIndex].elements.index(after: itemPosition.itemRelativeIndex)
let items = itemIDs.lazy.map(Item.init)
sections[itemPosition.sectionIndex].elements.insert(contentsOf: items, at: itemIndex)
}
mutating func remove(itemIDs: [ItemID]) {
let itemPositionMap = self.itemPositionMap()
var removeIndexSetMap = [Int: IndexSet]()
for itemID in itemIDs {
guard let itemPosition = itemPositionMap[itemID] else {
continue
}
removeIndexSetMap[itemPosition.sectionIndex, default: []].insert(itemPosition.itemRelativeIndex)
}
for (sectionIndex, removeIndexSet) in removeIndexSetMap {
for range in removeIndexSet.rangeView.reversed() {
sections[sectionIndex].elements.removeSubrange(range)
}
}
}
mutating func removeAllItems() {
for sectionIndex in sections.indices {
sections[sectionIndex].elements.removeAll()
}
}
mutating func move(itemID: ItemID, before beforeItemID: ItemID, file: StaticString = #file, line: UInt = #line) {
guard let removed = remove(itemID: itemID) else {
specifiedItemIsNotFound(itemID, file: file, line: line)
}
guard let itemPosition = itemPositionMap()[beforeItemID] else {
specifiedItemIsNotFound(beforeItemID, file: file, line: line)
}
sections[itemPosition.sectionIndex].elements.insert(removed, at: itemPosition.itemRelativeIndex)
}
mutating func move(itemID: ItemID, after afterItemID: ItemID, file: StaticString = #file, line: UInt = #line) {
guard let removed = remove(itemID: itemID) else {
specifiedItemIsNotFound(itemID, file: file, line: line)
}
guard let itemPosition = itemPositionMap()[afterItemID] else {
specifiedItemIsNotFound(afterItemID, file: file, line: line)
}
let itemIndex = sections[itemPosition.sectionIndex].elements.index(after: itemPosition.itemRelativeIndex)
sections[itemPosition.sectionIndex].elements.insert(removed, at: itemIndex)
}
mutating func update(itemIDs: [ItemID], file: StaticString = #file, line: UInt = #line) {
let itemPositionMap = self.itemPositionMap()
for itemID in itemIDs {
guard let itemPosition = itemPositionMap[itemID] else {
specifiedItemIsNotFound(itemID, file: file, line: line)
}
sections[itemPosition.sectionIndex].elements[itemPosition.itemRelativeIndex].isReloaded = true
}
}
mutating func append(sectionIDs: [SectionID]) {
let newSections = sectionIDs.lazy.map(Section.init)
sections.append(contentsOf: newSections)
}
mutating func insert(sectionIDs: [SectionID], before beforeSectionID: SectionID, file: StaticString = #file, line: UInt = #line) {
guard let sectionIndex = sectionIndex(of: beforeSectionID) else {
specifiedSectionIsNotFound(beforeSectionID, file: file, line: line)
}
let newSections = sectionIDs.lazy.map(Section.init)
sections.insert(contentsOf: newSections, at: sectionIndex)
}
mutating func insert(sectionIDs: [SectionID], after afterSectionID: SectionID, file: StaticString = #file, line: UInt = #line) {
guard let beforeIndex = sectionIndex(of: afterSectionID) else {
specifiedSectionIsNotFound(afterSectionID, file: file, line: line)
}
let sectionIndex = sections.index(after: beforeIndex)
let newSections = sectionIDs.lazy.map(Section.init)
sections.insert(contentsOf: newSections, at: sectionIndex)
}
mutating func remove(sectionIDs: [SectionID]) {
for sectionID in sectionIDs {
remove(sectionID: sectionID)
}
}
mutating func move(sectionID: SectionID, before beforeSectionID: SectionID, file: StaticString = #file, line: UInt = #line) {
guard let removed = remove(sectionID: sectionID) else {
specifiedSectionIsNotFound(sectionID, file: file, line: line)
}
guard let sectionIndex = sectionIndex(of: beforeSectionID) else {
specifiedSectionIsNotFound(beforeSectionID, file: file, line: line)
}
sections.insert(removed, at: sectionIndex)
}
mutating func move(sectionID: SectionID, after afterSectionID: SectionID, file: StaticString = #file, line: UInt = #line) {
guard let removed = remove(sectionID: sectionID) else {
specifiedSectionIsNotFound(sectionID, file: file, line: line)
}
guard let beforeIndex = sectionIndex(of: afterSectionID) else {
specifiedSectionIsNotFound(afterSectionID, file: file, line: line)
}
let sectionIndex = sections.index(after: beforeIndex)
sections.insert(removed, at: sectionIndex)
}
mutating func update(sectionIDs: [SectionID]) {
for sectionID in sectionIDs {
guard let sectionIndex = sectionIndex(of: sectionID) else {
continue
}
sections[sectionIndex].isReloaded = true
}
}
}
private extension SnapshotStructure {
struct ItemPosition {
var item: Item
var itemRelativeIndex: Int
var section: Section
var sectionIndex: Int
}
func sectionIndex(of sectionID: SectionID) -> Array<Section>.Index? {
return sections.firstIndex { $0.differenceIdentifier.isEqualHash(to: sectionID) }
}
@discardableResult
mutating func remove(itemID: ItemID) -> Item? {
guard let itemPosition = itemPositionMap()[itemID] else {
return nil
}
return sections[itemPosition.sectionIndex].elements.remove(at: itemPosition.itemRelativeIndex)
}
@discardableResult
mutating func remove(sectionID: SectionID) -> Section? {
guard let sectionIndex = sectionIndex(of: sectionID) else {
return nil
}
return sections.remove(at: sectionIndex)
}
func itemPositionMap() -> [ItemID: ItemPosition] {
return sections.enumerated().reduce(into: [:]) { result, section in
for (itemRelativeIndex, item) in section.element.elements.enumerated() {
result[item.contentIdentifier] = ItemPosition(
item: item,
itemRelativeIndex: itemRelativeIndex,
section: section.element,
sectionIndex: section.offset
)
}
}
}
func specifiedItemIsNotFound(_ id: ItemID, file: StaticString, line: UInt) -> Never {
universalError("Specified item\(id) is not found.", file: file, line: line)
}
func specifiedSectionIsNotFound(_ id: SectionID, file: StaticString, line: UInt) -> Never {
universalError("Specified section\(id) is not found.", file: file, line: line)
}
func thereAreCurrentlyNoSections(file: StaticString, line: UInt) -> Never {
universalError("There are currently no sections.", file: file, line: line)
}
}