Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / device_orientation / DeviceMotionController.cpp
1 /*
2  * Copyright 2010 Apple Inc. All rights reserved.
3  * Copyright (C) 2012 Samsung Electronics. All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *  * Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  *  * Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
15  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
18  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
19  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
20  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
21  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
22  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26
27 #include "config.h"
28 #include "modules/device_orientation/DeviceMotionController.h"
29
30 #include "core/dom/Document.h"
31 #include "core/frame/DOMWindow.h"
32 #include "core/page/Page.h"
33 #include "modules/device_orientation/DeviceMotionData.h"
34 #include "modules/device_orientation/DeviceMotionDispatcher.h"
35 #include "modules/device_orientation/DeviceMotionEvent.h"
36
37 namespace WebCore {
38
39 DeviceMotionController::DeviceMotionController(Document& document)
40     : DeviceSensorEventController(document.page())
41     , DOMWindowLifecycleObserver(document.domWindow())
42     , m_document(document)
43 {
44 }
45
46 DeviceMotionController::~DeviceMotionController()
47 {
48     stopUpdating();
49 }
50
51 void DeviceMotionController::didChangeDeviceMotion(DeviceMotionData* deviceMotionData)
52 {
53     dispatchDeviceEvent(DeviceMotionEvent::create(EventTypeNames::devicemotion, deviceMotionData));
54 }
55
56 const char* DeviceMotionController::supplementName()
57 {
58     return "DeviceMotionController";
59 }
60
61 DeviceMotionController& DeviceMotionController::from(Document& document)
62 {
63     DeviceMotionController* controller = static_cast<DeviceMotionController*>(DocumentSupplement::from(document, supplementName()));
64     if (!controller) {
65         controller = new DeviceMotionController(document);
66         DocumentSupplement::provideTo(document, supplementName(), adoptPtrWillBeNoop(controller));
67     }
68     return *controller;
69 }
70
71 bool DeviceMotionController::hasLastData()
72 {
73     return DeviceMotionDispatcher::instance().latestDeviceMotionData();
74 }
75
76 PassRefPtrWillBeRawPtr<Event> DeviceMotionController::getLastEvent()
77 {
78     return DeviceMotionEvent::create(EventTypeNames::devicemotion, DeviceMotionDispatcher::instance().latestDeviceMotionData());
79 }
80
81 void DeviceMotionController::registerWithDispatcher()
82 {
83     DeviceMotionDispatcher::instance().addDeviceMotionController(this);
84 }
85
86 void DeviceMotionController::unregisterWithDispatcher()
87 {
88     DeviceMotionDispatcher::instance().removeDeviceMotionController(this);
89 }
90
91 bool DeviceMotionController::isNullEvent(Event* event)
92 {
93     DeviceMotionEvent* motionEvent = toDeviceMotionEvent(event);
94     return !motionEvent->deviceMotionData()->canProvideEventData();
95 }
96
97 Document* DeviceMotionController::document()
98 {
99     return &m_document;
100 }
101
102 void DeviceMotionController::didAddEventListener(DOMWindow* window, const AtomicString& eventType)
103 {
104     if (eventType != EventTypeNames::devicemotion)
105         return;
106
107     if (page() && page()->visibilityState() == PageVisibilityStateVisible)
108         startUpdating();
109
110     m_hasEventListener = true;
111 }
112
113 void DeviceMotionController::didRemoveEventListener(DOMWindow* window, const AtomicString& eventType)
114 {
115     if (eventType != EventTypeNames::devicemotion || window->hasEventListeners(EventTypeNames::devicemotion))
116         return;
117
118     stopUpdating();
119     m_hasEventListener = false;
120 }
121
122 void DeviceMotionController::didRemoveAllEventListeners(DOMWindow*)
123 {
124     stopUpdating();
125     m_hasEventListener = false;
126 }
127
128 } // namespace WebCore