forked from openhab/openhab-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add console extension for showing IDs (openhab#13615)
Fixes openhab#13614 Signed-off-by: Jacob Laursen <[email protected]>
- Loading branch information
Showing
2 changed files
with
114 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
111 changes: 111 additions & 0 deletions
111
...in/java/org/openhab/binding/hdpowerview/internal/console/HDPowerViewCommandExtension.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
/** | ||
* Copyright (c) 2010-2022 Contributors to the openHAB project | ||
* | ||
* See the NOTICE file(s) distributed with this work for additional | ||
* information. | ||
* | ||
* This program and the accompanying materials are made available under the | ||
* terms of the Eclipse Public License 2.0 which is available at | ||
* http://www.eclipse.org/legal/epl-2.0 | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
*/ | ||
package org.openhab.binding.hdpowerview.internal.console; | ||
|
||
import java.util.Arrays; | ||
import java.util.List; | ||
|
||
import org.eclipse.jdt.annotation.NonNullByDefault; | ||
import org.eclipse.jdt.annotation.Nullable; | ||
import org.openhab.binding.hdpowerview.internal.HDPowerViewBindingConstants; | ||
import org.openhab.binding.hdpowerview.internal.HDPowerViewWebTargets; | ||
import org.openhab.binding.hdpowerview.internal.api.responses.RepeaterData; | ||
import org.openhab.binding.hdpowerview.internal.api.responses.Shades.ShadeData; | ||
import org.openhab.binding.hdpowerview.internal.exceptions.HubException; | ||
import org.openhab.binding.hdpowerview.internal.handler.HDPowerViewHubHandler; | ||
import org.openhab.core.io.console.Console; | ||
import org.openhab.core.io.console.ConsoleCommandCompleter; | ||
import org.openhab.core.io.console.StringsCompleter; | ||
import org.openhab.core.io.console.extensions.AbstractConsoleCommandExtension; | ||
import org.openhab.core.io.console.extensions.ConsoleCommandExtension; | ||
import org.openhab.core.thing.Thing; | ||
import org.openhab.core.thing.ThingRegistry; | ||
import org.openhab.core.thing.binding.ThingHandler; | ||
import org.osgi.service.component.annotations.Activate; | ||
import org.osgi.service.component.annotations.Component; | ||
import org.osgi.service.component.annotations.Reference; | ||
|
||
/** | ||
* The {@link HDPowerViewCommandExtension} is responsible for handling console commands | ||
* | ||
* @author Jacob Laursen - Initial contribution | ||
*/ | ||
@NonNullByDefault | ||
@Component(service = ConsoleCommandExtension.class) | ||
public class HDPowerViewCommandExtension extends AbstractConsoleCommandExtension implements ConsoleCommandCompleter { | ||
|
||
private static final String SHOW_IDS = "showIds"; | ||
private static final StringsCompleter SUBCMD_COMPLETER = new StringsCompleter(List.of(SHOW_IDS), false); | ||
|
||
private final ThingRegistry thingRegistry; | ||
|
||
@Activate | ||
public HDPowerViewCommandExtension(final @Reference ThingRegistry thingRegistry) { | ||
super(HDPowerViewBindingConstants.BINDING_ID, "Interact with the Hunter Douglas PowerView binding."); | ||
this.thingRegistry = thingRegistry; | ||
} | ||
|
||
@Override | ||
public void execute(String[] args, Console console) { | ||
if (args.length != 1 || !SHOW_IDS.equals(args[0])) { | ||
printUsage(console); | ||
return; | ||
} | ||
|
||
for (Thing thing : thingRegistry.getAll()) { | ||
ThingHandler thingHandler = thing.getHandler(); | ||
if (thingHandler instanceof HDPowerViewHubHandler) { | ||
console.println("API bridge: " + thing.getLabel()); | ||
HDPowerViewWebTargets webTargets = ((HDPowerViewHubHandler) thingHandler).getWebTargets(); | ||
|
||
try { | ||
List<ShadeData> shades = webTargets.getShades().shadeData; | ||
if (shades != null) { | ||
console.println(" - Shades:"); | ||
for (ShadeData shade : shades) { | ||
console.println(" - ID: " + shade.id + " (" + shade.getName() + ")"); | ||
} | ||
} | ||
|
||
List<RepeaterData> repeaters = webTargets.getRepeaters().repeaterData; | ||
if (repeaters != null) { | ||
console.println(" - Repeaters:"); | ||
for (RepeaterData repeater : repeaters) { | ||
console.println(" - ID: " + repeater.id + " (" + repeater.getName() + ")"); | ||
} | ||
} | ||
} catch (HubException e) { | ||
console.println("Error retrieving ID's: " + e.getMessage()); | ||
} | ||
} | ||
} | ||
} | ||
|
||
@Override | ||
public List<String> getUsages() { | ||
return Arrays.asList(buildCommandUsage(SHOW_IDS, "list all shades and repeaters")); | ||
} | ||
|
||
@Override | ||
public @Nullable ConsoleCommandCompleter getCompleter() { | ||
return this; | ||
} | ||
|
||
@Override | ||
public boolean complete(String[] args, int cursorArgumentIndex, int cursorPosition, List<String> candidates) { | ||
if (cursorArgumentIndex <= 0) { | ||
return SUBCMD_COMPLETER.complete(args, cursorArgumentIndex, cursorPosition, candidates); | ||
} | ||
return false; | ||
} | ||
} |