HdmiCecController.java revision 562ef5c513a859b3d2b0f54c15f25e4ec3ec9f7a
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 including local ones.
80    // A logical address of device is 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    List<HdmiCecDeviceInfo> getDeviceInfoList() {
269        assertRunOnServiceThread();
270
271        List<HdmiCecDeviceInfo> deviceInfoList = new ArrayList<>(mDeviceInfos.size());
272        for (int i = 0; i < mDeviceInfos.size(); ++i) {
273            deviceInfoList.add(mDeviceInfos.valueAt(i));
274        }
275        return deviceInfoList;
276    }
277
278    /**
279     * Return a {@link HdmiCecDeviceInfo} corresponding to the given {@code logicalAddress}.
280     *
281     * <p>Declared as package-private. accessed by {@link HdmiControlService} only.
282     *
283     * @param logicalAddress logical address to be retrieved
284     * @return {@link HdmiCecDeviceInfo} matched with the given {@code logicalAddress}.
285     *         Returns null if no logical address matched
286     */
287    HdmiCecDeviceInfo getDeviceInfo(int logicalAddress) {
288        assertRunOnServiceThread();
289        return mDeviceInfos.get(logicalAddress);
290    }
291
292    /**
293     * Add a new logical address to the device. Device's HW should be notified
294     * when a new logical address is assigned to a device, so that it can accept
295     * a command having available destinations.
296     *
297     * <p>Declared as package-private. accessed by {@link HdmiControlService} only.
298     *
299     * @param newLogicalAddress a logical address to be added
300     * @return 0 on success. Otherwise, returns negative value
301     */
302    int addLogicalAddress(int newLogicalAddress) {
303        assertRunOnServiceThread();
304        if (HdmiCec.isValidAddress(newLogicalAddress)) {
305            return nativeAddLogicalAddress(mNativePtr, newLogicalAddress);
306        } else {
307            return -1;
308        }
309    }
310
311    /**
312     * Clear all logical addresses registered in the device.
313     *
314     * <p>Declared as package-private. accessed by {@link HdmiControlService} only.
315     */
316    void clearLogicalAddress() {
317        assertRunOnServiceThread();
318        // TODO: consider to backup logical address so that new logical address
319        // allocation can use it as preferred address.
320        for (HdmiCecLocalDevice device : mLocalDevices) {
321            device.clearAddress();
322        }
323        nativeClearLogicalAddress(mNativePtr);
324    }
325
326    /**
327     * Return the physical address of the device.
328     *
329     * <p>Declared as package-private. accessed by {@link HdmiControlService} only.
330     *
331     * @return CEC physical address of the device. The range of success address
332     *         is between 0x0000 and 0xFFFF. If failed it returns -1
333     */
334    int getPhysicalAddress() {
335        assertRunOnServiceThread();
336        return nativeGetPhysicalAddress(mNativePtr);
337    }
338
339    /**
340     * Return CEC version of the device.
341     *
342     * <p>Declared as package-private. accessed by {@link HdmiControlService} only.
343     */
344    int getVersion() {
345        assertRunOnServiceThread();
346        return nativeGetVersion(mNativePtr);
347    }
348
349    /**
350     * Return vendor id of the device.
351     *
352     * <p>Declared as package-private. accessed by {@link HdmiControlService} only.
353     */
354    int getVendorId() {
355        assertRunOnServiceThread();
356        return nativeGetVendorId(mNativePtr);
357    }
358
359    /**
360     * Poll all remote devices. It sends &lt;Polling Message&gt; to all remote
361     * devices.
362     *
363     * <p>Declared as package-private. accessed by {@link HdmiControlService} only.
364     *
365     * @param callback an interface used to get a list of all remote devices' address
366     * @param retryCount the number of retry used to send polling message to remote devices
367     */
368    void pollDevices(DevicePollingCallback callback, int retryCount) {
369        assertRunOnServiceThread();
370        // Extract polling candidates. No need to poll against local devices.
371        ArrayList<Integer> pollingCandidates = new ArrayList<>();
372        for (int i = HdmiCec.ADDR_SPECIFIC_USE; i >= HdmiCec.ADDR_TV; --i) {
373            if (!isAllocatedLocalDeviceAddress(i)) {
374                pollingCandidates.add(i);
375            }
376        }
377
378        runDevicePolling(pollingCandidates, retryCount, callback);
379    }
380
381    private boolean isAllocatedLocalDeviceAddress(int address) {
382        for (HdmiCecLocalDevice device : mLocalDevices) {
383            if (device.isAddressOf(address)) {
384                return true;
385            }
386        }
387        return false;
388    }
389
390    private void runDevicePolling(final List<Integer> candidates, final int retryCount,
391            final DevicePollingCallback callback) {
392        assertRunOnServiceThread();
393        runOnIoThread(new Runnable() {
394            @Override
395            public void run() {
396                final ArrayList<Integer> allocated = new ArrayList<>();
397                for (Integer address : candidates) {
398                    if (sendPollMessage(address, retryCount)) {
399                        allocated.add(address);
400                    }
401                }
402                if (callback != null) {
403                    runOnServiceThread(new Runnable() {
404                        @Override
405                        public void run() {
406                            callback.onPollingFinished(allocated);
407                        }
408                    });
409                }
410            }
411        });
412    }
413
414    private boolean sendPollMessage(int address, int retryCount) {
415        assertRunOnIoThread();
416        for (int i = 0; i < retryCount; ++i) {
417            // <Polling Message> is a message which has empty body and
418            // uses same address for both source and destination address.
419            // If sending <Polling Message> failed (NAK), it becomes
420            // new logical address for the device because no device uses
421            // it as logical address of the device.
422            if (nativeSendCecCommand(mNativePtr, address, address, EMPTY_BODY)
423                    == HdmiControlService.SEND_RESULT_SUCCESS) {
424                return true;
425            }
426        }
427        return false;
428    }
429
430    private void assertRunOnIoThread() {
431        if (Looper.myLooper() != mIoHandler.getLooper()) {
432            throw new IllegalStateException("Should run on io thread.");
433        }
434    }
435
436    private void assertRunOnServiceThread() {
437        if (Looper.myLooper() != mControlHandler.getLooper()) {
438            throw new IllegalStateException("Should run on service thread.");
439        }
440    }
441
442    // Run a Runnable on IO thread.
443    // It should be careful to access member variables on IO thread because
444    // it can be accessed from system thread as well.
445    private void runOnIoThread(Runnable runnable) {
446        mIoHandler.post(runnable);
447    }
448
449    private void runOnServiceThread(Runnable runnable) {
450        mControlHandler.post(runnable);
451    }
452
453    private boolean isAcceptableAddress(int address) {
454        // Can access command targeting devices available in local device or broadcast command.
455        if (address == HdmiCec.ADDR_BROADCAST) {
456            return true;
457        }
458        return isAllocatedLocalDeviceAddress(address);
459    }
460
461    private void onReceiveCommand(HdmiCecMessage message) {
462        assertRunOnServiceThread();
463        if (isAcceptableAddress(message.getDestination()) &&
464                mService.handleCecCommand(message)) {
465            return;
466        }
467
468        // TODO: Use device's source address for broadcast message.
469        int sourceAddress = message.getDestination() != HdmiCec.ADDR_BROADCAST ?
470                message.getDestination() : 0;
471        // Reply <Feature Abort> to initiator (source) for all requests.
472        HdmiCecMessage cecMessage = HdmiCecMessageBuilder.buildFeatureAbortCommand
473                (sourceAddress, message.getSource(), message.getOpcode(),
474                        HdmiCecMessageBuilder.ABORT_REFUSED);
475        sendCommand(cecMessage, null);
476    }
477
478    void sendCommand(HdmiCecMessage cecMessage) {
479        sendCommand(cecMessage, null);
480    }
481
482    void sendCommand(final HdmiCecMessage cecMessage,
483            final HdmiControlService.SendMessageCallback callback) {
484        runOnIoThread(new Runnable() {
485            @Override
486            public void run() {
487                byte[] body = buildBody(cecMessage.getOpcode(), cecMessage.getParams());
488                final int error = nativeSendCecCommand(mNativePtr, cecMessage.getSource(),
489                        cecMessage.getDestination(), body);
490                if (error != HdmiControlService.SEND_RESULT_SUCCESS) {
491                    Slog.w(TAG, "Failed to send " + cecMessage);
492                }
493                if (callback != null) {
494                    runOnServiceThread(new Runnable() {
495                        @Override
496                        public void run() {
497                            callback.onSendCompleted(error);
498                        }
499                    });
500                }
501            }
502        });
503    }
504
505    /**
506     * Called by native when incoming CEC message arrived.
507     */
508    private void handleIncomingCecCommand(int srcAddress, int dstAddress, byte[] body) {
509        byte opcode = body[0];
510        byte params[] = Arrays.copyOfRange(body, 1, body.length);
511        final HdmiCecMessage cecMessage = new HdmiCecMessage(srcAddress, dstAddress, opcode, params);
512
513        // Delegate message to main handler so that it handles in main thread.
514        runOnServiceThread(new Runnable() {
515            @Override
516            public void run() {
517                onReceiveCommand(cecMessage);
518            }
519        });
520    }
521
522    /**
523     * Called by native when a hotplug event issues.
524     */
525    private void handleHotplug(boolean connected) {
526        // TODO: once add port number to cec HAL interface, pass port number
527        // to the service.
528        mService.onHotplug(0, connected);
529    }
530
531    private static native long nativeInit(HdmiCecController handler);
532    private static native int nativeSendCecCommand(long controllerPtr, int srcAddress,
533            int dstAddress, byte[] body);
534    private static native int nativeAddLogicalAddress(long controllerPtr, int logicalAddress);
535    private static native void nativeClearLogicalAddress(long controllerPtr);
536    private static native int nativeGetPhysicalAddress(long controllerPtr);
537    private static native int nativeGetVersion(long controllerPtr);
538    private static native int nativeGetVendorId(long controllerPtr);
539}
540