]> git.basschouten.com Git - openhab-addons.git/blob
74dea30f039a21fefb3160c2de828b26b43ce063
[openhab-addons.git] /
1 /**
2  * Copyright (c) 2010-2023 Contributors to the openHAB project
3  *
4  * See the NOTICE file(s) distributed with this work for additional
5  * information.
6  *
7  * This program and the accompanying materials are made available under the
8  * terms of the Eclipse Public License 2.0 which is available at
9  * http://www.eclipse.org/legal/epl-2.0
10  *
11  * SPDX-License-Identifier: EPL-2.0
12  */
13 package org.openhab.binding.heos.internal.handler;
14
15 import java.io.IOException;
16
17 import org.eclipse.jdt.annotation.NonNullByDefault;
18 import org.eclipse.jdt.annotation.Nullable;
19 import org.openhab.binding.heos.internal.json.dto.HeosResponseObject;
20 import org.openhab.binding.heos.internal.resources.HeosEventListener;
21 import org.openhab.binding.heos.internal.resources.Telnet.ReadException;
22 import org.openhab.core.thing.ThingUID;
23 import org.openhab.core.types.Command;
24 import org.openhab.core.types.RefreshType;
25
26 import com.google.gson.JsonElement;
27
28 /**
29  *
30  * The {@link HeosChannelHandlerRawCommand} handles the RawCommand channel command
31  * from the implementing thing.
32  *
33  * @author Johannes Einig - Initial contribution
34  */
35 @NonNullByDefault
36 public class HeosChannelHandlerRawCommand extends BaseHeosChannelHandler {
37     private final HeosEventListener eventListener;
38
39     public HeosChannelHandlerRawCommand(HeosEventListener eventListener, HeosBridgeHandler bridge) {
40         super(bridge);
41         this.eventListener = eventListener;
42     }
43
44     @Override
45     public void handlePlayerCommand(Command command, String id, ThingUID uid) {
46         // not used on player
47     }
48
49     @Override
50     public void handleGroupCommand(Command command, @Nullable String id, ThingUID uid,
51             HeosGroupHandler heosGroupHandler) {
52         // not used on group
53     }
54
55     @Override
56     public void handleBridgeCommand(Command command, ThingUID uid) throws IOException, ReadException {
57         if (command instanceof RefreshType) {
58             return;
59         }
60         HeosResponseObject<JsonElement> response = getApi().sendRawCommand(command.toString());
61
62         if (response.result) {
63             eventListener.playerStateChangeEvent(response);
64         }
65     }
66 }