blob: 1491c724ce97bde4e86607a9d0cef8ce64b509ad [file] [log] [blame]
Jungshik Jang67ea5212014-05-15 14:05:24 +09001/*
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
Jungshik Jang67ea5212014-05-15 14:05:24 +090019/**
20 * Feature action to handle <Request ARC Termination>.
21 *
22 * <p>It's initiated by user's manual termination or ARC channel close from TV.
23 */
24final class RequestArcTerminationAction extends RequestArcAction {
25 private static final String TAG = "RequestArcTerminationAction";
26
27 /**
28 * @Constructor
29 *
30 * @see RequestArcAction#RequestArcAction
31 */
Jungshik Jang79c58a42014-06-16 16:45:36 +090032 RequestArcTerminationAction(HdmiCecLocalDevice source, int avrAddress) {
33 super(source, avrAddress);
Jungshik Jang67ea5212014-05-15 14:05:24 +090034 }
35
36 @Override
37 boolean start() {
Jungshik Jangd643f762014-05-22 19:28:09 +090038 HdmiCecMessage command =
Jungshik Jang79c58a42014-06-16 16:45:36 +090039 HdmiCecMessageBuilder.buildRequestArcTermination(getSourceAddress(), mAvrAddress);
Jungshik Jangd643f762014-05-22 19:28:09 +090040 sendCommand(command, new HdmiControlService.SendMessageCallback() {
41 @Override
42 public void onSendCompleted(int error) {
Jinsuk Kimc0c20d02014-07-04 14:34:31 +090043 if (error == Constants.SEND_RESULT_SUCCESS) {
Jungshik Jangd643f762014-05-22 19:28:09 +090044 mState = STATE_WATING_FOR_REQUEST_ARC_REQUEST_RESPONSE;
Jinsuk Kim5fba96d2014-07-11 11:51:34 +090045 addTimer(mState, HdmiConfig.TIMEOUT_MS);
Jungshik Jangd643f762014-05-22 19:28:09 +090046 } else {
Jungshik Jangd643f762014-05-22 19:28:09 +090047 // If failed to send <Request ARC Termination>, start "Disabled" ARC
48 // transmission action.
49 disableArcTransmission();
50 finish();
51 }
52 }
53 });
Jungshik Jang67ea5212014-05-15 14:05:24 +090054 return true;
55 }
56}