// 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 "device/hid/hid_connection_mac.h" #include "base/bind.h" #include "base/mac/foundation_util.h" #include "base/message_loop/message_loop.h" #include "device/hid/hid_connection_mac.h" namespace device { HidConnectionMac::HidConnectionMac(HidDeviceInfo device_info) : HidConnection(device_info), device_(device_info.device_id, base::scoped_policy::RETAIN) { message_loop_ = base::MessageLoopProxy::current(); DCHECK(device_.get()); size_t expected_report_size = device_info.max_input_report_size; if (device_info.has_report_id) { expected_report_size++; } inbound_buffer_.resize(expected_report_size); if (inbound_buffer_.size() > 0) { IOHIDDeviceRegisterInputReportCallback( device_.get(), &inbound_buffer_[0], inbound_buffer_.size(), &HidConnectionMac::InputReportCallback, this); } } HidConnectionMac::~HidConnectionMac() { if (inbound_buffer_.size() > 0) { // Unregister the input report callback before this object is freed. IOHIDDeviceRegisterInputReportCallback( device_.get(), &inbound_buffer_[0], inbound_buffer_.size(), NULL, this); } Flush(); } void HidConnectionMac::PlatformRead(scoped_refptr buffer, const IOCallback& callback) { if (!device_) { callback.Run(false, 0); return; } PendingHidRead pending_read; pending_read.buffer = buffer; pending_read.callback = callback; pending_reads_.push(pending_read); ProcessReadQueue(); } void HidConnectionMac::PlatformWrite( uint8_t report_id, scoped_refptr buffer, const IOCallback& callback) { WriteReport(kIOHIDReportTypeOutput, report_id, buffer, callback); } void HidConnectionMac::PlatformGetFeatureReport( uint8_t report_id, scoped_refptr buffer, const IOCallback& callback) { if (!device_) { callback.Run(false, 0); return; } uint8_t* feature_report_buffer = reinterpret_cast(buffer->data()); CFIndex report_size = buffer->size(); IOReturn result = IOHIDDeviceGetReport(device_, kIOHIDReportTypeFeature, report_id, feature_report_buffer, &report_size); if (result == kIOReturnSuccess) callback.Run(true, report_size); else { VLOG(1) << "Failed to get feature report: " << result; callback.Run(false, 0); } } void HidConnectionMac::PlatformSendFeatureReport( uint8_t report_id, scoped_refptr buffer, const IOCallback& callback) { WriteReport(kIOHIDReportTypeFeature, report_id, buffer, callback); } void HidConnectionMac::InputReportCallback(void* context, IOReturn result, void* sender, IOHIDReportType type, uint32_t report_id, uint8_t* report_bytes, CFIndex report_length) { if (result != kIOReturnSuccess) { VLOG(1) << "Failed to read input report: " << result; return; } HidConnectionMac* connection = static_cast(context); // report_id is already contained in report_bytes scoped_refptr buffer; buffer = new net::IOBufferWithSize(report_length); memcpy(buffer->data(), report_bytes, report_length); connection->message_loop_->PostTask( FROM_HERE, base::Bind(&HidConnectionMac::ProcessInputReport, connection, buffer)); } void HidConnectionMac::WriteReport(IOHIDReportType type, uint8_t report_id, scoped_refptr buffer, const IOCallback& callback) { if (!device_) { callback.Run(false, 0); return; } scoped_refptr output_buffer; if (report_id != 0) { output_buffer = new net::IOBufferWithSize(buffer->size() + 1); output_buffer->data()[0] = static_cast(report_id); memcpy(output_buffer->data() + 1, buffer->data(), buffer->size()); } else { output_buffer = new net::IOBufferWithSize(buffer->size()); memcpy(output_buffer->data(), buffer->data(), buffer->size()); } IOReturn res = IOHIDDeviceSetReport(device_.get(), type, report_id, reinterpret_cast(output_buffer->data()), output_buffer->size()); if (res != kIOReturnSuccess) { callback.Run(false, 0); } else { VLOG(1) << "Failed to set report: " << res; callback.Run(true, output_buffer->size()); } } void HidConnectionMac::Flush() { while (!pending_reads_.empty()) { pending_reads_.front().callback.Run(false, 0); pending_reads_.pop(); } } void HidConnectionMac::ProcessInputReport( scoped_refptr buffer) { DCHECK(thread_checker().CalledOnValidThread()); PendingHidReport report; report.buffer = buffer; pending_reports_.push(report); ProcessReadQueue(); } void HidConnectionMac::ProcessReadQueue() { DCHECK(thread_checker().CalledOnValidThread()); while (pending_reads_.size() && pending_reports_.size()) { PendingHidRead read = pending_reads_.front(); PendingHidReport report = pending_reports_.front(); if (read.buffer->size() < report.buffer->size()) { read.callback.Run(false, 0); pending_reads_.pop(); } else { memcpy(read.buffer->data(), report.buffer->data(), report.buffer->size()); pending_reports_.pop(); if (CompleteRead(read.buffer, report.buffer->size(), read.callback)) { pending_reads_.pop(); } } } } } // namespace device