forked from weolar/miniblink49
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLayerChangeAction.cpp
397 lines (318 loc) · 13.8 KB
/
LayerChangeAction.cpp
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
#include "cc/playback/LayerChangeAction.h"
#include "cc/blink/WebLayerImpl.h"
#include "cc/layers/CompositingLayer.h"
#include "cc/trees/DrawProperties.h"
#include "cc/trees/LayerTreeHost.h"
#include "cc/playback/TileActionInfo.h"
#include "cc/raster/SkBitmapRefWrap.h"
#include "third_party/WebKit/Source/wtf/RefCountedLeakCounter.h"
namespace cc {
#ifndef NDEBUG
DEFINE_DEBUG_ONLY_GLOBAL(WTF::RefCountedLeakCounter, layerChangeActionCounter, ("ccLayerChangeAction"));
#endif
//WTF::Vector<LayerChangeAction*>* gTestActions = nullptr;
LayerChangeAction::LayerChangeAction(int64 actionId, ChangeType type)
: m_actionId(actionId)
, m_type(type)
{
#ifndef NDEBUG
layerChangeActionCounter.increment();
#endif
// if (!gTestActions)
// gTestActions = new Vector<LayerChangeAction*>();
//
// if (WTF::kNotFound == gTestActions->find(this))
// gTestActions->append(this);
}
LayerChangeAction::~LayerChangeAction()
{
#ifndef NDEBUG
layerChangeActionCounter.decrement();
#endif
// size_t pos = gTestActions->find(this);
// gTestActions->remove(pos);
}
//////////////////////////////////////////////////////////////////////////
LayerChangeActionCreate::LayerChangeActionCreate(int64 actionId, int layerId, cc_blink::WebLayerImplClient::Type layerType)
: LayerChangeOneLayer(actionId, LayerChangeAction::LayerChangeCreate, layerId)
, m_layerType(layerType)
{
}
void LayerChangeActionCreate::run(LayerTreeHost* host)
{
// String outString = String::format("LayerChangeActionCreate::run: %d %d %d \n", m_type, m_layerId, (int)m_actionId);
// OutputDebugStringW(outString.charactersWithNullTermination().data());
CompositingLayer* layer = nullptr;
switch (m_layerType)
{
case cc_blink::WebLayerImplClient::LayerType:
layer = new CompositingLayer(m_layerId);
break;
case cc_blink::WebLayerImplClient::ContentLayerType:
layer = new CompositingLayer(m_layerId);
break;
case cc_blink::WebLayerImplClient::ScrollbarLayerType:
layer = new CompositingLayer(m_layerId);
break;
case cc_blink::WebLayerImplClient::ImageLayerType:
layer = new CompositingImageLayer(m_layerId);
break;
default:
RELEASE_ASSERT(false);
break;
}
host->registerCCLayer(layer);
}
#define CHECK_LAYER_EMPTY(layer) \
if (!layer) { \
ASSERT(host->isRootCCLayerEmpty()); \
return; \
}
#define CHECK_LAYER_EMPTY2(layer1, layer2) \
if (!layer || !layer2) { \
ASSERT(host->isRootCCLayerEmpty()); \
return; \
}
#define CHECK_LAYER_EMPTY3(layer1, layer2, layer3) \
if (!layer || !layer2 || !layer3) { \
ASSERT(host->isRootCCLayerEmpty()); \
return; \
}
//////////////////////////////////////////////////////////////////////////
LayerChangeActionDestroy::LayerChangeActionDestroy(int64 actionId, int layerId)
: LayerChangeOneLayer(actionId, LayerChangeAction::LayerChangeDestroy, layerId)
{
// String outString = String::format("LayerChangeActionDestroy: id:%d actionId:%lld\n", layerId, actionId);
// OutputDebugStringW(outString.charactersWithNullTermination().data());
}
void LayerChangeActionDestroy::run(LayerTreeHost* host)
{
// String outString = String::format("LayerChangeActionDestroy::run: %d %d %d \n", m_type, m_layerId, (int)m_actionId);
// OutputDebugStringW(outString.charactersWithNullTermination().data());
CompositingLayer* layer = host->getCCLayerById(m_layerId);
CHECK_LAYER_EMPTY(layer);
host->unregisterCCLayer(layer);
delete layer;
}
//////////////////////////////////////////////////////////////////////////
void LayerChangeActionInsertChild::run(LayerTreeHost* host)
{
CompositingLayer* layer = host->getCCLayerById(m_layerId);
CompositingLayer* child = host->getCCLayerById(m_childId);
CHECK_LAYER_EMPTY2(layer, child);
layer->insertChild(child, m_index);
}
//////////////////////////////////////////////////////////////////////////
void LayerChangeActionReplaceChild::run(LayerTreeHost* host)
{
// String outString = String::format("LayerChangeActionReplaceChild::run: %d %d %d \n", m_type, m_layerId, (int)m_actionId);
// OutputDebugStringW(outString.charactersWithNullTermination().data());
CompositingLayer* layer = host->getCCLayerById(m_layerId);
CompositingLayer* referenceId = host->getCCLayerById(m_referenceId);
CompositingLayer* newLayerId = host->getCCLayerById(m_newLayerId);
CHECK_LAYER_EMPTY3(layer, referenceId, newLayerId);
layer->replaceChild(referenceId, newLayerId);
}
//////////////////////////////////////////////////////////////////////////
LayerChangeActionRemoveFromParent::LayerChangeActionRemoveFromParent(int actionId, int layerId)
: LayerChangeOneLayer(actionId, LayerChangeAction::LayerChangeRemoveFromParent, layerId)
{
// String outString = String::format("LayerChangeActionRemoveFromParent: %d %d %d \n", m_type, layerId, (int)actionId);
// OutputDebugStringW(outString.charactersWithNullTermination().data());
}
void LayerChangeActionRemoveFromParent::run(LayerTreeHost* host)
{
// String outString = String::format("LayerChangeActionRemoveFromParent::run: %d %d %d \n", m_type, m_layerId, (int)m_actionId);
// OutputDebugStringW(outString.charactersWithNullTermination().data());
CompositingLayer* layer = host->getCCLayerById(m_layerId);
CHECK_LAYER_EMPTY(layer);
layer->removeFromParent();
}
//////////////////////////////////////////////////////////////////////////
void LayerChangeActionRemoveAllChildren::run(LayerTreeHost* host)
{
// String outString = String::format("LayerChangeActionRemoveAllChildren::run: %d %d %d \n", m_type, m_layerId, (int)m_actionId);
// OutputDebugStringW(outString.charactersWithNullTermination().data());
CompositingLayer* layer = host->getCCLayerById(m_layerId);
CHECK_LAYER_EMPTY(layer);
layer->removeAllChildren();
}
//////////////////////////////////////////////////////////////////////////
LayerChangeActionDrawPropUpdata::LayerChangeActionDrawPropUpdata()
: LayerChangeAction(-1, LayerChangeAction::LayerChangeDrawPropUpdata)
{
}
LayerChangeActionDrawPropUpdata::~LayerChangeActionDrawPropUpdata()
{
ASSERT(0 == m_props.size());
ASSERT(0 == m_layerIds.size());
}
void LayerChangeActionDrawPropUpdata::run(LayerTreeHost* host)
{
// String outString = String::format("LayerChangeActionDrawPropUpdata::run: %d %d \n", m_type, (int)m_actionId);
// OutputDebugStringW(outString.charactersWithNullTermination().data());
ASSERT(m_layerIds.size() == m_props.size());
for (size_t i = 0; i < m_layerIds.size(); ++i) {
int layerId = m_layerIds[i];
CompositingLayer* layer = host->getCCLayerById(layerId);
if (!layer) {
ASSERT(host->isRootCCLayerEmpty());
continue;
}
DrawToCanvasProperties* prop = m_props[i];
layer->updataDrawProp(prop);
delete prop;
}
m_layerIds.clear();
m_props.clear();
for (size_t i = 0; i < m_pendingInvalidateRects.size(); ++i) {
const SkRect& r = m_pendingInvalidateRects[i];
blink::IntRect intRect((int)floor(r.x()), (int)floor(r.y()), 1 + (int)ceil(r.width()), 1 + (int)ceil(r.height()));
host->requestRepaint(intRect); // TODO
}
}
void LayerChangeActionDrawPropUpdata::appendDirtyLayer(cc_blink::WebLayerImpl* layer)
{
m_layerIds.append(layer->id());
DrawToCanvasProperties* prop = new DrawToCanvasProperties();
// prop->copyDrawProperties(*layer->drawProperties(), layer->opacity());
// prop->bounds = layer->bounds();
// prop->position = layer->position();
// prop->drawsContent = layer->drawsContent();
// prop->masksToBounds = layer->masksToBounds();
// prop->opaque = layer->opaque();
// prop->maskLayerId = layer->maskLayerId();
// prop->replicaLayerId = layer->replicaLayerId();
layer->updataDrawToCanvasProperties(prop);
m_props.append(prop);
// String outString = String::format("blink-LayerChangeActionDrawPropUpdata: id %d, %d, %d\n", layer->id(), prop->bounds.width(), prop->bounds.height());
// OutputDebugStringW(outString.charactersWithNullTermination().data());
}
void LayerChangeActionDrawPropUpdata::appendPendingInvalidateRect(const SkRect& r)
{
m_pendingInvalidateRects.append(r);
}
void LayerChangeActionDrawPropUpdata::cleanupPendingInvalidateRectIfHasAlendAction()
{
m_pendingInvalidateRects.clear();
}
const WTF::Vector<SkRect>& LayerChangeActionDrawPropUpdata::dirtyRects() const
{
return m_pendingInvalidateRects;
}
//////////////////////////////////////////////////////////////////////////
LayerChangeActionUpdataImageLayer::LayerChangeActionUpdataImageLayer(int actionId, int layerId, SkBitmapRefWrap* bitmap)
: LayerChangeOneLayer(actionId, LayerChangeUpdataImageLayer, layerId)
, m_bitmap(bitmap)
{
m_bitmap->ref();
}
LayerChangeActionUpdataImageLayer::~LayerChangeActionUpdataImageLayer()
{
m_bitmap->deref();
}
void LayerChangeActionUpdataImageLayer::run(LayerTreeHost* host)
{
// String outString = String::format("LayerChangeActionUpdataImageLayer::run: %d %d %d \n", m_type, m_layerId, (int)m_actionId);
// OutputDebugStringW(outString.charactersWithNullTermination().data());
CompositingLayer* layer = (host->getCCLayerById(m_layerId));
CHECK_LAYER_EMPTY(layer);
if (CompositingLayer::ImageCCLayer != layer->ccType()) {
ASSERT(false);
return;
}
CompositingImageLayer* imageLayer = (CompositingImageLayer*)(layer);
imageLayer->setImage(m_bitmap);
}
//////////////////////////////////////////////////////////////////////////
LayerChangeActionBlend::Item::~Item()
{
delete bitmap;
delete willRasteredTiles;
}
LayerChangeActionBlend::LayerChangeActionBlend(int actionId, int layerId, TileActionInfoVector* willRasteredTiles, const SkRect& dirtyRect, SkBitmap* bitmap)
: LayerChangeAction(actionId, LayerChangeBlend)
, m_item(new Item(layerId, willRasteredTiles, dirtyRect, bitmap))
{
// String outString = String::format("LayerChangeActionBlend: %d %d, %d %d\n", dirtyRect.x(), dirtyRect.y(), dirtyRect.width(), dirtyRect.height());
// OutputDebugStringW(outString.charactersWithNullTermination().data());
}
LayerChangeActionBlend::~LayerChangeActionBlend()
{
delete m_item;
}
void LayerChangeActionBlend::setBitmap(/*size_t itemId, */SkBitmap* bitmap)
{
m_item->bitmap = bitmap;
}
void LayerChangeActionBlend::appendPendingInvalidateRect(const SkRect& r)
{
m_pendingInvalidateRects.append(r);
}
void LayerChangeActionBlend::appendPendingInvalidateRects(const WTF::Vector<SkRect>& rects)
{
m_pendingInvalidateRects.appendVector(rects);
}
void LayerChangeActionBlend::run(LayerTreeHost* host)
{
Item* item = m_item;
CompositingLayer* layer = host->getCCLayerById(item->layerId);
CHECK_LAYER_EMPTY(layer);
if (item->bitmap)
layer->blendToTiles(item->willRasteredTiles, *(item->bitmap), item->dirtyRect);
for (size_t i = 0; i < m_pendingInvalidateRects.size(); ++i) {
const SkRect& r = m_pendingInvalidateRects[i];
blink::IntRect intRect((int)floor(r.x()), (int)floor(r.y()), 1 + (int)ceil(r.width()), 1 + (int)ceil(r.height()));
host->requestRepaint(intRect);
}
}
//////////////////////////////////////////////////////////////////////////
LayerChangeActionUpdataTile::LayerChangeActionUpdataTile(int actionId, int layerId, int newIndexNumX, int newIndexNumY, DrawToCanvasProperties* prop)
: LayerChangeOneLayer(actionId, LayerChangeTileUpdata, layerId)
, m_newIndexNumX(newIndexNumX)
, m_newIndexNumY(newIndexNumY)
, m_prop(prop)
{
// String outString = String::format("blink-LayerChangeActionUpdataTile::LayerChangeActionUpdataTile: layerId:%d, %d %d\n", layerId, newIndexNumX, newIndexNumY);
// OutputDebugStringW(outString.charactersWithNullTermination().data());
}
void LayerChangeActionUpdataTile::run(LayerTreeHost * host)
{
// String outString = String::format("LayerChangeActionUpdataTile::run m_actionId: %d, m_layerId:%d \n", m_actionId, m_layerId);
// OutputDebugStringW(outString.charactersWithNullTermination().data());
CompositingLayer* layer = host->getCCLayerById(m_layerId);
CHECK_LAYER_EMPTY(layer);
layer->updataTile(m_newIndexNumX, m_newIndexNumY, m_prop);
delete m_prop;
}
//////////////////////////////////////////////////////////////////////////
LayerChangeActionCleanupUnnecessaryTile::LayerChangeActionCleanupUnnecessaryTile(int layerId)
: LayerChangeOneLayer(-1, LayerChangeTileUpdata, layerId)
{
}
LayerChangeActionCleanupUnnecessaryTile::~LayerChangeActionCleanupUnnecessaryTile()
{
ASSERT(0 == m_tiles.size());
}
void LayerChangeActionCleanupUnnecessaryTile::appendTile(int index, int xIndex, int yIndex)
{
m_tiles.append(new TileActionInfo(index, xIndex, yIndex));
}
void LayerChangeActionCleanupUnnecessaryTile::run(LayerTreeHost* host)
{
// String outString = String::format("LayerChangeActionCleanupUnnecessaryTile::run m_actionId: %d, m_layerId:%d \n", m_actionId, m_layerId);
// OutputDebugStringW(outString.charactersWithNullTermination().data());
CompositingLayer* layer = host->getCCLayerById(m_layerId);
CHECK_LAYER_EMPTY(layer);
layer->cleanupUnnecessaryTile(m_tiles);
clear();
}
void LayerChangeActionCleanupUnnecessaryTile::clear()
{
for (size_t i = 0; i < m_tiles.size(); ++i) {
delete m_tiles[i];
}
m_tiles.clear();
}
//////////////////////////////////////////////////////////////////////////
}