blob: a73b3e01f483a99f418b11ca7cb67ca50c1aeb0c [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 BACnetTagApplicationSignedInteger struct {
Data []int8
Parent *BACnetTag
}
// The corresponding interface
type IBACnetTagApplicationSignedInteger interface {
LengthInBytes() uint16
LengthInBits() uint16
Serialize(writeBuffer utils.WriteBuffer) error
}
///////////////////////////////////////////////////////////
// Accessors for discriminator values.
///////////////////////////////////////////////////////////
func (m *BACnetTagApplicationSignedInteger) ContextSpecificTag() uint8 {
return 0
}
func (m *BACnetTagApplicationSignedInteger) InitializeParent(parent *BACnetTag, typeOrTagNumber uint8, lengthValueType uint8, extTagNumber *uint8, extLength *uint8) {
m.Parent.TypeOrTagNumber = typeOrTagNumber
m.Parent.LengthValueType = lengthValueType
m.Parent.ExtTagNumber = extTagNumber
m.Parent.ExtLength = extLength
}
func NewBACnetTagApplicationSignedInteger(data []int8, typeOrTagNumber uint8, lengthValueType uint8, extTagNumber *uint8, extLength *uint8) *BACnetTag {
child := &BACnetTagApplicationSignedInteger{
Data: data,
Parent: NewBACnetTag(typeOrTagNumber, lengthValueType, extTagNumber, extLength),
}
child.Parent.Child = child
return child.Parent
}
func CastBACnetTagApplicationSignedInteger(structType interface{}) *BACnetTagApplicationSignedInteger {
castFunc := func(typ interface{}) *BACnetTagApplicationSignedInteger {
if casted, ok := typ.(BACnetTagApplicationSignedInteger); ok {
return &casted
}
if casted, ok := typ.(*BACnetTagApplicationSignedInteger); ok {
return casted
}
if casted, ok := typ.(BACnetTag); ok {
return CastBACnetTagApplicationSignedInteger(casted.Child)
}
if casted, ok := typ.(*BACnetTag); ok {
return CastBACnetTagApplicationSignedInteger(casted.Child)
}
return nil
}
return castFunc(structType)
}
func (m *BACnetTagApplicationSignedInteger) GetTypeName() string {
return "BACnetTagApplicationSignedInteger"
}
func (m *BACnetTagApplicationSignedInteger) LengthInBits() uint16 {
return m.LengthInBitsConditional(false)
}
func (m *BACnetTagApplicationSignedInteger) 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 *BACnetTagApplicationSignedInteger) LengthInBytes() uint16 {
return m.LengthInBits() / 8
}
func BACnetTagApplicationSignedIntegerParse(readBuffer utils.ReadBuffer, lengthValueType uint8, extLength uint8) (*BACnetTag, error) {
if pullErr := readBuffer.PullContext("BACnetTagApplicationSignedInteger"); 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([]int8, 0)
_dataLength := utils.InlineIf(bool(bool((lengthValueType) == (5))), func() uint16 { return uint16(extLength) }, func() uint16 { return uint16(lengthValueType) })
_dataEndPos := readBuffer.GetPos() + uint16(_dataLength)
for readBuffer.GetPos() < _dataEndPos {
_item, _err := readBuffer.ReadInt8("", 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("BACnetTagApplicationSignedInteger"); closeErr != nil {
return nil, closeErr
}
// Create a partially initialized instance
_child := &BACnetTagApplicationSignedInteger{
Data: data,
Parent: &BACnetTag{},
}
_child.Parent.Child = _child
return _child.Parent, nil
}
func (m *BACnetTagApplicationSignedInteger) Serialize(writeBuffer utils.WriteBuffer) error {
ser := func() error {
if pushErr := writeBuffer.PushContext("BACnetTagApplicationSignedInteger"); 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.WriteInt8("", 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("BACnetTagApplicationSignedInteger"); popErr != nil {
return popErr
}
return nil
}
return m.Parent.SerializeParent(writeBuffer, m, ser)
}
func (m *BACnetTagApplicationSignedInteger) String() string {
if m == nil {
return "<nil>"
}
buffer := utils.NewBoxedWriteBufferWithOptions(true, true)
m.Serialize(buffer)
return buffer.GetBox().String()
}