blob: 0be2c9f783f33ef64d30492aa319212e3d687149 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014, 2016 Orange.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*******************************************************************************/
package org.eclipse.om2m.sdt.home.mocked.devices;
import java.util.List;
import org.eclipse.om2m.sdt.Domain;
import org.eclipse.om2m.sdt.exceptions.DataPointException;
import org.eclipse.om2m.sdt.home.devices.WaterValve;
import org.eclipse.om2m.sdt.home.types.LiquidLevel;
import org.osgi.framework.ServiceRegistration;
@SuppressWarnings("rawtypes")
public class MockedWaterValve extends WaterValve implements MockedDevice {
private List<ServiceRegistration> serviceRegistrations;
public MockedWaterValve(String id, String serial, Domain domain) {
super(id, serial, domain);
// Datapoints
addModule(new org.eclipse.om2m.sdt.home.modules.LiquidLevel("waterLevel_" + id, domain,
new LiquidLevel() {
private LiquidLevel.Values openLevel = LiquidLevel.Values.zero;
@Override
public void doSetValue(LiquidLevel.Values value) throws DataPointException {
openLevel = value;
Activator.logger.info("openLevel set " + value);
}
@Override
public LiquidLevel.Values doGetValue() throws DataPointException {
return openLevel;
}
}));
// addModule(new MockedFaultDetection("faultDetection_" + id, domain));
}
public void registerDevice() {
if (! ((serviceRegistrations == null) || serviceRegistrations.isEmpty())) {
// already registered
return;
}
serviceRegistrations = Activator.register(this);
}
public void unregisterDevice() {
if (serviceRegistrations == null)
return;
for (ServiceRegistration reg : serviceRegistrations) {
reg.unregister();
}
serviceRegistrations.clear();
}
}