upload webkit/tizen 2.0_beta source.
[framework/web/webkit-efl.git] / Source / WebKit2 / UIProcess / DrawingAreaProxyImpl.h
1 /*
2  * Copyright (C) 2011 Apple Inc. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  * 1. Redistributions of source code must retain the above copyright
8  *    notice, this list of conditions and the following disclaimer.
9  * 2. Redistributions in binary form must reproduce the above copyright
10  *    notice, this list of conditions and the following disclaimer in the
11  *    documentation and/or other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23  * THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #ifndef DrawingAreaProxyImpl_h
27 #define DrawingAreaProxyImpl_h
28
29 #include "BackingStore.h"
30 #include "DrawingAreaProxy.h"
31 #include "LayerTreeContext.h"
32 #include <WebCore/RunLoop.h>
33 #include <wtf/OwnPtr.h>
34 #include <wtf/PassOwnPtr.h>
35
36 #if ENABLE(TIZEN_WEBKIT2_TILED_AC)
37 #include <Evas_GL.h>
38 #endif
39
40 namespace WebCore {
41 class Region;
42 }
43
44 namespace WebKit {
45
46 class LayerTreeHostProxy;
47
48 class DrawingAreaProxyImpl : public DrawingAreaProxy {
49 public:
50     static PassOwnPtr<DrawingAreaProxyImpl> create(WebPageProxy*);
51     virtual ~DrawingAreaProxyImpl();
52
53     void paint(BackingStore::PlatformGraphicsContext, const WebCore::IntRect&, WebCore::Region& unpaintedRegion);
54
55 #if ENABLE(TIZEN_WEBKIT2_TILED_AC)
56     virtual void didSuspendPainting();
57 #endif
58
59 private:
60     explicit DrawingAreaProxyImpl(WebPageProxy*);
61
62     // DrawingAreaProxy
63     virtual void sizeDidChange();
64     virtual void deviceScaleFactorDidChange();
65     virtual void layerHostingModeDidChange() OVERRIDE;
66
67     virtual void visibilityDidChange();
68     virtual void setBackingStoreIsDiscardable(bool);
69     virtual void waitForBackingStoreUpdateOnNextPaint();
70
71     // CoreIPC message handlers
72     virtual void update(uint64_t backingStoreStateID, const UpdateInfo&);
73     virtual void didUpdateBackingStoreState(uint64_t backingStoreStateID, const UpdateInfo&, const LayerTreeContext&);
74     virtual void enterAcceleratedCompositingMode(uint64_t backingStoreStateID, const LayerTreeContext&);
75     virtual void exitAcceleratedCompositingMode(uint64_t backingStoreStateID, const UpdateInfo&);
76     virtual void updateAcceleratedCompositingMode(uint64_t backingStoreStateID, const LayerTreeContext&);
77
78     void incorporateUpdate(const UpdateInfo&);
79
80     enum RespondImmediatelyOrNot { DoNotRespondImmediately, RespondImmediately };
81     void backingStoreStateDidChange(RespondImmediatelyOrNot);
82     void sendUpdateBackingStoreState(RespondImmediatelyOrNot);
83     void waitForAndDispatchDidUpdateBackingStoreState();
84
85 #if USE(ACCELERATED_COMPOSITING)
86     void enterAcceleratedCompositingMode(const LayerTreeContext&);
87     void exitAcceleratedCompositingMode();
88     void updateAcceleratedCompositingMode(const LayerTreeContext&);
89
90     bool isInAcceleratedCompositingMode() const { return !m_layerTreeContext.isEmpty(); }
91
92 #if USE(UI_SIDE_COMPOSITING)
93     virtual void setVisibleContentsRect(const WebCore::IntRect& visibleContentsRect, float scale, const WebCore::FloatPoint& trajectory, const WebCore::FloatPoint& accurateVisibleContentsPosition = WebCore::FloatPoint());
94 #if ENABLE(TIZEN_CSS_OVERFLOW_SCROLL_ACCELERATION_ON_UI_SIDE)
95     virtual void setVisibleContentsRectForScrollingContentsLayers(const WebCore::IntRect&);
96 #endif
97     void didReceiveLayerTreeHostProxyMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
98 #endif
99 #else
100     bool isInAcceleratedCompositingMode() const { return false; }
101 #endif
102
103     virtual void pageCustomRepresentationChanged();
104
105     void discardBackingStoreSoon();
106     void discardBackingStore();
107
108     // The state ID corresponding to our current backing store. Updated whenever we allocate
109     // a new backing store. Any messages received that correspond to an earlier state are ignored,
110     // as they don't apply to our current backing store.
111     uint64_t m_currentBackingStoreStateID;
112
113     // The next backing store state ID we will request the web process update to. Incremented
114     // whenever our state changes in a way that will require a new backing store to be allocated.
115     uint64_t m_nextBackingStoreStateID;
116
117 #if USE(ACCELERATED_COMPOSITING)
118     // The current layer tree context.
119     LayerTreeContext m_layerTreeContext;
120 #endif
121
122     // Whether we've sent a UpdateBackingStoreState message and are now waiting for a DidUpdateBackingStoreState message.
123     // Used to throttle UpdateBackingStoreState messages so we don't send them faster than the Web process can handle.
124     bool m_isWaitingForDidUpdateBackingStoreState;
125     
126     // For a new Drawing Area don't draw anything until the WebProcess has sent over the first content.
127     bool m_hasReceivedFirstUpdate;
128
129     bool m_isBackingStoreDiscardable;
130     OwnPtr<BackingStore> m_backingStore;
131
132     WebCore::RunLoop::Timer<DrawingAreaProxyImpl> m_discardBackingStoreTimer;
133 };
134
135 } // namespace WebKit
136
137 #endif // DrawingAreaProxyImpl_h