2e72dde7fb93f06c9dc7286caa3fb991f9d2c826
[platform/framework/web/crosswalk.git] / src / content / renderer / accessibility / renderer_accessibility_complete.cc
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "content/renderer/accessibility/renderer_accessibility_complete.h"
6
7 #include <queue>
8
9 #include "base/bind.h"
10 #include "base/message_loop/message_loop.h"
11 #include "content/renderer/accessibility/blink_ax_enum_conversion.h"
12 #include "content/renderer/render_view_impl.h"
13 #include "third_party/WebKit/public/web/WebAXObject.h"
14 #include "third_party/WebKit/public/web/WebDocument.h"
15 #include "third_party/WebKit/public/web/WebInputElement.h"
16 #include "third_party/WebKit/public/web/WebLocalFrame.h"
17 #include "third_party/WebKit/public/web/WebNode.h"
18 #include "third_party/WebKit/public/web/WebView.h"
19 #include "ui/accessibility/ax_tree.h"
20
21 using blink::WebAXObject;
22 using blink::WebDocument;
23 using blink::WebNode;
24 using blink::WebPoint;
25 using blink::WebRect;
26 using blink::WebView;
27
28 namespace content {
29
30 RendererAccessibilityComplete::RendererAccessibilityComplete(
31     RenderViewImpl* render_view)
32     : RendererAccessibility(render_view),
33       weak_factory_(this),
34       tree_source_(render_view),
35       serializer_(&tree_source_),
36       last_scroll_offset_(gfx::Size()),
37       ack_pending_(false) {
38   WebAXObject::enableAccessibility();
39
40 #if !defined(OS_ANDROID)
41   // Skip inline text boxes on Android - since there are no native Android
42   // APIs that compute the bounds of a range of text, it's a waste to
43   // include these in the AX tree.
44   WebAXObject::enableInlineTextBoxAccessibility();
45 #endif
46
47   const WebDocument& document = GetMainDocument();
48   if (!document.isNull()) {
49     // It's possible that the webview has already loaded a webpage without
50     // accessibility being enabled. Initialize the browser's cached
51     // accessibility tree by sending it a notification.
52     HandleAXEvent(document.accessibilityObject(),
53                   ui::AX_EVENT_LAYOUT_COMPLETE);
54   }
55 }
56
57 RendererAccessibilityComplete::~RendererAccessibilityComplete() {
58 }
59
60 bool RendererAccessibilityComplete::OnMessageReceived(
61     const IPC::Message& message) {
62   bool handled = true;
63   IPC_BEGIN_MESSAGE_MAP(RendererAccessibilityComplete, message)
64     IPC_MESSAGE_HANDLER(AccessibilityMsg_SetFocus, OnSetFocus)
65     IPC_MESSAGE_HANDLER(AccessibilityMsg_DoDefaultAction,
66                         OnDoDefaultAction)
67     IPC_MESSAGE_HANDLER(AccessibilityMsg_Events_ACK,
68                         OnEventsAck)
69     IPC_MESSAGE_HANDLER(AccessibilityMsg_ScrollToMakeVisible,
70                         OnScrollToMakeVisible)
71     IPC_MESSAGE_HANDLER(AccessibilityMsg_ScrollToPoint,
72                         OnScrollToPoint)
73     IPC_MESSAGE_HANDLER(AccessibilityMsg_SetTextSelection,
74                         OnSetTextSelection)
75     IPC_MESSAGE_HANDLER(AccessibilityMsg_HitTest, OnHitTest)
76     IPC_MESSAGE_HANDLER(AccessibilityMsg_FatalError, OnFatalError)
77     IPC_MESSAGE_UNHANDLED(handled = false)
78   IPC_END_MESSAGE_MAP()
79   return handled;
80 }
81
82 void RendererAccessibilityComplete::FocusedNodeChanged(const WebNode& node) {
83   const WebDocument& document = GetMainDocument();
84   if (document.isNull())
85     return;
86
87   if (node.isNull()) {
88     // When focus is cleared, implicitly focus the document.
89     // TODO(dmazzoni): Make Blink send this notification instead.
90     HandleAXEvent(document.accessibilityObject(), ui::AX_EVENT_BLUR);
91   }
92 }
93
94 void RendererAccessibilityComplete::DidFinishLoad(blink::WebLocalFrame* frame) {
95   const WebDocument& document = GetMainDocument();
96   if (document.isNull())
97     return;
98 }
99
100
101 void RendererAccessibilityComplete::HandleWebAccessibilityEvent(
102     const blink::WebAXObject& obj, blink::WebAXEvent event) {
103   HandleAXEvent(obj, AXEventFromBlink(event));
104 }
105
106 void RendererAccessibilityComplete::HandleAXEvent(
107     const blink::WebAXObject& obj, ui::AXEvent event) {
108   const WebDocument& document = GetMainDocument();
109   if (document.isNull())
110     return;
111
112   gfx::Size scroll_offset = document.frame()->scrollOffset();
113   if (scroll_offset != last_scroll_offset_) {
114     // Make sure the browser is always aware of the scroll position of
115     // the root document element by posting a generic notification that
116     // will update it.
117     // TODO(dmazzoni): remove this as soon as
118     // https://bugs.webkit.org/show_bug.cgi?id=73460 is fixed.
119     last_scroll_offset_ = scroll_offset;
120     if (!obj.equals(document.accessibilityObject())) {
121       HandleAXEvent(document.accessibilityObject(),
122                     ui::AX_EVENT_LAYOUT_COMPLETE);
123     }
124   }
125
126   // Add the accessibility object to our cache and ensure it's valid.
127   AccessibilityHostMsg_EventParams acc_event;
128   acc_event.id = obj.axID();
129   acc_event.event_type = event;
130
131   // Discard duplicate accessibility events.
132   for (uint32 i = 0; i < pending_events_.size(); ++i) {
133     if (pending_events_[i].id == acc_event.id &&
134         pending_events_[i].event_type ==
135             acc_event.event_type) {
136       return;
137     }
138   }
139   pending_events_.push_back(acc_event);
140
141   if (!ack_pending_ && !weak_factory_.HasWeakPtrs()) {
142     // When no accessibility events are in-flight post a task to send
143     // the events to the browser. We use PostTask so that we can queue
144     // up additional events.
145     base::MessageLoop::current()->PostTask(
146         FROM_HERE,
147         base::Bind(&RendererAccessibilityComplete::
148                        SendPendingAccessibilityEvents,
149                    weak_factory_.GetWeakPtr()));
150   }
151 }
152
153 RendererAccessibilityType RendererAccessibilityComplete::GetType() {
154   return RendererAccessibilityTypeComplete;
155 }
156
157 void RendererAccessibilityComplete::SendPendingAccessibilityEvents() {
158   const WebDocument& document = GetMainDocument();
159   if (document.isNull())
160     return;
161
162   if (pending_events_.empty())
163     return;
164
165   if (render_view_->is_swapped_out())
166     return;
167
168   ack_pending_ = true;
169
170   // Make a copy of the events, because it's possible that
171   // actions inside this loop will cause more events to be
172   // queued up.
173   std::vector<AccessibilityHostMsg_EventParams> src_events =
174       pending_events_;
175   pending_events_.clear();
176
177   // Generate an event message from each Blink event.
178   std::vector<AccessibilityHostMsg_EventParams> event_msgs;
179
180   // Loop over each event and generate an updated event message.
181   for (size_t i = 0; i < src_events.size(); ++i) {
182     AccessibilityHostMsg_EventParams& event =
183         src_events[i];
184
185     WebAXObject obj = document.accessibilityObjectFromID(
186         event.id);
187     // Make sure the object still exists.
188     if (!obj.updateBackingStoreAndCheckValidity())
189       continue;
190     // Make sure it's a descendant of our root node - exceptions include the
191     // scroll area that's the parent of the main document (we ignore it), and
192     // possibly nodes attached to a different document.
193     if (!tree_source_.IsInTree(obj))
194       continue;
195
196     // When we get a "selected children changed" event, Blink
197     // doesn't also send us events for each child that changed
198     // selection state, so make sure we re-send that whole subtree.
199     if (event.event_type ==
200         ui::AX_EVENT_SELECTED_CHILDREN_CHANGED) {
201       serializer_.DeleteClientSubtree(obj);
202     }
203
204     AccessibilityHostMsg_EventParams event_msg;
205     event_msg.event_type = event.event_type;
206     event_msg.id = event.id;
207     serializer_.SerializeChanges(obj, &event_msg.update);
208     event_msgs.push_back(event_msg);
209
210     VLOG(0) << "Accessibility event: " << ui::ToString(event.event_type)
211             << " on node id " << event_msg.id
212             << "\n" << event_msg.update.ToString();
213   }
214
215   Send(new AccessibilityHostMsg_Events(routing_id(), event_msgs));
216
217   SendLocationChanges();
218 }
219
220 void RendererAccessibilityComplete::SendLocationChanges() {
221   std::vector<AccessibilityHostMsg_LocationChangeParams> messages;
222
223   // Do a breadth-first explore of the whole blink AX tree.
224   base::hash_map<int, gfx::Rect> new_locations;
225   std::queue<WebAXObject> objs_to_explore;
226   objs_to_explore.push(tree_source_.GetRoot());
227   while (objs_to_explore.size()) {
228     WebAXObject obj = objs_to_explore.front();
229     objs_to_explore.pop();
230
231     // See if we had a previous location. If not, this whole subtree must
232     // be new, so don't continue to explore this branch.
233     int id = obj.axID();
234     base::hash_map<int, gfx::Rect>::iterator iter = locations_.find(id);
235     if (iter == locations_.end())
236       continue;
237
238     // If the location has changed, append it to the IPC message.
239     gfx::Rect new_location = obj.boundingBoxRect();
240     if (iter != locations_.end() && iter->second != new_location) {
241       AccessibilityHostMsg_LocationChangeParams message;
242       message.id = id;
243       message.new_location = new_location;
244       messages.push_back(message);
245     }
246
247     // Save the new location.
248     new_locations[id] = new_location;
249   }
250   locations_.swap(new_locations);
251
252   Send(new AccessibilityHostMsg_LocationChanges(routing_id(), messages));
253 }
254
255 void RendererAccessibilityComplete::OnDoDefaultAction(int acc_obj_id) {
256   const WebDocument& document = GetMainDocument();
257   if (document.isNull())
258     return;
259
260   WebAXObject obj = document.accessibilityObjectFromID(acc_obj_id);
261   if (obj.isDetached()) {
262 #ifndef NDEBUG
263     LOG(WARNING) << "DoDefaultAction on invalid object id " << acc_obj_id;
264 #endif
265     return;
266   }
267
268   obj.performDefaultAction();
269 }
270
271 void RendererAccessibilityComplete::OnScrollToMakeVisible(
272     int acc_obj_id, gfx::Rect subfocus) {
273   const WebDocument& document = GetMainDocument();
274   if (document.isNull())
275     return;
276
277   WebAXObject obj = document.accessibilityObjectFromID(acc_obj_id);
278   if (obj.isDetached()) {
279 #ifndef NDEBUG
280     LOG(WARNING) << "ScrollToMakeVisible on invalid object id " << acc_obj_id;
281 #endif
282     return;
283   }
284
285   obj.scrollToMakeVisibleWithSubFocus(
286       WebRect(subfocus.x(), subfocus.y(),
287               subfocus.width(), subfocus.height()));
288
289   // Make sure the browser gets an event when the scroll
290   // position actually changes.
291   // TODO(dmazzoni): remove this once this bug is fixed:
292   // https://bugs.webkit.org/show_bug.cgi?id=73460
293   HandleAXEvent(document.accessibilityObject(),
294                 ui::AX_EVENT_LAYOUT_COMPLETE);
295 }
296
297 void RendererAccessibilityComplete::OnScrollToPoint(
298     int acc_obj_id, gfx::Point point) {
299   const WebDocument& document = GetMainDocument();
300   if (document.isNull())
301     return;
302
303   WebAXObject obj = document.accessibilityObjectFromID(acc_obj_id);
304   if (obj.isDetached()) {
305 #ifndef NDEBUG
306     LOG(WARNING) << "ScrollToPoint on invalid object id " << acc_obj_id;
307 #endif
308     return;
309   }
310
311   obj.scrollToGlobalPoint(WebPoint(point.x(), point.y()));
312
313   // Make sure the browser gets an event when the scroll
314   // position actually changes.
315   // TODO(dmazzoni): remove this once this bug is fixed:
316   // https://bugs.webkit.org/show_bug.cgi?id=73460
317   HandleAXEvent(document.accessibilityObject(),
318                 ui::AX_EVENT_LAYOUT_COMPLETE);
319 }
320
321 void RendererAccessibilityComplete::OnSetTextSelection(
322     int acc_obj_id, int start_offset, int end_offset) {
323   const WebDocument& document = GetMainDocument();
324   if (document.isNull())
325     return;
326
327   WebAXObject obj = document.accessibilityObjectFromID(acc_obj_id);
328   if (obj.isDetached()) {
329 #ifndef NDEBUG
330     LOG(WARNING) << "SetTextSelection on invalid object id " << acc_obj_id;
331 #endif
332     return;
333   }
334
335   // TODO(dmazzoni): support elements other than <input>.
336   blink::WebNode node = obj.node();
337   if (!node.isNull() && node.isElementNode()) {
338     blink::WebElement element = node.to<blink::WebElement>();
339     blink::WebInputElement* input_element =
340         blink::toWebInputElement(&element);
341     if (input_element && input_element->isTextField())
342       input_element->setSelectionRange(start_offset, end_offset);
343   }
344 }
345
346 void RendererAccessibilityComplete::OnHitTest(gfx::Point point) {
347   const WebDocument& document = GetMainDocument();
348   if (document.isNull())
349     return;
350   WebAXObject root_obj = document.accessibilityObject();
351   if (!root_obj.updateBackingStoreAndCheckValidity())
352     return;
353
354   WebAXObject obj = root_obj.hitTest(point);
355   if (!obj.isDetached())
356     HandleAXEvent(obj, ui::AX_EVENT_HOVER);
357 }
358
359 void RendererAccessibilityComplete::OnEventsAck() {
360   DCHECK(ack_pending_);
361   ack_pending_ = false;
362   SendPendingAccessibilityEvents();
363 }
364
365 void RendererAccessibilityComplete::OnSetFocus(int acc_obj_id) {
366   const WebDocument& document = GetMainDocument();
367   if (document.isNull())
368     return;
369
370   WebAXObject obj = document.accessibilityObjectFromID(acc_obj_id);
371   if (obj.isDetached()) {
372 #ifndef NDEBUG
373     LOG(WARNING) << "OnSetAccessibilityFocus on invalid object id "
374                  << acc_obj_id;
375 #endif
376     return;
377   }
378
379   WebAXObject root = document.accessibilityObject();
380   if (root.isDetached()) {
381 #ifndef NDEBUG
382     LOG(WARNING) << "OnSetAccessibilityFocus but root is invalid";
383 #endif
384     return;
385   }
386
387   // By convention, calling SetFocus on the root of the tree should clear the
388   // current focus. Otherwise set the focus to the new node.
389   if (acc_obj_id == root.axID())
390     render_view()->GetWebView()->clearFocusedElement();
391   else
392     obj.setFocused(true);
393 }
394
395 void RendererAccessibilityComplete::OnFatalError() {
396   CHECK(false) << "Invalid accessibility tree.";
397 }
398
399 }  // namespace content