blob: e9187659743ea833fdacd02d30b8e9949e2e33c9 [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 DescriptionRequest struct {
HpaiControlEndpoint *HPAIControlEndpoint
Parent *KnxNetIpMessage
}
// The corresponding interface
type IDescriptionRequest interface {
LengthInBytes() uint16
LengthInBits() uint16
Serialize(writeBuffer utils.WriteBuffer) error
}
///////////////////////////////////////////////////////////
// Accessors for discriminator values.
///////////////////////////////////////////////////////////
func (m *DescriptionRequest) MsgType() uint16 {
return 0x0203
}
func (m *DescriptionRequest) InitializeParent(parent *KnxNetIpMessage) {
}
func NewDescriptionRequest(hpaiControlEndpoint *HPAIControlEndpoint) *KnxNetIpMessage {
child := &DescriptionRequest{
HpaiControlEndpoint: hpaiControlEndpoint,
Parent: NewKnxNetIpMessage(),
}
child.Parent.Child = child
return child.Parent
}
func CastDescriptionRequest(structType interface{}) *DescriptionRequest {
castFunc := func(typ interface{}) *DescriptionRequest {
if casted, ok := typ.(DescriptionRequest); ok {
return &casted
}
if casted, ok := typ.(*DescriptionRequest); ok {
return casted
}
if casted, ok := typ.(KnxNetIpMessage); ok {
return CastDescriptionRequest(casted.Child)
}
if casted, ok := typ.(*KnxNetIpMessage); ok {
return CastDescriptionRequest(casted.Child)
}
return nil
}
return castFunc(structType)
}
func (m *DescriptionRequest) GetTypeName() string {
return "DescriptionRequest"
}
func (m *DescriptionRequest) LengthInBits() uint16 {
return m.LengthInBitsConditional(false)
}
func (m *DescriptionRequest) LengthInBitsConditional(lastItem bool) uint16 {
lengthInBits := uint16(m.Parent.ParentLengthInBits())
// Simple field (hpaiControlEndpoint)
lengthInBits += m.HpaiControlEndpoint.LengthInBits()
return lengthInBits
}
func (m *DescriptionRequest) LengthInBytes() uint16 {
return m.LengthInBits() / 8
}
func DescriptionRequestParse(readBuffer utils.ReadBuffer) (*KnxNetIpMessage, error) {
if pullErr := readBuffer.PullContext("DescriptionRequest"); pullErr != nil {
return nil, pullErr
}
if pullErr := readBuffer.PullContext("hpaiControlEndpoint"); pullErr != nil {
return nil, pullErr
}
// Simple Field (hpaiControlEndpoint)
hpaiControlEndpoint, _hpaiControlEndpointErr := HPAIControlEndpointParse(readBuffer)
if _hpaiControlEndpointErr != nil {
return nil, errors.Wrap(_hpaiControlEndpointErr, "Error parsing 'hpaiControlEndpoint' field")
}
if closeErr := readBuffer.CloseContext("hpaiControlEndpoint"); closeErr != nil {
return nil, closeErr
}
if closeErr := readBuffer.CloseContext("DescriptionRequest"); closeErr != nil {
return nil, closeErr
}
// Create a partially initialized instance
_child := &DescriptionRequest{
HpaiControlEndpoint: hpaiControlEndpoint,
Parent: &KnxNetIpMessage{},
}
_child.Parent.Child = _child
return _child.Parent, nil
}
func (m *DescriptionRequest) Serialize(writeBuffer utils.WriteBuffer) error {
ser := func() error {
if pushErr := writeBuffer.PushContext("DescriptionRequest"); pushErr != nil {
return pushErr
}
// Simple Field (hpaiControlEndpoint)
if pushErr := writeBuffer.PushContext("hpaiControlEndpoint"); pushErr != nil {
return pushErr
}
_hpaiControlEndpointErr := m.HpaiControlEndpoint.Serialize(writeBuffer)
if popErr := writeBuffer.PopContext("hpaiControlEndpoint"); popErr != nil {
return popErr
}
if _hpaiControlEndpointErr != nil {
return errors.Wrap(_hpaiControlEndpointErr, "Error serializing 'hpaiControlEndpoint' field")
}
if popErr := writeBuffer.PopContext("DescriptionRequest"); popErr != nil {
return popErr
}
return nil
}
return m.Parent.SerializeParent(writeBuffer, m, ser)
}
func (m *DescriptionRequest) String() string {
buffer := utils.NewBoxedWriteBufferWithOptions(true, true)
m.Serialize(buffer)
return buffer.GetBox().String()
}