1*38e8c45fSAndroid Build Coastguard Worker /*
2*38e8c45fSAndroid Build Coastguard Worker * Copyright 2022 The Android Open Source Project
3*38e8c45fSAndroid Build Coastguard Worker *
4*38e8c45fSAndroid Build Coastguard Worker * Licensed under the Apache License, Version 2.0 (the "License");
5*38e8c45fSAndroid Build Coastguard Worker * you may not use this file except in compliance with the License.
6*38e8c45fSAndroid Build Coastguard Worker * You may obtain a copy of the License at
7*38e8c45fSAndroid Build Coastguard Worker *
8*38e8c45fSAndroid Build Coastguard Worker * http://www.apache.org/licenses/LICENSE-2.0
9*38e8c45fSAndroid Build Coastguard Worker *
10*38e8c45fSAndroid Build Coastguard Worker * Unless required by applicable law or agreed to in writing, software
11*38e8c45fSAndroid Build Coastguard Worker * distributed under the License is distributed on an "AS IS" BASIS,
12*38e8c45fSAndroid Build Coastguard Worker * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*38e8c45fSAndroid Build Coastguard Worker * See the License for the specific language governing permissions and
14*38e8c45fSAndroid Build Coastguard Worker * limitations under the License.
15*38e8c45fSAndroid Build Coastguard Worker */
16*38e8c45fSAndroid Build Coastguard Worker
17*38e8c45fSAndroid Build Coastguard Worker #include "InstrumentedInputReader.h"
18*38e8c45fSAndroid Build Coastguard Worker
19*38e8c45fSAndroid Build Coastguard Worker namespace android {
20*38e8c45fSAndroid Build Coastguard Worker
InstrumentedInputReader(std::shared_ptr<EventHubInterface> eventHub,const sp<InputReaderPolicyInterface> & policy,InputListenerInterface & listener)21*38e8c45fSAndroid Build Coastguard Worker InstrumentedInputReader::InstrumentedInputReader(std::shared_ptr<EventHubInterface> eventHub,
22*38e8c45fSAndroid Build Coastguard Worker const sp<InputReaderPolicyInterface>& policy,
23*38e8c45fSAndroid Build Coastguard Worker InputListenerInterface& listener)
24*38e8c45fSAndroid Build Coastguard Worker : InputReader(eventHub, policy, listener), mFakeContext(this) {}
25*38e8c45fSAndroid Build Coastguard Worker
pushNextDevice(std::shared_ptr<InputDevice> device)26*38e8c45fSAndroid Build Coastguard Worker void InstrumentedInputReader::pushNextDevice(std::shared_ptr<InputDevice> device) {
27*38e8c45fSAndroid Build Coastguard Worker mNextDevices.push(device);
28*38e8c45fSAndroid Build Coastguard Worker }
29*38e8c45fSAndroid Build Coastguard Worker
newDevice(int32_t deviceId,const std::string & name,const std::string & location)30*38e8c45fSAndroid Build Coastguard Worker std::shared_ptr<InputDevice> InstrumentedInputReader::newDevice(int32_t deviceId,
31*38e8c45fSAndroid Build Coastguard Worker const std::string& name,
32*38e8c45fSAndroid Build Coastguard Worker const std::string& location) {
33*38e8c45fSAndroid Build Coastguard Worker InputDeviceIdentifier identifier;
34*38e8c45fSAndroid Build Coastguard Worker identifier.name = name;
35*38e8c45fSAndroid Build Coastguard Worker identifier.location = location;
36*38e8c45fSAndroid Build Coastguard Worker int32_t generation = deviceId + 1;
37*38e8c45fSAndroid Build Coastguard Worker return std::make_shared<InputDevice>(&mFakeContext, deviceId, generation, identifier);
38*38e8c45fSAndroid Build Coastguard Worker }
39*38e8c45fSAndroid Build Coastguard Worker
createDeviceLocked(nsecs_t when,int32_t eventHubId,const InputDeviceIdentifier & identifier)40*38e8c45fSAndroid Build Coastguard Worker std::shared_ptr<InputDevice> InstrumentedInputReader::createDeviceLocked(
41*38e8c45fSAndroid Build Coastguard Worker nsecs_t when, int32_t eventHubId, const InputDeviceIdentifier& identifier) REQUIRES(mLock) {
42*38e8c45fSAndroid Build Coastguard Worker if (!mNextDevices.empty()) {
43*38e8c45fSAndroid Build Coastguard Worker std::shared_ptr<InputDevice> device(std::move(mNextDevices.front()));
44*38e8c45fSAndroid Build Coastguard Worker mNextDevices.pop();
45*38e8c45fSAndroid Build Coastguard Worker return device;
46*38e8c45fSAndroid Build Coastguard Worker }
47*38e8c45fSAndroid Build Coastguard Worker return InputReader::createDeviceLocked(when, eventHubId, identifier);
48*38e8c45fSAndroid Build Coastguard Worker }
49*38e8c45fSAndroid Build Coastguard Worker
50*38e8c45fSAndroid Build Coastguard Worker } // namespace android
51