blob: ae06906fc8ca598c39461b646c451f24bbea34cd [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 ModbusPDUReportServerIdResponse struct {
Value []int8
Parent *ModbusPDU
}
// The corresponding interface
type IModbusPDUReportServerIdResponse interface {
LengthInBytes() uint16
LengthInBits() uint16
Serialize(writeBuffer utils.WriteBuffer) error
}
///////////////////////////////////////////////////////////
// Accessors for discriminator values.
///////////////////////////////////////////////////////////
func (m *ModbusPDUReportServerIdResponse) ErrorFlag() bool {
return false
}
func (m *ModbusPDUReportServerIdResponse) FunctionFlag() uint8 {
return 0x11
}
func (m *ModbusPDUReportServerIdResponse) Response() bool {
return true
}
func (m *ModbusPDUReportServerIdResponse) InitializeParent(parent *ModbusPDU) {
}
func NewModbusPDUReportServerIdResponse(value []int8) *ModbusPDU {
child := &ModbusPDUReportServerIdResponse{
Value: value,
Parent: NewModbusPDU(),
}
child.Parent.Child = child
return child.Parent
}
func CastModbusPDUReportServerIdResponse(structType interface{}) *ModbusPDUReportServerIdResponse {
castFunc := func(typ interface{}) *ModbusPDUReportServerIdResponse {
if casted, ok := typ.(ModbusPDUReportServerIdResponse); ok {
return &casted
}
if casted, ok := typ.(*ModbusPDUReportServerIdResponse); ok {
return casted
}
if casted, ok := typ.(ModbusPDU); ok {
return CastModbusPDUReportServerIdResponse(casted.Child)
}
if casted, ok := typ.(*ModbusPDU); ok {
return CastModbusPDUReportServerIdResponse(casted.Child)
}
return nil
}
return castFunc(structType)
}
func (m *ModbusPDUReportServerIdResponse) GetTypeName() string {
return "ModbusPDUReportServerIdResponse"
}
func (m *ModbusPDUReportServerIdResponse) LengthInBits() uint16 {
return m.LengthInBitsConditional(false)
}
func (m *ModbusPDUReportServerIdResponse) LengthInBitsConditional(lastItem bool) uint16 {
lengthInBits := uint16(m.Parent.ParentLengthInBits())
// Implicit Field (byteCount)
lengthInBits += 8
// Array field
if len(m.Value) > 0 {
lengthInBits += 8 * uint16(len(m.Value))
}
return lengthInBits
}
func (m *ModbusPDUReportServerIdResponse) LengthInBytes() uint16 {
return m.LengthInBits() / 8
}
func ModbusPDUReportServerIdResponseParse(readBuffer utils.ReadBuffer) (*ModbusPDU, error) {
if pullErr := readBuffer.PullContext("ModbusPDUReportServerIdResponse"); pullErr != nil {
return nil, pullErr
}
// Implicit Field (byteCount) (Used for parsing, but it's value is not stored as it's implicitly given by the objects content)
byteCount, _byteCountErr := readBuffer.ReadUint8("byteCount", 8)
_ = byteCount
if _byteCountErr != nil {
return nil, errors.Wrap(_byteCountErr, "Error parsing 'byteCount' field")
}
// Array field (value)
if pullErr := readBuffer.PullContext("value", utils.WithRenderAsList(true)); pullErr != nil {
return nil, pullErr
}
// Count array
value := make([]int8, byteCount)
for curItem := uint16(0); curItem < uint16(byteCount); curItem++ {
_item, _err := readBuffer.ReadInt8("", 8)
if _err != nil {
return nil, errors.Wrap(_err, "Error parsing 'value' field")
}
value[curItem] = _item
}
if closeErr := readBuffer.CloseContext("value", utils.WithRenderAsList(true)); closeErr != nil {
return nil, closeErr
}
if closeErr := readBuffer.CloseContext("ModbusPDUReportServerIdResponse"); closeErr != nil {
return nil, closeErr
}
// Create a partially initialized instance
_child := &ModbusPDUReportServerIdResponse{
Value: value,
Parent: &ModbusPDU{},
}
_child.Parent.Child = _child
return _child.Parent, nil
}
func (m *ModbusPDUReportServerIdResponse) Serialize(writeBuffer utils.WriteBuffer) error {
ser := func() error {
if pushErr := writeBuffer.PushContext("ModbusPDUReportServerIdResponse"); pushErr != nil {
return pushErr
}
// Implicit Field (byteCount) (Used for parsing, but it's value is not stored as it's implicitly given by the objects content)
byteCount := uint8(uint8(len(m.Value)))
_byteCountErr := writeBuffer.WriteUint8("byteCount", 8, (byteCount))
if _byteCountErr != nil {
return errors.Wrap(_byteCountErr, "Error serializing 'byteCount' field")
}
// Array Field (value)
if m.Value != nil {
if pushErr := writeBuffer.PushContext("value", utils.WithRenderAsList(true)); pushErr != nil {
return pushErr
}
for _, _element := range m.Value {
_elementErr := writeBuffer.WriteInt8("", 8, _element)
if _elementErr != nil {
return errors.Wrap(_elementErr, "Error serializing 'value' field")
}
}
if popErr := writeBuffer.PopContext("value", utils.WithRenderAsList(true)); popErr != nil {
return popErr
}
}
if popErr := writeBuffer.PopContext("ModbusPDUReportServerIdResponse"); popErr != nil {
return popErr
}
return nil
}
return m.Parent.SerializeParent(writeBuffer, m, ser)
}
func (m *ModbusPDUReportServerIdResponse) String() string {
if m == nil {
return "<nil>"
}
buffer := utils.NewBoxedWriteBufferWithOptions(true, true)
m.Serialize(buffer)
return buffer.GetBox().String()
}