blob: 5375f95523843f0d7443c3437e453f6510759cbc [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 Services struct {
ServiceNb uint16
Offsets []uint16
Services []*CipService
}
// The corresponding interface
type IServices interface {
LengthInBytes() uint16
LengthInBits() uint16
Serialize(writeBuffer utils.WriteBuffer) error
}
func NewServices(serviceNb uint16, offsets []uint16, services []*CipService) *Services {
return &Services{ServiceNb: serviceNb, Offsets: offsets, Services: services}
}
func CastServices(structType interface{}) *Services {
castFunc := func(typ interface{}) *Services {
if casted, ok := typ.(Services); ok {
return &casted
}
if casted, ok := typ.(*Services); ok {
return casted
}
return nil
}
return castFunc(structType)
}
func (m *Services) GetTypeName() string {
return "Services"
}
func (m *Services) LengthInBits() uint16 {
return m.LengthInBitsConditional(false)
}
func (m *Services) LengthInBitsConditional(lastItem bool) uint16 {
lengthInBits := uint16(0)
// Simple field (serviceNb)
lengthInBits += 16
// Array field
if len(m.Offsets) > 0 {
lengthInBits += 16 * uint16(len(m.Offsets))
}
// Array field
if len(m.Services) > 0 {
for i, element := range m.Services {
last := i == len(m.Services)-1
lengthInBits += element.LengthInBitsConditional(last)
}
}
return lengthInBits
}
func (m *Services) LengthInBytes() uint16 {
return m.LengthInBits() / 8
}
func ServicesParse(readBuffer utils.ReadBuffer, servicesLen uint16) (*Services, error) {
if pullErr := readBuffer.PullContext("Services"); pullErr != nil {
return nil, pullErr
}
// Simple Field (serviceNb)
serviceNb, _serviceNbErr := readBuffer.ReadUint16("serviceNb", 16)
if _serviceNbErr != nil {
return nil, errors.Wrap(_serviceNbErr, "Error parsing 'serviceNb' field")
}
// Array field (offsets)
if pullErr := readBuffer.PullContext("offsets", utils.WithRenderAsList(true)); pullErr != nil {
return nil, pullErr
}
// Count array
offsets := make([]uint16, serviceNb)
for curItem := uint16(0); curItem < uint16(serviceNb); curItem++ {
_item, _err := readBuffer.ReadUint16("", 16)
if _err != nil {
return nil, errors.Wrap(_err, "Error parsing 'offsets' field")
}
offsets[curItem] = _item
}
if closeErr := readBuffer.CloseContext("offsets", utils.WithRenderAsList(true)); closeErr != nil {
return nil, closeErr
}
// Array field (services)
if pullErr := readBuffer.PullContext("services", utils.WithRenderAsList(true)); pullErr != nil {
return nil, pullErr
}
// Count array
services := make([]*CipService, serviceNb)
for curItem := uint16(0); curItem < uint16(serviceNb); curItem++ {
_item, _err := CipServiceParse(readBuffer, uint16(servicesLen)/uint16(serviceNb))
if _err != nil {
return nil, errors.Wrap(_err, "Error parsing 'services' field")
}
services[curItem] = _item
}
if closeErr := readBuffer.CloseContext("services", utils.WithRenderAsList(true)); closeErr != nil {
return nil, closeErr
}
if closeErr := readBuffer.CloseContext("Services"); closeErr != nil {
return nil, closeErr
}
// Create the instance
return NewServices(serviceNb, offsets, services), nil
}
func (m *Services) Serialize(writeBuffer utils.WriteBuffer) error {
if pushErr := writeBuffer.PushContext("Services"); pushErr != nil {
return pushErr
}
// Simple Field (serviceNb)
serviceNb := uint16(m.ServiceNb)
_serviceNbErr := writeBuffer.WriteUint16("serviceNb", 16, (serviceNb))
if _serviceNbErr != nil {
return errors.Wrap(_serviceNbErr, "Error serializing 'serviceNb' field")
}
// Array Field (offsets)
if m.Offsets != nil {
if pushErr := writeBuffer.PushContext("offsets", utils.WithRenderAsList(true)); pushErr != nil {
return pushErr
}
for _, _element := range m.Offsets {
_elementErr := writeBuffer.WriteUint16("", 16, _element)
if _elementErr != nil {
return errors.Wrap(_elementErr, "Error serializing 'offsets' field")
}
}
if popErr := writeBuffer.PopContext("offsets", utils.WithRenderAsList(true)); popErr != nil {
return popErr
}
}
// Array Field (services)
if m.Services != nil {
if pushErr := writeBuffer.PushContext("services", utils.WithRenderAsList(true)); pushErr != nil {
return pushErr
}
for _, _element := range m.Services {
_elementErr := _element.Serialize(writeBuffer)
if _elementErr != nil {
return errors.Wrap(_elementErr, "Error serializing 'services' field")
}
}
if popErr := writeBuffer.PopContext("services", utils.WithRenderAsList(true)); popErr != nil {
return popErr
}
}
if popErr := writeBuffer.PopContext("Services"); popErr != nil {
return popErr
}
return nil
}
func (m *Services) String() string {
if m == nil {
return "<nil>"
}
buffer := utils.NewBoxedWriteBufferWithOptions(true, true)
m.Serialize(buffer)
return buffer.GetBox().String()
}