Search in sources :

Example 1 with NeeoHandlerCallback

use of org.openhab.binding.neeo.internal.NeeoHandlerCallback in project openhab-addons by openhab.

the class NeeoDeviceHandler method initializeTask.

/**
 * Initializes the task be creating the {@link NeeoDeviceProtocol}, going online and then scheduling the refresh
 * task.
 */
private void initializeTask() {
    final NeeoDeviceConfig config = getConfigAs(NeeoDeviceConfig.class);
    final String roomKey = getRoomKey();
    if (roomKey == null || roomKey.isEmpty()) {
        updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.CONFIGURATION_ERROR, "Room key (from the parent room bridge) was not found");
        return;
    }
    final String deviceKey = config.getDeviceKey();
    if (deviceKey == null || deviceKey.isEmpty()) {
        updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.CONFIGURATION_ERROR, "Device key was not found or empty");
        return;
    }
    try {
        NeeoUtil.checkInterrupt();
        final NeeoBrainApi brainApi = getNeeoBrainApi();
        if (brainApi == null) {
            updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.BRIDGE_OFFLINE, "Cannot find the NEEO Brain API");
            return;
        }
        final NeeoRoom room = brainApi.getRoom(roomKey);
        final NeeoDevice device = room.getDevices().getDevice(deviceKey);
        if (device == null) {
            updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.CONFIGURATION_ERROR, "Device (" + config.getDeviceKey() + ") was not found in room (" + roomKey + ")");
            return;
        }
        final ThingUID thingUid = getThing().getUID();
        final Map<String, String> properties = new HashMap<>();
        final NeeoDeviceDetails details = device.getDetails();
        if (details != null) {
            /**
             * The following properties have matches in org.openhab.io.neeo.OpenHabToDeviceConverter.java
             */
            addProperty(properties, "Source Name", details.getSourceName());
            addProperty(properties, "Adapter Name", details.getAdapterName());
            addProperty(properties, "Type", details.getType());
            addProperty(properties, "Manufacturer", details.getManufacturer());
            addProperty(properties, "Name", details.getName());
            final NeeoDeviceDetailsTiming timing = details.getTiming();
            if (timing != null) {
                properties.put("Standby Command Delay", toString(timing.getStandbyCommandDelay()));
                properties.put("Source Switch Delay", toString(timing.getSourceSwitchDelay()));
                properties.put("Shutdown Delay", toString(timing.getShutdownDelay()));
            }
            properties.put("Device Capabilities", Arrays.stream(details.getDeviceCapabilities()).collect(Collectors.joining(",")));
        }
        final ThingBuilder thingBuilder = editThing();
        thingBuilder.withLabel(device.getName() + " (NEEO " + brainApi.getBrain().getKey() + ")").withProperties(properties).withChannels(ChannelUtils.generateChannels(thingUid, device));
        updateThing(thingBuilder.build());
        NeeoUtil.checkInterrupt();
        final NeeoDeviceProtocol protocol = new NeeoDeviceProtocol(new NeeoHandlerCallback() {

            @Override
            public void statusChanged(ThingStatus status, ThingStatusDetail detail, String msg) {
                updateStatus(status, detail, msg);
            }

            @Override
            public void stateChanged(String channelId, State state) {
                updateState(channelId, state);
            }

            @Override
            public void setProperty(String propertyName, String propertyValue) {
                getThing().setProperty(propertyName, propertyValue);
            }

            @Override
            public void scheduleTask(Runnable task, long milliSeconds) {
                scheduler.schedule(task, milliSeconds, TimeUnit.MILLISECONDS);
            }

            @Override
            public void triggerEvent(String channelID, String event) {
                triggerChannel(channelID, event);
            }

            @Nullable
            @Override
            public NeeoBrainApi getApi() {
                return getNeeoBrainApi();
            }
        }, roomKey, deviceKey);
        deviceProtocol.getAndSet(protocol);
        NeeoUtil.checkInterrupt();
        updateStatus(ThingStatus.ONLINE);
    } catch (IOException e) {
        logger.debug("IOException during initialization", e);
        updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR, "Room " + roomKey + " couldn't be found");
    } catch (InterruptedException e) {
        logger.debug("Initialization was interrupted", e);
        updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.HANDLER_INITIALIZING_ERROR, "Initialization was interrupted");
    }
}
Also used : NeeoDeviceDetailsTiming(org.openhab.binding.neeo.internal.models.NeeoDeviceDetailsTiming) ThingBuilder(org.openhab.core.thing.binding.builder.ThingBuilder) HashMap(java.util.HashMap) ThingStatus(org.openhab.core.thing.ThingStatus) ThingStatusDetail(org.openhab.core.thing.ThingStatusDetail) IOException(java.io.IOException) NeeoDevice(org.openhab.binding.neeo.internal.models.NeeoDevice) NeeoDeviceConfig(org.openhab.binding.neeo.internal.NeeoDeviceConfig) NeeoBrainApi(org.openhab.binding.neeo.internal.NeeoBrainApi) NeeoRoom(org.openhab.binding.neeo.internal.models.NeeoRoom) NeeoDeviceProtocol(org.openhab.binding.neeo.internal.NeeoDeviceProtocol) State(org.openhab.core.types.State) ThingUID(org.openhab.core.thing.ThingUID) NeeoDeviceDetails(org.openhab.binding.neeo.internal.models.NeeoDeviceDetails) Nullable(org.eclipse.jdt.annotation.Nullable) NeeoHandlerCallback(org.openhab.binding.neeo.internal.NeeoHandlerCallback)

Example 2 with NeeoHandlerCallback

use of org.openhab.binding.neeo.internal.NeeoHandlerCallback in project openhab-addons by openhab.

the class NeeoRoomHandler method initializeTask.

/**
 * Initializes the task be creating the {@link NeeoRoomProtocol}, going online and then scheduling the refresh task.
 */
private void initializeTask() {
    final NeeoRoomConfig config = getConfigAs(NeeoRoomConfig.class);
    final String roomKey = config.getRoomKey();
    if (roomKey == null || roomKey.isEmpty()) {
        updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.CONFIGURATION_ERROR, "Room key (from the parent room bridge) was not found");
        return;
    }
    try {
        NeeoUtil.checkInterrupt();
        final NeeoBrainApi brainApi = getNeeoBrainApi();
        if (brainApi == null) {
            updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.BRIDGE_OFFLINE, "Cannot find the NEEO Brain API");
            return;
        }
        final NeeoRoom room = brainApi.getRoom(roomKey);
        final ThingUID thingUid = getThing().getUID();
        final Map<String, String> properties = new HashMap<>();
        properties.put("Key", roomKey);
        final ThingBuilder thingBuilder = editThing();
        thingBuilder.withLabel(room.getName() + " (NEEO " + brainApi.getBrain().getKey() + ")").withProperties(properties).withChannels(ChannelUtils.generateChannels(thingUid, room));
        updateThing(thingBuilder.build());
        NeeoUtil.checkInterrupt();
        final NeeoRoomProtocol protocol = new NeeoRoomProtocol(new NeeoHandlerCallback() {

            @Override
            public void statusChanged(ThingStatus status, ThingStatusDetail detail, String msg) {
                updateStatus(status, detail, msg);
            }

            @Override
            public void stateChanged(String channelId, State state) {
                updateState(channelId, state);
            }

            @Override
            public void setProperty(String propertyName, String propertyValue) {
                getThing().setProperty(propertyName, propertyValue);
            }

            @Override
            public void scheduleTask(Runnable task, long milliSeconds) {
                scheduler.schedule(task, milliSeconds, TimeUnit.MILLISECONDS);
            }

            @Override
            public void triggerEvent(String channelID, String event) {
                triggerChannel(channelID, event);
            }

            @Nullable
            @Override
            public NeeoBrainApi getApi() {
                return getNeeoBrainApi();
            }
        }, roomKey);
        roomProtocol.getAndSet(protocol);
        NeeoUtil.checkInterrupt();
        updateStatus(ThingStatus.ONLINE);
        if (config.getRefreshPolling() > 0) {
            NeeoUtil.checkInterrupt();
            NeeoUtil.cancel(refreshTask.getAndSet(scheduler.scheduleWithFixedDelay(() -> {
                try {
                    refreshState();
                } catch (InterruptedException e) {
                    logger.debug("Refresh State was interrupted", e);
                }
            }, 0, config.getRefreshPolling(), TimeUnit.SECONDS)));
        }
    } catch (IOException e) {
        logger.debug("IOException during initialization", e);
        updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.COMMUNICATION_ERROR, "Room " + config.getRoomKey() + " couldn't be found");
    } catch (InterruptedException e) {
        logger.debug("Initialization was interrupted", e);
        updateStatus(ThingStatus.OFFLINE, ThingStatusDetail.HANDLER_INITIALIZING_ERROR, "Initialization was interrupted");
    }
}
Also used : ThingBuilder(org.openhab.core.thing.binding.builder.ThingBuilder) HashMap(java.util.HashMap) ThingStatus(org.openhab.core.thing.ThingStatus) ThingStatusDetail(org.openhab.core.thing.ThingStatusDetail) IOException(java.io.IOException) NeeoBrainApi(org.openhab.binding.neeo.internal.NeeoBrainApi) NeeoRoom(org.openhab.binding.neeo.internal.models.NeeoRoom) State(org.openhab.core.types.State) ThingUID(org.openhab.core.thing.ThingUID) NeeoRoomProtocol(org.openhab.binding.neeo.internal.NeeoRoomProtocol) NeeoRoomConfig(org.openhab.binding.neeo.internal.NeeoRoomConfig) Nullable(org.eclipse.jdt.annotation.Nullable) NeeoHandlerCallback(org.openhab.binding.neeo.internal.NeeoHandlerCallback)

Aggregations

IOException (java.io.IOException)2 HashMap (java.util.HashMap)2 Nullable (org.eclipse.jdt.annotation.Nullable)2 NeeoBrainApi (org.openhab.binding.neeo.internal.NeeoBrainApi)2 NeeoHandlerCallback (org.openhab.binding.neeo.internal.NeeoHandlerCallback)2 NeeoRoom (org.openhab.binding.neeo.internal.models.NeeoRoom)2 ThingStatus (org.openhab.core.thing.ThingStatus)2 ThingStatusDetail (org.openhab.core.thing.ThingStatusDetail)2 ThingUID (org.openhab.core.thing.ThingUID)2 ThingBuilder (org.openhab.core.thing.binding.builder.ThingBuilder)2 State (org.openhab.core.types.State)2 NeeoDeviceConfig (org.openhab.binding.neeo.internal.NeeoDeviceConfig)1 NeeoDeviceProtocol (org.openhab.binding.neeo.internal.NeeoDeviceProtocol)1 NeeoRoomConfig (org.openhab.binding.neeo.internal.NeeoRoomConfig)1 NeeoRoomProtocol (org.openhab.binding.neeo.internal.NeeoRoomProtocol)1 NeeoDevice (org.openhab.binding.neeo.internal.models.NeeoDevice)1 NeeoDeviceDetails (org.openhab.binding.neeo.internal.models.NeeoDeviceDetails)1 NeeoDeviceDetailsTiming (org.openhab.binding.neeo.internal.models.NeeoDeviceDetailsTiming)1