HdmiControlService.java revision eaab72ac4198fcc02090da11b1e942e6e338696a
1/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server.hdmi;
18
19import static android.hardware.hdmi.HdmiControlManager.DEVICE_EVENT_ADD_DEVICE;
20import static android.hardware.hdmi.HdmiControlManager.DEVICE_EVENT_REMOVE_DEVICE;
21import static com.android.server.hdmi.Constants.DISABLED;
22import static com.android.server.hdmi.Constants.ENABLED;
23import static com.android.server.hdmi.Constants.OPTION_CEC_AUTO_WAKEUP;
24import static com.android.server.hdmi.Constants.OPTION_CEC_ENABLE;
25import static com.android.server.hdmi.Constants.OPTION_CEC_SERVICE_CONTROL;
26import static com.android.server.hdmi.Constants.OPTION_MHL_ENABLE;
27import static com.android.server.hdmi.Constants.OPTION_MHL_INPUT_SWITCHING;
28import static com.android.server.hdmi.Constants.OPTION_MHL_POWER_CHARGE;
29
30import android.annotation.Nullable;
31import android.content.BroadcastReceiver;
32import android.content.ContentResolver;
33import android.content.Context;
34import android.content.Intent;
35import android.content.IntentFilter;
36import android.database.ContentObserver;
37import android.hardware.hdmi.HdmiControlManager;
38import android.hardware.hdmi.HdmiDeviceInfo;
39import android.hardware.hdmi.HdmiHotplugEvent;
40import android.hardware.hdmi.HdmiPortInfo;
41import android.hardware.hdmi.IHdmiControlCallback;
42import android.hardware.hdmi.IHdmiControlService;
43import android.hardware.hdmi.IHdmiDeviceEventListener;
44import android.hardware.hdmi.IHdmiHotplugEventListener;
45import android.hardware.hdmi.IHdmiInputChangeListener;
46import android.hardware.hdmi.IHdmiMhlVendorCommandListener;
47import android.hardware.hdmi.IHdmiRecordListener;
48import android.hardware.hdmi.IHdmiSystemAudioModeChangeListener;
49import android.hardware.hdmi.IHdmiVendorCommandListener;
50import android.media.AudioManager;
51import android.net.Uri;
52import android.os.Build;
53import android.os.Handler;
54import android.os.HandlerThread;
55import android.os.IBinder;
56import android.os.Looper;
57import android.os.PowerManager;
58import android.os.RemoteException;
59import android.os.SystemClock;
60import android.os.SystemProperties;
61import android.os.UserHandle;
62import android.provider.Settings.Global;
63import android.text.TextUtils;
64import android.util.ArraySet;
65import android.util.Slog;
66import android.util.SparseArray;
67import android.util.SparseIntArray;
68
69import com.android.internal.annotations.GuardedBy;
70import com.android.internal.util.IndentingPrintWriter;
71import com.android.server.SystemService;
72import com.android.server.hdmi.HdmiAnnotations.ServiceThreadOnly;
73import com.android.server.hdmi.HdmiCecController.AllocateAddressCallback;
74import com.android.server.hdmi.HdmiCecLocalDevice.ActiveSource;
75import com.android.server.hdmi.HdmiCecLocalDevice.PendingActionClearedCallback;
76
77import libcore.util.EmptyArray;
78
79import java.io.FileDescriptor;
80import java.io.PrintWriter;
81import java.util.ArrayList;
82import java.util.Arrays;
83import java.util.Collections;
84import java.util.List;
85import java.util.Locale;
86
87/**
88 * Provides a service for sending and processing HDMI control messages,
89 * HDMI-CEC and MHL control command, and providing the information on both standard.
90 */
91public final class HdmiControlService extends SystemService {
92    private static final String TAG = "HdmiControlService";
93
94    static final String PERMISSION = "android.permission.HDMI_CEC";
95
96    // The reason code to initiate intializeCec().
97    static final int INITIATED_BY_ENABLE_CEC = 0;
98    static final int INITIATED_BY_BOOT_UP = 1;
99    static final int INITIATED_BY_SCREEN_ON = 2;
100    static final int INITIATED_BY_WAKE_UP_MESSAGE = 3;
101    static final int INITIATED_BY_HOTPLUG = 4;
102
103    /**
104     * Interface to report send result.
105     */
106    interface SendMessageCallback {
107        /**
108         * Called when {@link HdmiControlService#sendCecCommand} is completed.
109         *
110         * @param error result of send request.
111         * <ul>
112         * <li>{@link Constants#SEND_RESULT_SUCCESS}
113         * <li>{@link Constants#SEND_RESULT_NAK}
114         * <li>{@link Constants#SEND_RESULT_FAILURE}
115         * </ul>
116         */
117        void onSendCompleted(int error);
118    }
119
120    /**
121     * Interface to get a list of available logical devices.
122     */
123    interface DevicePollingCallback {
124        /**
125         * Called when device polling is finished.
126         *
127         * @param ackedAddress a list of logical addresses of available devices
128         */
129        void onPollingFinished(List<Integer> ackedAddress);
130    }
131
132    private class HdmiControlBroadcastReceiver extends BroadcastReceiver {
133        @ServiceThreadOnly
134        @Override
135        public void onReceive(Context context, Intent intent) {
136            assertRunOnServiceThread();
137            switch (intent.getAction()) {
138                case Intent.ACTION_SCREEN_OFF:
139                    if (isPowerOnOrTransient()) {
140                        onStandby();
141                    }
142                    break;
143                case Intent.ACTION_SCREEN_ON:
144                    if (isPowerStandbyOrTransient()) {
145                        onWakeUp();
146                    }
147                    break;
148                case Intent.ACTION_CONFIGURATION_CHANGED:
149                    String language = Locale.getDefault().getISO3Language();
150                    if (!mLanguage.equals(language)) {
151                        onLanguageChanged(language);
152                    }
153                    break;
154            }
155        }
156    }
157
158    // A thread to handle synchronous IO of CEC and MHL control service.
159    // Since all of CEC and MHL HAL interfaces processed in short time (< 200ms)
160    // and sparse call it shares a thread to handle IO operations.
161    private final HandlerThread mIoThread = new HandlerThread("Hdmi Control Io Thread");
162
163    // Used to synchronize the access to the service.
164    private final Object mLock = new Object();
165
166    // Type of logical devices hosted in the system. Stored in the unmodifiable list.
167    private final List<Integer> mLocalDevices;
168
169    // List of records for hotplug event listener to handle the the caller killed in action.
170    @GuardedBy("mLock")
171    private final ArrayList<HotplugEventListenerRecord> mHotplugEventListenerRecords =
172            new ArrayList<>();
173
174    // List of records for device event listener to handle the caller killed in action.
175    @GuardedBy("mLock")
176    private final ArrayList<DeviceEventListenerRecord> mDeviceEventListenerRecords =
177            new ArrayList<>();
178
179    // List of records for vendor command listener to handle the caller killed in action.
180    @GuardedBy("mLock")
181    private final ArrayList<VendorCommandListenerRecord> mVendorCommandListenerRecords =
182            new ArrayList<>();
183
184    @GuardedBy("mLock")
185    private InputChangeListenerRecord mInputChangeListenerRecord;
186
187    @GuardedBy("mLock")
188    private HdmiRecordListenerRecord mRecordListenerRecord;
189
190    // Set to true while HDMI control is enabled. If set to false, HDMI-CEC/MHL protocol
191    // handling will be disabled and no request will be handled.
192    @GuardedBy("mLock")
193    private boolean mHdmiControlEnabled;
194
195    // Set to true while the service is in normal mode. While set to false, no input change is
196    // allowed. Used for situations where input change can confuse users such as channel auto-scan,
197    // system upgrade, etc., a.k.a. "prohibit mode".
198    @GuardedBy("mLock")
199    private boolean mProhibitMode;
200
201    // List of records for system audio mode change to handle the the caller killed in action.
202    private final ArrayList<SystemAudioModeChangeListenerRecord>
203            mSystemAudioModeChangeListenerRecords = new ArrayList<>();
204
205    // Handler used to run a task in service thread.
206    private final Handler mHandler = new Handler();
207
208    private final SettingsObserver mSettingsObserver;
209
210    private final HdmiControlBroadcastReceiver
211            mHdmiControlBroadcastReceiver = new HdmiControlBroadcastReceiver();
212
213    @Nullable
214    private HdmiCecController mCecController;
215
216    // HDMI port information. Stored in the unmodifiable list to keep the static information
217    // from being modified.
218    private List<HdmiPortInfo> mPortInfo;
219
220    // Map from path(physical address) to port ID.
221    private UnmodifiableSparseIntArray mPortIdMap;
222
223    // Map from port ID to HdmiPortInfo.
224    private UnmodifiableSparseArray<HdmiPortInfo> mPortInfoMap;
225
226    // Map from port ID to HdmiDeviceInfo.
227    private UnmodifiableSparseArray<HdmiDeviceInfo> mPortDeviceMap;
228
229    private HdmiCecMessageValidator mMessageValidator;
230
231    @ServiceThreadOnly
232    private int mPowerStatus = HdmiControlManager.POWER_STATUS_STANDBY;
233
234    @ServiceThreadOnly
235    private String mLanguage = Locale.getDefault().getISO3Language();
236
237    @ServiceThreadOnly
238    private boolean mStandbyMessageReceived = false;
239
240    @ServiceThreadOnly
241    private boolean mWakeUpMessageReceived = false;
242
243    @ServiceThreadOnly
244    private int mActivePortId = Constants.INVALID_PORT_ID;
245
246    // Set to true while the input change by MHL is allowed.
247    @GuardedBy("mLock")
248    private boolean mMhlInputChangeEnabled;
249
250    // List of records for MHL Vendor command listener to handle the caller killed in action.
251    @GuardedBy("mLock")
252    private final ArrayList<HdmiMhlVendorCommandListenerRecord>
253            mMhlVendorCommandListenerRecords = new ArrayList<>();
254
255    @GuardedBy("mLock")
256    private List<HdmiDeviceInfo> mMhlDevices;
257
258    @Nullable
259    private HdmiMhlControllerStub mMhlController;
260
261    // Last input port before switching to the MHL port. Should switch back to this port
262    // when the mobile device sends the request one touch play with off.
263    // Gets invalidated if we go to other port/input.
264    @ServiceThreadOnly
265    private int mLastInputMhl = Constants.INVALID_PORT_ID;
266
267    public HdmiControlService(Context context) {
268        super(context);
269        mLocalDevices = getIntList(SystemProperties.get(Constants.PROPERTY_DEVICE_TYPE));
270        mSettingsObserver = new SettingsObserver(mHandler);
271    }
272
273    private static List<Integer> getIntList(String string) {
274        ArrayList<Integer> list = new ArrayList<>();
275        TextUtils.SimpleStringSplitter splitter = new TextUtils.SimpleStringSplitter(',');
276        splitter.setString(string);
277        for (String item : splitter) {
278            try {
279                list.add(Integer.parseInt(item));
280            } catch (NumberFormatException e) {
281                Slog.w(TAG, "Can't parseInt: " + item);
282            }
283        }
284        return Collections.unmodifiableList(list);
285    }
286
287    @Override
288    public void onStart() {
289        mIoThread.start();
290        mPowerStatus = HdmiControlManager.POWER_STATUS_TRANSIENT_TO_ON;
291        mProhibitMode = false;
292        mHdmiControlEnabled = readBooleanSetting(Global.HDMI_CONTROL_ENABLED, true);
293        mMhlInputChangeEnabled = readBooleanSetting(Global.MHL_INPUT_SWITCHING_ENABLED, true);
294
295        mCecController = HdmiCecController.create(this);
296        if (mCecController != null) {
297            // TODO: Remove this as soon as OEM's HAL implementation is corrected.
298            mCecController.setOption(OPTION_CEC_ENABLE, ENABLED);
299
300            // TODO: load value for mHdmiControlEnabled from preference.
301            if (mHdmiControlEnabled) {
302                initializeCec(INITIATED_BY_BOOT_UP);
303            }
304        } else {
305            Slog.i(TAG, "Device does not support HDMI-CEC.");
306        }
307
308        mMhlController = HdmiMhlControllerStub.create(this);
309        if (!mMhlController.isReady()) {
310            Slog.i(TAG, "Device does not support MHL-control.");
311        }
312        mMhlDevices = Collections.emptyList();
313
314        initPortInfo();
315        mMessageValidator = new HdmiCecMessageValidator(this);
316        publishBinderService(Context.HDMI_CONTROL_SERVICE, new BinderService());
317
318        // Register broadcast receiver for power state change.
319        if (mCecController != null) {
320            IntentFilter filter = new IntentFilter();
321            filter.addAction(Intent.ACTION_SCREEN_OFF);
322            filter.addAction(Intent.ACTION_SCREEN_ON);
323            filter.addAction(Intent.ACTION_CONFIGURATION_CHANGED);
324            getContext().registerReceiver(mHdmiControlBroadcastReceiver, filter);
325        }
326    }
327
328    /**
329     * Called when the initialization of local devices is complete.
330     */
331    private void onInitializeCecComplete() {
332        if (mPowerStatus == HdmiControlManager.POWER_STATUS_TRANSIENT_TO_ON) {
333            mPowerStatus = HdmiControlManager.POWER_STATUS_ON;
334        }
335        mWakeUpMessageReceived = false;
336
337        if (isTvDevice()) {
338            mCecController.setOption(OPTION_CEC_AUTO_WAKEUP, toInt(tv().getAutoWakeup()));
339            registerContentObserver();
340        }
341    }
342
343    private void registerContentObserver() {
344        ContentResolver resolver = getContext().getContentResolver();
345        String[] settings = new String[] {
346                Global.HDMI_CONTROL_ENABLED,
347                Global.HDMI_CONTROL_AUTO_WAKEUP_ENABLED,
348                Global.HDMI_CONTROL_AUTO_DEVICE_OFF_ENABLED,
349                Global.MHL_INPUT_SWITCHING_ENABLED,
350                Global.MHL_POWER_CHARGE_ENABLED
351        };
352        for (String s : settings) {
353            resolver.registerContentObserver(Global.getUriFor(s), false, mSettingsObserver,
354                    UserHandle.USER_ALL);
355        }
356    }
357
358    private class SettingsObserver extends ContentObserver {
359        public SettingsObserver(Handler handler) {
360            super(handler);
361        }
362
363        // onChange is set up to run in service thread.
364        @Override
365        public void onChange(boolean selfChange, Uri uri) {
366            String option = uri.getLastPathSegment();
367            boolean enabled = readBooleanSetting(option, true);
368            switch (option) {
369                case Global.HDMI_CONTROL_ENABLED:
370                    setControlEnabled(enabled);
371                    break;
372                case Global.HDMI_CONTROL_AUTO_WAKEUP_ENABLED:
373                    tv().setAutoWakeup(enabled);
374                    setCecOption(OPTION_CEC_AUTO_WAKEUP, toInt(enabled));
375                    break;
376                case Global.HDMI_CONTROL_AUTO_DEVICE_OFF_ENABLED:
377                    tv().setAutoDeviceOff(enabled);
378                    // No need to propagate to HAL.
379                    break;
380                case Global.MHL_INPUT_SWITCHING_ENABLED:
381                    setMhlInputChangeEnabled(enabled);
382                    break;
383                case Global.MHL_POWER_CHARGE_ENABLED:
384                    mMhlController.setOption(OPTION_MHL_POWER_CHARGE, toInt(enabled));
385                    break;
386            }
387        }
388    }
389
390    private static int toInt(boolean enabled) {
391        return enabled ? ENABLED : DISABLED;
392    }
393
394    boolean readBooleanSetting(String key, boolean defVal) {
395        ContentResolver cr = getContext().getContentResolver();
396        return Global.getInt(cr, key, toInt(defVal)) == ENABLED;
397    }
398
399    void writeBooleanSetting(String key, boolean value) {
400        ContentResolver cr = getContext().getContentResolver();
401        Global.putInt(cr, key, toInt(value));
402    }
403
404    private void unregisterSettingsObserver() {
405        getContext().getContentResolver().unregisterContentObserver(mSettingsObserver);
406    }
407
408    private void initializeCec(int initiatedBy) {
409        mCecController.setOption(OPTION_CEC_SERVICE_CONTROL, ENABLED);
410        initializeLocalDevices(initiatedBy);
411    }
412
413    @ServiceThreadOnly
414    private void initializeLocalDevices(final int initiatedBy) {
415        assertRunOnServiceThread();
416        // A container for [Device type, Local device info].
417        ArrayList<HdmiCecLocalDevice> localDevices = new ArrayList<>();
418        for (int type : mLocalDevices) {
419            HdmiCecLocalDevice localDevice = mCecController.getLocalDevice(type);
420            if (localDevice == null) {
421                localDevice = HdmiCecLocalDevice.create(this, type);
422            }
423            localDevice.init();
424            localDevices.add(localDevice);
425        }
426        // It's now safe to flush existing local devices from mCecController since they were
427        // already moved to 'localDevices'.
428        clearLocalDevices();
429        allocateLogicalAddress(localDevices, initiatedBy);
430    }
431
432    @ServiceThreadOnly
433    private void allocateLogicalAddress(final ArrayList<HdmiCecLocalDevice> allocatingDevices,
434            final int initiatedBy) {
435        assertRunOnServiceThread();
436        mCecController.clearLogicalAddress();
437        final ArrayList<HdmiCecLocalDevice> allocatedDevices = new ArrayList<>();
438        final int[] finished = new int[1];
439        for (final HdmiCecLocalDevice localDevice : allocatingDevices) {
440            mCecController.allocateLogicalAddress(localDevice.getType(),
441                    localDevice.getPreferredAddress(), new AllocateAddressCallback() {
442                @Override
443                public void onAllocated(int deviceType, int logicalAddress) {
444                    if (logicalAddress == Constants.ADDR_UNREGISTERED) {
445                        Slog.e(TAG, "Failed to allocate address:[device_type:" + deviceType + "]");
446                    } else {
447                        // Set POWER_STATUS_ON to all local devices because they share lifetime
448                        // with system.
449                        HdmiDeviceInfo deviceInfo = createDeviceInfo(logicalAddress, deviceType,
450                                HdmiControlManager.POWER_STATUS_ON);
451                        localDevice.setDeviceInfo(deviceInfo);
452                        mCecController.addLocalDevice(deviceType, localDevice);
453                        mCecController.addLogicalAddress(logicalAddress);
454                        allocatedDevices.add(localDevice);
455                    }
456
457                    // Address allocation completed for all devices. Notify each device.
458                    if (allocatingDevices.size() == ++finished[0]) {
459                        if (initiatedBy != INITIATED_BY_HOTPLUG) {
460                            // In case of the hotplug we don't call onInitializeCecComplete()
461                            // since we reallocate the logical address only.
462                            onInitializeCecComplete();
463                        }
464                        notifyAddressAllocated(allocatedDevices, initiatedBy);
465                    }
466                }
467            });
468        }
469    }
470
471    @ServiceThreadOnly
472    private void notifyAddressAllocated(ArrayList<HdmiCecLocalDevice> devices, int initiatedBy) {
473        assertRunOnServiceThread();
474        for (HdmiCecLocalDevice device : devices) {
475            int address = device.getDeviceInfo().getLogicalAddress();
476            device.handleAddressAllocated(address, initiatedBy);
477        }
478    }
479
480    // Initialize HDMI port information. Combine the information from CEC and MHL HAL and
481    // keep them in one place.
482    @ServiceThreadOnly
483    private void initPortInfo() {
484        assertRunOnServiceThread();
485        HdmiPortInfo[] cecPortInfo = null;
486
487        // CEC HAL provides majority of the info while MHL does only MHL support flag for
488        // each port. Return empty array if CEC HAL didn't provide the info.
489        if (mCecController != null) {
490            cecPortInfo = mCecController.getPortInfos();
491        }
492        if (cecPortInfo == null) {
493            return;
494        }
495
496        SparseArray<HdmiPortInfo> portInfoMap = new SparseArray<>();
497        SparseIntArray portIdMap = new SparseIntArray();
498        SparseArray<HdmiDeviceInfo> portDeviceMap = new SparseArray<>();
499        for (HdmiPortInfo info : cecPortInfo) {
500            portIdMap.put(info.getAddress(), info.getId());
501            portInfoMap.put(info.getId(), info);
502            portDeviceMap.put(info.getId(), new HdmiDeviceInfo(info.getAddress(), info.getId()));
503        }
504        mPortIdMap = new UnmodifiableSparseIntArray(portIdMap);
505        mPortInfoMap = new UnmodifiableSparseArray<>(portInfoMap);
506        mPortDeviceMap = new UnmodifiableSparseArray<>(portDeviceMap);
507
508        HdmiPortInfo[] mhlPortInfo = mMhlController.getPortInfos();
509        ArraySet<Integer> mhlSupportedPorts = new ArraySet<Integer>(mhlPortInfo.length);
510        for (HdmiPortInfo info : mhlPortInfo) {
511            if (info.isMhlSupported()) {
512                mhlSupportedPorts.add(info.getId());
513            }
514        }
515
516        // Build HDMI port info list with CEC port info plus MHL supported flag. We can just use
517        // cec port info if we do not have have port that supports MHL.
518        if (mhlSupportedPorts.isEmpty()) {
519            mPortInfo = Collections.unmodifiableList(Arrays.asList(cecPortInfo));
520            return;
521        }
522        ArrayList<HdmiPortInfo> result = new ArrayList<>(cecPortInfo.length);
523        for (HdmiPortInfo info : cecPortInfo) {
524            if (mhlSupportedPorts.contains(info.getId())) {
525                result.add(new HdmiPortInfo(info.getId(), info.getType(), info.getAddress(),
526                        info.isCecSupported(), true, info.isArcSupported()));
527            } else {
528                result.add(info);
529            }
530        }
531        mPortInfo = Collections.unmodifiableList(result);
532    }
533
534    List<HdmiPortInfo> getPortInfo() {
535        return mPortInfo;
536    }
537
538    /**
539     * Returns HDMI port information for the given port id.
540     *
541     * @param portId HDMI port id
542     * @return {@link HdmiPortInfo} for the given port
543     */
544    HdmiPortInfo getPortInfo(int portId) {
545        return mPortInfoMap.get(portId, null);
546    }
547
548    /**
549     * Returns the routing path (physical address) of the HDMI port for the given
550     * port id.
551     */
552    int portIdToPath(int portId) {
553        HdmiPortInfo portInfo = getPortInfo(portId);
554        if (portInfo == null) {
555            Slog.e(TAG, "Cannot find the port info: " + portId);
556            return Constants.INVALID_PHYSICAL_ADDRESS;
557        }
558        return portInfo.getAddress();
559    }
560
561    /**
562     * Returns the id of HDMI port located at the top of the hierarchy of
563     * the specified routing path. For the routing path 0x1220 (1.2.2.0), for instance,
564     * the port id to be returned is the ID associated with the port address
565     * 0x1000 (1.0.0.0) which is the topmost path of the given routing path.
566     */
567    int pathToPortId(int path) {
568        int portAddress = path & Constants.ROUTING_PATH_TOP_MASK;
569        return mPortIdMap.get(portAddress, Constants.INVALID_PORT_ID);
570    }
571
572    boolean isValidPortId(int portId) {
573        return getPortInfo(portId) != null;
574    }
575
576    /**
577     * Returns {@link Looper} for IO operation.
578     *
579     * <p>Declared as package-private.
580     */
581    Looper getIoLooper() {
582        return mIoThread.getLooper();
583    }
584
585    /**
586     * Returns {@link Looper} of main thread. Use this {@link Looper} instance
587     * for tasks that are running on main service thread.
588     *
589     * <p>Declared as package-private.
590     */
591    Looper getServiceLooper() {
592        return mHandler.getLooper();
593    }
594
595    /**
596     * Returns physical address of the device.
597     */
598    int getPhysicalAddress() {
599        return mCecController.getPhysicalAddress();
600    }
601
602    /**
603     * Returns vendor id of CEC service.
604     */
605    int getVendorId() {
606        return mCecController.getVendorId();
607    }
608
609    @ServiceThreadOnly
610    HdmiDeviceInfo getDeviceInfo(int logicalAddress) {
611        assertRunOnServiceThread();
612        HdmiCecLocalDeviceTv tv = tv();
613        if (tv == null) {
614            return null;
615        }
616        return tv.getCecDeviceInfo(logicalAddress);
617    }
618
619    /**
620     * Returns version of CEC.
621     */
622    int getCecVersion() {
623        return mCecController.getVersion();
624    }
625
626    /**
627     * Whether a device of the specified physical address is connected to ARC enabled port.
628     */
629    boolean isConnectedToArcPort(int physicalAddress) {
630        int portId = pathToPortId(physicalAddress);
631        if (portId != Constants.INVALID_PORT_ID) {
632            return mPortInfoMap.get(portId).isArcSupported();
633        }
634        return false;
635    }
636
637    void runOnServiceThread(Runnable runnable) {
638        mHandler.post(runnable);
639    }
640
641    void runOnServiceThreadAtFrontOfQueue(Runnable runnable) {
642        mHandler.postAtFrontOfQueue(runnable);
643    }
644
645    private void assertRunOnServiceThread() {
646        if (Looper.myLooper() != mHandler.getLooper()) {
647            throw new IllegalStateException("Should run on service thread.");
648        }
649    }
650
651    /**
652     * Transmit a CEC command to CEC bus.
653     *
654     * @param command CEC command to send out
655     * @param callback interface used to the result of send command
656     */
657    @ServiceThreadOnly
658    void sendCecCommand(HdmiCecMessage command, @Nullable SendMessageCallback callback) {
659        assertRunOnServiceThread();
660        if (mMessageValidator.isValid(command) == HdmiCecMessageValidator.OK) {
661            mCecController.sendCommand(command, callback);
662        } else {
663            HdmiLogger.error("Invalid message type:" + command);
664            if (callback != null) {
665                callback.onSendCompleted(Constants.SEND_RESULT_FAILURE);
666            }
667        }
668    }
669
670    @ServiceThreadOnly
671    void sendCecCommand(HdmiCecMessage command) {
672        assertRunOnServiceThread();
673        sendCecCommand(command, null);
674    }
675
676    /**
677     * Send <Feature Abort> command on the given CEC message if possible.
678     * If the aborted message is invalid, then it wont send the message.
679     * @param command original command to be aborted
680     * @param reason reason of feature abort
681     */
682    @ServiceThreadOnly
683    void maySendFeatureAbortCommand(HdmiCecMessage command, int reason) {
684        assertRunOnServiceThread();
685        mCecController.maySendFeatureAbortCommand(command, reason);
686    }
687
688    @ServiceThreadOnly
689    boolean handleCecCommand(HdmiCecMessage message) {
690        assertRunOnServiceThread();
691        int errorCode = mMessageValidator.isValid(message);
692        if (errorCode != HdmiCecMessageValidator.OK) {
693            // We'll not response on the messages with the invalid source or destination.
694            if (errorCode == HdmiCecMessageValidator.ERROR_PARAMETER) {
695                maySendFeatureAbortCommand(message, Constants.ABORT_INVALID_OPERAND);
696            }
697            return true;
698        }
699        return dispatchMessageToLocalDevice(message);
700    }
701
702    void setAudioReturnChannel(boolean enabled) {
703        mCecController.setAudioReturnChannel(enabled);
704    }
705
706    @ServiceThreadOnly
707    private boolean dispatchMessageToLocalDevice(HdmiCecMessage message) {
708        assertRunOnServiceThread();
709        for (HdmiCecLocalDevice device : mCecController.getLocalDeviceList()) {
710            if (device.dispatchMessage(message)
711                    && message.getDestination() != Constants.ADDR_BROADCAST) {
712                return true;
713            }
714        }
715
716        if (message.getDestination() != Constants.ADDR_BROADCAST) {
717            HdmiLogger.warning("Unhandled cec command:" + message);
718        }
719        return false;
720    }
721
722    /**
723     * Called when a new hotplug event is issued.
724     *
725     * @param portId hdmi port number where hot plug event issued.
726     * @param connected whether to be plugged in or not
727     */
728    @ServiceThreadOnly
729    void onHotplug(int portId, boolean connected) {
730        assertRunOnServiceThread();
731
732        ArrayList<HdmiCecLocalDevice> localDevices = new ArrayList<>();
733        for (int type : mLocalDevices) {
734            if (type == HdmiDeviceInfo.DEVICE_TV) {
735                // Skip the reallocation of the logical address on TV.
736                continue;
737            }
738            HdmiCecLocalDevice localDevice = mCecController.getLocalDevice(type);
739            if (localDevice == null) {
740                localDevice = HdmiCecLocalDevice.create(this, type);
741                localDevice.init();
742            }
743            localDevices.add(localDevice);
744        }
745        allocateLogicalAddress(localDevices, INITIATED_BY_HOTPLUG);
746
747        for (HdmiCecLocalDevice device : mCecController.getLocalDeviceList()) {
748            device.onHotplug(portId, connected);
749        }
750        announceHotplugEvent(portId, connected);
751    }
752
753    /**
754     * Poll all remote devices. It sends &lt;Polling Message&gt; to all remote
755     * devices.
756     *
757     * @param callback an interface used to get a list of all remote devices' address
758     * @param sourceAddress a logical address of source device where sends polling message
759     * @param pickStrategy strategy how to pick polling candidates
760     * @param retryCount the number of retry used to send polling message to remote devices
761     * @throw IllegalArgumentException if {@code pickStrategy} is invalid value
762     */
763    @ServiceThreadOnly
764    void pollDevices(DevicePollingCallback callback, int sourceAddress, int pickStrategy,
765            int retryCount) {
766        assertRunOnServiceThread();
767        mCecController.pollDevices(callback, sourceAddress, checkPollStrategy(pickStrategy),
768                retryCount);
769    }
770
771    private int checkPollStrategy(int pickStrategy) {
772        int strategy = pickStrategy & Constants.POLL_STRATEGY_MASK;
773        if (strategy == 0) {
774            throw new IllegalArgumentException("Invalid poll strategy:" + pickStrategy);
775        }
776        int iterationStrategy = pickStrategy & Constants.POLL_ITERATION_STRATEGY_MASK;
777        if (iterationStrategy == 0) {
778            throw new IllegalArgumentException("Invalid iteration strategy:" + pickStrategy);
779        }
780        return strategy | iterationStrategy;
781    }
782
783    List<HdmiCecLocalDevice> getAllLocalDevices() {
784        assertRunOnServiceThread();
785        return mCecController.getLocalDeviceList();
786    }
787
788    Object getServiceLock() {
789        return mLock;
790    }
791
792    void setAudioStatus(boolean mute, int volume) {
793        AudioManager audioManager = getAudioManager();
794        boolean muted = audioManager.isStreamMute(AudioManager.STREAM_MUSIC);
795        if (mute) {
796            if (!muted) {
797                audioManager.setStreamMute(AudioManager.STREAM_MUSIC, true);
798            }
799        } else {
800            if (muted) {
801                audioManager.setStreamMute(AudioManager.STREAM_MUSIC, false);
802            }
803            // FLAG_HDMI_SYSTEM_AUDIO_VOLUME prevents audio manager from announcing
804            // volume change notification back to hdmi control service.
805            audioManager.setStreamVolume(AudioManager.STREAM_MUSIC, volume,
806                    AudioManager.FLAG_SHOW_UI | AudioManager.FLAG_HDMI_SYSTEM_AUDIO_VOLUME);
807        }
808    }
809
810    void announceSystemAudioModeChange(boolean enabled) {
811        synchronized (mLock) {
812            for (SystemAudioModeChangeListenerRecord record :
813                    mSystemAudioModeChangeListenerRecords) {
814                invokeSystemAudioModeChangeLocked(record.mListener, enabled);
815            }
816        }
817    }
818
819    private HdmiDeviceInfo createDeviceInfo(int logicalAddress, int deviceType, int powerStatus) {
820        // TODO: find better name instead of model name.
821        String displayName = Build.MODEL;
822        return new HdmiDeviceInfo(logicalAddress,
823                getPhysicalAddress(), pathToPortId(getPhysicalAddress()), deviceType,
824                getVendorId(), displayName);
825    }
826
827    @ServiceThreadOnly
828    void handleMhlHotplugEvent(int portId, boolean connected) {
829        assertRunOnServiceThread();
830        if (connected) {
831            HdmiMhlLocalDeviceStub newDevice = new HdmiMhlLocalDeviceStub(this, portId);
832            HdmiMhlLocalDeviceStub oldDevice = mMhlController.addLocalDevice(newDevice);
833            if (oldDevice != null) {
834                oldDevice.onDeviceRemoved();
835                Slog.i(TAG, "Old device of port " + portId + " is removed");
836            }
837        } else {
838            HdmiMhlLocalDeviceStub device = mMhlController.removeLocalDevice(portId);
839            if (device != null) {
840                device.onDeviceRemoved();
841                // There is no explicit event for device removal.
842                // Hence we remove the device on hotplug event.
843                HdmiDeviceInfo deviceInfo = device.getInfo();
844                if (deviceInfo != null) {
845                    invokeDeviceEventListeners(deviceInfo, DEVICE_EVENT_REMOVE_DEVICE);
846                    updateSafeMhlInput();
847                }
848            } else {
849                Slog.w(TAG, "No device to remove:[portId=" + portId);
850            }
851        }
852        announceHotplugEvent(portId, connected);
853    }
854
855    @ServiceThreadOnly
856    void handleMhlBusModeChanged(int portId, int busmode) {
857        assertRunOnServiceThread();
858        HdmiMhlLocalDeviceStub device = mMhlController.getLocalDevice(portId);
859        if (device != null) {
860            device.setBusMode(busmode);
861        } else {
862            Slog.w(TAG, "No mhl device exists for bus mode change[portId:" + portId +
863                    ", busmode:" + busmode + "]");
864        }
865    }
866
867    @ServiceThreadOnly
868    void handleMhlBusOvercurrent(int portId, boolean on) {
869        assertRunOnServiceThread();
870        HdmiMhlLocalDeviceStub device = mMhlController.getLocalDevice(portId);
871        if (device != null) {
872            device.onBusOvercurrentDetected(on);
873        } else {
874            Slog.w(TAG, "No mhl device exists for bus overcurrent event[portId:" + portId + "]");
875        }
876    }
877
878    @ServiceThreadOnly
879    void handleMhlDeviceStatusChanged(int portId, int adopterId, int deviceId) {
880        assertRunOnServiceThread();
881        HdmiMhlLocalDeviceStub device = mMhlController.getLocalDevice(portId);
882
883        // Hotplug event should already have been called before device status change event.
884        if (device != null) {
885            device.setDeviceStatusChange(adopterId, deviceId);
886            invokeDeviceEventListeners(device.getInfo(), DEVICE_EVENT_ADD_DEVICE);
887            updateSafeMhlInput();
888        } else {
889            Slog.w(TAG, "No mhl device exists for device status event[portId:"
890                    + portId + ", adopterId:" + adopterId + ", deviceId:" + deviceId + "]");
891        }
892    }
893
894    @ServiceThreadOnly
895    private void updateSafeMhlInput() {
896        assertRunOnServiceThread();
897        List<HdmiDeviceInfo> inputs = Collections.emptyList();
898        SparseArray<HdmiMhlLocalDeviceStub> devices = mMhlController.getAllLocalDevices();
899        for (int i = 0; i < devices.size(); ++i) {
900            HdmiMhlLocalDeviceStub device = devices.valueAt(i);
901            HdmiDeviceInfo info = device.getInfo();
902            if (info != null) {
903                if (inputs.isEmpty()) {
904                    inputs = new ArrayList<>();
905                }
906                inputs.add(device.getInfo());
907            }
908        }
909        synchronized (mLock) {
910            mMhlDevices = inputs;
911        }
912    }
913
914    private List<HdmiDeviceInfo> getMhlDevicesLocked() {
915        return mMhlDevices;
916    }
917
918    private class HdmiMhlVendorCommandListenerRecord implements IBinder.DeathRecipient {
919        private final IHdmiMhlVendorCommandListener mListener;
920
921        public HdmiMhlVendorCommandListenerRecord(IHdmiMhlVendorCommandListener listener) {
922            mListener = listener;
923        }
924
925        @Override
926        public void binderDied() {
927            mMhlVendorCommandListenerRecords.remove(this);
928        }
929    }
930
931    // Record class that monitors the event of the caller of being killed. Used to clean up
932    // the listener list and record list accordingly.
933    private final class HotplugEventListenerRecord implements IBinder.DeathRecipient {
934        private final IHdmiHotplugEventListener mListener;
935
936        public HotplugEventListenerRecord(IHdmiHotplugEventListener listener) {
937            mListener = listener;
938        }
939
940        @Override
941        public void binderDied() {
942            synchronized (mLock) {
943                mHotplugEventListenerRecords.remove(this);
944            }
945        }
946    }
947
948    private final class DeviceEventListenerRecord implements IBinder.DeathRecipient {
949        private final IHdmiDeviceEventListener mListener;
950
951        public DeviceEventListenerRecord(IHdmiDeviceEventListener listener) {
952            mListener = listener;
953        }
954
955        @Override
956        public void binderDied() {
957            synchronized (mLock) {
958                mDeviceEventListenerRecords.remove(this);
959            }
960        }
961    }
962
963    private final class SystemAudioModeChangeListenerRecord implements IBinder.DeathRecipient {
964        private final IHdmiSystemAudioModeChangeListener mListener;
965
966        public SystemAudioModeChangeListenerRecord(IHdmiSystemAudioModeChangeListener listener) {
967            mListener = listener;
968        }
969
970        @Override
971        public void binderDied() {
972            synchronized (mLock) {
973                mSystemAudioModeChangeListenerRecords.remove(this);
974            }
975        }
976    }
977
978    class VendorCommandListenerRecord implements IBinder.DeathRecipient {
979        private final IHdmiVendorCommandListener mListener;
980        private final int mDeviceType;
981
982        public VendorCommandListenerRecord(IHdmiVendorCommandListener listener, int deviceType) {
983            mListener = listener;
984            mDeviceType = deviceType;
985        }
986
987        @Override
988        public void binderDied() {
989            synchronized (mLock) {
990                mVendorCommandListenerRecords.remove(this);
991            }
992        }
993    }
994
995    private class HdmiRecordListenerRecord implements IBinder.DeathRecipient {
996        private final IHdmiRecordListener mListener;
997
998        public HdmiRecordListenerRecord(IHdmiRecordListener listener) {
999            mListener = listener;
1000        }
1001
1002        @Override
1003        public void binderDied() {
1004            synchronized (mLock) {
1005                mRecordListenerRecord = null;
1006            }
1007        }
1008    }
1009
1010    private void enforceAccessPermission() {
1011        getContext().enforceCallingOrSelfPermission(PERMISSION, TAG);
1012    }
1013
1014    private final class BinderService extends IHdmiControlService.Stub {
1015        @Override
1016        public int[] getSupportedTypes() {
1017            enforceAccessPermission();
1018            // mLocalDevices is an unmodifiable list - no lock necesary.
1019            int[] localDevices = new int[mLocalDevices.size()];
1020            for (int i = 0; i < localDevices.length; ++i) {
1021                localDevices[i] = mLocalDevices.get(i);
1022            }
1023            return localDevices;
1024        }
1025
1026        @Override
1027        public HdmiDeviceInfo getActiveSource() {
1028            HdmiCecLocalDeviceTv tv = tv();
1029            if (tv == null) {
1030                Slog.w(TAG, "Local tv device not available");
1031                return null;
1032            }
1033            ActiveSource activeSource = tv.getActiveSource();
1034            if (activeSource.isValid()) {
1035                return new HdmiDeviceInfo(activeSource.logicalAddress,
1036                        activeSource.physicalAddress, HdmiDeviceInfo.PORT_INVALID,
1037                        HdmiDeviceInfo.DEVICE_INACTIVE, 0, "");
1038            }
1039            int activePath = tv.getActivePath();
1040            if (activePath != HdmiDeviceInfo.PATH_INVALID) {
1041                return new HdmiDeviceInfo(activePath, tv.getActivePortId());
1042            }
1043            return null;
1044        }
1045
1046        @Override
1047        public void deviceSelect(final int deviceId, final IHdmiControlCallback callback) {
1048            enforceAccessPermission();
1049            runOnServiceThread(new Runnable() {
1050                @Override
1051                public void run() {
1052                    if (callback == null) {
1053                        Slog.e(TAG, "Callback cannot be null");
1054                        return;
1055                    }
1056                    HdmiCecLocalDeviceTv tv = tv();
1057                    if (tv == null) {
1058                        Slog.w(TAG, "Local tv device not available");
1059                        invokeCallback(callback, HdmiControlManager.RESULT_SOURCE_NOT_AVAILABLE);
1060                        return;
1061                    }
1062                    HdmiMhlLocalDeviceStub device = mMhlController.getLocalDeviceById(deviceId);
1063                    if (device != null) {
1064                        if (device.getPortId() == tv.getActivePortId()) {
1065                            invokeCallback(callback, HdmiControlManager.RESULT_SUCCESS);
1066                            return;
1067                        }
1068                        // Upon selecting MHL device, we send RAP[Content On] to wake up
1069                        // the connected mobile device, start routing control to switch ports.
1070                        // callback is handled by MHL action.
1071                        device.turnOn(callback);
1072                        tv.doManualPortSwitching(device.getPortId(), null);
1073                        return;
1074                    }
1075                    tv.deviceSelect(deviceId, callback);
1076                }
1077            });
1078        }
1079
1080        @Override
1081        public void portSelect(final int portId, final IHdmiControlCallback callback) {
1082            enforceAccessPermission();
1083            runOnServiceThread(new Runnable() {
1084                @Override
1085                public void run() {
1086                    if (callback == null) {
1087                        Slog.e(TAG, "Callback cannot be null");
1088                        return;
1089                    }
1090                    HdmiCecLocalDeviceTv tv = tv();
1091                    if (tv == null) {
1092                        Slog.w(TAG, "Local tv device not available");
1093                        invokeCallback(callback, HdmiControlManager.RESULT_SOURCE_NOT_AVAILABLE);
1094                        return;
1095                    }
1096                    tv.doManualPortSwitching(portId, callback);
1097                }
1098            });
1099        }
1100
1101        @Override
1102        public void sendKeyEvent(final int deviceType, final int keyCode, final boolean isPressed) {
1103            enforceAccessPermission();
1104            runOnServiceThread(new Runnable() {
1105                @Override
1106                public void run() {
1107                    HdmiMhlLocalDeviceStub device = mMhlController.getLocalDevice(mActivePortId);
1108                    if (device != null) {
1109                        device.sendKeyEvent(keyCode, isPressed);
1110                        return;
1111                    }
1112                    if (mCecController != null) {
1113                        HdmiCecLocalDevice localDevice = mCecController.getLocalDevice(deviceType);
1114                        if (localDevice == null) {
1115                            Slog.w(TAG, "Local device not available");
1116                            return;
1117                        }
1118                        localDevice.sendKeyEvent(keyCode, isPressed);
1119                    }
1120                }
1121            });
1122        }
1123
1124        @Override
1125        public void oneTouchPlay(final IHdmiControlCallback callback) {
1126            enforceAccessPermission();
1127            runOnServiceThread(new Runnable() {
1128                @Override
1129                public void run() {
1130                    HdmiControlService.this.oneTouchPlay(callback);
1131                }
1132            });
1133        }
1134
1135        @Override
1136        public void queryDisplayStatus(final IHdmiControlCallback callback) {
1137            enforceAccessPermission();
1138            runOnServiceThread(new Runnable() {
1139                @Override
1140                public void run() {
1141                    HdmiControlService.this.queryDisplayStatus(callback);
1142                }
1143            });
1144        }
1145
1146        @Override
1147        public void addHotplugEventListener(final IHdmiHotplugEventListener listener) {
1148            enforceAccessPermission();
1149            HdmiControlService.this.addHotplugEventListener(listener);
1150        }
1151
1152        @Override
1153        public void removeHotplugEventListener(final IHdmiHotplugEventListener listener) {
1154            enforceAccessPermission();
1155            HdmiControlService.this.removeHotplugEventListener(listener);
1156        }
1157
1158        @Override
1159        public void addDeviceEventListener(final IHdmiDeviceEventListener listener) {
1160            enforceAccessPermission();
1161            HdmiControlService.this.addDeviceEventListener(listener);
1162        }
1163
1164        @Override
1165        public List<HdmiPortInfo> getPortInfo() {
1166            enforceAccessPermission();
1167            return HdmiControlService.this.getPortInfo();
1168        }
1169
1170        @Override
1171        public boolean canChangeSystemAudioMode() {
1172            enforceAccessPermission();
1173            HdmiCecLocalDeviceTv tv = tv();
1174            if (tv == null) {
1175                return false;
1176            }
1177            return tv.hasSystemAudioDevice();
1178        }
1179
1180        @Override
1181        public boolean getSystemAudioMode() {
1182            enforceAccessPermission();
1183            HdmiCecLocalDeviceTv tv = tv();
1184            if (tv == null) {
1185                return false;
1186            }
1187            return tv.isSystemAudioActivated();
1188        }
1189
1190        @Override
1191        public void setSystemAudioMode(final boolean enabled, final IHdmiControlCallback callback) {
1192            enforceAccessPermission();
1193            runOnServiceThread(new Runnable() {
1194                @Override
1195                public void run() {
1196                    HdmiCecLocalDeviceTv tv = tv();
1197                    if (tv == null) {
1198                        Slog.w(TAG, "Local tv device not available");
1199                        invokeCallback(callback, HdmiControlManager.RESULT_SOURCE_NOT_AVAILABLE);
1200                        return;
1201                    }
1202                    tv.changeSystemAudioMode(enabled, callback);
1203                }
1204            });
1205        }
1206
1207        @Override
1208        public void addSystemAudioModeChangeListener(
1209                final IHdmiSystemAudioModeChangeListener listener) {
1210            enforceAccessPermission();
1211            HdmiControlService.this.addSystemAudioModeChangeListner(listener);
1212        }
1213
1214        @Override
1215        public void removeSystemAudioModeChangeListener(
1216                final IHdmiSystemAudioModeChangeListener listener) {
1217            enforceAccessPermission();
1218            HdmiControlService.this.removeSystemAudioModeChangeListener(listener);
1219        }
1220
1221        @Override
1222        public void setInputChangeListener(final IHdmiInputChangeListener listener) {
1223            enforceAccessPermission();
1224            HdmiControlService.this.setInputChangeListener(listener);
1225        }
1226
1227        @Override
1228        public List<HdmiDeviceInfo> getInputDevices() {
1229            enforceAccessPermission();
1230            // No need to hold the lock for obtaining TV device as the local device instance
1231            // is preserved while the HDMI control is enabled.
1232            HdmiCecLocalDeviceTv tv = tv();
1233            synchronized (mLock) {
1234                List<HdmiDeviceInfo> cecDevices = (tv == null)
1235                        ? Collections.<HdmiDeviceInfo>emptyList()
1236                        : tv.getSafeExternalInputsLocked();
1237                return HdmiUtils.mergeToUnmodifiableList(cecDevices, getMhlDevicesLocked());
1238            }
1239        }
1240
1241        @Override
1242        public void setSystemAudioVolume(final int oldIndex, final int newIndex,
1243                final int maxIndex) {
1244            enforceAccessPermission();
1245            runOnServiceThread(new Runnable() {
1246                @Override
1247                public void run() {
1248                    HdmiCecLocalDeviceTv tv = tv();
1249                    if (tv == null) {
1250                        Slog.w(TAG, "Local tv device not available");
1251                        return;
1252                    }
1253                    tv.changeVolume(oldIndex, newIndex - oldIndex, maxIndex);
1254                }
1255            });
1256        }
1257
1258        @Override
1259        public void setSystemAudioMute(final boolean mute) {
1260            enforceAccessPermission();
1261            runOnServiceThread(new Runnable() {
1262                @Override
1263                public void run() {
1264                    HdmiCecLocalDeviceTv tv = tv();
1265                    if (tv == null) {
1266                        Slog.w(TAG, "Local tv device not available");
1267                        return;
1268                    }
1269                    tv.changeMute(mute);
1270                }
1271            });
1272        }
1273
1274        @Override
1275        public void setArcMode(final boolean enabled) {
1276            enforceAccessPermission();
1277            runOnServiceThread(new Runnable() {
1278                @Override
1279                public void run() {
1280                    HdmiCecLocalDeviceTv tv = tv();
1281                    if (tv == null) {
1282                        Slog.w(TAG, "Local tv device not available to change arc mode.");
1283                        return;
1284                    }
1285                }
1286            });
1287        }
1288
1289        @Override
1290        public void setProhibitMode(final boolean enabled) {
1291            enforceAccessPermission();
1292            if (!isTvDevice()) {
1293                return;
1294            }
1295            HdmiControlService.this.setProhibitMode(enabled);
1296        }
1297
1298        @Override
1299        public void addVendorCommandListener(final IHdmiVendorCommandListener listener,
1300                final int deviceType) {
1301            enforceAccessPermission();
1302            HdmiControlService.this.addVendorCommandListener(listener, deviceType);
1303        }
1304
1305        @Override
1306        public void sendVendorCommand(final int deviceType, final int targetAddress,
1307                final byte[] params, final boolean hasVendorId) {
1308            enforceAccessPermission();
1309            runOnServiceThread(new Runnable() {
1310                @Override
1311                public void run() {
1312                    HdmiCecLocalDevice device = mCecController.getLocalDevice(deviceType);
1313                    if (device == null) {
1314                        Slog.w(TAG, "Local device not available");
1315                        return;
1316                    }
1317                    if (hasVendorId) {
1318                        sendCecCommand(HdmiCecMessageBuilder.buildVendorCommandWithId(
1319                                device.getDeviceInfo().getLogicalAddress(), targetAddress,
1320                                getVendorId(), params));
1321                    } else {
1322                        sendCecCommand(HdmiCecMessageBuilder.buildVendorCommand(
1323                                device.getDeviceInfo().getLogicalAddress(), targetAddress, params));
1324                    }
1325                }
1326            });
1327        }
1328
1329        @Override
1330        public void sendStandby(final int deviceType, final int deviceId) {
1331            enforceAccessPermission();
1332            runOnServiceThread(new Runnable() {
1333                @Override
1334                public void run() {
1335                    HdmiCecLocalDevice device = mCecController.getLocalDevice(deviceType);
1336                    if (device == null) {
1337                        Slog.w(TAG, "Local device not available");
1338                        return;
1339                    }
1340                    device.sendStandby(deviceId);
1341                }
1342            });
1343        }
1344
1345        @Override
1346        public void setHdmiRecordListener(IHdmiRecordListener listener) {
1347            HdmiControlService.this.setHdmiRecordListener(listener);
1348        }
1349
1350        @Override
1351        public void startOneTouchRecord(final int recorderAddress, final byte[] recordSource) {
1352            runOnServiceThread(new Runnable() {
1353                @Override
1354                public void run() {
1355                    if (!isTvDevice()) {
1356                        Slog.w(TAG, "No TV is available.");
1357                        return;
1358                    }
1359                    tv().startOneTouchRecord(recorderAddress, recordSource);
1360                }
1361            });
1362        }
1363
1364        @Override
1365        public void stopOneTouchRecord(final int recorderAddress) {
1366            runOnServiceThread(new Runnable() {
1367                @Override
1368                public void run() {
1369                    if (!isTvDevice()) {
1370                        Slog.w(TAG, "No TV is available.");
1371                        return;
1372                    }
1373                    tv().stopOneTouchRecord(recorderAddress);
1374                }
1375            });
1376        }
1377
1378        @Override
1379        public void startTimerRecording(final int recorderAddress, final int sourceType,
1380                final byte[] recordSource) {
1381            runOnServiceThread(new Runnable() {
1382                @Override
1383                public void run() {
1384                    if (!isTvDevice()) {
1385                        Slog.w(TAG, "No TV is available.");
1386                        return;
1387                    }
1388                    tv().startTimerRecording(recorderAddress, sourceType, recordSource);
1389                }
1390            });
1391        }
1392
1393        @Override
1394        public void clearTimerRecording(final int recorderAddress, final int sourceType,
1395                final byte[] recordSource) {
1396            runOnServiceThread(new Runnable() {
1397                @Override
1398                public void run() {
1399                    if (!isTvDevice()) {
1400                        Slog.w(TAG, "No TV is available.");
1401                        return;
1402                    }
1403                    tv().clearTimerRecording(recorderAddress, sourceType, recordSource);
1404                }
1405            });
1406        }
1407
1408        @Override
1409        public void sendMhlVendorCommand(final int portId, final int offset, final int length,
1410                final byte[] data) {
1411            enforceAccessPermission();
1412            runOnServiceThread(new Runnable() {
1413                @Override
1414                public void run() {
1415                    if (!isControlEnabled()) {
1416                        Slog.w(TAG, "Hdmi control is disabled.");
1417                        return ;
1418                    }
1419                    HdmiMhlLocalDeviceStub device = mMhlController.getLocalDevice(portId);
1420                    if (device == null) {
1421                        Slog.w(TAG, "Invalid port id:" + portId);
1422                        return;
1423                    }
1424                    mMhlController.sendVendorCommand(portId, offset, length, data);
1425                }
1426            });
1427        }
1428
1429        @Override
1430        public void addHdmiMhlVendorCommandListener(
1431                IHdmiMhlVendorCommandListener listener) {
1432            enforceAccessPermission();
1433            HdmiControlService.this.addHdmiMhlVendorCommandListener(listener);
1434        }
1435
1436        @Override
1437        protected void dump(FileDescriptor fd, final PrintWriter writer, String[] args) {
1438            getContext().enforceCallingOrSelfPermission(android.Manifest.permission.DUMP, TAG);
1439            final IndentingPrintWriter pw = new IndentingPrintWriter(writer, "  ");
1440
1441            pw.println("mHdmiControlEnabled: " + mHdmiControlEnabled);
1442            pw.println("mProhibitMode: " + mProhibitMode);
1443            if (mCecController != null) {
1444                pw.println("mCecController: ");
1445                pw.increaseIndent();
1446                mCecController.dump(pw);
1447                pw.decreaseIndent();
1448            }
1449            pw.println("mPortInfo: ");
1450            pw.increaseIndent();
1451            for (HdmiPortInfo hdmiPortInfo : mPortInfo) {
1452                pw.println("- " + hdmiPortInfo);
1453            }
1454            pw.decreaseIndent();
1455            pw.println("mPowerStatus: " + mPowerStatus);
1456        }
1457    }
1458
1459    @ServiceThreadOnly
1460    private void oneTouchPlay(final IHdmiControlCallback callback) {
1461        assertRunOnServiceThread();
1462        HdmiCecLocalDevicePlayback source = playback();
1463        if (source == null) {
1464            Slog.w(TAG, "Local playback device not available");
1465            invokeCallback(callback, HdmiControlManager.RESULT_SOURCE_NOT_AVAILABLE);
1466            return;
1467        }
1468        source.oneTouchPlay(callback);
1469    }
1470
1471    @ServiceThreadOnly
1472    private void queryDisplayStatus(final IHdmiControlCallback callback) {
1473        assertRunOnServiceThread();
1474        HdmiCecLocalDevicePlayback source = playback();
1475        if (source == null) {
1476            Slog.w(TAG, "Local playback device not available");
1477            invokeCallback(callback, HdmiControlManager.RESULT_SOURCE_NOT_AVAILABLE);
1478            return;
1479        }
1480        source.queryDisplayStatus(callback);
1481    }
1482
1483    private void addHotplugEventListener(IHdmiHotplugEventListener listener) {
1484        HotplugEventListenerRecord record = new HotplugEventListenerRecord(listener);
1485        try {
1486            listener.asBinder().linkToDeath(record, 0);
1487        } catch (RemoteException e) {
1488            Slog.w(TAG, "Listener already died");
1489            return;
1490        }
1491        synchronized (mLock) {
1492            mHotplugEventListenerRecords.add(record);
1493        }
1494    }
1495
1496    private void removeHotplugEventListener(IHdmiHotplugEventListener listener) {
1497        synchronized (mLock) {
1498            for (HotplugEventListenerRecord record : mHotplugEventListenerRecords) {
1499                if (record.mListener.asBinder() == listener.asBinder()) {
1500                    listener.asBinder().unlinkToDeath(record, 0);
1501                    mHotplugEventListenerRecords.remove(record);
1502                    break;
1503                }
1504            }
1505        }
1506    }
1507
1508    private void addDeviceEventListener(IHdmiDeviceEventListener listener) {
1509        DeviceEventListenerRecord record = new DeviceEventListenerRecord(listener);
1510        try {
1511            listener.asBinder().linkToDeath(record, 0);
1512        } catch (RemoteException e) {
1513            Slog.w(TAG, "Listener already died");
1514            return;
1515        }
1516        synchronized (mLock) {
1517            mDeviceEventListenerRecords.add(record);
1518        }
1519    }
1520
1521    void invokeDeviceEventListeners(HdmiDeviceInfo device, int status) {
1522        synchronized (mLock) {
1523            for (DeviceEventListenerRecord record : mDeviceEventListenerRecords) {
1524                try {
1525                    record.mListener.onStatusChanged(device, status);
1526                } catch (RemoteException e) {
1527                    Slog.e(TAG, "Failed to report device event:" + e);
1528                }
1529            }
1530        }
1531    }
1532
1533    private void addSystemAudioModeChangeListner(IHdmiSystemAudioModeChangeListener listener) {
1534        SystemAudioModeChangeListenerRecord record = new SystemAudioModeChangeListenerRecord(
1535                listener);
1536        try {
1537            listener.asBinder().linkToDeath(record, 0);
1538        } catch (RemoteException e) {
1539            Slog.w(TAG, "Listener already died");
1540            return;
1541        }
1542        synchronized (mLock) {
1543            mSystemAudioModeChangeListenerRecords.add(record);
1544        }
1545    }
1546
1547    private void removeSystemAudioModeChangeListener(IHdmiSystemAudioModeChangeListener listener) {
1548        synchronized (mLock) {
1549            for (SystemAudioModeChangeListenerRecord record :
1550                    mSystemAudioModeChangeListenerRecords) {
1551                if (record.mListener.asBinder() == listener) {
1552                    listener.asBinder().unlinkToDeath(record, 0);
1553                    mSystemAudioModeChangeListenerRecords.remove(record);
1554                    break;
1555                }
1556            }
1557        }
1558    }
1559
1560    private final class InputChangeListenerRecord implements IBinder.DeathRecipient {
1561        private final IHdmiInputChangeListener mListener;
1562
1563        public InputChangeListenerRecord(IHdmiInputChangeListener listener) {
1564            mListener = listener;
1565        }
1566
1567        @Override
1568        public void binderDied() {
1569            synchronized (mLock) {
1570                mInputChangeListenerRecord = null;
1571            }
1572        }
1573    }
1574
1575    private void setInputChangeListener(IHdmiInputChangeListener listener) {
1576        synchronized (mLock) {
1577            mInputChangeListenerRecord = new InputChangeListenerRecord(listener);
1578            try {
1579                listener.asBinder().linkToDeath(mInputChangeListenerRecord, 0);
1580            } catch (RemoteException e) {
1581                Slog.w(TAG, "Listener already died");
1582                return;
1583            }
1584        }
1585    }
1586
1587    void invokeInputChangeListener(HdmiDeviceInfo info) {
1588        synchronized (mLock) {
1589            if (mInputChangeListenerRecord != null) {
1590                try {
1591                    mInputChangeListenerRecord.mListener.onChanged(info);
1592                } catch (RemoteException e) {
1593                    Slog.w(TAG, "Exception thrown by IHdmiInputChangeListener: " + e);
1594                }
1595            }
1596        }
1597    }
1598
1599    private void setHdmiRecordListener(IHdmiRecordListener listener) {
1600        synchronized (mLock) {
1601            mRecordListenerRecord = new HdmiRecordListenerRecord(listener);
1602            try {
1603                listener.asBinder().linkToDeath(mRecordListenerRecord, 0);
1604            } catch (RemoteException e) {
1605                Slog.w(TAG, "Listener already died.", e);
1606            }
1607        }
1608    }
1609
1610    byte[] invokeRecordRequestListener(int recorderAddress) {
1611        synchronized (mLock) {
1612            if (mRecordListenerRecord != null) {
1613                try {
1614                    return mRecordListenerRecord.mListener.getOneTouchRecordSource(recorderAddress);
1615                } catch (RemoteException e) {
1616                    Slog.w(TAG, "Failed to start record.", e);
1617                }
1618            }
1619            return EmptyArray.BYTE;
1620        }
1621    }
1622
1623    void invokeOneTouchRecordResult(int result) {
1624        synchronized (mLock) {
1625            if (mRecordListenerRecord != null) {
1626                try {
1627                    mRecordListenerRecord.mListener.onOneTouchRecordResult(result);
1628                } catch (RemoteException e) {
1629                    Slog.w(TAG, "Failed to call onOneTouchRecordResult.", e);
1630                }
1631            }
1632        }
1633    }
1634
1635    void invokeTimerRecordingResult(int result) {
1636        synchronized (mLock) {
1637            if (mRecordListenerRecord != null) {
1638                try {
1639                    mRecordListenerRecord.mListener.onTimerRecordingResult(result);
1640                } catch (RemoteException e) {
1641                    Slog.w(TAG, "Failed to call onTimerRecordingResult.", e);
1642                }
1643            }
1644        }
1645    }
1646
1647    void invokeClearTimerRecordingResult(int result) {
1648        synchronized (mLock) {
1649            if (mRecordListenerRecord != null) {
1650                try {
1651                    mRecordListenerRecord.mListener.onClearTimerRecordingResult(result);
1652                } catch (RemoteException e) {
1653                    Slog.w(TAG, "Failed to call onClearTimerRecordingResult.", e);
1654                }
1655            }
1656        }
1657    }
1658
1659    private void invokeCallback(IHdmiControlCallback callback, int result) {
1660        try {
1661            callback.onComplete(result);
1662        } catch (RemoteException e) {
1663            Slog.e(TAG, "Invoking callback failed:" + e);
1664        }
1665    }
1666
1667    private void invokeSystemAudioModeChangeLocked(IHdmiSystemAudioModeChangeListener listener,
1668            boolean enabled) {
1669        try {
1670            listener.onStatusChanged(enabled);
1671        } catch (RemoteException e) {
1672            Slog.e(TAG, "Invoking callback failed:" + e);
1673        }
1674    }
1675
1676    private void announceHotplugEvent(int portId, boolean connected) {
1677        HdmiHotplugEvent event = new HdmiHotplugEvent(portId, connected);
1678        synchronized (mLock) {
1679            for (HotplugEventListenerRecord record : mHotplugEventListenerRecords) {
1680                invokeHotplugEventListenerLocked(record.mListener, event);
1681            }
1682        }
1683    }
1684
1685    private void invokeHotplugEventListenerLocked(IHdmiHotplugEventListener listener,
1686            HdmiHotplugEvent event) {
1687        try {
1688            listener.onReceived(event);
1689        } catch (RemoteException e) {
1690            Slog.e(TAG, "Failed to report hotplug event:" + event.toString(), e);
1691        }
1692    }
1693
1694    private HdmiCecLocalDeviceTv tv() {
1695        return (HdmiCecLocalDeviceTv) mCecController.getLocalDevice(HdmiDeviceInfo.DEVICE_TV);
1696    }
1697
1698    boolean isTvDevice() {
1699        return tv() != null;
1700    }
1701
1702    private HdmiCecLocalDevicePlayback playback() {
1703        return (HdmiCecLocalDevicePlayback)
1704                mCecController.getLocalDevice(HdmiDeviceInfo.DEVICE_PLAYBACK);
1705    }
1706
1707    AudioManager getAudioManager() {
1708        return (AudioManager) getContext().getSystemService(Context.AUDIO_SERVICE);
1709    }
1710
1711    boolean isControlEnabled() {
1712        synchronized (mLock) {
1713            return mHdmiControlEnabled;
1714        }
1715    }
1716
1717    @ServiceThreadOnly
1718    int getPowerStatus() {
1719        assertRunOnServiceThread();
1720        return mPowerStatus;
1721    }
1722
1723    @ServiceThreadOnly
1724    boolean isPowerOnOrTransient() {
1725        assertRunOnServiceThread();
1726        return mPowerStatus == HdmiControlManager.POWER_STATUS_ON
1727                || mPowerStatus == HdmiControlManager.POWER_STATUS_TRANSIENT_TO_ON;
1728    }
1729
1730    @ServiceThreadOnly
1731    boolean isPowerStandbyOrTransient() {
1732        assertRunOnServiceThread();
1733        return mPowerStatus == HdmiControlManager.POWER_STATUS_STANDBY
1734                || mPowerStatus == HdmiControlManager.POWER_STATUS_TRANSIENT_TO_STANDBY;
1735    }
1736
1737    @ServiceThreadOnly
1738    boolean isPowerStandby() {
1739        assertRunOnServiceThread();
1740        return mPowerStatus == HdmiControlManager.POWER_STATUS_STANDBY;
1741    }
1742
1743    @ServiceThreadOnly
1744    void wakeUp() {
1745        assertRunOnServiceThread();
1746        mWakeUpMessageReceived = true;
1747        PowerManager pm = (PowerManager) getContext().getSystemService(Context.POWER_SERVICE);
1748        pm.wakeUp(SystemClock.uptimeMillis());
1749        // PowerManger will send the broadcast Intent.ACTION_SCREEN_ON and after this gets
1750        // the intent, the sequence will continue at onWakeUp().
1751    }
1752
1753    @ServiceThreadOnly
1754    void standby() {
1755        assertRunOnServiceThread();
1756        mStandbyMessageReceived = true;
1757        PowerManager pm = (PowerManager) getContext().getSystemService(Context.POWER_SERVICE);
1758        pm.goToSleep(SystemClock.uptimeMillis(), PowerManager.GO_TO_SLEEP_REASON_HDMI, 0);
1759        // PowerManger will send the broadcast Intent.ACTION_SCREEN_OFF and after this gets
1760        // the intent, the sequence will continue at onStandby().
1761    }
1762
1763    @ServiceThreadOnly
1764    private void onWakeUp() {
1765        assertRunOnServiceThread();
1766        mPowerStatus = HdmiControlManager.POWER_STATUS_TRANSIENT_TO_ON;
1767        if (mCecController != null) {
1768            if (mHdmiControlEnabled) {
1769                int startReason = INITIATED_BY_SCREEN_ON;
1770                if (mWakeUpMessageReceived) {
1771                    startReason = INITIATED_BY_WAKE_UP_MESSAGE;
1772                }
1773                initializeCec(startReason);
1774            }
1775        } else {
1776            Slog.i(TAG, "Device does not support HDMI-CEC.");
1777        }
1778        // TODO: Initialize MHL local devices.
1779    }
1780
1781    @ServiceThreadOnly
1782    private void onStandby() {
1783        assertRunOnServiceThread();
1784        mPowerStatus = HdmiControlManager.POWER_STATUS_TRANSIENT_TO_STANDBY;
1785
1786        final List<HdmiCecLocalDevice> devices = getAllLocalDevices();
1787        disableDevices(new PendingActionClearedCallback() {
1788            @Override
1789            public void onCleared(HdmiCecLocalDevice device) {
1790                Slog.v(TAG, "On standby-action cleared:" + device.mDeviceType);
1791                devices.remove(device);
1792                if (devices.isEmpty()) {
1793                    onStandbyCompleted();
1794                    // We will not clear local devices here, since some OEM/SOC will keep passing
1795                    // the received packets until the application processor enters to the sleep
1796                    // actually.
1797                }
1798            }
1799        });
1800    }
1801
1802    @ServiceThreadOnly
1803    private void onLanguageChanged(String language) {
1804        assertRunOnServiceThread();
1805        mLanguage = language;
1806
1807        if (isTvDevice()) {
1808            tv().broadcastMenuLanguage(language);
1809        }
1810    }
1811
1812    @ServiceThreadOnly
1813    String getLanguage() {
1814        assertRunOnServiceThread();
1815        return mLanguage;
1816    }
1817
1818    private void disableDevices(PendingActionClearedCallback callback) {
1819        if (mCecController != null) {
1820            for (HdmiCecLocalDevice device : mCecController.getLocalDeviceList()) {
1821                device.disableDevice(mStandbyMessageReceived, callback);
1822            }
1823            if (isTvDevice()) {
1824                unregisterSettingsObserver();
1825            }
1826        }
1827
1828        mMhlController.clearAllLocalDevices();
1829    }
1830
1831    @ServiceThreadOnly
1832    private void clearLocalDevices() {
1833        assertRunOnServiceThread();
1834        if (mCecController == null) {
1835            return;
1836        }
1837        mCecController.clearLogicalAddress();
1838        mCecController.clearLocalDevices();
1839    }
1840
1841    @ServiceThreadOnly
1842    private void onStandbyCompleted() {
1843        assertRunOnServiceThread();
1844        Slog.v(TAG, "onStandbyCompleted");
1845
1846        if (mPowerStatus != HdmiControlManager.POWER_STATUS_TRANSIENT_TO_STANDBY) {
1847            return;
1848        }
1849        mPowerStatus = HdmiControlManager.POWER_STATUS_STANDBY;
1850        for (HdmiCecLocalDevice device : mCecController.getLocalDeviceList()) {
1851            device.onStandby(mStandbyMessageReceived);
1852        }
1853        mStandbyMessageReceived = false;
1854        mCecController.setOption(OPTION_CEC_SERVICE_CONTROL, DISABLED);
1855    }
1856
1857    private void addVendorCommandListener(IHdmiVendorCommandListener listener, int deviceType) {
1858        VendorCommandListenerRecord record = new VendorCommandListenerRecord(listener, deviceType);
1859        try {
1860            listener.asBinder().linkToDeath(record, 0);
1861        } catch (RemoteException e) {
1862            Slog.w(TAG, "Listener already died");
1863            return;
1864        }
1865        synchronized (mLock) {
1866            mVendorCommandListenerRecords.add(record);
1867        }
1868    }
1869
1870    boolean invokeVendorCommandListeners(int deviceType, int srcAddress, byte[] params,
1871            boolean hasVendorId) {
1872        synchronized (mLock) {
1873            if (mVendorCommandListenerRecords.isEmpty()) {
1874                return false;
1875            }
1876            for (VendorCommandListenerRecord record : mVendorCommandListenerRecords) {
1877                if (record.mDeviceType != deviceType) {
1878                    continue;
1879                }
1880                try {
1881                    record.mListener.onReceived(srcAddress, params, hasVendorId);
1882                } catch (RemoteException e) {
1883                    Slog.e(TAG, "Failed to notify vendor command reception", e);
1884                }
1885            }
1886            return true;
1887        }
1888    }
1889
1890    private void addHdmiMhlVendorCommandListener(IHdmiMhlVendorCommandListener listener) {
1891        HdmiMhlVendorCommandListenerRecord record =
1892                new HdmiMhlVendorCommandListenerRecord(listener);
1893        try {
1894            listener.asBinder().linkToDeath(record, 0);
1895        } catch (RemoteException e) {
1896            Slog.w(TAG, "Listener already died.");
1897            return;
1898        }
1899
1900        synchronized (mLock) {
1901            mMhlVendorCommandListenerRecords.add(record);
1902        }
1903    }
1904
1905    void invokeMhlVendorCommandListeners(int portId, int offest, int length, byte[] data) {
1906        synchronized (mLock) {
1907            for (HdmiMhlVendorCommandListenerRecord record : mMhlVendorCommandListenerRecords) {
1908                try {
1909                    record.mListener.onReceived(portId, offest, length, data);
1910                } catch (RemoteException e) {
1911                    Slog.e(TAG, "Failed to notify MHL vendor command", e);
1912                }
1913            }
1914        }
1915    }
1916
1917    boolean isProhibitMode() {
1918        synchronized (mLock) {
1919            return mProhibitMode;
1920        }
1921    }
1922
1923    void setProhibitMode(boolean enabled) {
1924        synchronized (mLock) {
1925            mProhibitMode = enabled;
1926        }
1927    }
1928
1929    @ServiceThreadOnly
1930    void setCecOption(int key, int value) {
1931        assertRunOnServiceThread();
1932        mCecController.setOption(key, value);
1933    }
1934
1935    @ServiceThreadOnly
1936    void setControlEnabled(boolean enabled) {
1937        assertRunOnServiceThread();
1938
1939        int value = toInt(enabled);
1940        mCecController.setOption(OPTION_CEC_ENABLE, value);
1941        mMhlController.setOption(OPTION_MHL_ENABLE, value);
1942
1943        synchronized (mLock) {
1944            mHdmiControlEnabled = enabled;
1945        }
1946
1947        if (enabled) {
1948            initializeCec(INITIATED_BY_ENABLE_CEC);
1949        } else {
1950            disableDevices(new PendingActionClearedCallback() {
1951                @Override
1952                public void onCleared(HdmiCecLocalDevice device) {
1953                    assertRunOnServiceThread();
1954                    clearLocalDevices();
1955                }
1956            });
1957        }
1958    }
1959
1960    @ServiceThreadOnly
1961    void setActivePortId(int portId) {
1962        assertRunOnServiceThread();
1963        mActivePortId = portId;
1964
1965        // Resets last input for MHL, which stays valid only after the MHL device was selected,
1966        // and no further switching is done.
1967        setLastInputForMhl(Constants.INVALID_PORT_ID);
1968    }
1969
1970    @ServiceThreadOnly
1971    void setLastInputForMhl(int portId) {
1972        assertRunOnServiceThread();
1973        mLastInputMhl = portId;
1974    }
1975
1976    @ServiceThreadOnly
1977    int getLastInputForMhl() {
1978        assertRunOnServiceThread();
1979        return mLastInputMhl;
1980    }
1981
1982    /**
1983     * Performs input change, routing control for MHL device.
1984     *
1985     * @param portId MHL port, or the last port to go back to if {@code contentOn} is false
1986     * @param contentOn {@code true} if RAP data is content on; otherwise false
1987     */
1988    @ServiceThreadOnly
1989    void changeInputForMhl(int portId, boolean contentOn) {
1990        assertRunOnServiceThread();
1991        final int lastInput = contentOn ? tv().getActivePortId() : Constants.INVALID_PORT_ID;
1992        tv().doManualPortSwitching(portId, new IHdmiControlCallback.Stub() {
1993            @Override
1994            public void onComplete(int result) throws RemoteException {
1995                // Keep the last input to switch back later when RAP[ContentOff] is received.
1996                // This effectively sets the port to invalid one if the switching is for
1997                // RAP[ContentOff].
1998                setLastInputForMhl(lastInput);
1999            }
2000        });
2001
2002        // MHL device is always directly connected to the port. Update the active port ID to avoid
2003        // unnecessary post-routing control task.
2004        tv().setActivePortId(portId);
2005
2006        // The port is either the MHL-enabled port where the mobile device is connected, or
2007        // the last port to go back to when turnoff command is received. Note that the last port
2008        // may not be the MHL-enabled one. In this case the device info to be passed to
2009        // input change listener should be the one describing the corresponding HDMI port.
2010        HdmiMhlLocalDeviceStub device = mMhlController.getLocalDevice(portId);
2011        HdmiDeviceInfo info = (device != null && device.getInfo() != null)
2012                ? device.getInfo()
2013                : mPortDeviceMap.get(portId);
2014        invokeInputChangeListener(info);
2015    }
2016
2017   void setMhlInputChangeEnabled(boolean enabled) {
2018       mMhlController.setOption(OPTION_MHL_INPUT_SWITCHING, toInt(enabled));
2019
2020        synchronized (mLock) {
2021            mMhlInputChangeEnabled = enabled;
2022        }
2023    }
2024
2025    boolean isMhlInputChangeEnabled() {
2026        synchronized (mLock) {
2027            return mMhlInputChangeEnabled;
2028        }
2029    }
2030
2031    @ServiceThreadOnly
2032    void displayOsd(int messageId) {
2033        assertRunOnServiceThread();
2034        Intent intent = new Intent(HdmiControlManager.ACTION_OSD_MESSAGE);
2035        intent.putExtra(HdmiControlManager.EXTRA_MESSAGE_ID, messageId);
2036        getContext().sendBroadcastAsUser(intent, UserHandle.ALL,
2037                HdmiControlService.PERMISSION);
2038    }
2039
2040    @ServiceThreadOnly
2041    void displayOsd(int messageId, int extra) {
2042        assertRunOnServiceThread();
2043        Intent intent = new Intent(HdmiControlManager.ACTION_OSD_MESSAGE);
2044        intent.putExtra(HdmiControlManager.EXTRA_MESSAGE_ID, messageId);
2045        intent.putExtra(HdmiControlManager.EXTRA_MESSAGE_EXTRAM_PARAM1, extra);
2046        getContext().sendBroadcastAsUser(intent, UserHandle.ALL,
2047                HdmiControlService.PERMISSION);
2048    }
2049}
2050