HdmiCecController.java revision 9d499bfe4a52068fd0c25b3cce34bd5e445e0f96
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.HdmiCec;
20import android.hardware.hdmi.HdmiCecDeviceInfo;
21import android.hardware.hdmi.HdmiCecMessage;
22import android.os.Handler;
23import android.os.Looper;
24import android.util.Slog;
25import android.util.SparseArray;
26
27import com.android.server.hdmi.HdmiControlService.DevicePollingCallback;
28
29import libcore.util.EmptyArray;
30
31import java.util.ArrayList;
32import java.util.Arrays;
33import java.util.List;
34
35/**
36 * Manages HDMI-CEC command and behaviors. It converts user's command into CEC command
37 * and pass it to CEC HAL so that it sends message to other device. For incoming
38 * message it translates the message and delegates it to proper module.
39 *
40 * <p>It should be careful to access member variables on IO thread because
41 * it can be accessed from system thread as well.
42 *
43 * <p>It can be created only by {@link HdmiCecController#create}
44 *
45 * <p>Declared as package-private, accessed by {@link HdmiControlService} only.
46 */
47final class HdmiCecController {
48    private static final String TAG = "HdmiCecController";
49
50    private static final byte[] EMPTY_BODY = EmptyArray.BYTE;
51
52    // A message to pass cec send command to IO looper.
53    private static final int MSG_SEND_CEC_COMMAND = 1;
54    // A message to delegate logical allocation to IO looper.
55    private static final int MSG_ALLOCATE_LOGICAL_ADDRESS = 2;
56
57    // Message types to handle incoming message in main service looper.
58    private final static int MSG_RECEIVE_CEC_COMMAND = 1;
59    // A message to report allocated logical address to main control looper.
60    private final static int MSG_REPORT_LOGICAL_ADDRESS = 2;
61
62    private static final int NUM_LOGICAL_ADDRESS = 16;
63
64    private static final int RETRY_COUNT_FOR_LOGICAL_ADDRESS_ALLOCATION = 3;
65
66    // Handler instance to process synchronous I/O (mainly send) message.
67    private Handler mIoHandler;
68
69    // Handler instance to process various messages coming from other CEC
70    // device or issued by internal state change.
71    private Handler mControlHandler;
72
73    // Stores the pointer to the native implementation of the service that
74    // interacts with HAL.
75    private volatile long mNativePtr;
76
77    private HdmiControlService mService;
78
79    // Map-like container of all cec devices. A logical address of device is
80    // used as key of container.
81    private final SparseArray<HdmiCecDeviceInfo> mDeviceInfos = new SparseArray<>();
82
83    // Stores the local CEC devices in the system.
84    private final ArrayList<HdmiCecLocalDevice> mLocalDevices = new ArrayList<>();
85
86    // Private constructor.  Use HdmiCecController.create().
87    private HdmiCecController() {
88    }
89
90    /**
91     * A factory method to get {@link HdmiCecController}. If it fails to initialize
92     * inner device or has no device it will return {@code null}.
93     *
94     * <p>Declared as package-private, accessed by {@link HdmiControlService} only.
95     * @param service {@link HdmiControlService} instance used to create internal handler
96     *                and to pass callback for incoming message or event.
97     * @return {@link HdmiCecController} if device is initialized successfully. Otherwise,
98     *         returns {@code null}.
99     */
100    static HdmiCecController create(HdmiControlService service) {
101        HdmiCecController controller = new HdmiCecController();
102        long nativePtr = nativeInit(controller);
103        if (nativePtr == 0L) {
104            controller = null;
105            return null;
106        }
107
108        controller.init(service, nativePtr);
109        return controller;
110    }
111
112    private void init(HdmiControlService service, long nativePtr) {
113        mService = service;
114        mIoHandler = new Handler(service.getServiceLooper());
115        mControlHandler = new Handler(service.getServiceLooper());
116        mNativePtr = nativePtr;
117    }
118
119    /**
120     * Perform initialization for each hosted device.
121     *
122     * @param deviceTypes array of device types
123     */
124    void initializeLocalDevices(int[] deviceTypes) {
125        assertRunOnServiceThread();
126        for (int type : deviceTypes) {
127            HdmiCecLocalDevice device = HdmiCecLocalDevice.create(this, type);
128            if (device == null) {
129                continue;
130            }
131            // TODO: Consider restoring the local device addresses from persistent storage
132            //       to allocate the same addresses again if possible.
133            device.setPreferredAddress(HdmiCec.ADDR_UNREGISTERED);
134            mLocalDevices.add(device);
135            device.init();
136        }
137    }
138
139    /**
140     * Interface to report allocated logical address.
141     */
142    interface AllocateLogicalAddressCallback {
143        /**
144         * Called when a new logical address is allocated.
145         *
146         * @param deviceType requested device type to allocate logical address
147         * @param logicalAddress allocated logical address. If it is
148         *                       {@link HdmiCec#ADDR_UNREGISTERED}, it means that
149         *                       it failed to allocate logical address for the given device type
150         */
151        void onAllocated(int deviceType, int logicalAddress);
152    }
153
154    /**
155     * Allocate a new logical address of the given device type. Allocated
156     * address will be reported through {@link AllocateLogicalAddressCallback}.
157     *
158     * <p> Declared as package-private, accessed by {@link HdmiControlService} only.
159     *
160     * @param deviceType type of device to used to determine logical address
161     * @param preferredAddress a logical address preferred to be allocated.
162     *                         If sets {@link HdmiCec#ADDR_UNREGISTERED}, scans
163     *                         the smallest logical address matched with the given device type.
164     *                         Otherwise, scan address will start from {@code preferredAddress}
165     * @param callback callback interface to report allocated logical address to caller
166     */
167    void allocateLogicalAddress(final int deviceType, final int preferredAddress,
168            final AllocateLogicalAddressCallback callback) {
169        assertRunOnServiceThread();
170
171        runOnIoThread(new Runnable() {
172            @Override
173            public void run() {
174                handleAllocateLogicalAddress(deviceType, preferredAddress, callback);
175            }
176        });
177    }
178
179    private void handleAllocateLogicalAddress(final int deviceType, int preferredAddress,
180            final AllocateLogicalAddressCallback callback) {
181        assertRunOnIoThread();
182        int startAddress = preferredAddress;
183        // If preferred address is "unregistered", start address will be the smallest
184        // address matched with the given device type.
185        if (preferredAddress == HdmiCec.ADDR_UNREGISTERED) {
186            for (int i = 0; i < NUM_LOGICAL_ADDRESS; ++i) {
187                if (deviceType == HdmiCec.getTypeFromAddress(i)) {
188                    startAddress = i;
189                    break;
190                }
191            }
192        }
193
194        int logicalAddress = HdmiCec.ADDR_UNREGISTERED;
195        // Iterates all possible addresses which has the same device type.
196        for (int i = 0; i < NUM_LOGICAL_ADDRESS; ++i) {
197            int curAddress = (startAddress + i) % NUM_LOGICAL_ADDRESS;
198            if (curAddress != HdmiCec.ADDR_UNREGISTERED
199                    && deviceType == HdmiCec.getTypeFromAddress(i)) {
200                if (!sendPollMessage(curAddress, RETRY_COUNT_FOR_LOGICAL_ADDRESS_ALLOCATION)) {
201                    logicalAddress = curAddress;
202                    break;
203                }
204            }
205        }
206
207        final int assignedAddress = logicalAddress;
208        if (callback != null) {
209            runOnServiceThread(new Runnable() {
210                    @Override
211                public void run() {
212                    callback.onAllocated(deviceType, assignedAddress);
213                }
214            });
215        }
216    }
217
218    private static byte[] buildBody(int opcode, byte[] params) {
219        byte[] body = new byte[params.length + 1];
220        body[0] = (byte) opcode;
221        System.arraycopy(params, 0, body, 1, params.length);
222        return body;
223    }
224
225    /**
226     * Add a new {@link HdmiCecDeviceInfo}. It returns old device info which has the same
227     * logical address as new device info's.
228     *
229     * <p>Declared as package-private. accessed by {@link HdmiControlService} only.
230     *
231     * @param deviceInfo a new {@link HdmiCecDeviceInfo} to be added.
232     * @return {@code null} if it is new device. Otherwise, returns old {@HdmiCecDeviceInfo}
233     *         that has the same logical address as new one has.
234     */
235    HdmiCecDeviceInfo addDeviceInfo(HdmiCecDeviceInfo deviceInfo) {
236        assertRunOnServiceThread();
237        HdmiCecDeviceInfo oldDeviceInfo = getDeviceInfo(deviceInfo.getLogicalAddress());
238        if (oldDeviceInfo != null) {
239            removeDeviceInfo(deviceInfo.getLogicalAddress());
240        }
241        mDeviceInfos.append(deviceInfo.getLogicalAddress(), deviceInfo);
242        return oldDeviceInfo;
243    }
244
245    /**
246     * Remove a device info corresponding to the given {@code logicalAddress}.
247     * It returns removed {@link HdmiCecDeviceInfo} if exists.
248     *
249     * <p>Declared as package-private. accessed by {@link HdmiControlService} only.
250     *
251     * @param logicalAddress logical address of device to be removed
252     * @return removed {@link HdmiCecDeviceInfo} it exists. Otherwise, returns {@code null}
253     */
254    HdmiCecDeviceInfo removeDeviceInfo(int logicalAddress) {
255        assertRunOnServiceThread();
256        HdmiCecDeviceInfo deviceInfo = mDeviceInfos.get(logicalAddress);
257        if (deviceInfo != null) {
258            mDeviceInfos.remove(logicalAddress);
259        }
260        return deviceInfo;
261    }
262
263    /**
264     * Return a list of all {@link HdmiCecDeviceInfo}.
265     *
266     * <p>Declared as package-private. accessed by {@link HdmiControlService} only.
267     */
268    // TODO: put local devices to this list.
269    List<HdmiCecDeviceInfo> getDeviceInfoList() {
270        assertRunOnServiceThread();
271
272        List<HdmiCecDeviceInfo> deviceInfoList = new ArrayList<>(mDeviceInfos.size());
273        for (int i = 0; i < mDeviceInfos.size(); ++i) {
274            deviceInfoList.add(mDeviceInfos.valueAt(i));
275        }
276        return deviceInfoList;
277    }
278
279    /**
280     * Return a {@link HdmiCecDeviceInfo} corresponding to the given {@code logicalAddress}.
281     *
282     * <p>Declared as package-private. accessed by {@link HdmiControlService} only.
283     *
284     * @param logicalAddress logical address to be retrieved
285     * @return {@link HdmiCecDeviceInfo} matched with the given {@code logicalAddress}.
286     *         Returns null if no logical address matched
287     */
288    HdmiCecDeviceInfo getDeviceInfo(int logicalAddress) {
289        assertRunOnServiceThread();
290        return mDeviceInfos.get(logicalAddress);
291    }
292
293    /**
294     * Add a new logical address to the device. Device's HW should be notified
295     * when a new logical address is assigned to a device, so that it can accept
296     * a command having available destinations.
297     *
298     * <p>Declared as package-private. accessed by {@link HdmiControlService} only.
299     *
300     * @param newLogicalAddress a logical address to be added
301     * @return 0 on success. Otherwise, returns negative value
302     */
303    int addLogicalAddress(int newLogicalAddress) {
304        assertRunOnServiceThread();
305        if (HdmiCec.isValidAddress(newLogicalAddress)) {
306            return nativeAddLogicalAddress(mNativePtr, newLogicalAddress);
307        } else {
308            return -1;
309        }
310    }
311
312    /**
313     * Clear all logical addresses registered in the device.
314     *
315     * <p>Declared as package-private. accessed by {@link HdmiControlService} only.
316     */
317    void clearLogicalAddress() {
318        assertRunOnServiceThread();
319        // TODO: consider to backup logical address so that new logical address
320        // allocation can use it as preferred address.
321        for (HdmiCecLocalDevice device : mLocalDevices) {
322            device.clearAddress();
323        }
324        nativeClearLogicalAddress(mNativePtr);
325    }
326
327    /**
328     * Return the physical address of the device.
329     *
330     * <p>Declared as package-private. accessed by {@link HdmiControlService} only.
331     *
332     * @return CEC physical address of the device. The range of success address
333     *         is between 0x0000 and 0xFFFF. If failed it returns -1
334     */
335    int getPhysicalAddress() {
336        assertRunOnServiceThread();
337        return nativeGetPhysicalAddress(mNativePtr);
338    }
339
340    /**
341     * Return CEC version of the device.
342     *
343     * <p>Declared as package-private. accessed by {@link HdmiControlService} only.
344     */
345    int getVersion() {
346        assertRunOnServiceThread();
347        return nativeGetVersion(mNativePtr);
348    }
349
350    /**
351     * Return vendor id of the device.
352     *
353     * <p>Declared as package-private. accessed by {@link HdmiControlService} only.
354     */
355    int getVendorId() {
356        assertRunOnServiceThread();
357        return nativeGetVendorId(mNativePtr);
358    }
359
360    /**
361     * Poll all remote devices. It sends &lt;Polling Message&gt; to all remote
362     * devices.
363     *
364     * <p>Declared as package-private. accessed by {@link HdmiControlService} only.
365     *
366     * @param callback an interface used to get a list of all remote devices' address
367     * @param retryCount the number of retry used to send polling message to remote devices
368     */
369    void pollDevices(DevicePollingCallback callback, int retryCount) {
370        assertRunOnServiceThread();
371        // Extract polling candidates. No need to poll against local devices.
372        ArrayList<Integer> pollingCandidates = new ArrayList<>();
373        for (int i = HdmiCec.ADDR_SPECIFIC_USE; i >= HdmiCec.ADDR_TV; --i) {
374            if (!isAllocatedLocalDeviceAddress(i)) {
375                pollingCandidates.add(i);
376            }
377        }
378
379        runDevicePolling(pollingCandidates, retryCount, callback);
380    }
381
382    private boolean isAllocatedLocalDeviceAddress(int address) {
383        for (HdmiCecLocalDevice device : mLocalDevices) {
384            if (device.isAddressOf(address)) {
385                return true;
386            }
387        }
388        return false;
389    }
390
391    private void runDevicePolling(final List<Integer> candidates, final int retryCount,
392            final DevicePollingCallback callback) {
393        assertRunOnServiceThread();
394        runOnIoThread(new Runnable() {
395            @Override
396            public void run() {
397                final ArrayList<Integer> allocated = new ArrayList<>();
398                for (Integer address : candidates) {
399                    if (sendPollMessage(address, retryCount)) {
400                        allocated.add(address);
401                    }
402                }
403                if (callback != null) {
404                    runOnServiceThread(new Runnable() {
405                        @Override
406                        public void run() {
407                            callback.onPollingFinished(allocated);
408                        }
409                    });
410                }
411            }
412        });
413    }
414
415    private boolean sendPollMessage(int address, int retryCount) {
416        assertRunOnIoThread();
417        for (int i = 0; i < retryCount; ++i) {
418            // <Polling Message> is a message which has empty body and
419            // uses same address for both source and destination address.
420            // If sending <Polling Message> failed (NAK), it becomes
421            // new logical address for the device because no device uses
422            // it as logical address of the device.
423            if (nativeSendCecCommand(mNativePtr, address, address, EMPTY_BODY)
424                    == HdmiControlService.SEND_RESULT_SUCCESS) {
425                return true;
426            }
427        }
428        return false;
429    }
430
431    private void assertRunOnIoThread() {
432        if (Looper.myLooper() != mIoHandler.getLooper()) {
433            throw new IllegalStateException("Should run on io thread.");
434        }
435    }
436
437    private void assertRunOnServiceThread() {
438        if (Looper.myLooper() != mControlHandler.getLooper()) {
439            throw new IllegalStateException("Should run on service thread.");
440        }
441    }
442
443    // Run a Runnable on IO thread.
444    // It should be careful to access member variables on IO thread because
445    // it can be accessed from system thread as well.
446    private void runOnIoThread(Runnable runnable) {
447        mIoHandler.post(runnable);
448    }
449
450    private void runOnServiceThread(Runnable runnable) {
451        mControlHandler.post(runnable);
452    }
453
454    private boolean isAcceptableAddress(int address) {
455        // Can access command targeting devices available in local device or broadcast command.
456        if (address == HdmiCec.ADDR_BROADCAST) {
457            return true;
458        }
459        return isAllocatedLocalDeviceAddress(address);
460    }
461
462    private void onReceiveCommand(HdmiCecMessage message) {
463        assertRunOnServiceThread();
464        if (isAcceptableAddress(message.getDestination()) &&
465                mService.handleCecCommand(message)) {
466            return;
467        }
468
469        // TODO: Use device's source address for broadcast message.
470        int sourceAddress = message.getDestination() != HdmiCec.ADDR_BROADCAST ?
471                message.getDestination() : 0;
472        // Reply <Feature Abort> to initiator (source) for all requests.
473        HdmiCecMessage cecMessage = HdmiCecMessageBuilder.buildFeatureAbortCommand
474                (sourceAddress, message.getSource(), message.getOpcode(),
475                        HdmiCecMessageBuilder.ABORT_REFUSED);
476        sendCommand(cecMessage, null);
477    }
478
479    void sendCommand(HdmiCecMessage cecMessage) {
480        sendCommand(cecMessage, null);
481    }
482
483    void sendCommand(final HdmiCecMessage cecMessage,
484            final HdmiControlService.SendMessageCallback callback) {
485        runOnIoThread(new Runnable() {
486            @Override
487            public void run() {
488                byte[] body = buildBody(cecMessage.getOpcode(), cecMessage.getParams());
489                final int error = nativeSendCecCommand(mNativePtr, cecMessage.getSource(),
490                        cecMessage.getDestination(), body);
491                if (error != HdmiControlService.SEND_RESULT_SUCCESS) {
492                    Slog.w(TAG, "Failed to send " + cecMessage);
493                }
494                if (callback != null) {
495                    runOnServiceThread(new Runnable() {
496                        @Override
497                        public void run() {
498                            callback.onSendCompleted(error);
499                        }
500                    });
501                }
502            }
503        });
504    }
505
506    /**
507     * Called by native when incoming CEC message arrived.
508     */
509    private void handleIncomingCecCommand(int srcAddress, int dstAddress, byte[] body) {
510        byte opcode = body[0];
511        byte params[] = Arrays.copyOfRange(body, 1, body.length);
512        final HdmiCecMessage cecMessage = new HdmiCecMessage(srcAddress, dstAddress, opcode, params);
513
514        // Delegate message to main handler so that it handles in main thread.
515        runOnServiceThread(new Runnable() {
516            @Override
517            public void run() {
518                onReceiveCommand(cecMessage);
519            }
520        });
521    }
522
523    /**
524     * Called by native when a hotplug event issues.
525     */
526    private void handleHotplug(boolean connected) {
527        // TODO: once add port number to cec HAL interface, pass port number
528        // to the service.
529        mService.onHotplug(0, connected);
530    }
531
532    private static native long nativeInit(HdmiCecController handler);
533    private static native int nativeSendCecCommand(long controllerPtr, int srcAddress,
534            int dstAddress, byte[] body);
535    private static native int nativeAddLogicalAddress(long controllerPtr, int logicalAddress);
536    private static native void nativeClearLogicalAddress(long controllerPtr);
537    private static native int nativeGetPhysicalAddress(long controllerPtr);
538    private static native int nativeGetVersion(long controllerPtr);
539    private static native int nativeGetVendorId(long controllerPtr);
540}
541