Search in sources :

Example 1 with DeviceConfig

use of org.openmuc.framework.config.DeviceConfig in project OpenMUC by isc-konstanz.

the class DataManager method handleInterruptEvent.

private void handleInterruptEvent() {
    if (stopFlag) {
        prepareStop();
        return;
    }
    long currentTime = 0;
    if (newRootConfigWithoutDefaults != null) {
        currentTime = System.currentTimeMillis();
        applyConfiguration(newRootConfigWithoutDefaults, currentTime);
        newRootConfigWithoutDefaults = null;
        newConfigSignal.countDown();
    }
    synchronized (receivedRecordContainers) {
        List<ChannelRecordContainer> recordContainers;
        LoggingController loggingController = new LoggingController(activeDataLoggers);
        List<ChannelRecordContainerImpl> channelRecordContainerList = new ArrayList<>();
        while ((recordContainers = receivedRecordContainers.poll()) != null) {
            recordContainers.stream().map(recContainer -> (ChannelRecordContainerImpl) recContainer).filter(containerImpl -> containerImpl.getChannel().getChannelState() == ChannelState.LISTENING || containerImpl.getChannel().getDriverId().equals(DriverOptionsFactory.VIRTUAL)).forEach(containerImpl -> {
                containerImpl.getChannel().setNewRecord(containerImpl.getRecord());
                if (containerImpl.getChannel().isLoggingEvent())
                    channelRecordContainerList.add(containerImpl);
            });
        }
        loggingController.deliverLogsToEventBasedLogServices(channelRecordContainerList);
    }
    synchronized (samplingTaskFinished) {
        SamplingTask samplingTask;
        while ((samplingTask = samplingTaskFinished.poll()) != null) {
            samplingTask.storeValues();
            samplingTask.device.taskFinished();
        }
    }
    synchronized (tasksFinished) {
        DeviceTask deviceTask;
        while ((deviceTask = tasksFinished.poll()) != null) {
            deviceTask.device.taskFinished();
        }
    }
    synchronized (newDrivers) {
        // Needed to synchronize with getRunningDrivers
        synchronized (activeDrivers) {
            activeDrivers.putAll(newDrivers);
        }
        for (Entry<String, DriverService> newDriverEntry : newDrivers.entrySet()) {
            String driverId = newDriverEntry.getKey();
            logger.info("Registered driver: " + driverId);
            DriverConfigImpl driverConfig = rootConfig.driverConfigsById.get(driverId);
            if (driverConfig == null) {
                continue;
            }
            driverConfig.activeDriver = newDriverEntry.getValue();
            for (DeviceConfigImpl deviceConfig : driverConfig.deviceConfigsById.values()) {
                deviceConfig.device.driverRegisteredSignal();
            }
        }
        newDrivers.clear();
    }
    synchronized (newServers) {
        if (!newServers.isEmpty()) {
            activeServers.addAll(newServers);
            for (ServerService server : newServers) {
                logger.info("Registered server: {}", server.getId());
                notifyServer(server);
            }
            newServers.clear();
        }
    }
    synchronized (newDataLoggers) {
        if (!newDataLoggers.isEmpty()) {
            activeDataLoggers.addAll(newDataLoggers);
            for (DataLoggerService dataLogger : newDataLoggers) {
                logger.info("Registered data logger: {}", dataLogger.getId());
                dataLogger.setChannelsToLog(rootConfig.logChannels);
            }
            newDataLoggers.clear();
        }
    }
    if (driverToBeRemovedId != null) {
        DriverService removedDriver;
        synchronized (activeDrivers) {
            removedDriver = activeDrivers.remove(driverToBeRemovedId);
        }
        if (removedDriver == null) {
            // drivers was removed before it was added to activeDrivers
            newDrivers.remove(driverToBeRemovedId);
            driverRemovedSignal.countDown();
        } else {
            DriverConfigImpl driverConfig = rootConfig.driverConfigsById.get(driverToBeRemovedId);
            if (driverConfig != null) {
                activeDeviceCountDown = driverConfig.deviceConfigsById.size();
                if (activeDeviceCountDown > 0) {
                    // all devices have to be given a chance to finish their current task and disconnect:
                    for (DeviceConfigImpl deviceConfig : driverConfig.deviceConfigsById.values()) {
                        deviceConfig.device.driverDeregisteredSignal();
                    }
                    synchronized (driverRemovedSignal) {
                        if (activeDeviceCountDown == 0) {
                            driverRemovedSignal.countDown();
                        }
                    }
                } else {
                    driverRemovedSignal.countDown();
                }
            } else {
                driverRemovedSignal.countDown();
            }
        }
        driverToBeRemovedId = null;
    }
    if (serverToBeRemoved != null) {
        if (!activeServers.remove(serverToBeRemoved)) {
            newServers.remove(serverToBeRemoved);
        }
        serverToBeRemoved = null;
        serverRemovedSignal.countDown();
    }
    if (dataLoggerToBeRemoved != null) {
        if (!activeDataLoggers.remove(dataLoggerToBeRemoved)) {
            newDataLoggers.remove(dataLoggerToBeRemoved);
        }
        dataLoggerToBeRemoved = null;
        dataLoggerRemovedSignal.countDown();
    }
    synchronized (connectionFailures) {
        if (currentTime == 0) {
            currentTime = System.currentTimeMillis();
        }
        Device connectionFailureDevice;
        while ((connectionFailureDevice = connectionFailures.poll()) != null) {
            connectionFailureDevice.connectFailureSignal(currentTime);
        }
    }
    synchronized (connectedDevices) {
        if (currentTime == 0) {
            currentTime = System.currentTimeMillis();
        }
        Device connectedDevice;
        while ((connectedDevice = connectedDevices.poll()) != null) {
            connectedDevice.connectedSignal(currentTime);
        }
    }
    synchronized (newWriteTasks) {
        addTasksAndClear(newWriteTasks);
    }
    synchronized (newReadTasks) {
        addTasksAndClear(newReadTasks);
    }
    synchronized (disconnectedDevices) {
        Device connectedDevice;
        while ((connectedDevice = disconnectedDevices.poll()) != null) {
            connectedDevice.disconnectedSignal();
        }
    }
}
Also used : Arrays(java.util.Arrays) ListIterator(java.util.ListIterator) DeviceScanInfo(org.openmuc.framework.config.DeviceScanInfo) LoggerFactory(org.slf4j.LoggerFactory) DriverInfo(org.openmuc.framework.config.DriverInfo) Connection(org.openmuc.framework.driver.spi.Connection) Channel(org.openmuc.framework.dataaccess.Channel) DriverConfig(org.openmuc.framework.config.DriverConfig) DeviceScanListener(org.openmuc.framework.config.DeviceScanListener) Map(java.util.Map) ParseException(org.openmuc.framework.config.ParseException) ServerMapping(org.openmuc.framework.config.ServerMapping) ServerService(org.openmuc.framework.server.spi.ServerService) ConnectionException(org.openmuc.framework.driver.spi.ConnectionException) ScanException(org.openmuc.framework.config.ScanException) Deactivate(org.osgi.service.component.annotations.Deactivate) DriverDeviceScanListener(org.openmuc.framework.driver.spi.DriverDeviceScanListener) ReferencePolicy(org.osgi.service.component.annotations.ReferencePolicy) ConfigWriteException(org.openmuc.framework.config.ConfigWriteException) Collectors(java.util.stream.Collectors) Flag(org.openmuc.framework.data.Flag) FileNotFoundException(java.io.FileNotFoundException) Executors(java.util.concurrent.Executors) ChannelState(org.openmuc.framework.dataaccess.ChannelState) CountDownLatch(java.util.concurrent.CountDownLatch) List(java.util.List) ChannelScanInfo(org.openmuc.framework.config.ChannelScanInfo) ChannelConfig(org.openmuc.framework.config.ChannelConfig) ChannelChangeListener(org.openmuc.framework.dataaccess.ChannelChangeListener) Entry(java.util.Map.Entry) Optional(java.util.Optional) Queue(java.util.Queue) ReadRecordContainer(org.openmuc.framework.dataaccess.ReadRecordContainer) DataLoggerNotAvailableException(org.openmuc.framework.dataaccess.DataLoggerNotAvailableException) TransformerException(javax.xml.transform.TransformerException) ThreadPoolExecutor(java.util.concurrent.ThreadPoolExecutor) DriverOptionsFactory(org.openmuc.framework.config.option.DriverOptionsFactory) HashMap(java.util.HashMap) Deque(java.util.Deque) RootConfig(org.openmuc.framework.config.RootConfig) ConfigService(org.openmuc.framework.config.ConfigService) ArrayList(java.util.ArrayList) LinkedHashMap(java.util.LinkedHashMap) LogicalDeviceChangeListener(org.openmuc.framework.dataaccess.LogicalDeviceChangeListener) ChannelRecordContainer(org.openmuc.framework.driver.spi.ChannelRecordContainer) Component(org.osgi.service.component.annotations.Component) WriteValueContainer(org.openmuc.framework.dataaccess.WriteValueContainer) TransformerFactoryConfigurationError(javax.xml.transform.TransformerFactoryConfigurationError) DataLoggerService(org.openmuc.framework.datalogger.spi.DataLoggerService) Activate(org.osgi.service.component.annotations.Activate) DriverNotAvailableException(org.openmuc.framework.config.DriverNotAvailableException) LinkedList(java.util.LinkedList) ArgumentSyntaxException(org.openmuc.framework.config.ArgumentSyntaxException) ServerMappingContainer(org.openmuc.framework.server.spi.ServerMappingContainer) CommandProcessor(org.apache.felix.service.command.CommandProcessor) ConfigChangeListener(org.openmuc.framework.config.ConfigChangeListener) Logger(org.slf4j.Logger) ReentrantLock(java.util.concurrent.locks.ReentrantLock) IOException(java.io.IOException) File(java.io.File) LogicalDevice(org.openmuc.framework.dataaccess.LogicalDevice) ScanInterruptedException(org.openmuc.framework.config.ScanInterruptedException) DeviceConfig(org.openmuc.framework.config.DeviceConfig) ReferenceCardinality(org.osgi.service.component.annotations.ReferenceCardinality) ParserConfigurationException(javax.xml.parsers.ParserConfigurationException) DriverService(org.openmuc.framework.driver.spi.DriverService) LinkedBlockingDeque(java.util.concurrent.LinkedBlockingDeque) DataAccessService(org.openmuc.framework.dataaccess.DataAccessService) DeviceState(org.openmuc.framework.dataaccess.DeviceState) Reference(org.osgi.service.component.annotations.Reference) LogChannel(org.openmuc.framework.datalogger.spi.LogChannel) RecordsReceivedListener(org.openmuc.framework.driver.spi.RecordsReceivedListener) DataLoggerService(org.openmuc.framework.datalogger.spi.DataLoggerService) LogicalDevice(org.openmuc.framework.dataaccess.LogicalDevice) ArrayList(java.util.ArrayList) ChannelRecordContainer(org.openmuc.framework.driver.spi.ChannelRecordContainer) ServerService(org.openmuc.framework.server.spi.ServerService) DriverService(org.openmuc.framework.driver.spi.DriverService)

Example 2 with DeviceConfig

use of org.openmuc.framework.config.DeviceConfig in project OpenMUC by isc-konstanz.

the class DataManager method connectionInterrupted.

@Override
public void connectionInterrupted(String driverId, Connection connection) {
    // TODO synchronize here
    DriverConfig driverConfig = rootConfig.getDriver(driverId);
    if (driverConfig == null) {
        return;
    }
    for (DeviceConfig deviceConfig : driverConfig.getDevices()) {
        DeviceConfigImpl deviceConfigImpl = (DeviceConfigImpl) deviceConfig;
        if (deviceConfigImpl.device.connection != connection) {
            continue;
        }
        Device device = deviceConfigImpl.device;
        logger.info("Connection to device {} was interrupted.", device.deviceConfig.getId());
        device.disconnectedSignal();
        return;
    }
}
Also used : LogicalDevice(org.openmuc.framework.dataaccess.LogicalDevice) DriverConfig(org.openmuc.framework.config.DriverConfig) DeviceConfig(org.openmuc.framework.config.DeviceConfig)

Example 3 with DeviceConfig

use of org.openmuc.framework.config.DeviceConfig in project OpenMUC by isc-konstanz.

the class ChannelResourceServlet method doPostConfigs.

private synchronized boolean doPostConfigs(String channelId, HttpServletResponse response, FromJson json) throws JsonSyntaxException, ConfigWriteException, RestConfigIsNotCorrectException, Error, MissingJsonObjectException, IllegalStateException {
    boolean ok = false;
    DeviceConfig deviceConfig;
    ChannelConfig channelConfig = rootConfig.getChannel(channelId);
    JsonObject jso = json.getJsonObject();
    JsonElement jsonElement = jso.get(Const.DEVICE);
    if (jsonElement == null) {
        ServletLib.sendHTTPErrorAndLogErr(response, HttpServletResponse.SC_BAD_REQUEST, logger, "Wrong json message syntax. Device statement is missing.");
    }
    String deviceID = jsonElement.getAsString();
    if (deviceID != null) {
        deviceConfig = rootConfig.getDevice(deviceID);
    } else {
        throw new Error("No device ID in JSON");
    }
    if (deviceConfig == null) {
        ServletLib.sendHTTPErrorAndLogErr(response, HttpServletResponse.SC_CONFLICT, logger, "Device does not exists: ", deviceID);
    } else if (channelConfig != null) {
        ServletLib.sendHTTPErrorAndLogErr(response, HttpServletResponse.SC_CONFLICT, logger, "Channel already exists: ", channelId);
    } else {
        try {
            channelConfig = deviceConfig.addChannel(channelId);
            json.setChannelConfig(channelConfig, channelId);
            if ((channelConfig.getValueType() == ValueType.STRING || channelConfig.getValueType() == ValueType.BYTE_ARRAY) && channelConfig.getValueTypeLength() == null) {
                ServletLib.sendHTTPErrorAndLogErr(response, HttpServletResponse.SC_NOT_ACCEPTABLE, logger, "Channel ", channelId, " with value type ", channelConfig.getValueType().toString(), ", missing valueTypeLength.");
                channelConfig.delete();
            } else {
                configService.setConfig(rootConfig);
                configService.writeConfigToFile();
            }
        } catch (IdCollisionException e) {
        }
        response.setStatus(HttpServletResponse.SC_OK);
        ok = true;
    }
    return ok;
}
Also used : ChannelConfig(org.openmuc.framework.config.ChannelConfig) JsonElement(com.google.gson.JsonElement) IdCollisionException(org.openmuc.framework.config.IdCollisionException) JsonObject(com.google.gson.JsonObject) DeviceConfig(org.openmuc.framework.config.DeviceConfig)

Example 4 with DeviceConfig

use of org.openmuc.framework.config.DeviceConfig in project OpenMUC by isc-konstanz.

the class ToJson method addDeviceConfigList.

public void addDeviceConfigList(List<DeviceConfig> configList) {
    JsonArray jsa = new JsonArray();
    for (DeviceConfig deviceConfig : configList) {
        RestDeviceConfig restConfig = RestDeviceMapper.getRestDeviceConfig(deviceConfig);
        jsa.add(gson.toJsonTree(restConfig, RestDeviceConfig.class).getAsJsonObject());
    }
    jsonObject.add(Const.CONFIGS, jsa);
}
Also used : JsonArray(com.google.gson.JsonArray) RestDeviceConfig(org.openmuc.framework.lib.rest.objects.RestDeviceConfig) DeviceConfig(org.openmuc.framework.config.DeviceConfig) RestDeviceConfig(org.openmuc.framework.lib.rest.objects.RestDeviceConfig)

Example 5 with DeviceConfig

use of org.openmuc.framework.config.DeviceConfig in project OpenMUC by isc-konstanz.

the class DeviceResourceServlet method doGetStateList.

private void doGetStateList(ToJson json) {
    Map<String, DeviceState> deviceStates = new HashMap<String, DeviceState>();
    Collection<DeviceConfig> deviceConfigs = getConfigsList();
    for (DeviceConfig deviceConfig : deviceConfigs) {
        String deviceId = deviceConfig.getId();
        deviceStates.put(deviceId, configService.getDeviceState(deviceId));
    }
    json.addDeviceStateList(deviceStates);
}
Also used : DeviceState(org.openmuc.framework.dataaccess.DeviceState) HashMap(java.util.HashMap) DeviceConfig(org.openmuc.framework.config.DeviceConfig)

Aggregations

DeviceConfig (org.openmuc.framework.config.DeviceConfig)17 DriverConfig (org.openmuc.framework.config.DriverConfig)6 ArrayList (java.util.ArrayList)5 ChannelConfig (org.openmuc.framework.config.ChannelConfig)4 JsonObject (com.google.gson.JsonObject)3 LinkedList (java.util.LinkedList)3 IdCollisionException (org.openmuc.framework.config.IdCollisionException)3 JsonElement (com.google.gson.JsonElement)2 HashMap (java.util.HashMap)2 DriverInfo (org.openmuc.framework.config.DriverInfo)2 DriverNotAvailableException (org.openmuc.framework.config.DriverNotAvailableException)2 DeviceState (org.openmuc.framework.dataaccess.DeviceState)2 LogicalDevice (org.openmuc.framework.dataaccess.LogicalDevice)2 JsonArray (com.google.gson.JsonArray)1 File (java.io.File)1 FileNotFoundException (java.io.FileNotFoundException)1 IOException (java.io.IOException)1 Arrays (java.util.Arrays)1 Deque (java.util.Deque)1 LinkedHashMap (java.util.LinkedHashMap)1