blob: 5da49d5c7436a15a47197cbf2eb92e6e0d9869b9 [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
//
// 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 model
import (
"github.com/apache/plc4x/plc4go/internal/plc4go/spi/utils"
"github.com/pkg/errors"
)
// Code generated by build-utils. DO NOT EDIT.
// The data-structure of this message
type DF1CommandResponseMessageProtectedTypedLogicalRead struct {
Data []uint8
Parent *DF1ResponseMessage
}
// The corresponding interface
type IDF1CommandResponseMessageProtectedTypedLogicalRead interface {
LengthInBytes() uint16
LengthInBits() uint16
Serialize(writeBuffer utils.WriteBuffer) error
}
///////////////////////////////////////////////////////////
// Accessors for discriminator values.
///////////////////////////////////////////////////////////
func (m *DF1CommandResponseMessageProtectedTypedLogicalRead) CommandCode() uint8 {
return 0x4F
}
func (m *DF1CommandResponseMessageProtectedTypedLogicalRead) InitializeParent(parent *DF1ResponseMessage, destinationAddress uint8, sourceAddress uint8, status uint8, transactionCounter uint16) {
m.Parent.DestinationAddress = destinationAddress
m.Parent.SourceAddress = sourceAddress
m.Parent.Status = status
m.Parent.TransactionCounter = transactionCounter
}
func NewDF1CommandResponseMessageProtectedTypedLogicalRead(data []uint8, destinationAddress uint8, sourceAddress uint8, status uint8, transactionCounter uint16) *DF1ResponseMessage {
child := &DF1CommandResponseMessageProtectedTypedLogicalRead{
Data: data,
Parent: NewDF1ResponseMessage(destinationAddress, sourceAddress, status, transactionCounter),
}
child.Parent.Child = child
return child.Parent
}
func CastDF1CommandResponseMessageProtectedTypedLogicalRead(structType interface{}) *DF1CommandResponseMessageProtectedTypedLogicalRead {
castFunc := func(typ interface{}) *DF1CommandResponseMessageProtectedTypedLogicalRead {
if casted, ok := typ.(DF1CommandResponseMessageProtectedTypedLogicalRead); ok {
return &casted
}
if casted, ok := typ.(*DF1CommandResponseMessageProtectedTypedLogicalRead); ok {
return casted
}
if casted, ok := typ.(DF1ResponseMessage); ok {
return CastDF1CommandResponseMessageProtectedTypedLogicalRead(casted.Child)
}
if casted, ok := typ.(*DF1ResponseMessage); ok {
return CastDF1CommandResponseMessageProtectedTypedLogicalRead(casted.Child)
}
return nil
}
return castFunc(structType)
}
func (m *DF1CommandResponseMessageProtectedTypedLogicalRead) GetTypeName() string {
return "DF1CommandResponseMessageProtectedTypedLogicalRead"
}
func (m *DF1CommandResponseMessageProtectedTypedLogicalRead) LengthInBits() uint16 {
return m.LengthInBitsConditional(false)
}
func (m *DF1CommandResponseMessageProtectedTypedLogicalRead) LengthInBitsConditional(lastItem bool) uint16 {
lengthInBits := uint16(m.Parent.ParentLengthInBits())
// Array field
if len(m.Data) > 0 {
lengthInBits += 8 * uint16(len(m.Data))
}
return lengthInBits
}
func (m *DF1CommandResponseMessageProtectedTypedLogicalRead) LengthInBytes() uint16 {
return m.LengthInBits() / 8
}
func DF1CommandResponseMessageProtectedTypedLogicalReadParse(readBuffer utils.ReadBuffer, payloadLength uint16, status uint8) (*DF1ResponseMessage, error) {
if pullErr := readBuffer.PullContext("DF1CommandResponseMessageProtectedTypedLogicalRead"); pullErr != nil {
return nil, pullErr
}
// Array field (data)
if pullErr := readBuffer.PullContext("data", utils.WithRenderAsList(true)); pullErr != nil {
return nil, pullErr
}
// Length array
data := make([]uint8, 0)
_dataLength := uint16(payloadLength) - uint16(uint16(8))
_dataEndPos := readBuffer.GetPos() + uint16(_dataLength)
for readBuffer.GetPos() < _dataEndPos {
_item, _err := readBuffer.ReadUint8("", 8)
if _err != nil {
return nil, errors.Wrap(_err, "Error parsing 'data' field")
}
data = append(data, _item)
}
if closeErr := readBuffer.CloseContext("data", utils.WithRenderAsList(true)); closeErr != nil {
return nil, closeErr
}
if closeErr := readBuffer.CloseContext("DF1CommandResponseMessageProtectedTypedLogicalRead"); closeErr != nil {
return nil, closeErr
}
// Create a partially initialized instance
_child := &DF1CommandResponseMessageProtectedTypedLogicalRead{
Data: data,
Parent: &DF1ResponseMessage{},
}
_child.Parent.Child = _child
return _child.Parent, nil
}
func (m *DF1CommandResponseMessageProtectedTypedLogicalRead) Serialize(writeBuffer utils.WriteBuffer) error {
ser := func() error {
if pushErr := writeBuffer.PushContext("DF1CommandResponseMessageProtectedTypedLogicalRead"); pushErr != nil {
return pushErr
}
// Array Field (data)
if m.Data != nil {
if pushErr := writeBuffer.PushContext("data", utils.WithRenderAsList(true)); pushErr != nil {
return pushErr
}
for _, _element := range m.Data {
_elementErr := writeBuffer.WriteUint8("", 8, _element)
if _elementErr != nil {
return errors.Wrap(_elementErr, "Error serializing 'data' field")
}
}
if popErr := writeBuffer.PopContext("data", utils.WithRenderAsList(true)); popErr != nil {
return popErr
}
}
if popErr := writeBuffer.PopContext("DF1CommandResponseMessageProtectedTypedLogicalRead"); popErr != nil {
return popErr
}
return nil
}
return m.Parent.SerializeParent(writeBuffer, m, ser)
}
func (m *DF1CommandResponseMessageProtectedTypedLogicalRead) String() string {
if m == nil {
return "<nil>"
}
buffer := utils.NewBoxedWriteBufferWithOptions(true, true)
m.Serialize(buffer)
return buffer.GetBox().String()
}