org.apache.camel.component.plc4x.Plc4XPollingConsumer Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.camel.component.plc4x;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
import org.apache.camel.Endpoint;
import org.apache.camel.Exchange;
import org.apache.camel.support.EventDrivenPollingConsumer;
import org.apache.plc4x.java.api.exceptions.PlcConnectionException;
import org.apache.plc4x.java.api.messages.PlcReadRequest;
import org.apache.plc4x.java.api.messages.PlcReadResponse;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class Plc4XPollingConsumer extends EventDrivenPollingConsumer {
private static final Logger LOGGER = LoggerFactory.getLogger(Plc4XPollingConsumer.class);
private final Plc4XEndpoint plc4XEndpoint;
public Plc4XPollingConsumer(Plc4XEndpoint endpoint) {
super(endpoint);
this.plc4XEndpoint = endpoint;
}
@Override
public String toString() {
return "Plc4XPollingConsumer[" + plc4XEndpoint + "]";
}
@Override
public Endpoint getEndpoint() {
return plc4XEndpoint;
}
@Override
protected void doStart() throws Exception {
super.doStart();
try {
plc4XEndpoint.setupConnection();
} catch (PlcConnectionException e) {
if (LOGGER.isTraceEnabled()) {
LOGGER.error("Connection setup failed, stopping PollingConsumer", e);
} else {
LOGGER.error("Connection setup failed, stopping PollingConsumer");
}
doStop();
}
}
@Override
public Exchange receive() {
return doReceive(-1);
}
@Override
public Exchange receiveNoWait() {
return doReceive(0);
}
@Override
public Exchange receive(long timeout) {
return doReceive(timeout);
}
protected Exchange doReceive(long timeout) {
Exchange exchange = plc4XEndpoint.createExchange();
try {
plc4XEndpoint.reconnectIfNeeded();
PlcReadRequest request = plc4XEndpoint.buildPlcReadRequest();
CompletableFuture extends PlcReadResponse> future
= request.execute().whenComplete((plcReadResponse, throwable) -> {
});
PlcReadResponse response;
if (timeout >= 0) {
response = future.get(timeout, TimeUnit.MILLISECONDS);
} else {
response = future.get();
}
Map rsp = new HashMap<>();
for (String field : response.getTagNames()) {
rsp.put(field, response.getObject(field));
}
exchange.getIn().setBody(rsp);
} catch (ExecutionException | TimeoutException e) {
getExceptionHandler().handleException(e);
exchange.getIn().setBody(new HashMap<>());
} catch (InterruptedException e) {
getExceptionHandler().handleException(e);
Thread.currentThread().interrupt();
} catch (PlcConnectionException e) {
if (LOGGER.isTraceEnabled()) {
LOGGER.warn("Unable to reconnect, skipping request", e);
} else {
LOGGER.warn("Unable to reconnect, skipping request");
}
exchange.getIn().setBody(new HashMap<>());
}
return exchange;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy