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
#include "UBSceneCache.h"
#include "domain/UBGraphicsScene.h"
#include "core/UBPersistenceManager.h"
#include "core/UBApplication.h"
#include "core/UBSettings.h"
#include "core/UBSetting.h"
#include "document/UBDocumentProxy.h"
UBSceneCache::UBSceneCache()
: mCachedSceneCount(0)
{
// NOOP
}
UBSceneCache::~UBSceneCache()
{
// NOOP
}
UBGraphicsScene* UBSceneCache::createScene(UBDocumentProxy* proxy, int pageIndex)
{
UBGraphicsScene* newScene = new UBGraphicsScene(proxy);
insert(proxy, pageIndex, newScene);
return newScene;
}
void UBSceneCache::insert (UBDocumentProxy* proxy, int pageIndex, UBGraphicsScene* scene)
{
QList<UBSceneCacheID> existingKeys = QHash<UBSceneCacheID, UBGraphicsScene*>::keys(scene);
foreach(UBSceneCacheID key, existingKeys)
{
mCachedSceneCount -= QHash<UBSceneCacheID, UBGraphicsScene*>::remove(key);
}
UBSceneCacheID key(proxy, pageIndex);
if (QHash<UBSceneCacheID, UBGraphicsScene*>::contains(key))
{
QHash<UBSceneCacheID, UBGraphicsScene*>::insert(key, scene);
mCachedKeyFIFO.enqueue(key);
}
else
{
if (mCachedSceneCount >= UBSettings::settings()->pageCacheSize->get().toInt())
{
compactCache();
}
QHash<UBSceneCacheID, UBGraphicsScene*>::insert(key, scene);
mCachedKeyFIFO.enqueue(key);
mCachedSceneCount++;
}
if (mViewStates.contains(key))
{
scene->setViewState(mViewStates.value(key));
}
}
bool UBSceneCache::contains(UBDocumentProxy* proxy, int pageIndex) const
{
UBSceneCacheID key(proxy, pageIndex);
return QHash<UBSceneCacheID, UBGraphicsScene*>::contains(key);
}
UBGraphicsScene* UBSceneCache::value(UBDocumentProxy* proxy, int pageIndex)
{
UBSceneCacheID key(proxy, pageIndex);
if (QHash<UBSceneCacheID, UBGraphicsScene*>::contains(key))
{
UBGraphicsScene* scene = QHash<UBSceneCacheID, UBGraphicsScene*>::value(key);
mCachedKeyFIFO.removeAll(key);
mCachedKeyFIFO.enqueue(key);
return scene;
}
else
{
return 0;
}
}
void UBSceneCache::removeScene(UBDocumentProxy* proxy, int pageIndex)
{
UBGraphicsScene* scene = value(proxy, pageIndex);
if (scene && scene->views().size() == 0)
{
UBSceneCacheID key(proxy, pageIndex);
int count = QHash<UBSceneCacheID, UBGraphicsScene*>::remove(key);
mCachedKeyFIFO.removeAll(key);
mViewStates.insert(key, scene->viewState());
scene->deleteLater();
mCachedSceneCount -= count;
}
}
void UBSceneCache::removeAllScenes(UBDocumentProxy* proxy)
{
for(int i = 0 ; i < proxy->pageCount(); i++)
{
removeScene(proxy, i);
}
}
void UBSceneCache::moveScene(UBDocumentProxy* proxy, int sourceIndex, int targetIndex)
{
UBSceneCacheID keySource(proxy, sourceIndex);
UBGraphicsScene *scene = 0;
if (QHash<UBSceneCacheID, UBGraphicsScene*>::contains(keySource))
{
scene = QHash<UBSceneCacheID, UBGraphicsScene*>::value(keySource);
mCachedKeyFIFO.removeAll(keySource);
}
if (sourceIndex < targetIndex)
{
for (int i = sourceIndex + 1; i <= targetIndex; i++)
{
internalMoveScene(proxy, i, i - 1);
}
}
else
{
for (int i = sourceIndex - 1; i >= targetIndex; i--)
{
internalMoveScene(proxy, i, i + 1);
}
}
UBSceneCacheID keyTarget(proxy, targetIndex);
if (scene)
{
insert(proxy, targetIndex, scene);
mCachedKeyFIFO.enqueue(keyTarget);
}
else if (QHash<UBSceneCacheID, UBGraphicsScene*>::contains(keyTarget))
{
scene = QHash<UBSceneCacheID, UBGraphicsScene*>::take(keyTarget);
mCachedKeyFIFO.removeAll(keyTarget);
}
}
void UBSceneCache::shiftUpScenes(UBDocumentProxy* proxy, int startIncIndex, int endIncIndex)
{
for(int i = endIncIndex; i >= startIncIndex; i--)
{
internalMoveScene(proxy, i, i + 1);
}
}
void UBSceneCache::internalMoveScene(UBDocumentProxy* proxy, int sourceIndex, int targetIndex)
{
UBSceneCacheID sourceKey(proxy, sourceIndex);
if (QHash<UBSceneCacheID, UBGraphicsScene*>::contains(sourceKey))
{
UBGraphicsScene* scene = QHash<UBSceneCacheID, UBGraphicsScene*>::take(sourceKey);
mCachedKeyFIFO.removeAll(sourceKey);
UBSceneCacheID targetKey(proxy, targetIndex);
QHash<UBSceneCacheID, UBGraphicsScene*>::insert(targetKey, scene);
mCachedKeyFIFO.enqueue(targetKey);
}
else
{
UBSceneCacheID targetKey(proxy, targetIndex);
if (QHash<UBSceneCacheID, UBGraphicsScene*>::contains(targetKey))
{
/*UBGraphicsScene* scene = */QHash<UBSceneCacheID, UBGraphicsScene*>::take(targetKey);
mCachedKeyFIFO.removeAll(targetKey);
}
}
}
void UBSceneCache::compactCache()
{
bool foundUnusedScene = false;
int count = 0;
do
{
if (!mCachedKeyFIFO.isEmpty())
{
const UBSceneCacheID nextKey = mCachedKeyFIFO.dequeue();
if (QHash<UBSceneCacheID, UBGraphicsScene*>::contains(nextKey))
{
UBGraphicsScene* scene = QHash<UBSceneCacheID, UBGraphicsScene*>::value(nextKey);
if (scene && scene->views().size() == 0)
{
removeScene(nextKey.documentProxy, nextKey.pageIndex);
foundUnusedScene = true;
}
else
{
mCachedKeyFIFO.enqueue(nextKey);
}
}
}
count++;
}
while (!foundUnusedScene && count < mCachedKeyFIFO.size());
}
void UBSceneCache::dumpCacheContent()
{
foreach(UBSceneCacheID key, keys())
{
UBGraphicsScene *scene = 0;
if (QHash<UBSceneCacheID, UBGraphicsScene*>::contains(key))
scene = QHash<UBSceneCacheID, UBGraphicsScene*>::value(key);
int index = key.pageIndex;
qDebug() << "UBSceneCache::dumpCacheContent:" << index << " : " << scene;
}
}