Search in sources :

Example 1 with MBaseDevice

use of org.openhab.binding.tinkerforge.internal.model.MBaseDevice in project openhab1-addons by openhab.

the class TinkerforgeBinding method updateItemValues.

/**
     * Triggers an update of state values for all devices.
     *
     * @param provider The {@code TinkerforgeBindingProvider} which is bound to the device as
     *            {@code Item}
     * @param itemName The name of the {@code Item} as String
     * @param only_poll_enabled Fetch only the values of devices which do not support callback
     *            listeners. These devices are marked with poll "true" flag.
     */
protected void updateItemValues(TinkerforgeBindingProvider provider, String itemName, boolean only_poll_enabled) {
    if (tinkerforgeEcosystem == null) {
        logger.warn("tinkerforge ecosystem not yet ready");
        return;
    }
    String deviceUid = provider.getUid(itemName);
    Item item = provider.getItem(itemName);
    String deviceSubId = provider.getSubId(itemName);
    String deviceName = provider.getName(itemName);
    if (deviceName != null) {
        String[] ids = getDeviceIdsForDeviceName(deviceName);
        deviceUid = ids[0];
        deviceSubId = ids[1];
    }
    MBaseDevice mDevice = tinkerforgeEcosystem.getDevice(deviceUid, deviceSubId);
    if (mDevice != null && mDevice.getEnabledA().get()) {
        if (only_poll_enabled && !mDevice.isPoll()) {
            // do nothing
            logger.debug("{} omitting fetch value for no poll{}:{}", LoggerConstants.ITEMUPDATE, deviceUid, deviceSubId);
        } else {
            if (mDevice instanceof MSensor) {
                ((MSensor<?>) mDevice).fetchSensorValue();
            } else if (mDevice instanceof SwitchSensor && item instanceof SwitchItem) {
                ((SwitchSensor) mDevice).fetchSwitchState();
            } else if (mDevice instanceof DigitalActor) {
                ((DigitalActor) mDevice).fetchDigitalValue();
            }
        }
    }
}
Also used : NumberItem(org.openhab.core.library.items.NumberItem) DimmerItem(org.openhab.core.library.items.DimmerItem) SwitchItem(org.openhab.core.library.items.SwitchItem) ColorItem(org.openhab.core.library.items.ColorItem) RollershutterItem(org.openhab.core.library.items.RollershutterItem) Item(org.openhab.core.items.Item) StringItem(org.openhab.core.library.items.StringItem) ContactItem(org.openhab.core.library.items.ContactItem) MSensor(org.openhab.binding.tinkerforge.internal.model.MSensor) DigitalActor(org.openhab.binding.tinkerforge.internal.model.DigitalActor) SwitchSensor(org.openhab.binding.tinkerforge.internal.model.SwitchSensor) MBaseDevice(org.openhab.binding.tinkerforge.internal.model.MBaseDevice) SwitchItem(org.openhab.core.library.items.SwitchItem)

Example 2 with MBaseDevice

use of org.openhab.binding.tinkerforge.internal.model.MBaseDevice in project openhab1-addons by openhab.

the class TinkerforgeBinding method initializeTFDevices.

/**
     * Adds or removes a device to / from the Ecosystem. Notifications from {@link MBrickd} are used
     * for adding devices (not sub devices) and removing of devices and their corresponding sub
     * devices.
     *
     * Notifications from {@link MSubDeviceHolder} for adding sub devices.
     *
     * @param notification The {@link Notification} for add and remove events to the {@link Ecosystem}
     *            .
     */
private void initializeTFDevices(Notification notification) {
    logger.trace("{} notifier {}", LoggerConstants.TFINIT, notification.getNotifier());
    if (notification.getNotifier() instanceof MBrickd) {
        logger.debug("{} notifier is Brickd", LoggerConstants.TFINIT);
        int featureID = notification.getFeatureID(MBrickd.class);
        if (featureID == ModelPackage.MBRICKD__MDEVICES) {
            if (notification.getEventType() == Notification.ADD) {
                MDevice<?> mDevice = (MDevice<?>) notification.getNewValue();
                addMDevice(mDevice, mDevice.getUid(), null);
            } else if (notification.getEventType() == Notification.ADD_MANY) {
                logger.debug("{} Notifier: add many called: ", LoggerConstants.TFINIT);
            } else if (notification.getEventType() == Notification.REMOVE) {
                logger.debug("{} Notifier: remove called: ", LoggerConstants.TFINIT);
                if (notification.getOldValue() instanceof MBaseDevice) {
                    logger.debug("{} Notifier: remove called for MBaseDevice", LoggerConstants.TFINIT);
                    MBaseDevice mDevice = (MBaseDevice) notification.getOldValue();
                    String uid = mDevice.getUid();
                    String subId = null;
                    if (searchConfiguredItemName(uid, subId) != null) {
                        logger.debug("{} Notifier: removing device: uid {} subid {}", LoggerConstants.TFINIT, uid, subId);
                        postUpdate(uid, subId, UnDefValue.UNDEF);
                    }
                } else {
                    logger.debug("{} unknown notification from mdevices {}", LoggerConstants.TFINIT, notification);
                }
            }
        } else {
            logger.debug("{} Notifier: unknown feature {}", LoggerConstants.TFINIT, notification.getFeature());
        }
    } else if (notification.getNotifier() instanceof MSubDeviceHolder<?>) {
        int featureID = notification.getFeatureID(MSubDeviceHolder.class);
        if (featureID == ModelPackage.MSUB_DEVICE_HOLDER__MSUBDEVICES) {
            logger.debug("{} MSubdevices Notifier called", LoggerConstants.TFINITSUB);
            if (notification.getEventType() == Notification.ADD) {
                MSubDevice<?> mSubDevice = (MSubDevice<?>) notification.getNewValue();
                addMDevice(mSubDevice, mSubDevice.getUid(), mSubDevice.getSubId());
            }
            if (notification.getEventType() == Notification.REMOVE) {
                logger.debug("{} remove notification from subdeviceholder", LoggerConstants.TFINIT);
                logger.debug("{} Notifier: remove called for MSubDevice", LoggerConstants.TFINIT);
                MSubDevice<?> mDevice = (MSubDevice<?>) notification.getOldValue();
                String uid = mDevice.getUid();
                String subId = mDevice.getSubId();
                if (searchConfiguredItemName(uid, subId) != null) {
                    logger.debug("{} Notifier: removing device: uid {} subid {}", LoggerConstants.TFINIT, uid, subId);
                    postUpdate(uid, subId, UnDefValue.UNDEF);
                }
            }
        }
    } else {
        logger.debug("{} unhandled notifier {}", LoggerConstants.TFINIT, notification.getNotifier());
    }
}
Also used : MSubDeviceHolder(org.openhab.binding.tinkerforge.internal.model.MSubDeviceHolder) MBrickd(org.openhab.binding.tinkerforge.internal.model.MBrickd) MBaseDevice(org.openhab.binding.tinkerforge.internal.model.MBaseDevice) MSubDevice(org.openhab.binding.tinkerforge.internal.model.MSubDevice) MDevice(org.openhab.binding.tinkerforge.internal.model.MDevice)

Example 3 with MBaseDevice

use of org.openhab.binding.tinkerforge.internal.model.MBaseDevice in project openhab1-addons by openhab.

the class TinkerforgeBinding method processTFDeviceValues.

/**
     * Processes change events from the {@link Ecosystem}. Sensor values from {@link MSensor} are
     * handled by {@link #processSensorValue(MSensor, Notification) processSensorValue}, actor values
     * from {@link MSwitchActore} are handled by
     * {@link #processSwitchActorValue(MSwitchActor, Notification) processSwitchActorValue}. (no add
     * or remove events, these are handled in {@link #initializeTFDevices(Notification)
     * initializeTFDevices}).
     *
     *
     * @param notification The {@link Notification} about changes to the {@link Ecosystem}.
     */
private void processTFDeviceValues(Notification notification) {
    if (notification.getNotifier() instanceof MSensor) {
        MSensor<?> sensor = (MSensor<?>) notification.getNotifier();
        int featureID = notification.getFeatureID(MSensor.class);
        if (featureID == ModelPackage.MSENSOR__SENSOR_VALUE) {
            processValue((MBaseDevice) sensor, notification);
        }
    } else if (notification.getNotifier() instanceof SetPointActor<?>) {
        SetPointActor<?> actor = (SetPointActor<?>) notification.getNotifier();
        int setpointFeatureID = notification.getFeatureID(SetPointActor.class);
        if (setpointFeatureID == ModelPackage.SET_POINT_ACTOR__PERCENT_VALUE) {
            processValue((MBaseDevice) actor, notification);
        }
    } else if (notification.getNotifier() instanceof MoveActor) {
        MoveActor actor = (MoveActor) notification.getNotifier();
        int moveFeatureID = notification.getFeatureID(MoveActor.class);
        if (moveFeatureID == ModelPackage.MOVE_ACTOR__DIRECTION) {
            processValue((MBaseDevice) actor, notification);
        }
    } else if (notification.getNotifier() instanceof MSwitchActor) {
        MSwitchActor switchActor = (MSwitchActor) notification.getNotifier();
        int featureID = notification.getFeatureID(MSwitchActor.class);
        if (featureID == ModelPackage.MSWITCH_ACTOR__SWITCH_STATE) {
            processValue((MBaseDevice) switchActor, notification);
        }
    } else if (notification.getNotifier() instanceof ProgrammableSwitchActor) {
        logger.trace("notification {}", notification);
        logger.trace("notifier {}", notification.getNotifier());
        ProgrammableSwitchActor switchActor = (ProgrammableSwitchActor) notification.getNotifier();
        // use the super type class for getting the featureID. Should not be necessary according to
        // the docs or I misunderstand it. But this approach works.
        int featureID = notification.getFeatureID(SwitchSensor.class);
        logger.trace("notification ProgrammableSwitchActor id {}", featureID);
        if (featureID == ModelPackage.PROGRAMMABLE_SWITCH_ACTOR__SWITCH_STATE) {
            logger.trace("ProgrammableSwitchActor switch state changed sending notification");
            processValue((MBaseDevice) switchActor, notification);
        }
    } else if (notification.getNotifier() instanceof DigitalActor) {
        DigitalActor actor = (DigitalActor) notification.getNotifier();
        int featureID = notification.getFeatureID(DigitalActor.class);
        if (featureID == ModelPackage.DIGITAL_ACTOR__DIGITAL_STATE) {
            processValue((MBaseDevice) actor, notification);
        }
    } else if (notification.getNotifier() instanceof ColorActor) {
        ColorActor actor = (ColorActor) notification.getNotifier();
        int featureID = notification.getFeatureID(ColorActor.class);
        if (featureID == ModelPackage.COLOR_ACTOR__COLOR) {
            processValue((MBaseDevice) actor, notification);
        }
    } else if (notification.getNotifier() instanceof DimmableActor<?>) {
        DimmableActor<?> actor = (DimmableActor<?>) notification.getNotifier();
        processValue((MBaseDevice) actor, notification);
    } else if (notification.getNotifier() instanceof MBrickd) {
        MBrickd brickd = (MBrickd) notification.getNotifier();
        int featureID = notification.getFeatureID(MBrickd.class);
        if (featureID == ModelPackage.MBRICKD__CONNECTED_COUNTER) {
            String subId = "connected_counter";
            processValue(brickd, notification, subId);
        } else if (featureID == ModelPackage.MBRICKD__IS_CONNECTED) {
            String subId = "isconnected";
            processValue(brickd, notification, subId);
        }
    } else // TODO hier muss noch was fuer die dimmer und rollershutter rein
    {
        logger.trace("{} ignored notifier {}", LoggerConstants.TFMODELUPDATE, notification.getNotifier());
    }
}
Also used : MSwitchActor(org.openhab.binding.tinkerforge.internal.model.MSwitchActor) MSensor(org.openhab.binding.tinkerforge.internal.model.MSensor) MBaseDevice(org.openhab.binding.tinkerforge.internal.model.MBaseDevice) MBrickd(org.openhab.binding.tinkerforge.internal.model.MBrickd) SetPointActor(org.openhab.binding.tinkerforge.internal.model.SetPointActor) ColorActor(org.openhab.binding.tinkerforge.internal.model.ColorActor) ProgrammableColorActor(org.openhab.binding.tinkerforge.internal.model.ProgrammableColorActor) SimpleColorActor(org.openhab.binding.tinkerforge.internal.model.SimpleColorActor) DigitalActor(org.openhab.binding.tinkerforge.internal.model.DigitalActor) MoveActor(org.openhab.binding.tinkerforge.internal.model.MoveActor) DimmableActor(org.openhab.binding.tinkerforge.internal.model.DimmableActor) ProgrammableSwitchActor(org.openhab.binding.tinkerforge.internal.model.ProgrammableSwitchActor)

Example 4 with MBaseDevice

use of org.openhab.binding.tinkerforge.internal.model.MBaseDevice in project openhab1-addons by openhab.

the class EcosystemImpl method getDevices4GenericId.

/**
     * <!-- begin-user-doc --> <!-- end-user-doc -->
     * 
     * @generated NOT
     */
@Override
public EList<MSubDevice<?>> getDevices4GenericId(String uid, String genericId) {
    EList<MSubDevice<?>> genericDevicesList = new BasicEList<MSubDevice<?>>();
    EList<MBrickd> _mbrickds = getMbrickds();
    for (final MBrickd mbrickd : _mbrickds) {
        {
            final MBaseDevice mDevice = mbrickd.getDevice(uid);
            if (mDevice != null) {
                if (mDevice instanceof MSubDeviceHolder) {
                    final MSubDeviceHolder<?> mBrick = ((MSubDeviceHolder<?>) mDevice);
                    EList<?> _msubdevices = mBrick.getMsubdevices();
                    for (final Object mg : _msubdevices) {
                        if (mg instanceof GenericDevice) {
                            final GenericDevice mgenericdevice = ((GenericDevice) mg);
                            String _genericId = mgenericdevice.getGenericDeviceId();
                            if (_genericId.equals(genericId)) {
                                genericDevicesList.add(((MSubDevice<?>) mgenericdevice));
                            }
                        }
                    }
                }
            }
        }
    }
    return genericDevicesList;
}
Also used : MSubDeviceHolder(org.openhab.binding.tinkerforge.internal.model.MSubDeviceHolder) BasicEList(org.eclipse.emf.common.util.BasicEList) EObjectContainmentWithInverseEList(org.eclipse.emf.ecore.util.EObjectContainmentWithInverseEList) EList(org.eclipse.emf.common.util.EList) InternalEList(org.eclipse.emf.ecore.util.InternalEList) GenericDevice(org.openhab.binding.tinkerforge.internal.model.GenericDevice) BasicEList(org.eclipse.emf.common.util.BasicEList) MBrickd(org.openhab.binding.tinkerforge.internal.model.MBrickd) MBaseDevice(org.openhab.binding.tinkerforge.internal.model.MBaseDevice) MSubDevice(org.openhab.binding.tinkerforge.internal.model.MSubDevice) InternalEObject(org.eclipse.emf.ecore.InternalEObject)

Example 5 with MBaseDevice

use of org.openhab.binding.tinkerforge.internal.model.MBaseDevice in project openhab1-addons by openhab.

the class TinkerforgeContextImpl method tfLoadCellTare.

@Override
public boolean tfLoadCellTare(String uid) {
    if (ecosystem == null) {
        logger.error("tfLoadCellTare action failed ecosystem is null");
        return false;
    }
    MBaseDevice mDevice = ecosystem.getDevice(uid, "weight");
    if (mDevice instanceof LoadCellWeight) {
        logger.trace("load cell tare action");
        ((LoadCellWeight) mDevice).tare();
        return true;
    } else {
        logger.error("no Load Cell Bricklet found for uid {}", uid);
        return false;
    }
}
Also used : MBaseDevice(org.openhab.binding.tinkerforge.internal.model.MBaseDevice) LoadCellWeight(org.openhab.binding.tinkerforge.internal.model.LoadCellWeight)

Aggregations

MBaseDevice (org.openhab.binding.tinkerforge.internal.model.MBaseDevice)7 DigitalActor (org.openhab.binding.tinkerforge.internal.model.DigitalActor)3 MBrickd (org.openhab.binding.tinkerforge.internal.model.MBrickd)3 DimmableActor (org.openhab.binding.tinkerforge.internal.model.DimmableActor)2 MSensor (org.openhab.binding.tinkerforge.internal.model.MSensor)2 MSubDevice (org.openhab.binding.tinkerforge.internal.model.MSubDevice)2 MSubDeviceHolder (org.openhab.binding.tinkerforge.internal.model.MSubDeviceHolder)2 MSwitchActor (org.openhab.binding.tinkerforge.internal.model.MSwitchActor)2 MoveActor (org.openhab.binding.tinkerforge.internal.model.MoveActor)2 ProgrammableColorActor (org.openhab.binding.tinkerforge.internal.model.ProgrammableColorActor)2 ProgrammableSwitchActor (org.openhab.binding.tinkerforge.internal.model.ProgrammableSwitchActor)2 SetPointActor (org.openhab.binding.tinkerforge.internal.model.SetPointActor)2 SimpleColorActor (org.openhab.binding.tinkerforge.internal.model.SimpleColorActor)2 BasicEList (org.eclipse.emf.common.util.BasicEList)1 EList (org.eclipse.emf.common.util.EList)1 InternalEObject (org.eclipse.emf.ecore.InternalEObject)1 EObjectContainmentWithInverseEList (org.eclipse.emf.ecore.util.EObjectContainmentWithInverseEList)1 InternalEList (org.eclipse.emf.ecore.util.InternalEList)1 TinkerforgeBindingProvider (org.openhab.binding.tinkerforge.TinkerforgeBindingProvider)1 ColorActor (org.openhab.binding.tinkerforge.internal.model.ColorActor)1