blob: 4e34aa2882a8d56925b0d297fc22b6567c06497d [file] [log] [blame]
/*
* 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
*
* https://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.eip.readwrite;
import static org.apache.plc4x.java.spi.codegen.fields.FieldReaderFactory.*;
import static org.apache.plc4x.java.spi.codegen.fields.FieldWriterFactory.*;
import static org.apache.plc4x.java.spi.codegen.io.DataReaderFactory.*;
import static org.apache.plc4x.java.spi.codegen.io.DataWriterFactory.*;
import static org.apache.plc4x.java.spi.generation.StaticHelper.*;
import java.time.*;
import java.util.*;
import org.apache.plc4x.java.api.exceptions.*;
import org.apache.plc4x.java.api.value.*;
import org.apache.plc4x.java.spi.codegen.*;
import org.apache.plc4x.java.spi.codegen.fields.*;
import org.apache.plc4x.java.spi.codegen.io.*;
import org.apache.plc4x.java.spi.generation.*;
// Code generated by code-generation. DO NOT EDIT.
public class Services implements Message {
// Properties.
protected final List<Integer> offsets;
protected final List<CipService> services;
// Arguments.
protected final Integer servicesLen;
protected final IntegerEncoding order;
public Services(
List<Integer> offsets,
List<CipService> services,
Integer servicesLen,
IntegerEncoding order) {
super();
this.offsets = offsets;
this.services = services;
this.servicesLen = servicesLen;
this.order = order;
}
public List<Integer> getOffsets() {
return offsets;
}
public List<CipService> getServices() {
return services;
}
public void serialize(WriteBuffer writeBuffer) throws SerializationException {
PositionAware positionAware = writeBuffer;
boolean _lastItem = ThreadLocalHelper.lastItemThreadLocal.get();
int startPos = positionAware.getPos();
writeBuffer.pushContext("Services");
// Implicit Field (serviceNb) (Used for parsing, but its value is not stored as it's implicitly
// given by the objects content)
int serviceNb = (int) (COUNT(getOffsets()));
writeImplicitField(
"serviceNb",
serviceNb,
writeUnsignedInt(writeBuffer, 16),
WithOption.WithByteOrder(
(((order) == (IntegerEncoding.BIG_ENDIAN))
? ByteOrder.BIG_ENDIAN
: ByteOrder.LITTLE_ENDIAN)));
// Array Field (offsets)
writeSimpleTypeArrayField(
"offsets",
offsets,
writeUnsignedInt(writeBuffer, 16),
WithOption.WithByteOrder(
(((order) == (IntegerEncoding.BIG_ENDIAN))
? ByteOrder.BIG_ENDIAN
: ByteOrder.LITTLE_ENDIAN)));
// Array Field (services)
writeComplexTypeArrayField(
"services",
services,
writeBuffer,
WithOption.WithByteOrder(
(((order) == (IntegerEncoding.BIG_ENDIAN))
? ByteOrder.BIG_ENDIAN
: ByteOrder.LITTLE_ENDIAN)));
writeBuffer.popContext("Services");
}
@Override
public int getLengthInBytes() {
return (int) Math.ceil((float) getLengthInBits() / 8.0);
}
@Override
public int getLengthInBits() {
int lengthInBits = 0;
Services _value = this;
boolean _lastItem = ThreadLocalHelper.lastItemThreadLocal.get();
// Implicit Field (serviceNb)
lengthInBits += 16;
// Array field
if (offsets != null) {
lengthInBits += 16 * offsets.size();
}
// Array field
if (services != null) {
int i = 0;
for (CipService element : services) {
ThreadLocalHelper.lastItemThreadLocal.set(++i >= services.size());
lengthInBits += element.getLengthInBits();
}
}
return lengthInBits;
}
public static Services staticParse(ReadBuffer readBuffer, Object... args) throws ParseException {
PositionAware positionAware = readBuffer;
if ((args == null) || (args.length != 2)) {
throw new PlcRuntimeException(
"Wrong number of arguments, expected 2, but got " + args.length);
}
Integer servicesLen;
if (args[0] instanceof Integer) {
servicesLen = (Integer) args[0];
} else if (args[0] instanceof String) {
servicesLen = Integer.valueOf((String) args[0]);
} else {
throw new PlcRuntimeException(
"Argument 0 expected to be of type Integer or a string which is parseable but was "
+ args[0].getClass().getName());
}
IntegerEncoding order;
if (args[1] instanceof IntegerEncoding) {
order = (IntegerEncoding) args[1];
} else if (args[1] instanceof String) {
order = IntegerEncoding.valueOf((String) args[1]);
} else {
throw new PlcRuntimeException(
"Argument 1 expected to be of type IntegerEncoding or a string which is parseable but was"
+ " "
+ args[1].getClass().getName());
}
return staticParse(readBuffer, servicesLen, order);
}
public static Services staticParse(
ReadBuffer readBuffer, Integer servicesLen, IntegerEncoding order) throws ParseException {
readBuffer.pullContext("Services");
PositionAware positionAware = readBuffer;
int startPos = positionAware.getPos();
int curPos;
boolean _lastItem = ThreadLocalHelper.lastItemThreadLocal.get();
int serviceNb =
readImplicitField(
"serviceNb",
readUnsignedInt(readBuffer, 16),
WithOption.WithByteOrder(
(((order) == (IntegerEncoding.BIG_ENDIAN))
? ByteOrder.BIG_ENDIAN
: ByteOrder.LITTLE_ENDIAN)));
List<Integer> offsets =
readCountArrayField(
"offsets",
readUnsignedInt(readBuffer, 16),
serviceNb,
WithOption.WithByteOrder(
(((order) == (IntegerEncoding.BIG_ENDIAN))
? ByteOrder.BIG_ENDIAN
: ByteOrder.LITTLE_ENDIAN)));
List<CipService> services =
readCountArrayField(
"services",
new DataReaderComplexDefault<>(
() ->
CipService.staticParse(
readBuffer,
(boolean) (false),
(int) ((servicesLen) / (serviceNb)),
(IntegerEncoding) (order)),
readBuffer),
serviceNb,
WithOption.WithByteOrder(
(((order) == (IntegerEncoding.BIG_ENDIAN))
? ByteOrder.BIG_ENDIAN
: ByteOrder.LITTLE_ENDIAN)));
readBuffer.closeContext("Services");
// Create the instance
Services _services;
_services = new Services(offsets, services, servicesLen, order);
return _services;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof Services)) {
return false;
}
Services that = (Services) o;
return (getOffsets() == that.getOffsets()) && (getServices() == that.getServices()) && true;
}
@Override
public int hashCode() {
return Objects.hash(getOffsets(), getServices());
}
@Override
public String toString() {
WriteBufferBoxBased writeBufferBoxBased = new WriteBufferBoxBased(true, true);
try {
writeBufferBoxBased.writeSerializable(this);
} catch (SerializationException e) {
throw new RuntimeException(e);
}
return "\n" + writeBufferBoxBased.getBox().toString() + "\n";
}
}