org.apache.plc4x.java.base.messages.DefaultPlcSubscriptionRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plc4j-protocol-driver-base Show documentation
Show all versions of plc4j-protocol-driver-base Show documentation
Base classes needed to implement all of the other driver bases.
/*
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.plc4x.java.base.messages;
import org.apache.commons.lang3.tuple.Pair;
import org.apache.plc4x.java.api.exceptions.PlcRuntimeException;
import org.apache.plc4x.java.api.messages.PlcSubscriptionRequest;
import org.apache.plc4x.java.api.messages.PlcSubscriptionResponse;
import org.apache.plc4x.java.api.model.PlcField;
import org.apache.plc4x.java.api.types.PlcSubscriptionType;
import org.apache.plc4x.java.base.connection.PlcFieldHandler;
import org.apache.plc4x.java.base.model.SubscriptionPlcField;
import java.time.Duration;
import java.util.*;
import java.util.concurrent.CompletableFuture;
import java.util.stream.Collectors;
public class DefaultPlcSubscriptionRequest implements InternalPlcSubscriptionRequest, InternalPlcFieldRequest {
private final PlcSubscriber subscriber;
private LinkedHashMap fields;
public DefaultPlcSubscriptionRequest(PlcSubscriber subscriber, LinkedHashMap fields) {
this.subscriber = subscriber;
this.fields = fields;
}
@Override
public CompletableFuture execute() {
return subscriber.subscribe(this);
}
@Override
public int getNumberOfFields() {
return fields.size();
}
@Override
public LinkedHashSet getFieldNames() {
return new LinkedHashSet<>(fields.keySet());
}
@Override
public PlcField getField(String name) {
SubscriptionPlcField subscriptionPlcField = fields.get(name);
if (subscriptionPlcField == null) {
return null;
}
return subscriptionPlcField.getPlcField();
}
@Override
public List getFields() {
return fields.values().stream().map(SubscriptionPlcField::getPlcField).collect(Collectors.toCollection(LinkedList::new));
}
@Override
public List getSubscriptionFields() {
return new LinkedList<>(fields.values());
}
@Override
public LinkedHashMap getSubscriptionPlcFieldMap() {
return fields;
}
@Override
public List> getNamedFields() {
return fields.entrySet()
.stream()
.map(stringPlcFieldEntry -> Pair.of(stringPlcFieldEntry.getKey(), stringPlcFieldEntry.getValue().getPlcField()))
.collect(Collectors.toCollection(LinkedList::new));
}
@Override
public List> getNamedSubscriptionFields() {
return fields.entrySet()
.stream()
.map(stringPlcFieldEntry -> Pair.of(stringPlcFieldEntry.getKey(), stringPlcFieldEntry.getValue()))
.collect(Collectors.toCollection(LinkedList::new));
}
protected PlcSubscriber getSubscriber() {
return subscriber;
}
public static class Builder implements PlcSubscriptionRequest.Builder {
private final PlcSubscriber subscriber;
private final PlcFieldHandler fieldHandler;
private final Map fields;
public Builder(PlcSubscriber subscriber, PlcFieldHandler fieldHandler) {
this.subscriber = subscriber;
this.fieldHandler = fieldHandler;
fields = new TreeMap<>();
}
@Override
public PlcSubscriptionRequest.Builder addCyclicField(String name, String fieldQuery, Duration pollingInterval) {
fields.put(name, new BuilderItem(fieldQuery, PlcSubscriptionType.CYCLIC, pollingInterval));
return this;
}
@Override
public PlcSubscriptionRequest.Builder addChangeOfStateField(String name, String fieldQuery) {
fields.put(name, new BuilderItem(fieldQuery, PlcSubscriptionType.CHANGE_OF_STATE));
return this;
}
@Override
public PlcSubscriptionRequest.Builder addEventField(String name, String fieldQuery) {
if (fields.containsKey(name)) {
throw new PlcRuntimeException("Duplicate field definition '" + name + "'");
}
fields.put(name, new BuilderItem(fieldQuery, PlcSubscriptionType.EVENT));
return this;
}
@Override
public PlcSubscriptionRequest build() {
LinkedHashMap parsedFields = new LinkedHashMap<>();
fields.forEach((name, builderItem) -> {
PlcField parsedField = fieldHandler.createField(builderItem.fieldQuery);
parsedFields.put(name, new SubscriptionPlcField(builderItem.plcSubscriptionType, parsedField, builderItem.duration));
});
return new DefaultPlcSubscriptionRequest(subscriber, parsedFields);
}
private static class BuilderItem {
private final String fieldQuery;
private final PlcSubscriptionType plcSubscriptionType;
private final Duration duration;
private BuilderItem(String fieldQuery, PlcSubscriptionType plcSubscriptionType) {
this(fieldQuery, plcSubscriptionType, null);
}
private BuilderItem(String fieldQuery, PlcSubscriptionType plcSubscriptionType, Duration duration) {
this.fieldQuery = fieldQuery;
this.plcSubscriptionType = plcSubscriptionType;
this.duration = duration;
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy