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
|
// Copyright (c) 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/accessibility/accessibility_event_recorder.h"
#include <string>
#import <Cocoa/Cocoa.h>
#include "base/mac/foundation_util.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/string_util.h"
#include "base/strings/stringprintf.h"
#include "base/strings/sys_string_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "content/browser/accessibility/browser_accessibility_manager.h"
namespace content {
// Implementation of AccessibilityEventRecorder that uses AXObserver to
// watch for NSAccessibility events.
class AccessibilityEventRecorderMac : public AccessibilityEventRecorder {
public:
explicit AccessibilityEventRecorderMac(BrowserAccessibilityManager* manager);
~AccessibilityEventRecorderMac() override;
// Callback executed every time we receive an event notification.
void EventReceived(AXUIElementRef element, CFStringRef notification);
private:
// Add one notification to the list of notifications monitored by our
// observer.
void AddNotification(NSString* notification);
// Convenience function to get the value of an AX attribute from
// an AXUIElementRef as a string.
std::string GetAXAttributeValue(
AXUIElementRef element, NSString* attribute_name);
// The AXUIElement for the Chrome application.
AXUIElementRef application_;
// The AXObserver we use to monitor AX notifications.
AXObserverRef observer_ref_;
};
// Callback function registered using AXObserverCreate.
static void EventReceivedThunk(
AXObserverRef observer_ref,
AXUIElementRef element,
CFStringRef notification,
void *refcon) {
AccessibilityEventRecorderMac* this_ptr =
static_cast<AccessibilityEventRecorderMac*>(refcon);
this_ptr->EventReceived(element, notification);
}
// static
AccessibilityEventRecorder* AccessibilityEventRecorder::Create(
BrowserAccessibilityManager* manager) {
return new AccessibilityEventRecorderMac(manager);
}
AccessibilityEventRecorderMac::AccessibilityEventRecorderMac(
BrowserAccessibilityManager* manager)
: AccessibilityEventRecorder(manager),
observer_ref_(0) {
// Get Chrome's process id.
int pid = [[NSProcessInfo processInfo] processIdentifier];
if (kAXErrorSuccess != AXObserverCreate(
pid, EventReceivedThunk, &observer_ref_)) {
LOG(FATAL) << "Failed to create AXObserverRef";
}
// Get an AXUIElement for the Chrome application.
application_ = AXUIElementCreateApplication(pid);
if (!application_)
LOG(FATAL) << "Failed to create AXUIElement for application.";
// Add the notifications we care about to the observer.
AddNotification(NSAccessibilityFocusedUIElementChangedNotification);
AddNotification(NSAccessibilityRowCountChangedNotification);
AddNotification(NSAccessibilitySelectedChildrenChangedNotification);
AddNotification(NSAccessibilitySelectedRowsChangedNotification);
AddNotification(NSAccessibilitySelectedTextChangedNotification);
AddNotification(NSAccessibilityValueChangedNotification);
AddNotification(@"AXLayoutComplete");
AddNotification(@"AXLiveRegionChanged");
AddNotification(@"AXLoadComplete");
AddNotification(@"AXRowCollapsed");
AddNotification(@"AXRowExpanded");
// Add the observer to the current message loop.
CFRunLoopAddSource(
[[NSRunLoop currentRunLoop] getCFRunLoop],
AXObserverGetRunLoopSource(observer_ref_),
kCFRunLoopDefaultMode);
}
AccessibilityEventRecorderMac::~AccessibilityEventRecorderMac() {
CFRelease(application_);
CFRelease(observer_ref_);
}
void AccessibilityEventRecorderMac::AddNotification(NSString* notification) {
AXObserverAddNotification(observer_ref_,
application_,
static_cast<CFStringRef>(notification),
this);
}
std::string AccessibilityEventRecorderMac::GetAXAttributeValue(
AXUIElementRef element, NSString* attribute_name) {
CFTypeRef value;
AXError err = AXUIElementCopyAttributeValue(
element, static_cast<CFStringRef>(attribute_name), &value);
if (err != kAXErrorSuccess)
return std::string();
return base::SysNSStringToUTF8(
base::mac::CFToNSCast(static_cast<CFStringRef>(value)));
}
void AccessibilityEventRecorderMac::EventReceived(
AXUIElementRef element,
CFStringRef notification) {
std::string notification_str = base::SysNSStringToUTF8(
base::mac::CFToNSCast(notification));
std::string role = GetAXAttributeValue(element, NSAccessibilityRoleAttribute);
if (role.empty())
return;
std::string log = base::StringPrintf("%s on %s",
notification_str.c_str(), role.c_str());
std::string title = GetAXAttributeValue(element,
NSAccessibilityTitleAttribute);
if (!title.empty())
log += base::StringPrintf(" AXTitle=\"%s\"", title.c_str());
std::string description = GetAXAttributeValue(element,
NSAccessibilityDescriptionAttribute);
if (!description.empty())
log += base::StringPrintf(" AXDescription=\"%s\"", description.c_str());
std::string value = GetAXAttributeValue(element,
NSAccessibilityValueAttribute);
if (!value.empty())
log += base::StringPrintf(" AXValue=\"%s\"", value.c_str());
event_logs_.push_back(log);
}
} // namespace content
|