blob: 3ba198e4c886f49ff8e02b0708e584fa3265e02a [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 CIPEncapsulationReadResponse struct {
Response *DF1ResponseMessage
Parent *CIPEncapsulationPacket
}
// The corresponding interface
type ICIPEncapsulationReadResponse interface {
LengthInBytes() uint16
LengthInBits() uint16
Serialize(writeBuffer utils.WriteBuffer) error
}
///////////////////////////////////////////////////////////
// Accessors for discriminator values.
///////////////////////////////////////////////////////////
func (m *CIPEncapsulationReadResponse) CommandType() uint16 {
return 0x0207
}
func (m *CIPEncapsulationReadResponse) InitializeParent(parent *CIPEncapsulationPacket, sessionHandle uint32, status uint32, senderContext []uint8, options uint32) {
m.Parent.SessionHandle = sessionHandle
m.Parent.Status = status
m.Parent.SenderContext = senderContext
m.Parent.Options = options
}
func NewCIPEncapsulationReadResponse(response *DF1ResponseMessage, sessionHandle uint32, status uint32, senderContext []uint8, options uint32) *CIPEncapsulationPacket {
child := &CIPEncapsulationReadResponse{
Response: response,
Parent: NewCIPEncapsulationPacket(sessionHandle, status, senderContext, options),
}
child.Parent.Child = child
return child.Parent
}
func CastCIPEncapsulationReadResponse(structType interface{}) *CIPEncapsulationReadResponse {
castFunc := func(typ interface{}) *CIPEncapsulationReadResponse {
if casted, ok := typ.(CIPEncapsulationReadResponse); ok {
return &casted
}
if casted, ok := typ.(*CIPEncapsulationReadResponse); ok {
return casted
}
if casted, ok := typ.(CIPEncapsulationPacket); ok {
return CastCIPEncapsulationReadResponse(casted.Child)
}
if casted, ok := typ.(*CIPEncapsulationPacket); ok {
return CastCIPEncapsulationReadResponse(casted.Child)
}
return nil
}
return castFunc(structType)
}
func (m *CIPEncapsulationReadResponse) GetTypeName() string {
return "CIPEncapsulationReadResponse"
}
func (m *CIPEncapsulationReadResponse) LengthInBits() uint16 {
return m.LengthInBitsConditional(false)
}
func (m *CIPEncapsulationReadResponse) LengthInBitsConditional(lastItem bool) uint16 {
lengthInBits := uint16(m.Parent.ParentLengthInBits())
// Simple field (response)
lengthInBits += m.Response.LengthInBits()
return lengthInBits
}
func (m *CIPEncapsulationReadResponse) LengthInBytes() uint16 {
return m.LengthInBits() / 8
}
func CIPEncapsulationReadResponseParse(readBuffer utils.ReadBuffer, len uint16) (*CIPEncapsulationPacket, error) {
if pullErr := readBuffer.PullContext("CIPEncapsulationReadResponse"); pullErr != nil {
return nil, pullErr
}
if pullErr := readBuffer.PullContext("response"); pullErr != nil {
return nil, pullErr
}
// Simple Field (response)
response, _responseErr := DF1ResponseMessageParse(readBuffer, len)
if _responseErr != nil {
return nil, errors.Wrap(_responseErr, "Error parsing 'response' field")
}
if closeErr := readBuffer.CloseContext("response"); closeErr != nil {
return nil, closeErr
}
if closeErr := readBuffer.CloseContext("CIPEncapsulationReadResponse"); closeErr != nil {
return nil, closeErr
}
// Create a partially initialized instance
_child := &CIPEncapsulationReadResponse{
Response: response,
Parent: &CIPEncapsulationPacket{},
}
_child.Parent.Child = _child
return _child.Parent, nil
}
func (m *CIPEncapsulationReadResponse) Serialize(writeBuffer utils.WriteBuffer) error {
ser := func() error {
if pushErr := writeBuffer.PushContext("CIPEncapsulationReadResponse"); pushErr != nil {
return pushErr
}
// Simple Field (response)
if pushErr := writeBuffer.PushContext("response"); pushErr != nil {
return pushErr
}
_responseErr := m.Response.Serialize(writeBuffer)
if popErr := writeBuffer.PopContext("response"); popErr != nil {
return popErr
}
if _responseErr != nil {
return errors.Wrap(_responseErr, "Error serializing 'response' field")
}
if popErr := writeBuffer.PopContext("CIPEncapsulationReadResponse"); popErr != nil {
return popErr
}
return nil
}
return m.Parent.SerializeParent(writeBuffer, m, ser)
}
func (m *CIPEncapsulationReadResponse) String() string {
if m == nil {
return "<nil>"
}
buffer := utils.NewBoxedWriteBufferWithOptions(true, true)
m.Serialize(buffer)
return buffer.GetBox().String()
}