summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/graphics/chromium/Canvas2DLayerManager.cpp
blob: 7e7adb994cd3e27014a490b4cb35068105a8ba38 (plain)
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
/*
Copyright (C) 2012 Google Inc. All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1.  Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
2.  Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"

#include "Canvas2DLayerManager.h"

#include <public/Platform.h>
#include <wtf/StdLibExtras.h>

using WebKit::WebThread;

namespace {
enum {
    DefaultMaxBytesAllocated = 64*1024*1024,
    DefaultTargetBytesAllocated = 16*1024*1024,
};
}

namespace WebCore {

Canvas2DLayerManager::Canvas2DLayerManager()
    : m_bytesAllocated(0)
    , m_maxBytesAllocated(DefaultMaxBytesAllocated)
    , m_targetBytesAllocated(DefaultTargetBytesAllocated)
    , m_taskObserverActive(false)
{
}

Canvas2DLayerManager::~Canvas2DLayerManager()
{
    ASSERT(!m_bytesAllocated);
    ASSERT(!m_layerList.head());
    ASSERT(!m_taskObserverActive);
}

void Canvas2DLayerManager::init(size_t maxBytesAllocated, size_t targetBytesAllocated)
{
    ASSERT(maxBytesAllocated >= targetBytesAllocated);
    m_maxBytesAllocated = maxBytesAllocated;
    m_targetBytesAllocated = targetBytesAllocated;
}

Canvas2DLayerManager& Canvas2DLayerManager::get()
{
    DEFINE_STATIC_LOCAL(Canvas2DLayerManager, manager, ());
    return manager;
}

void Canvas2DLayerManager::willProcessTask()
{
}

void Canvas2DLayerManager::didProcessTask()
{
    // Called after the script action for the current frame has been processed.
    ASSERT(m_taskObserverActive);
    WebKit::Platform::current()->currentThread()->removeTaskObserver(this);
    m_taskObserverActive = false;
    for (Canvas2DLayerBridge* layer = m_layerList.head(); layer; layer = layer->next())
        layer->limitPendingFrames();
}

void Canvas2DLayerManager::layerDidDraw(Canvas2DLayerBridge* layer)
{
    if (isInList(layer)) {
        if (layer != m_layerList.head()) {
            m_layerList.remove(layer);
            m_layerList.push(layer); // Set as MRU
        }
    } else
        addLayerToList(layer);

    if (!m_taskObserverActive) {
        m_taskObserverActive = true;
        // Schedule a call to didProcessTask() after completion of the current script task.
        WebKit::Platform::current()->currentThread()->addTaskObserver(this);
    }
}

void Canvas2DLayerManager::addLayerToList(Canvas2DLayerBridge* layer)
{
    ASSERT(!isInList(layer));
    m_bytesAllocated += layer->bytesAllocated();
    m_layerList.push(layer); // Set as MRU
}

void Canvas2DLayerManager::layerAllocatedStorageChanged(Canvas2DLayerBridge* layer, intptr_t deltaBytes)
{
    if (!isInList(layer))
        addLayerToList(layer);
    else {
        ASSERT((intptr_t)m_bytesAllocated + deltaBytes >= 0); 
        m_bytesAllocated = (intptr_t)m_bytesAllocated + deltaBytes;
    }
    if (deltaBytes > 0)
        freeMemoryIfNecessary();
}

void Canvas2DLayerManager::layerToBeDestroyed(Canvas2DLayerBridge* layer)
{
    if (isInList(layer))
        removeLayerFromList(layer);
}

void Canvas2DLayerManager::freeMemoryIfNecessary() 
{
    if (m_bytesAllocated > m_maxBytesAllocated) {
        // Pass 1: Free memory from caches
        Canvas2DLayerBridge* layer = m_layerList.tail(); // LRU
        while (m_bytesAllocated > m_targetBytesAllocated && layer) {
            layer->freeMemoryIfPossible(m_bytesAllocated - m_targetBytesAllocated);
            layer = layer->prev();
        }

        // Pass 2: Flush canvases
        Canvas2DLayerBridge* leastRecentlyUsedLayer = m_layerList.tail();
        while (m_bytesAllocated > m_targetBytesAllocated && leastRecentlyUsedLayer) {
            leastRecentlyUsedLayer->flush();
            leastRecentlyUsedLayer->freeMemoryIfPossible(~0);
            removeLayerFromList(leastRecentlyUsedLayer);
            leastRecentlyUsedLayer = m_layerList.tail();
        }
    }
}

void Canvas2DLayerManager::removeLayerFromList(Canvas2DLayerBridge* layer)
{
    ASSERT(isInList(layer));
    m_bytesAllocated -= layer->bytesAllocated();
    m_layerList.remove(layer);
    layer->setNext(0);
    layer->setPrev(0);
}

bool Canvas2DLayerManager::isInList(Canvas2DLayerBridge* layer)
{
    return layer->prev() || m_layerList.head() == layer;
}

}