blob: a2973aa927ca1a1fe9b6030dd264b95d8692d3e0 [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 BACnetTagApplicationReal struct {
Value float32
Parent *BACnetTag
}
// The corresponding interface
type IBACnetTagApplicationReal interface {
LengthInBytes() uint16
LengthInBits() uint16
Serialize(writeBuffer utils.WriteBuffer) error
}
///////////////////////////////////////////////////////////
// Accessors for discriminator values.
///////////////////////////////////////////////////////////
func (m *BACnetTagApplicationReal) ContextSpecificTag() uint8 {
return 0
}
func (m *BACnetTagApplicationReal) 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 NewBACnetTagApplicationReal(value float32, typeOrTagNumber uint8, lengthValueType uint8, extTagNumber *uint8, extLength *uint8) *BACnetTag {
child := &BACnetTagApplicationReal{
Value: value,
Parent: NewBACnetTag(typeOrTagNumber, lengthValueType, extTagNumber, extLength),
}
child.Parent.Child = child
return child.Parent
}
func CastBACnetTagApplicationReal(structType interface{}) *BACnetTagApplicationReal {
castFunc := func(typ interface{}) *BACnetTagApplicationReal {
if casted, ok := typ.(BACnetTagApplicationReal); ok {
return &casted
}
if casted, ok := typ.(*BACnetTagApplicationReal); ok {
return casted
}
if casted, ok := typ.(BACnetTag); ok {
return CastBACnetTagApplicationReal(casted.Child)
}
if casted, ok := typ.(*BACnetTag); ok {
return CastBACnetTagApplicationReal(casted.Child)
}
return nil
}
return castFunc(structType)
}
func (m *BACnetTagApplicationReal) GetTypeName() string {
return "BACnetTagApplicationReal"
}
func (m *BACnetTagApplicationReal) LengthInBits() uint16 {
return m.LengthInBitsConditional(false)
}
func (m *BACnetTagApplicationReal) LengthInBitsConditional(lastItem bool) uint16 {
lengthInBits := uint16(m.Parent.ParentLengthInBits())
// Simple field (value)
lengthInBits += 32
return lengthInBits
}
func (m *BACnetTagApplicationReal) LengthInBytes() uint16 {
return m.LengthInBits() / 8
}
func BACnetTagApplicationRealParse(readBuffer utils.ReadBuffer, lengthValueType uint8, extLength uint8) (*BACnetTag, error) {
if pullErr := readBuffer.PullContext("BACnetTagApplicationReal"); pullErr != nil {
return nil, pullErr
}
// Simple Field (value)
value, _valueErr := readBuffer.ReadFloat32("value", true, 8, 23)
if _valueErr != nil {
return nil, errors.Wrap(_valueErr, "Error parsing 'value' field")
}
if closeErr := readBuffer.CloseContext("BACnetTagApplicationReal"); closeErr != nil {
return nil, closeErr
}
// Create a partially initialized instance
_child := &BACnetTagApplicationReal{
Value: value,
Parent: &BACnetTag{},
}
_child.Parent.Child = _child
return _child.Parent, nil
}
func (m *BACnetTagApplicationReal) Serialize(writeBuffer utils.WriteBuffer) error {
ser := func() error {
if pushErr := writeBuffer.PushContext("BACnetTagApplicationReal"); pushErr != nil {
return pushErr
}
// Simple Field (value)
value := float32(m.Value)
_valueErr := writeBuffer.WriteFloat32("value", 32, (value))
if _valueErr != nil {
return errors.Wrap(_valueErr, "Error serializing 'value' field")
}
if popErr := writeBuffer.PopContext("BACnetTagApplicationReal"); popErr != nil {
return popErr
}
return nil
}
return m.Parent.SerializeParent(writeBuffer, m, ser)
}
func (m *BACnetTagApplicationReal) String() string {
if m == nil {
return "<nil>"
}
buffer := utils.NewBoxedWriteBufferWithOptions(true, true)
m.Serialize(buffer)
return buffer.GetBox().String()
}