blob: 1dc7ed144ae592b813345199c50efa651141d031 [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 CIPDataConnected implements Message {
// Properties.
protected final long value;
protected final int tagStatus;
// Arguments.
protected final Integer packetLength;
public CIPDataConnected(long value, int tagStatus, Integer packetLength) {
super();
this.value = value;
this.tagStatus = tagStatus;
this.packetLength = packetLength;
}
public long getValue() {
return value;
}
public int getTagStatus() {
return tagStatus;
}
public void serialize(WriteBuffer writeBuffer) throws SerializationException {
PositionAware positionAware = writeBuffer;
boolean _lastItem = ThreadLocalHelper.lastItemThreadLocal.get();
int startPos = positionAware.getPos();
writeBuffer.pushContext("CIPDataConnected");
// Simple Field (value)
writeSimpleField("value", value, writeUnsignedLong(writeBuffer, 32));
// Simple Field (tagStatus)
writeSimpleField("tagStatus", tagStatus, writeUnsignedInt(writeBuffer, 16));
writeBuffer.popContext("CIPDataConnected");
}
@Override
public int getLengthInBytes() {
return (int) Math.ceil((float) getLengthInBits() / 8.0);
}
@Override
public int getLengthInBits() {
int lengthInBits = 0;
CIPDataConnected _value = this;
boolean _lastItem = ThreadLocalHelper.lastItemThreadLocal.get();
// Simple field (value)
lengthInBits += 32;
// Simple field (tagStatus)
lengthInBits += 16;
return lengthInBits;
}
public static CIPDataConnected staticParse(ReadBuffer readBuffer, Object... args)
throws ParseException {
PositionAware positionAware = readBuffer;
if ((args == null) || (args.length != 1)) {
throw new PlcRuntimeException(
"Wrong number of arguments, expected 1, but got " + args.length);
}
Integer packetLength;
if (args[0] instanceof Integer) {
packetLength = (Integer) args[0];
} else if (args[0] instanceof String) {
packetLength = 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());
}
return staticParse(readBuffer, packetLength);
}
public static CIPDataConnected staticParse(ReadBuffer readBuffer, Integer packetLength)
throws ParseException {
readBuffer.pullContext("CIPDataConnected");
PositionAware positionAware = readBuffer;
int startPos = positionAware.getPos();
int curPos;
boolean _lastItem = ThreadLocalHelper.lastItemThreadLocal.get();
long value = readSimpleField("value", readUnsignedLong(readBuffer, 32));
int tagStatus = readSimpleField("tagStatus", readUnsignedInt(readBuffer, 16));
readBuffer.closeContext("CIPDataConnected");
// Create the instance
CIPDataConnected _cIPDataConnected;
_cIPDataConnected = new CIPDataConnected(value, tagStatus, packetLength);
return _cIPDataConnected;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof CIPDataConnected)) {
return false;
}
CIPDataConnected that = (CIPDataConnected) o;
return (getValue() == that.getValue()) && (getTagStatus() == that.getTagStatus()) && true;
}
@Override
public int hashCode() {
return Objects.hash(getValue(), getTagStatus());
}
@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";
}
}