| /* |
| * 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/utils" |
| ) |
| |
| // Code generated by code-generation. DO NOT EDIT. |
| |
| // LRawCon is the corresponding interface of LRawCon |
| type LRawCon interface { |
| fmt.Stringer |
| utils.LengthAware |
| utils.Serializable |
| utils.Copyable |
| CEMI |
| // IsLRawCon is a marker method to prevent unintentional type checks (interfaces of same signature) |
| IsLRawCon() |
| // CreateBuilder creates a LRawConBuilder |
| CreateLRawConBuilder() LRawConBuilder |
| } |
| |
| // _LRawCon is the data-structure of this message |
| type _LRawCon struct { |
| CEMIContract |
| } |
| |
| var _ LRawCon = (*_LRawCon)(nil) |
| var _ CEMIRequirements = (*_LRawCon)(nil) |
| |
| // NewLRawCon factory function for _LRawCon |
| func NewLRawCon() *_LRawCon { |
| _result := &_LRawCon{ |
| CEMIContract: NewCEMI(), |
| } |
| _result.CEMIContract.(*_CEMI)._SubType = _result |
| return _result |
| } |
| |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////// Builder |
| /////////////////////// |
| |
| // LRawConBuilder is a builder for LRawCon |
| type LRawConBuilder interface { |
| utils.Copyable |
| // WithMandatoryFields adds all mandatory fields (convenience for using multiple builder calls) |
| WithMandatoryFields() LRawConBuilder |
| // Done is used to finish work on this child and return (or create one if none) to the parent builder |
| Done() CEMIBuilder |
| // Build builds the LRawCon or returns an error if something is wrong |
| Build() (LRawCon, error) |
| // MustBuild does the same as Build but panics on error |
| MustBuild() LRawCon |
| } |
| |
| // NewLRawConBuilder() creates a LRawConBuilder |
| func NewLRawConBuilder() LRawConBuilder { |
| return &_LRawConBuilder{_LRawCon: new(_LRawCon)} |
| } |
| |
| type _LRawConBuilder struct { |
| *_LRawCon |
| |
| parentBuilder *_CEMIBuilder |
| |
| collectedErr []error |
| } |
| |
| var _ (LRawConBuilder) = (*_LRawConBuilder)(nil) |
| |
| func (b *_LRawConBuilder) setParent(contract CEMIContract) { |
| b.CEMIContract = contract |
| contract.(*_CEMI)._SubType = b._LRawCon |
| } |
| |
| func (b *_LRawConBuilder) WithMandatoryFields() LRawConBuilder { |
| return b |
| } |
| |
| func (b *_LRawConBuilder) Build() (LRawCon, error) { |
| if err := stdErrors.Join(b.collectedErr...); err != nil { |
| return nil, errors.Wrap(err, "error occurred during build") |
| } |
| return b._LRawCon.deepCopy(), nil |
| } |
| |
| func (b *_LRawConBuilder) MustBuild() LRawCon { |
| build, err := b.Build() |
| if err != nil { |
| panic(err) |
| } |
| return build |
| } |
| |
| func (b *_LRawConBuilder) Done() CEMIBuilder { |
| if b.parentBuilder == nil { |
| b.parentBuilder = NewCEMIBuilder().(*_CEMIBuilder) |
| } |
| return b.parentBuilder |
| } |
| |
| func (b *_LRawConBuilder) buildForCEMI() (CEMI, error) { |
| return b.Build() |
| } |
| |
| func (b *_LRawConBuilder) DeepCopy() any { |
| _copy := b.CreateLRawConBuilder().(*_LRawConBuilder) |
| if b.collectedErr != nil { |
| copy(_copy.collectedErr, b.collectedErr) |
| } |
| return _copy |
| } |
| |
| // CreateLRawConBuilder creates a LRawConBuilder |
| func (b *_LRawCon) CreateLRawConBuilder() LRawConBuilder { |
| if b == nil { |
| return NewLRawConBuilder() |
| } |
| return &_LRawConBuilder{_LRawCon: b.deepCopy()} |
| } |
| |
| /////////////////////// |
| /////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////// Accessors for discriminator values. |
| /////////////////////// |
| |
| func (m *_LRawCon) GetMessageCode() uint8 { |
| return 0x2F |
| } |
| |
| /////////////////////// |
| /////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| |
| func (m *_LRawCon) GetParent() CEMIContract { |
| return m.CEMIContract |
| } |
| |
| // Deprecated: use the interface for direct cast |
| func CastLRawCon(structType any) LRawCon { |
| if casted, ok := structType.(LRawCon); ok { |
| return casted |
| } |
| if casted, ok := structType.(*LRawCon); ok { |
| return *casted |
| } |
| return nil |
| } |
| |
| func (m *_LRawCon) GetTypeName() string { |
| return "LRawCon" |
| } |
| |
| func (m *_LRawCon) GetLengthInBits(ctx context.Context) uint16 { |
| lengthInBits := uint16(m.CEMIContract.(*_CEMI).getLengthInBits(ctx)) |
| |
| return lengthInBits |
| } |
| |
| func (m *_LRawCon) GetLengthInBytes(ctx context.Context) uint16 { |
| return m.GetLengthInBits(ctx) / 8 |
| } |
| |
| func (m *_LRawCon) parse(ctx context.Context, readBuffer utils.ReadBuffer, parent *_CEMI, size uint16) (__lRawCon LRawCon, err error) { |
| m.CEMIContract = parent |
| parent._SubType = m |
| positionAware := readBuffer |
| _ = positionAware |
| if pullErr := readBuffer.PullContext("LRawCon"); pullErr != nil { |
| return nil, errors.Wrap(pullErr, "Error pulling for LRawCon") |
| } |
| currentPos := positionAware.GetPos() |
| _ = currentPos |
| |
| if closeErr := readBuffer.CloseContext("LRawCon"); closeErr != nil { |
| return nil, errors.Wrap(closeErr, "Error closing for LRawCon") |
| } |
| |
| return m, nil |
| } |
| |
| func (m *_LRawCon) 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 *_LRawCon) SerializeWithWriteBuffer(ctx context.Context, writeBuffer utils.WriteBuffer) error { |
| positionAware := writeBuffer |
| _ = positionAware |
| log := zerolog.Ctx(ctx) |
| _ = log |
| ser := func() error { |
| if pushErr := writeBuffer.PushContext("LRawCon"); pushErr != nil { |
| return errors.Wrap(pushErr, "Error pushing for LRawCon") |
| } |
| |
| if popErr := writeBuffer.PopContext("LRawCon"); popErr != nil { |
| return errors.Wrap(popErr, "Error popping for LRawCon") |
| } |
| return nil |
| } |
| return m.CEMIContract.(*_CEMI).serializeParent(ctx, writeBuffer, m, ser) |
| } |
| |
| func (m *_LRawCon) IsLRawCon() {} |
| |
| func (m *_LRawCon) DeepCopy() any { |
| return m.deepCopy() |
| } |
| |
| func (m *_LRawCon) deepCopy() *_LRawCon { |
| if m == nil { |
| return nil |
| } |
| _LRawConCopy := &_LRawCon{ |
| m.CEMIContract.(*_CEMI).deepCopy(), |
| } |
| _LRawConCopy.CEMIContract.(*_CEMI)._SubType = m |
| return _LRawConCopy |
| } |
| |
| func (m *_LRawCon) 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() |
| } |