| /* |
| * 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 RequestSmartConnectShortcut_PIPE byte = 0x7C |
| |
| // RequestSmartConnectShortcut is the corresponding interface of RequestSmartConnectShortcut |
| type RequestSmartConnectShortcut interface { |
| fmt.Stringer |
| utils.LengthAware |
| utils.Serializable |
| utils.Copyable |
| Request |
| // GetPipePeek returns PipePeek (property field) |
| GetPipePeek() RequestType |
| // GetSecondPipe returns SecondPipe (property field) |
| GetSecondPipe() *byte |
| // IsRequestSmartConnectShortcut is a marker method to prevent unintentional type checks (interfaces of same signature) |
| IsRequestSmartConnectShortcut() |
| // CreateBuilder creates a RequestSmartConnectShortcutBuilder |
| CreateRequestSmartConnectShortcutBuilder() RequestSmartConnectShortcutBuilder |
| } |
| |
| // _RequestSmartConnectShortcut is the data-structure of this message |
| type _RequestSmartConnectShortcut struct { |
| RequestContract |
| PipePeek RequestType |
| SecondPipe *byte |
| } |
| |
| var _ RequestSmartConnectShortcut = (*_RequestSmartConnectShortcut)(nil) |
| var _ RequestRequirements = (*_RequestSmartConnectShortcut)(nil) |
| |
| // NewRequestSmartConnectShortcut factory function for _RequestSmartConnectShortcut |
| func NewRequestSmartConnectShortcut(peekedByte RequestType, startingCR *RequestType, resetMode *RequestType, secondPeek RequestType, termination RequestTermination, pipePeek RequestType, secondPipe *byte, cBusOptions CBusOptions) *_RequestSmartConnectShortcut { |
| _result := &_RequestSmartConnectShortcut{ |
| RequestContract: NewRequest(peekedByte, startingCR, resetMode, secondPeek, termination, cBusOptions), |
| PipePeek: pipePeek, |
| SecondPipe: secondPipe, |
| } |
| _result.RequestContract.(*_Request)._SubType = _result |
| return _result |
| } |
| |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////// Builder |
| /////////////////////// |
| |
| // RequestSmartConnectShortcutBuilder is a builder for RequestSmartConnectShortcut |
| type RequestSmartConnectShortcutBuilder interface { |
| utils.Copyable |
| // WithMandatoryFields adds all mandatory fields (convenience for using multiple builder calls) |
| WithMandatoryFields(pipePeek RequestType) RequestSmartConnectShortcutBuilder |
| // WithPipePeek adds PipePeek (property field) |
| WithPipePeek(RequestType) RequestSmartConnectShortcutBuilder |
| // WithSecondPipe adds SecondPipe (property field) |
| WithOptionalSecondPipe(byte) RequestSmartConnectShortcutBuilder |
| // Done is used to finish work on this child and return (or create one if none) to the parent builder |
| Done() RequestBuilder |
| // Build builds the RequestSmartConnectShortcut or returns an error if something is wrong |
| Build() (RequestSmartConnectShortcut, error) |
| // MustBuild does the same as Build but panics on error |
| MustBuild() RequestSmartConnectShortcut |
| } |
| |
| // NewRequestSmartConnectShortcutBuilder() creates a RequestSmartConnectShortcutBuilder |
| func NewRequestSmartConnectShortcutBuilder() RequestSmartConnectShortcutBuilder { |
| return &_RequestSmartConnectShortcutBuilder{_RequestSmartConnectShortcut: new(_RequestSmartConnectShortcut)} |
| } |
| |
| type _RequestSmartConnectShortcutBuilder struct { |
| *_RequestSmartConnectShortcut |
| |
| parentBuilder *_RequestBuilder |
| |
| err *utils.MultiError |
| } |
| |
| var _ (RequestSmartConnectShortcutBuilder) = (*_RequestSmartConnectShortcutBuilder)(nil) |
| |
| func (b *_RequestSmartConnectShortcutBuilder) setParent(contract RequestContract) { |
| b.RequestContract = contract |
| contract.(*_Request)._SubType = b._RequestSmartConnectShortcut |
| } |
| |
| func (b *_RequestSmartConnectShortcutBuilder) WithMandatoryFields(pipePeek RequestType) RequestSmartConnectShortcutBuilder { |
| return b.WithPipePeek(pipePeek) |
| } |
| |
| func (b *_RequestSmartConnectShortcutBuilder) WithPipePeek(pipePeek RequestType) RequestSmartConnectShortcutBuilder { |
| b.PipePeek = pipePeek |
| return b |
| } |
| |
| func (b *_RequestSmartConnectShortcutBuilder) WithOptionalSecondPipe(secondPipe byte) RequestSmartConnectShortcutBuilder { |
| b.SecondPipe = &secondPipe |
| return b |
| } |
| |
| func (b *_RequestSmartConnectShortcutBuilder) Build() (RequestSmartConnectShortcut, error) { |
| if b.err != nil { |
| return nil, errors.Wrap(b.err, "error occurred during build") |
| } |
| return b._RequestSmartConnectShortcut.deepCopy(), nil |
| } |
| |
| func (b *_RequestSmartConnectShortcutBuilder) MustBuild() RequestSmartConnectShortcut { |
| build, err := b.Build() |
| if err != nil { |
| panic(err) |
| } |
| return build |
| } |
| |
| func (b *_RequestSmartConnectShortcutBuilder) Done() RequestBuilder { |
| if b.parentBuilder == nil { |
| b.parentBuilder = NewRequestBuilder().(*_RequestBuilder) |
| } |
| return b.parentBuilder |
| } |
| |
| func (b *_RequestSmartConnectShortcutBuilder) buildForRequest() (Request, error) { |
| return b.Build() |
| } |
| |
| func (b *_RequestSmartConnectShortcutBuilder) DeepCopy() any { |
| _copy := b.CreateRequestSmartConnectShortcutBuilder().(*_RequestSmartConnectShortcutBuilder) |
| if b.err != nil { |
| _copy.err = b.err.DeepCopy().(*utils.MultiError) |
| } |
| return _copy |
| } |
| |
| // CreateRequestSmartConnectShortcutBuilder creates a RequestSmartConnectShortcutBuilder |
| func (b *_RequestSmartConnectShortcut) CreateRequestSmartConnectShortcutBuilder() RequestSmartConnectShortcutBuilder { |
| if b == nil { |
| return NewRequestSmartConnectShortcutBuilder() |
| } |
| return &_RequestSmartConnectShortcutBuilder{_RequestSmartConnectShortcut: b.deepCopy()} |
| } |
| |
| /////////////////////// |
| /////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////// Accessors for discriminator values. |
| /////////////////////// |
| |
| /////////////////////// |
| /////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| |
| func (m *_RequestSmartConnectShortcut) GetParent() RequestContract { |
| return m.RequestContract |
| } |
| |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////// Accessors for property fields. |
| /////////////////////// |
| |
| func (m *_RequestSmartConnectShortcut) GetPipePeek() RequestType { |
| return m.PipePeek |
| } |
| |
| func (m *_RequestSmartConnectShortcut) GetSecondPipe() *byte { |
| return m.SecondPipe |
| } |
| |
| /////////////////////// |
| /////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////// Accessors for const fields. |
| /////////////////////// |
| |
| func (m *_RequestSmartConnectShortcut) GetPipe() byte { |
| return RequestSmartConnectShortcut_PIPE |
| } |
| |
| /////////////////////// |
| /////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| |
| // Deprecated: use the interface for direct cast |
| func CastRequestSmartConnectShortcut(structType any) RequestSmartConnectShortcut { |
| if casted, ok := structType.(RequestSmartConnectShortcut); ok { |
| return casted |
| } |
| if casted, ok := structType.(*RequestSmartConnectShortcut); ok { |
| return *casted |
| } |
| return nil |
| } |
| |
| func (m *_RequestSmartConnectShortcut) GetTypeName() string { |
| return "RequestSmartConnectShortcut" |
| } |
| |
| func (m *_RequestSmartConnectShortcut) GetLengthInBits(ctx context.Context) uint16 { |
| lengthInBits := uint16(m.RequestContract.(*_Request).getLengthInBits(ctx)) |
| |
| // Const Field (pipe) |
| lengthInBits += 8 |
| |
| // Optional Field (secondPipe) |
| if m.SecondPipe != nil { |
| lengthInBits += 8 |
| } |
| |
| return lengthInBits |
| } |
| |
| func (m *_RequestSmartConnectShortcut) GetLengthInBytes(ctx context.Context) uint16 { |
| return m.GetLengthInBits(ctx) / 8 |
| } |
| |
| func (m *_RequestSmartConnectShortcut) parse(ctx context.Context, readBuffer utils.ReadBuffer, parent *_Request, cBusOptions CBusOptions) (__requestSmartConnectShortcut RequestSmartConnectShortcut, err error) { |
| m.RequestContract = parent |
| parent._SubType = m |
| positionAware := readBuffer |
| _ = positionAware |
| if pullErr := readBuffer.PullContext("RequestSmartConnectShortcut"); pullErr != nil { |
| return nil, errors.Wrap(pullErr, "Error pulling for RequestSmartConnectShortcut") |
| } |
| currentPos := positionAware.GetPos() |
| _ = currentPos |
| |
| pipe, err := ReadConstField[byte](ctx, "pipe", ReadByte(readBuffer, 8), RequestSmartConnectShortcut_PIPE) |
| if err != nil { |
| return nil, errors.Wrap(err, fmt.Sprintf("Error parsing 'pipe' field")) |
| } |
| _ = pipe |
| |
| pipePeek, err := ReadPeekField[RequestType](ctx, "pipePeek", ReadEnum(RequestTypeByValue, ReadUnsignedByte(readBuffer, uint8(8))), 0) |
| if err != nil { |
| return nil, errors.Wrap(err, fmt.Sprintf("Error parsing 'pipePeek' field")) |
| } |
| m.PipePeek = pipePeek |
| |
| var secondPipe *byte |
| secondPipe, err = ReadOptionalField[byte](ctx, "secondPipe", ReadByte(readBuffer, 8), bool((pipePeek) == (RequestType_SMART_CONNECT_SHORTCUT))) |
| if err != nil { |
| return nil, errors.Wrap(err, fmt.Sprintf("Error parsing 'secondPipe' field")) |
| } |
| m.SecondPipe = secondPipe |
| |
| if closeErr := readBuffer.CloseContext("RequestSmartConnectShortcut"); closeErr != nil { |
| return nil, errors.Wrap(closeErr, "Error closing for RequestSmartConnectShortcut") |
| } |
| |
| return m, nil |
| } |
| |
| func (m *_RequestSmartConnectShortcut) 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 *_RequestSmartConnectShortcut) SerializeWithWriteBuffer(ctx context.Context, writeBuffer utils.WriteBuffer) error { |
| positionAware := writeBuffer |
| _ = positionAware |
| log := zerolog.Ctx(ctx) |
| _ = log |
| ser := func() error { |
| if pushErr := writeBuffer.PushContext("RequestSmartConnectShortcut"); pushErr != nil { |
| return errors.Wrap(pushErr, "Error pushing for RequestSmartConnectShortcut") |
| } |
| |
| if err := WriteConstField(ctx, "pipe", RequestSmartConnectShortcut_PIPE, WriteByte(writeBuffer, 8)); err != nil { |
| return errors.Wrap(err, "Error serializing 'pipe' field") |
| } |
| |
| if err := WriteOptionalField[byte](ctx, "secondPipe", m.GetSecondPipe(), WriteByte(writeBuffer, 8), true); err != nil { |
| return errors.Wrap(err, "Error serializing 'secondPipe' field") |
| } |
| |
| if popErr := writeBuffer.PopContext("RequestSmartConnectShortcut"); popErr != nil { |
| return errors.Wrap(popErr, "Error popping for RequestSmartConnectShortcut") |
| } |
| return nil |
| } |
| return m.RequestContract.(*_Request).serializeParent(ctx, writeBuffer, m, ser) |
| } |
| |
| func (m *_RequestSmartConnectShortcut) IsRequestSmartConnectShortcut() {} |
| |
| func (m *_RequestSmartConnectShortcut) DeepCopy() any { |
| return m.deepCopy() |
| } |
| |
| func (m *_RequestSmartConnectShortcut) deepCopy() *_RequestSmartConnectShortcut { |
| if m == nil { |
| return nil |
| } |
| _RequestSmartConnectShortcutCopy := &_RequestSmartConnectShortcut{ |
| m.RequestContract.(*_Request).deepCopy(), |
| m.PipePeek, |
| utils.CopyPtr[byte](m.SecondPipe), |
| } |
| _RequestSmartConnectShortcutCopy.RequestContract.(*_Request)._SubType = m |
| return _RequestSmartConnectShortcutCopy |
| } |
| |
| func (m *_RequestSmartConnectShortcut) 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() |
| } |