HdmiCecLocalDevice.java revision 959d2db12c7c6a06465af1251bc4cece580a72a3
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 android.hardware.hdmi.HdmiDeviceInfo;
20import android.hardware.input.InputManager;
21import android.os.Handler;
22import android.os.Looper;
23import android.os.Message;
24import android.os.SystemClock;
25import android.util.Slog;
26import android.view.InputDevice;
27import android.view.KeyCharacterMap;
28import android.view.KeyEvent;
29
30import com.android.internal.annotations.GuardedBy;
31import com.android.internal.util.IndentingPrintWriter;
32import com.android.server.hdmi.HdmiAnnotations.ServiceThreadOnly;
33
34import java.util.ArrayList;
35import java.util.Collections;
36import java.util.Iterator;
37import java.util.LinkedList;
38import java.util.List;
39
40/**
41 * Class that models a logical CEC device hosted in this system. Handles initialization,
42 * CEC commands that call for actions customized per device type.
43 */
44abstract class HdmiCecLocalDevice {
45    private static final String TAG = "HdmiCecLocalDevice";
46
47    private static final int MSG_DISABLE_DEVICE_TIMEOUT = 1;
48    private static final int MSG_USER_CONTROL_RELEASE_TIMEOUT = 2;
49    // Timeout in millisecond for device clean up (5s).
50    // Normal actions timeout is 2s but some of them would have several sequence of timeout.
51    private static final int DEVICE_CLEANUP_TIMEOUT = 5000;
52    // Within the timer, a received <User Control Pressed> will start "Press and Hold" behavior.
53    // When it expires, we can assume <User Control Release> is received.
54    private static final int FOLLOWER_SAFETY_TIMEOUT = 550;
55
56    protected final HdmiControlService mService;
57    protected final int mDeviceType;
58    protected int mAddress;
59    protected int mPreferredAddress;
60    protected HdmiDeviceInfo mDeviceInfo;
61    protected int mLastKeycode = HdmiCecKeycode.UNSUPPORTED_KEYCODE;
62    protected int mLastKeyRepeatCount = 0;
63
64    static class ActiveSource {
65        int logicalAddress;
66        int physicalAddress;
67
68        public ActiveSource() {
69            invalidate();
70        }
71        public ActiveSource(int logical, int physical) {
72            logicalAddress = logical;
73            physicalAddress = physical;
74        }
75        public static ActiveSource of(int logical, int physical) {
76            return new ActiveSource(logical, physical);
77        }
78        public boolean isValid() {
79            return HdmiUtils.isValidAddress(logicalAddress);
80        }
81        public void invalidate() {
82            logicalAddress = Constants.ADDR_INVALID;
83            physicalAddress = Constants.INVALID_PHYSICAL_ADDRESS;
84        }
85        public boolean equals(int logical, int physical) {
86            return logicalAddress == logical && physicalAddress == physical;
87        }
88        @Override
89        public boolean equals(Object obj) {
90            if (obj instanceof ActiveSource) {
91                ActiveSource that = (ActiveSource) obj;
92                return that.logicalAddress == logicalAddress &&
93                       that.physicalAddress == physicalAddress;
94            }
95            return false;
96        }
97        @Override
98        public int hashCode() {
99            return logicalAddress * 29 + physicalAddress;
100        }
101        @Override
102        public String toString() {
103            StringBuffer s = new StringBuffer();
104            String logicalAddressString = (logicalAddress == Constants.ADDR_INVALID)
105                    ? "invalid" : String.format("0x%02x", logicalAddress);
106            s.append("logical_address: ").append(logicalAddressString);
107            String physicalAddressString = (physicalAddress == Constants.INVALID_PHYSICAL_ADDRESS)
108                    ? "invalid" : String.format("0x%04x", physicalAddress);
109            s.append(", physical_address: ").append(physicalAddressString);
110            return s.toString();
111        }
112    }
113    // Logical address of the active source.
114    @GuardedBy("mLock")
115    protected final ActiveSource mActiveSource = new ActiveSource();
116
117    // Active routing path. Physical address of the active source but not all the time, such as
118    // when the new active source does not claim itself to be one. Note that we don't keep
119    // the active port id (or active input) since it can be gotten by {@link #pathToPortId(int)}.
120    @GuardedBy("mLock")
121    private int mActiveRoutingPath;
122
123    protected final HdmiCecMessageCache mCecMessageCache = new HdmiCecMessageCache();
124    protected final Object mLock;
125
126    // A collection of FeatureAction.
127    // Note that access to this collection should happen in service thread.
128    private final LinkedList<HdmiCecFeatureAction> mActions = new LinkedList<>();
129
130    private final Handler mHandler = new Handler () {
131        @Override
132        public void handleMessage(Message msg) {
133            switch (msg.what) {
134                case MSG_DISABLE_DEVICE_TIMEOUT:
135                    handleDisableDeviceTimeout();
136                    break;
137                case MSG_USER_CONTROL_RELEASE_TIMEOUT:
138                    handleUserControlReleased();
139                    break;
140            }
141        }
142    };
143
144    /**
145     * A callback interface to get notified when all pending action is cleared.
146     * It can be called when timeout happened.
147     */
148    interface PendingActionClearedCallback {
149        void onCleared(HdmiCecLocalDevice device);
150    }
151
152    protected PendingActionClearedCallback mPendingActionClearedCallback;
153
154    protected HdmiCecLocalDevice(HdmiControlService service, int deviceType) {
155        mService = service;
156        mDeviceType = deviceType;
157        mAddress = Constants.ADDR_UNREGISTERED;
158        mLock = service.getServiceLock();
159    }
160
161    // Factory method that returns HdmiCecLocalDevice of corresponding type.
162    static HdmiCecLocalDevice create(HdmiControlService service, int deviceType) {
163        switch (deviceType) {
164        case HdmiDeviceInfo.DEVICE_TV:
165            return new HdmiCecLocalDeviceTv(service);
166        case HdmiDeviceInfo.DEVICE_PLAYBACK:
167            return new HdmiCecLocalDevicePlayback(service);
168        default:
169            return null;
170        }
171    }
172
173    @ServiceThreadOnly
174    void init() {
175        assertRunOnServiceThread();
176        mPreferredAddress = getPreferredAddress();
177    }
178
179    /**
180     * Called once a logical address of the local device is allocated.
181     */
182    protected abstract void onAddressAllocated(int logicalAddress, int reason);
183
184    /**
185     * Get the preferred logical address from system properties.
186     */
187    protected abstract int getPreferredAddress();
188
189    /**
190     * Set the preferred logical address to system properties.
191     */
192    protected abstract void setPreferredAddress(int addr);
193
194    /**
195     * Dispatch incoming message.
196     *
197     * @param message incoming message
198     * @return true if consumed a message; otherwise, return false.
199     */
200    @ServiceThreadOnly
201    boolean dispatchMessage(HdmiCecMessage message) {
202        assertRunOnServiceThread();
203        int dest = message.getDestination();
204        if (dest != mAddress && dest != Constants.ADDR_BROADCAST) {
205            return false;
206        }
207        // Cache incoming message. Note that it caches only white-listed one.
208        mCecMessageCache.cacheMessage(message);
209        return onMessage(message);
210    }
211
212    @ServiceThreadOnly
213    protected final boolean onMessage(HdmiCecMessage message) {
214        assertRunOnServiceThread();
215        if (dispatchMessageToAction(message)) {
216            return true;
217        }
218        switch (message.getOpcode()) {
219            case Constants.MESSAGE_ACTIVE_SOURCE:
220                return handleActiveSource(message);
221            case Constants.MESSAGE_INACTIVE_SOURCE:
222                return handleInactiveSource(message);
223            case Constants.MESSAGE_REQUEST_ACTIVE_SOURCE:
224                return handleRequestActiveSource(message);
225            case Constants.MESSAGE_GET_MENU_LANGUAGE:
226                return handleGetMenuLanguage(message);
227            case Constants.MESSAGE_GIVE_PHYSICAL_ADDRESS:
228                return handleGivePhysicalAddress();
229            case Constants.MESSAGE_GIVE_OSD_NAME:
230                return handleGiveOsdName(message);
231            case Constants.MESSAGE_GIVE_DEVICE_VENDOR_ID:
232                return handleGiveDeviceVendorId();
233            case Constants.MESSAGE_GET_CEC_VERSION:
234                return handleGetCecVersion(message);
235            case Constants.MESSAGE_REPORT_PHYSICAL_ADDRESS:
236                return handleReportPhysicalAddress(message);
237            case Constants.MESSAGE_ROUTING_CHANGE:
238                return handleRoutingChange(message);
239            case Constants.MESSAGE_ROUTING_INFORMATION:
240                return handleRoutingInformation(message);
241            case Constants.MESSAGE_INITIATE_ARC:
242                return handleInitiateArc(message);
243            case Constants.MESSAGE_TERMINATE_ARC:
244                return handleTerminateArc(message);
245            case Constants.MESSAGE_SET_SYSTEM_AUDIO_MODE:
246                return handleSetSystemAudioMode(message);
247            case Constants.MESSAGE_SYSTEM_AUDIO_MODE_STATUS:
248                return handleSystemAudioModeStatus(message);
249            case Constants.MESSAGE_REPORT_AUDIO_STATUS:
250                return handleReportAudioStatus(message);
251            case Constants.MESSAGE_STANDBY:
252                return handleStandby(message);
253            case Constants.MESSAGE_TEXT_VIEW_ON:
254                return handleTextViewOn(message);
255            case Constants.MESSAGE_IMAGE_VIEW_ON:
256                return handleImageViewOn(message);
257            case Constants.MESSAGE_USER_CONTROL_PRESSED:
258                return handleUserControlPressed(message);
259            case Constants.MESSAGE_USER_CONTROL_RELEASED:
260                return handleUserControlReleased();
261            case Constants.MESSAGE_SET_STREAM_PATH:
262                return handleSetStreamPath(message);
263            case Constants.MESSAGE_GIVE_DEVICE_POWER_STATUS:
264                return handleGiveDevicePowerStatus(message);
265            case Constants.MESSAGE_MENU_REQUEST:
266                return handleGiveDeviceMenuStatus(message);
267            case Constants.MESSAGE_VENDOR_COMMAND:
268                return handleVendorCommand(message);
269            case Constants.MESSAGE_VENDOR_COMMAND_WITH_ID:
270                return handleVendorCommandWithId(message);
271            case Constants.MESSAGE_SET_OSD_NAME:
272                return handleSetOsdName(message);
273            case Constants.MESSAGE_RECORD_TV_SCREEN:
274                return handleRecordTvScreen(message);
275            case Constants.MESSAGE_TIMER_CLEARED_STATUS:
276                return handleTimerClearedStatus(message);
277            default:
278                return false;
279        }
280    }
281
282    @ServiceThreadOnly
283    private boolean dispatchMessageToAction(HdmiCecMessage message) {
284        assertRunOnServiceThread();
285        for (HdmiCecFeatureAction action : mActions) {
286            if (action.processCommand(message)) {
287                return true;
288            }
289        }
290        return false;
291    }
292
293    @ServiceThreadOnly
294    protected boolean handleGivePhysicalAddress() {
295        assertRunOnServiceThread();
296
297        int physicalAddress = mService.getPhysicalAddress();
298        HdmiCecMessage cecMessage = HdmiCecMessageBuilder.buildReportPhysicalAddressCommand(
299                mAddress, physicalAddress, mDeviceType);
300        mService.sendCecCommand(cecMessage);
301        return true;
302    }
303
304    @ServiceThreadOnly
305    protected boolean handleGiveDeviceVendorId() {
306        assertRunOnServiceThread();
307        int vendorId = mService.getVendorId();
308        HdmiCecMessage cecMessage = HdmiCecMessageBuilder.buildDeviceVendorIdCommand(
309                mAddress, vendorId);
310        mService.sendCecCommand(cecMessage);
311        return true;
312    }
313
314    @ServiceThreadOnly
315    protected boolean handleGetCecVersion(HdmiCecMessage message) {
316        assertRunOnServiceThread();
317        int version = mService.getCecVersion();
318        HdmiCecMessage cecMessage = HdmiCecMessageBuilder.buildCecVersion(message.getDestination(),
319                message.getSource(), version);
320        mService.sendCecCommand(cecMessage);
321        return true;
322    }
323
324    @ServiceThreadOnly
325    protected boolean handleActiveSource(HdmiCecMessage message) {
326        return false;
327    }
328
329    @ServiceThreadOnly
330    protected boolean handleInactiveSource(HdmiCecMessage message) {
331        return false;
332    }
333
334    @ServiceThreadOnly
335    protected boolean handleRequestActiveSource(HdmiCecMessage message) {
336        return false;
337    }
338
339    @ServiceThreadOnly
340    protected boolean handleGetMenuLanguage(HdmiCecMessage message) {
341        assertRunOnServiceThread();
342        Slog.w(TAG, "Only TV can handle <Get Menu Language>:" + message.toString());
343        // 'return false' will cause to reply with <Feature Abort>.
344        return false;
345    }
346
347    @ServiceThreadOnly
348    protected boolean handleGiveOsdName(HdmiCecMessage message) {
349        assertRunOnServiceThread();
350        // Note that since this method is called after logical address allocation is done,
351        // mDeviceInfo should not be null.
352        HdmiCecMessage cecMessage = HdmiCecMessageBuilder.buildSetOsdNameCommand(
353                mAddress, message.getSource(), mDeviceInfo.getDisplayName());
354        if (cecMessage != null) {
355            mService.sendCecCommand(cecMessage);
356        } else {
357            Slog.w(TAG, "Failed to build <Get Osd Name>:" + mDeviceInfo.getDisplayName());
358        }
359        return true;
360    }
361
362    protected boolean handleRoutingChange(HdmiCecMessage message) {
363        return false;
364    }
365
366    protected boolean handleRoutingInformation(HdmiCecMessage message) {
367        return false;
368    }
369
370    protected boolean handleReportPhysicalAddress(HdmiCecMessage message) {
371        return false;
372    }
373
374    protected boolean handleSystemAudioModeStatus(HdmiCecMessage message) {
375        return false;
376    }
377
378    protected boolean handleSetSystemAudioMode(HdmiCecMessage message) {
379        return false;
380    }
381
382    protected boolean handleTerminateArc(HdmiCecMessage message) {
383        return false;
384    }
385
386    protected boolean handleInitiateArc(HdmiCecMessage message) {
387        return false;
388    }
389
390    protected boolean handleReportAudioStatus(HdmiCecMessage message) {
391        return false;
392    }
393
394    @ServiceThreadOnly
395    protected boolean handleStandby(HdmiCecMessage message) {
396        assertRunOnServiceThread();
397        // Seq #12
398        if (mService.isControlEnabled() && !mService.isProhibitMode()
399                && mService.isPowerOnOrTransient()) {
400            mService.standby();
401            return true;
402        }
403        return false;
404    }
405
406    @ServiceThreadOnly
407    protected boolean handleUserControlPressed(HdmiCecMessage message) {
408        assertRunOnServiceThread();
409        mHandler.removeMessages(MSG_USER_CONTROL_RELEASE_TIMEOUT);
410        if (mService.isPowerOnOrTransient() && isPowerOffOrToggleCommand(message)) {
411            mService.standby();
412            return true;
413        } else if (mService.isPowerStandbyOrTransient() && isPowerOnOrToggleCommand(message)) {
414            mService.wakeUp();
415            return true;
416        }
417
418        final long downTime = SystemClock.uptimeMillis();
419        final byte[] params = message.getParams();
420        // Note that we don't support parameterized keycode now.
421        // TODO: translate parameterized keycode as well.
422        final int keycode = HdmiCecKeycode.cecKeyToAndroidKey(params[0]);
423        int keyRepeatCount = 0;
424        if (mLastKeycode != HdmiCecKeycode.UNSUPPORTED_KEYCODE) {
425            if (keycode == mLastKeycode) {
426                keyRepeatCount = mLastKeyRepeatCount + 1;
427            } else {
428                injectKeyEvent(downTime, KeyEvent.ACTION_UP, mLastKeycode, 0);
429            }
430        }
431        mLastKeycode = keycode;
432        mLastKeyRepeatCount = keyRepeatCount;
433
434        if (keycode != HdmiCecKeycode.UNSUPPORTED_KEYCODE) {
435            injectKeyEvent(downTime, KeyEvent.ACTION_DOWN, keycode, keyRepeatCount);
436            mHandler.sendMessageDelayed(Message.obtain(mHandler, MSG_USER_CONTROL_RELEASE_TIMEOUT),
437                    FOLLOWER_SAFETY_TIMEOUT);
438            return true;
439        }
440        return false;
441    }
442
443    @ServiceThreadOnly
444    protected boolean handleUserControlReleased() {
445        assertRunOnServiceThread();
446        mHandler.removeMessages(MSG_USER_CONTROL_RELEASE_TIMEOUT);
447        mLastKeyRepeatCount = 0;
448        if (mLastKeycode != HdmiCecKeycode.UNSUPPORTED_KEYCODE) {
449            final long upTime = SystemClock.uptimeMillis();
450            injectKeyEvent(upTime, KeyEvent.ACTION_UP, mLastKeycode, 0);
451            mLastKeycode = HdmiCecKeycode.UNSUPPORTED_KEYCODE;
452            return true;
453        }
454        return false;
455    }
456
457    static void injectKeyEvent(long time, int action, int keycode, int repeat) {
458        KeyEvent keyEvent = KeyEvent.obtain(time, time, action, keycode,
459                repeat, 0, KeyCharacterMap.VIRTUAL_KEYBOARD, 0, KeyEvent.FLAG_FROM_SYSTEM,
460                InputDevice.SOURCE_HDMI, null);
461        InputManager.getInstance().injectInputEvent(keyEvent,
462                InputManager.INJECT_INPUT_EVENT_MODE_ASYNC);
463        keyEvent.recycle();
464   }
465
466    static boolean isPowerOnOrToggleCommand(HdmiCecMessage message) {
467        byte[] params = message.getParams();
468        return message.getOpcode() == Constants.MESSAGE_USER_CONTROL_PRESSED
469                && (params[0] == HdmiCecKeycode.CEC_KEYCODE_POWER
470                        || params[0] == HdmiCecKeycode.CEC_KEYCODE_POWER_ON_FUNCTION
471                        || params[0] == HdmiCecKeycode.CEC_KEYCODE_POWER_TOGGLE_FUNCTION);
472    }
473
474    static boolean isPowerOffOrToggleCommand(HdmiCecMessage message) {
475        byte[] params = message.getParams();
476        return message.getOpcode() == Constants.MESSAGE_USER_CONTROL_PRESSED
477                && (params[0] == HdmiCecKeycode.CEC_KEYCODE_POWER
478                        || params[0] == HdmiCecKeycode.CEC_KEYCODE_POWER_OFF_FUNCTION
479                        || params[0] == HdmiCecKeycode.CEC_KEYCODE_POWER_TOGGLE_FUNCTION);
480    }
481
482    protected boolean handleTextViewOn(HdmiCecMessage message) {
483        return false;
484    }
485
486    protected boolean handleImageViewOn(HdmiCecMessage message) {
487        return false;
488    }
489
490    protected boolean handleSetStreamPath(HdmiCecMessage message) {
491        return false;
492    }
493
494    protected boolean handleGiveDevicePowerStatus(HdmiCecMessage message) {
495        mService.sendCecCommand(HdmiCecMessageBuilder.buildReportPowerStatus(
496                mAddress, message.getSource(), mService.getPowerStatus()));
497        return true;
498    }
499
500    protected boolean handleGiveDeviceMenuStatus(HdmiCecMessage message) {
501        // Always report menu active to receive Remote Control.
502        mService.sendCecCommand(HdmiCecMessageBuilder.buildReportMenuStatus(
503                mAddress, message.getSource(), Constants.MENU_STATE_ACTIVATED));
504        return true;
505    }
506
507    protected boolean handleVendorCommand(HdmiCecMessage message) {
508        mService.invokeVendorCommandListeners(mDeviceType, message.getSource(),
509                message.getParams(), false);
510        return true;
511    }
512
513    protected boolean handleVendorCommandWithId(HdmiCecMessage message) {
514        byte[] params = message.getParams();
515        int vendorId = HdmiUtils.threeBytesToInt(params);
516        if (vendorId == mService.getVendorId()) {
517            mService.invokeVendorCommandListeners(mDeviceType, message.getSource(), params, true);
518        } else if (message.getDestination() != Constants.ADDR_BROADCAST &&
519                message.getSource() != Constants.ADDR_UNREGISTERED) {
520            Slog.v(TAG, "Wrong direct vendor command. Replying with <Feature Abort>");
521            mService.maySendFeatureAbortCommand(message, Constants.ABORT_UNRECOGNIZED_OPCODE);
522        } else {
523            Slog.v(TAG, "Wrong broadcast vendor command. Ignoring");
524        }
525        return true;
526    }
527
528    protected boolean handleSetOsdName(HdmiCecMessage message) {
529        // The default behavior of <Set Osd Name> is doing nothing.
530        return true;
531    }
532
533    protected boolean handleRecordTvScreen(HdmiCecMessage message) {
534        // The default behavior of <Record TV Screen> is replying <Feature Abort> with
535        // "Cannot provide source".
536        mService.maySendFeatureAbortCommand(message, Constants.ABORT_CANNOT_PROVIDE_SOURCE);
537        return true;
538    }
539
540    protected boolean handleTimerClearedStatus(HdmiCecMessage message) {
541        return false;
542    }
543
544    @ServiceThreadOnly
545    final void handleAddressAllocated(int logicalAddress, int reason) {
546        assertRunOnServiceThread();
547        mAddress = mPreferredAddress = logicalAddress;
548        onAddressAllocated(logicalAddress, reason);
549        setPreferredAddress(logicalAddress);
550    }
551
552    @ServiceThreadOnly
553    HdmiDeviceInfo getDeviceInfo() {
554        assertRunOnServiceThread();
555        return mDeviceInfo;
556    }
557
558    @ServiceThreadOnly
559    void setDeviceInfo(HdmiDeviceInfo info) {
560        assertRunOnServiceThread();
561        mDeviceInfo = info;
562    }
563
564    // Returns true if the logical address is same as the argument.
565    @ServiceThreadOnly
566    boolean isAddressOf(int addr) {
567        assertRunOnServiceThread();
568        return addr == mAddress;
569    }
570
571    // Resets the logical address to unregistered(15), meaning the logical device is invalid.
572    @ServiceThreadOnly
573    void clearAddress() {
574        assertRunOnServiceThread();
575        mAddress = Constants.ADDR_UNREGISTERED;
576    }
577
578    @ServiceThreadOnly
579    void addAndStartAction(final HdmiCecFeatureAction action) {
580        assertRunOnServiceThread();
581        if (mService.isPowerStandbyOrTransient()) {
582            Slog.w(TAG, "Skip the action during Standby: " + action);
583            return;
584        }
585        mActions.add(action);
586        action.start();
587    }
588
589    // See if we have an action of a given type in progress.
590    @ServiceThreadOnly
591    <T extends HdmiCecFeatureAction> boolean hasAction(final Class<T> clazz) {
592        assertRunOnServiceThread();
593        for (HdmiCecFeatureAction action : mActions) {
594            if (action.getClass().equals(clazz)) {
595                return true;
596            }
597        }
598        return false;
599    }
600
601    // Returns all actions matched with given class type.
602    @ServiceThreadOnly
603    <T extends HdmiCecFeatureAction> List<T> getActions(final Class<T> clazz) {
604        assertRunOnServiceThread();
605        List<T> actions = Collections.<T>emptyList();
606        for (HdmiCecFeatureAction action : mActions) {
607            if (action.getClass().equals(clazz)) {
608                if (actions.isEmpty()) {
609                    actions = new ArrayList<T>();
610                }
611                actions.add((T) action);
612            }
613        }
614        return actions;
615    }
616
617    /**
618     * Remove the given {@link HdmiCecFeatureAction} object from the action queue.
619     *
620     * @param action {@link HdmiCecFeatureAction} to remove
621     */
622    @ServiceThreadOnly
623    void removeAction(final HdmiCecFeatureAction action) {
624        assertRunOnServiceThread();
625        action.finish(false);
626        mActions.remove(action);
627        checkIfPendingActionsCleared();
628    }
629
630    // Remove all actions matched with the given Class type.
631    @ServiceThreadOnly
632    <T extends HdmiCecFeatureAction> void removeAction(final Class<T> clazz) {
633        assertRunOnServiceThread();
634        removeActionExcept(clazz, null);
635    }
636
637    // Remove all actions matched with the given Class type besides |exception|.
638    @ServiceThreadOnly
639    <T extends HdmiCecFeatureAction> void removeActionExcept(final Class<T> clazz,
640            final HdmiCecFeatureAction exception) {
641        assertRunOnServiceThread();
642        Iterator<HdmiCecFeatureAction> iter = mActions.iterator();
643        while (iter.hasNext()) {
644            HdmiCecFeatureAction action = iter.next();
645            if (action != exception && action.getClass().equals(clazz)) {
646                action.finish(false);
647                iter.remove();
648            }
649        }
650        checkIfPendingActionsCleared();
651    }
652
653    protected void checkIfPendingActionsCleared() {
654        if (mActions.isEmpty() && mPendingActionClearedCallback != null) {
655            PendingActionClearedCallback callback = mPendingActionClearedCallback;
656            // To prevent from calling the callback again during handling the callback itself.
657            mPendingActionClearedCallback = null;
658            callback.onCleared(this);
659        }
660    }
661
662    protected void assertRunOnServiceThread() {
663        if (Looper.myLooper() != mService.getServiceLooper()) {
664            throw new IllegalStateException("Should run on service thread.");
665        }
666    }
667
668    /**
669     * Called when a hot-plug event issued.
670     *
671     * @param portId id of port where a hot-plug event happened
672     * @param connected whether to connected or not on the event
673     */
674    void onHotplug(int portId, boolean connected) {
675    }
676
677    final HdmiControlService getService() {
678        return mService;
679    }
680
681    @ServiceThreadOnly
682    final boolean isConnectedToArcPort(int path) {
683        assertRunOnServiceThread();
684        return mService.isConnectedToArcPort(path);
685    }
686
687    ActiveSource getActiveSource() {
688        synchronized (mLock) {
689            return mActiveSource;
690        }
691    }
692
693    void setActiveSource(ActiveSource newActive) {
694        setActiveSource(newActive.logicalAddress, newActive.physicalAddress);
695    }
696
697    void setActiveSource(HdmiDeviceInfo info) {
698        setActiveSource(info.getLogicalAddress(), info.getPhysicalAddress());
699    }
700
701    void setActiveSource(int logicalAddress, int physicalAddress) {
702        synchronized (mLock) {
703            mActiveSource.logicalAddress = logicalAddress;
704            mActiveSource.physicalAddress = physicalAddress;
705        }
706        mService.setLastInputForMhl(Constants.INVALID_PORT_ID);
707    }
708
709    int getActivePath() {
710        synchronized (mLock) {
711            return mActiveRoutingPath;
712        }
713    }
714
715    void setActivePath(int path) {
716        synchronized (mLock) {
717            mActiveRoutingPath = path;
718        }
719        mService.setActivePortId(pathToPortId(path));
720    }
721
722    /**
723     * Returns the ID of the active HDMI port. The active port is the one that has the active
724     * routing path connected to it directly or indirectly under the device hierarchy.
725     */
726    int getActivePortId() {
727        synchronized (mLock) {
728            return mService.pathToPortId(mActiveRoutingPath);
729        }
730    }
731
732    /**
733     * Update the active port.
734     *
735     * @param portId the new active port id
736     */
737    void setActivePortId(int portId) {
738        // We update active routing path instead, since we get the active port id from
739        // the active routing path.
740        setActivePath(mService.portIdToPath(portId));
741    }
742
743    @ServiceThreadOnly
744    HdmiCecMessageCache getCecMessageCache() {
745        assertRunOnServiceThread();
746        return mCecMessageCache;
747    }
748
749    @ServiceThreadOnly
750    int pathToPortId(int newPath) {
751        assertRunOnServiceThread();
752        return mService.pathToPortId(newPath);
753    }
754
755    /**
756     * Called when the system goes to standby mode.
757     *
758     * @param initiatedByCec true if this power sequence is initiated
759     *        by the reception the CEC messages like &lt;Standby&gt;
760     */
761    protected void onStandby(boolean initiatedByCec) {}
762
763    /**
764     * Disable device. {@code callback} is used to get notified when all pending
765     * actions are completed or timeout is issued.
766     *
767     * @param initiatedByCec true if this sequence is initiated
768     *        by the reception the CEC messages like &lt;Standby&gt;
769     * @param origialCallback callback interface to get notified when all pending actions are
770     *        cleared
771     */
772    protected void disableDevice(boolean initiatedByCec,
773            final PendingActionClearedCallback origialCallback) {
774        mPendingActionClearedCallback = new PendingActionClearedCallback() {
775            @Override
776            public void onCleared(HdmiCecLocalDevice device) {
777                mHandler.removeMessages(MSG_DISABLE_DEVICE_TIMEOUT);
778                origialCallback.onCleared(device);
779            }
780        };
781        mHandler.sendMessageDelayed(Message.obtain(mHandler, MSG_DISABLE_DEVICE_TIMEOUT),
782                DEVICE_CLEANUP_TIMEOUT);
783    }
784
785    @ServiceThreadOnly
786    private void handleDisableDeviceTimeout() {
787        assertRunOnServiceThread();
788
789        // If all actions are not cleared in DEVICE_CLEANUP_TIMEOUT, enforce to finish them.
790        // onCleard will be called at the last action's finish method.
791        Iterator<HdmiCecFeatureAction> iter = mActions.iterator();
792        while (iter.hasNext()) {
793            HdmiCecFeatureAction action = iter.next();
794            action.finish(false);
795            iter.remove();
796        }
797    }
798
799    /**
800     * Send a key event to other device.
801     *
802     * @param keyCode key code defined in {@link android.view.KeyEvent}
803     * @param isPressed {@code true} for key down event
804     */
805    protected void sendKeyEvent(int keyCode, boolean isPressed) {
806        Slog.w(TAG, "sendKeyEvent not implemented");
807    }
808
809    /**
810     * Dump internal status of HdmiCecLocalDevice object.
811     */
812    protected void dump(final IndentingPrintWriter pw) {
813        pw.println("mDeviceType: " + mDeviceType);
814        pw.println("mAddress: " + mAddress);
815        pw.println("mPreferredAddress: " + mPreferredAddress);
816        pw.println("mDeviceInfo: " + mDeviceInfo);
817        pw.println("mActiveSource: " + mActiveSource);
818        pw.println(String.format("mActiveRoutingPath: 0x%04x", mActiveRoutingPath));
819    }
820}
821