blob: 5b0eb2da19cda035b97caef9adcb9e2789d90dbd [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 ApduDataExtPropertyValueResponse struct {
ObjectIndex uint8
PropertyId uint8
Count uint8
Index uint16
Data []uint8
Parent *ApduDataExt
}
// The corresponding interface
type IApduDataExtPropertyValueResponse interface {
LengthInBytes() uint16
LengthInBits() uint16
Serialize(writeBuffer utils.WriteBuffer) error
}
///////////////////////////////////////////////////////////
// Accessors for discriminator values.
///////////////////////////////////////////////////////////
func (m *ApduDataExtPropertyValueResponse) ExtApciType() uint8 {
return 0x16
}
func (m *ApduDataExtPropertyValueResponse) InitializeParent(parent *ApduDataExt) {
}
func NewApduDataExtPropertyValueResponse(objectIndex uint8, propertyId uint8, count uint8, index uint16, data []uint8) *ApduDataExt {
child := &ApduDataExtPropertyValueResponse{
ObjectIndex: objectIndex,
PropertyId: propertyId,
Count: count,
Index: index,
Data: data,
Parent: NewApduDataExt(),
}
child.Parent.Child = child
return child.Parent
}
func CastApduDataExtPropertyValueResponse(structType interface{}) *ApduDataExtPropertyValueResponse {
castFunc := func(typ interface{}) *ApduDataExtPropertyValueResponse {
if casted, ok := typ.(ApduDataExtPropertyValueResponse); ok {
return &casted
}
if casted, ok := typ.(*ApduDataExtPropertyValueResponse); ok {
return casted
}
if casted, ok := typ.(ApduDataExt); ok {
return CastApduDataExtPropertyValueResponse(casted.Child)
}
if casted, ok := typ.(*ApduDataExt); ok {
return CastApduDataExtPropertyValueResponse(casted.Child)
}
return nil
}
return castFunc(structType)
}
func (m *ApduDataExtPropertyValueResponse) GetTypeName() string {
return "ApduDataExtPropertyValueResponse"
}
func (m *ApduDataExtPropertyValueResponse) LengthInBits() uint16 {
return m.LengthInBitsConditional(false)
}
func (m *ApduDataExtPropertyValueResponse) LengthInBitsConditional(lastItem bool) uint16 {
lengthInBits := uint16(m.Parent.ParentLengthInBits())
// Simple field (objectIndex)
lengthInBits += 8
// Simple field (propertyId)
lengthInBits += 8
// Simple field (count)
lengthInBits += 4
// Simple field (index)
lengthInBits += 12
// Array field
if len(m.Data) > 0 {
lengthInBits += 8 * uint16(len(m.Data))
}
return lengthInBits
}
func (m *ApduDataExtPropertyValueResponse) LengthInBytes() uint16 {
return m.LengthInBits() / 8
}
func ApduDataExtPropertyValueResponseParse(readBuffer utils.ReadBuffer, length uint8) (*ApduDataExt, error) {
if pullErr := readBuffer.PullContext("ApduDataExtPropertyValueResponse"); pullErr != nil {
return nil, pullErr
}
// Simple Field (objectIndex)
objectIndex, _objectIndexErr := readBuffer.ReadUint8("objectIndex", 8)
if _objectIndexErr != nil {
return nil, errors.Wrap(_objectIndexErr, "Error parsing 'objectIndex' field")
}
// Simple Field (propertyId)
propertyId, _propertyIdErr := readBuffer.ReadUint8("propertyId", 8)
if _propertyIdErr != nil {
return nil, errors.Wrap(_propertyIdErr, "Error parsing 'propertyId' field")
}
// Simple Field (count)
count, _countErr := readBuffer.ReadUint8("count", 4)
if _countErr != nil {
return nil, errors.Wrap(_countErr, "Error parsing 'count' field")
}
// Simple Field (index)
index, _indexErr := readBuffer.ReadUint16("index", 12)
if _indexErr != nil {
return nil, errors.Wrap(_indexErr, "Error parsing 'index' field")
}
// Array field (data)
if pullErr := readBuffer.PullContext("data", utils.WithRenderAsList(true)); pullErr != nil {
return nil, pullErr
}
// Count array
data := make([]uint8, uint16(length)-uint16(uint16(5)))
for curItem := uint16(0); curItem < uint16(uint16(length)-uint16(uint16(5))); curItem++ {
_item, _err := readBuffer.ReadUint8("", 8)
if _err != nil {
return nil, errors.Wrap(_err, "Error parsing 'data' field")
}
data[curItem] = _item
}
if closeErr := readBuffer.CloseContext("data", utils.WithRenderAsList(true)); closeErr != nil {
return nil, closeErr
}
if closeErr := readBuffer.CloseContext("ApduDataExtPropertyValueResponse"); closeErr != nil {
return nil, closeErr
}
// Create a partially initialized instance
_child := &ApduDataExtPropertyValueResponse{
ObjectIndex: objectIndex,
PropertyId: propertyId,
Count: count,
Index: index,
Data: data,
Parent: &ApduDataExt{},
}
_child.Parent.Child = _child
return _child.Parent, nil
}
func (m *ApduDataExtPropertyValueResponse) Serialize(writeBuffer utils.WriteBuffer) error {
ser := func() error {
if pushErr := writeBuffer.PushContext("ApduDataExtPropertyValueResponse"); pushErr != nil {
return pushErr
}
// Simple Field (objectIndex)
objectIndex := uint8(m.ObjectIndex)
_objectIndexErr := writeBuffer.WriteUint8("objectIndex", 8, (objectIndex))
if _objectIndexErr != nil {
return errors.Wrap(_objectIndexErr, "Error serializing 'objectIndex' field")
}
// Simple Field (propertyId)
propertyId := uint8(m.PropertyId)
_propertyIdErr := writeBuffer.WriteUint8("propertyId", 8, (propertyId))
if _propertyIdErr != nil {
return errors.Wrap(_propertyIdErr, "Error serializing 'propertyId' field")
}
// Simple Field (count)
count := uint8(m.Count)
_countErr := writeBuffer.WriteUint8("count", 4, (count))
if _countErr != nil {
return errors.Wrap(_countErr, "Error serializing 'count' field")
}
// Simple Field (index)
index := uint16(m.Index)
_indexErr := writeBuffer.WriteUint16("index", 12, (index))
if _indexErr != nil {
return errors.Wrap(_indexErr, "Error serializing 'index' field")
}
// 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("ApduDataExtPropertyValueResponse"); popErr != nil {
return popErr
}
return nil
}
return m.Parent.SerializeParent(writeBuffer, m, ser)
}
func (m *ApduDataExtPropertyValueResponse) String() string {
if m == nil {
return "<nil>"
}
buffer := utils.NewBoxedWriteBufferWithOptions(true, true)
m.Serialize(buffer)
return buffer.GetBox().String()
}