| /* |
| * 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" |
| "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. |
| |
| // Constant values. |
| const RequestTermination_CR byte = 0x0D |
| |
| // RequestTermination is the corresponding interface of RequestTermination |
| type RequestTermination interface { |
| fmt.Stringer |
| utils.LengthAware |
| utils.Serializable |
| utils.Copyable |
| // IsRequestTermination is a marker method to prevent unintentional type checks (interfaces of same signature) |
| IsRequestTermination() |
| // CreateBuilder creates a RequestTerminationBuilder |
| CreateRequestTerminationBuilder() RequestTerminationBuilder |
| } |
| |
| // _RequestTermination is the data-structure of this message |
| type _RequestTermination struct { |
| } |
| |
| var _ RequestTermination = (*_RequestTermination)(nil) |
| |
| // NewRequestTermination factory function for _RequestTermination |
| func NewRequestTermination() *_RequestTermination { |
| return &_RequestTermination{} |
| } |
| |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////// Builder |
| /////////////////////// |
| |
| // RequestTerminationBuilder is a builder for RequestTermination |
| type RequestTerminationBuilder interface { |
| utils.Copyable |
| // WithMandatoryFields adds all mandatory fields (convenience for using multiple builder calls) |
| WithMandatoryFields() RequestTerminationBuilder |
| // Build builds the RequestTermination or returns an error if something is wrong |
| Build() (RequestTermination, error) |
| // MustBuild does the same as Build but panics on error |
| MustBuild() RequestTermination |
| } |
| |
| // NewRequestTerminationBuilder() creates a RequestTerminationBuilder |
| func NewRequestTerminationBuilder() RequestTerminationBuilder { |
| return &_RequestTerminationBuilder{_RequestTermination: new(_RequestTermination)} |
| } |
| |
| type _RequestTerminationBuilder struct { |
| *_RequestTermination |
| |
| err *utils.MultiError |
| } |
| |
| var _ (RequestTerminationBuilder) = (*_RequestTerminationBuilder)(nil) |
| |
| func (b *_RequestTerminationBuilder) WithMandatoryFields() RequestTerminationBuilder { |
| return b |
| } |
| |
| func (b *_RequestTerminationBuilder) Build() (RequestTermination, error) { |
| if b.err != nil { |
| return nil, errors.Wrap(b.err, "error occurred during build") |
| } |
| return b._RequestTermination.deepCopy(), nil |
| } |
| |
| func (b *_RequestTerminationBuilder) MustBuild() RequestTermination { |
| build, err := b.Build() |
| if err != nil { |
| panic(err) |
| } |
| return build |
| } |
| |
| func (b *_RequestTerminationBuilder) DeepCopy() any { |
| _copy := b.CreateRequestTerminationBuilder().(*_RequestTerminationBuilder) |
| if b.err != nil { |
| _copy.err = b.err.DeepCopy().(*utils.MultiError) |
| } |
| return _copy |
| } |
| |
| // CreateRequestTerminationBuilder creates a RequestTerminationBuilder |
| func (b *_RequestTermination) CreateRequestTerminationBuilder() RequestTerminationBuilder { |
| if b == nil { |
| return NewRequestTerminationBuilder() |
| } |
| return &_RequestTerminationBuilder{_RequestTermination: b.deepCopy()} |
| } |
| |
| /////////////////////// |
| /////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////// Accessors for const fields. |
| /////////////////////// |
| |
| func (m *_RequestTermination) GetCr() byte { |
| return RequestTermination_CR |
| } |
| |
| /////////////////////// |
| /////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| |
| // Deprecated: use the interface for direct cast |
| func CastRequestTermination(structType any) RequestTermination { |
| if casted, ok := structType.(RequestTermination); ok { |
| return casted |
| } |
| if casted, ok := structType.(*RequestTermination); ok { |
| return *casted |
| } |
| return nil |
| } |
| |
| func (m *_RequestTermination) GetTypeName() string { |
| return "RequestTermination" |
| } |
| |
| func (m *_RequestTermination) GetLengthInBits(ctx context.Context) uint16 { |
| lengthInBits := uint16(0) |
| |
| // Const Field (cr) |
| lengthInBits += 8 |
| |
| return lengthInBits |
| } |
| |
| func (m *_RequestTermination) GetLengthInBytes(ctx context.Context) uint16 { |
| return m.GetLengthInBits(ctx) / 8 |
| } |
| |
| func RequestTerminationParse(ctx context.Context, theBytes []byte) (RequestTermination, error) { |
| return RequestTerminationParseWithBuffer(ctx, utils.NewReadBufferByteBased(theBytes)) |
| } |
| |
| func RequestTerminationParseWithBufferProducer() func(ctx context.Context, readBuffer utils.ReadBuffer) (RequestTermination, error) { |
| return func(ctx context.Context, readBuffer utils.ReadBuffer) (RequestTermination, error) { |
| return RequestTerminationParseWithBuffer(ctx, readBuffer) |
| } |
| } |
| |
| func RequestTerminationParseWithBuffer(ctx context.Context, readBuffer utils.ReadBuffer) (RequestTermination, error) { |
| v, err := (&_RequestTermination{}).parse(ctx, readBuffer) |
| if err != nil { |
| return nil, err |
| } |
| return v, nil |
| } |
| |
| func (m *_RequestTermination) parse(ctx context.Context, readBuffer utils.ReadBuffer) (__requestTermination RequestTermination, err error) { |
| positionAware := readBuffer |
| _ = positionAware |
| if pullErr := readBuffer.PullContext("RequestTermination"); pullErr != nil { |
| return nil, errors.Wrap(pullErr, "Error pulling for RequestTermination") |
| } |
| currentPos := positionAware.GetPos() |
| _ = currentPos |
| |
| cr, err := ReadConstField[byte](ctx, "cr", ReadByte(readBuffer, 8), RequestTermination_CR) |
| if err != nil { |
| return nil, errors.Wrap(err, fmt.Sprintf("Error parsing 'cr' field")) |
| } |
| _ = cr |
| |
| if closeErr := readBuffer.CloseContext("RequestTermination"); closeErr != nil { |
| return nil, errors.Wrap(closeErr, "Error closing for RequestTermination") |
| } |
| |
| return m, nil |
| } |
| |
| func (m *_RequestTermination) 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 *_RequestTermination) SerializeWithWriteBuffer(ctx context.Context, writeBuffer utils.WriteBuffer) error { |
| positionAware := writeBuffer |
| _ = positionAware |
| log := zerolog.Ctx(ctx) |
| _ = log |
| if pushErr := writeBuffer.PushContext("RequestTermination"); pushErr != nil { |
| return errors.Wrap(pushErr, "Error pushing for RequestTermination") |
| } |
| |
| if err := WriteConstField(ctx, "cr", RequestTermination_CR, WriteByte(writeBuffer, 8)); err != nil { |
| return errors.Wrap(err, "Error serializing 'cr' field") |
| } |
| |
| if popErr := writeBuffer.PopContext("RequestTermination"); popErr != nil { |
| return errors.Wrap(popErr, "Error popping for RequestTermination") |
| } |
| return nil |
| } |
| |
| func (m *_RequestTermination) IsRequestTermination() {} |
| |
| func (m *_RequestTermination) DeepCopy() any { |
| return m.deepCopy() |
| } |
| |
| func (m *_RequestTermination) deepCopy() *_RequestTermination { |
| if m == nil { |
| return nil |
| } |
| _RequestTerminationCopy := &_RequestTermination{} |
| return _RequestTerminationCopy |
| } |
| |
| func (m *_RequestTermination) 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() |
| } |