blob: 7bce633860e947a929774d2f6b5d376430c220a2 [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
*
* https://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 (
"context"
stdErrors "errors"
"fmt"
"github.com/pkg/errors"
"github.com/rs/zerolog"
. "github.com/apache/plc4x/plc4go/spi/codegen/fields"
. "github.com/apache/plc4x/plc4go/spi/codegen/io"
"github.com/apache/plc4x/plc4go/spi/utils"
)
// Code generated by code-generation. DO NOT EDIT.
// ChannelInformation is the corresponding interface of ChannelInformation
// 03_05_01 Resources v01.09.03 AS.pdf Page 24
type ChannelInformation interface {
fmt.Stringer
utils.LengthAware
utils.Serializable
utils.Copyable
// GetNumChannels returns NumChannels (property field)
GetNumChannels() uint8
// GetChannelCode returns ChannelCode (property field)
GetChannelCode() uint16
// IsChannelInformation is a marker method to prevent unintentional type checks (interfaces of same signature)
IsChannelInformation()
// CreateBuilder creates a ChannelInformationBuilder
CreateChannelInformationBuilder() ChannelInformationBuilder
}
// _ChannelInformation is the data-structure of this message
type _ChannelInformation struct {
NumChannels uint8
ChannelCode uint16
}
var _ ChannelInformation = (*_ChannelInformation)(nil)
// NewChannelInformation factory function for _ChannelInformation
func NewChannelInformation(numChannels uint8, channelCode uint16) *_ChannelInformation {
return &_ChannelInformation{NumChannels: numChannels, ChannelCode: channelCode}
}
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
/////////////////////// Builder
///////////////////////
// ChannelInformationBuilder is a builder for ChannelInformation
type ChannelInformationBuilder interface {
utils.Copyable
// WithMandatoryFields adds all mandatory fields (convenience for using multiple builder calls)
WithMandatoryFields(numChannels uint8, channelCode uint16) ChannelInformationBuilder
// WithNumChannels adds NumChannels (property field)
WithNumChannels(uint8) ChannelInformationBuilder
// WithChannelCode adds ChannelCode (property field)
WithChannelCode(uint16) ChannelInformationBuilder
// Build builds the ChannelInformation or returns an error if something is wrong
Build() (ChannelInformation, error)
// MustBuild does the same as Build but panics on error
MustBuild() ChannelInformation
}
// NewChannelInformationBuilder() creates a ChannelInformationBuilder
func NewChannelInformationBuilder() ChannelInformationBuilder {
return &_ChannelInformationBuilder{_ChannelInformation: new(_ChannelInformation)}
}
type _ChannelInformationBuilder struct {
*_ChannelInformation
collectedErr []error
}
var _ (ChannelInformationBuilder) = (*_ChannelInformationBuilder)(nil)
func (b *_ChannelInformationBuilder) WithMandatoryFields(numChannels uint8, channelCode uint16) ChannelInformationBuilder {
return b.WithNumChannels(numChannels).WithChannelCode(channelCode)
}
func (b *_ChannelInformationBuilder) WithNumChannels(numChannels uint8) ChannelInformationBuilder {
b.NumChannels = numChannels
return b
}
func (b *_ChannelInformationBuilder) WithChannelCode(channelCode uint16) ChannelInformationBuilder {
b.ChannelCode = channelCode
return b
}
func (b *_ChannelInformationBuilder) Build() (ChannelInformation, error) {
if err := stdErrors.Join(b.collectedErr...); err != nil {
return nil, errors.Wrap(err, "error occurred during build")
}
return b._ChannelInformation.deepCopy(), nil
}
func (b *_ChannelInformationBuilder) MustBuild() ChannelInformation {
build, err := b.Build()
if err != nil {
panic(err)
}
return build
}
func (b *_ChannelInformationBuilder) DeepCopy() any {
_copy := b.CreateChannelInformationBuilder().(*_ChannelInformationBuilder)
if b.collectedErr != nil {
copy(_copy.collectedErr, b.collectedErr)
}
return _copy
}
// CreateChannelInformationBuilder creates a ChannelInformationBuilder
func (b *_ChannelInformation) CreateChannelInformationBuilder() ChannelInformationBuilder {
if b == nil {
return NewChannelInformationBuilder()
}
return &_ChannelInformationBuilder{_ChannelInformation: b.deepCopy()}
}
///////////////////////
///////////////////////
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
/////////////////////// Accessors for property fields.
///////////////////////
func (m *_ChannelInformation) GetNumChannels() uint8 {
return m.NumChannels
}
func (m *_ChannelInformation) GetChannelCode() uint16 {
return m.ChannelCode
}
///////////////////////
///////////////////////
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
// Deprecated: use the interface for direct cast
func CastChannelInformation(structType any) ChannelInformation {
if casted, ok := structType.(ChannelInformation); ok {
return casted
}
if casted, ok := structType.(*ChannelInformation); ok {
return *casted
}
return nil
}
func (m *_ChannelInformation) GetTypeName() string {
return "ChannelInformation"
}
func (m *_ChannelInformation) GetLengthInBits(ctx context.Context) uint16 {
lengthInBits := uint16(0)
// Simple field (numChannels)
lengthInBits += 3
// Simple field (channelCode)
lengthInBits += 13
return lengthInBits
}
func (m *_ChannelInformation) GetLengthInBytes(ctx context.Context) uint16 {
return m.GetLengthInBits(ctx) / 8
}
func ChannelInformationParse(ctx context.Context, theBytes []byte) (ChannelInformation, error) {
return ChannelInformationParseWithBuffer(ctx, utils.NewReadBufferByteBased(theBytes))
}
func ChannelInformationParseWithBufferProducer() func(ctx context.Context, readBuffer utils.ReadBuffer) (ChannelInformation, error) {
return func(ctx context.Context, readBuffer utils.ReadBuffer) (ChannelInformation, error) {
return ChannelInformationParseWithBuffer(ctx, readBuffer)
}
}
func ChannelInformationParseWithBuffer(ctx context.Context, readBuffer utils.ReadBuffer) (ChannelInformation, error) {
v, err := (new(_ChannelInformation)).parse(ctx, readBuffer)
if err != nil {
return nil, err
}
return v, nil
}
func (m *_ChannelInformation) parse(ctx context.Context, readBuffer utils.ReadBuffer) (__channelInformation ChannelInformation, err error) {
positionAware := readBuffer
_ = positionAware
if pullErr := readBuffer.PullContext("ChannelInformation"); pullErr != nil {
return nil, errors.Wrap(pullErr, "Error pulling for ChannelInformation")
}
currentPos := positionAware.GetPos()
_ = currentPos
numChannels, err := ReadSimpleField(ctx, "numChannels", ReadUnsignedByte(readBuffer, uint8(3)))
if err != nil {
return nil, errors.Wrap(err, fmt.Sprintf("Error parsing 'numChannels' field"))
}
m.NumChannels = numChannels
channelCode, err := ReadSimpleField(ctx, "channelCode", ReadUnsignedShort(readBuffer, uint8(13)))
if err != nil {
return nil, errors.Wrap(err, fmt.Sprintf("Error parsing 'channelCode' field"))
}
m.ChannelCode = channelCode
if closeErr := readBuffer.CloseContext("ChannelInformation"); closeErr != nil {
return nil, errors.Wrap(closeErr, "Error closing for ChannelInformation")
}
return m, nil
}
func (m *_ChannelInformation) Serialize() ([]byte, error) {
wb := utils.NewWriteBufferByteBased(utils.WithInitialSizeForByteBasedBuffer(int(m.GetLengthInBytes(context.Background()))))
if err := m.SerializeWithWriteBuffer(context.Background(), wb); err != nil {
return nil, err
}
return wb.GetBytes(), nil
}
func (m *_ChannelInformation) SerializeWithWriteBuffer(ctx context.Context, writeBuffer utils.WriteBuffer) error {
positionAware := writeBuffer
_ = positionAware
log := zerolog.Ctx(ctx)
_ = log
if pushErr := writeBuffer.PushContext("ChannelInformation"); pushErr != nil {
return errors.Wrap(pushErr, "Error pushing for ChannelInformation")
}
if err := WriteSimpleField[uint8](ctx, "numChannels", m.GetNumChannels(), WriteUnsignedByte(writeBuffer, 3)); err != nil {
return errors.Wrap(err, "Error serializing 'numChannels' field")
}
if err := WriteSimpleField[uint16](ctx, "channelCode", m.GetChannelCode(), WriteUnsignedShort(writeBuffer, 13)); err != nil {
return errors.Wrap(err, "Error serializing 'channelCode' field")
}
if popErr := writeBuffer.PopContext("ChannelInformation"); popErr != nil {
return errors.Wrap(popErr, "Error popping for ChannelInformation")
}
return nil
}
func (m *_ChannelInformation) IsChannelInformation() {}
func (m *_ChannelInformation) DeepCopy() any {
return m.deepCopy()
}
func (m *_ChannelInformation) deepCopy() *_ChannelInformation {
if m == nil {
return nil
}
_ChannelInformationCopy := &_ChannelInformation{
m.NumChannels,
m.ChannelCode,
}
return _ChannelInformationCopy
}
func (m *_ChannelInformation) String() string {
if m == nil {
return "<nil>"
}
wb := utils.NewWriteBufferBoxBased(
utils.WithWriteBufferBoxBasedMergeSingleBoxes(),
utils.WithWriteBufferBoxBasedOmitEmptyBoxes(),
utils.WithWriteBufferBoxBasedPrintPosLengthFooter(),
)
if err := wb.WriteSerializable(context.Background(), m); err != nil {
return err.Error()
}
return wb.GetBox().String()
}