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
|
/*
* Copyright (C) 2012 Samsung Electronics
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include "modules/vibration/NavigatorVibration.h"
#include "core/frame/Navigator.h"
#include "core/frame/Frame.h"
#include "core/page/PageVisibilityState.h"
#include "public/platform/Platform.h"
#include "public/platform/WebVibration.h"
namespace WebCore {
// Maximum number of entries in a vibration pattern.
const unsigned kVibrationPatternLengthMax = 99;
NavigatorVibration::NavigatorVibration(Page* page)
: PageLifecycleObserver(page)
, m_timerStart(this, &NavigatorVibration::timerStartFired)
, m_timerStop(this, &NavigatorVibration::timerStopFired)
, m_isVibrating(false)
{
}
NavigatorVibration::~NavigatorVibration()
{
if (m_isVibrating)
cancelVibration();
}
bool NavigatorVibration::vibrate(const VibrationPattern& pattern)
{
VibrationPattern sanitized = pattern;
size_t length = sanitized.size();
// If the pattern is too long then truncate it.
if (length > kVibrationPatternLengthMax) {
sanitized.shrink(kVibrationPatternLengthMax);
length = kVibrationPatternLengthMax;
}
// If any pattern entry is too long then truncate it.
for (size_t i = 0; i < length; ++i) {
if (sanitized[i] > blink::kVibrationDurationMax)
sanitized[i] = blink::kVibrationDurationMax;
}
// If the last item in the pattern is a pause then discard it.
if (length && !(length % 2))
sanitized.removeLast();
// Cancelling clears the stored pattern so do it before setting the new one.
if (m_isVibrating)
cancelVibration();
m_pattern = sanitized;
if (m_timerStart.isActive())
m_timerStart.stop();
if (!m_pattern.size())
return true;
if (m_pattern.size() == 1 && !m_pattern[0]) {
m_pattern.clear();
return true;
}
m_timerStart.startOneShot(0);
m_isVibrating = true;
return true;
}
void NavigatorVibration::cancelVibration()
{
m_pattern.clear();
if (m_isVibrating) {
blink::Platform::current()->cancelVibration();
m_isVibrating = false;
m_timerStop.stop();
}
}
void NavigatorVibration::timerStartFired(Timer<NavigatorVibration>* timer)
{
ASSERT_UNUSED(timer, timer == &m_timerStart);
if (m_pattern.size()) {
m_isVibrating = true;
blink::Platform::current()->vibrate(m_pattern[0]);
m_timerStop.startOneShot(m_pattern[0] / 1000.0);
m_pattern.remove(0);
}
}
void NavigatorVibration::timerStopFired(Timer<NavigatorVibration>* timer)
{
ASSERT_UNUSED(timer, timer == &m_timerStop);
if (m_pattern.isEmpty())
m_isVibrating = false;
if (m_pattern.size()) {
m_timerStart.startOneShot(m_pattern[0] / 1000.0);
m_pattern.remove(0);
}
}
void NavigatorVibration::pageVisibilityChanged()
{
if (page()->visibilityState() != PageVisibilityStateVisible)
cancelVibration();
}
void NavigatorVibration::didCommitLoad(Frame* frame)
{
// A new load has been committed, which means the current page will be
// unloaded. Cancel all running vibrations.
cancelVibration();
}
bool NavigatorVibration::vibrate(Navigator* navigator, unsigned time)
{
VibrationPattern pattern;
pattern.append(time);
return NavigatorVibration::vibrate(navigator, pattern);
}
bool NavigatorVibration::vibrate(Navigator* navigator, const VibrationPattern& pattern)
{
Page* page = navigator->frame()->page();
if (!page)
return false;
if (page->visibilityState() != PageVisibilityStateVisible)
return false;
return NavigatorVibration::from(page)->vibrate(pattern);
}
NavigatorVibration* NavigatorVibration::from(Page* page)
{
NavigatorVibration* navigatorVibration = static_cast<NavigatorVibration*>(Supplement<Page>::from(page, supplementName()));
if (!navigatorVibration) {
navigatorVibration = new NavigatorVibration(page);
Supplement<Page>::provideTo(page, supplementName(), adoptPtr(navigatorVibration));
}
return navigatorVibration;
}
const char* NavigatorVibration::supplementName()
{
return "NavigatorVibration";
}
} // namespace WebCore
|