blob: 55a073d54c43f02d7cbae7fb1a62620c5a609fad [file]
/*
* 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/rs/zerolog"
"github.com/apache/plc4x/plc4go/spi/errors"
"github.com/apache/plc4x/plc4go/spi/utils"
)
// Code generated by code-generation. DO NOT EDIT.
// SetAttributeSingleResponse is the corresponding interface of SetAttributeSingleResponse
type SetAttributeSingleResponse interface {
fmt.Stringer
utils.LengthAware
utils.Serializable
utils.Copyable
CipService
// IsSetAttributeSingleResponse is a marker method to prevent unintentional type checks (interfaces of same signature)
IsSetAttributeSingleResponse()
// CreateBuilder creates a SetAttributeSingleResponseBuilder
CreateSetAttributeSingleResponseBuilder() SetAttributeSingleResponseBuilder
}
// _SetAttributeSingleResponse is the data-structure of this message
type _SetAttributeSingleResponse struct {
CipServiceContract
}
var _ SetAttributeSingleResponse = (*_SetAttributeSingleResponse)(nil)
var _ CipServiceRequirements = (*_SetAttributeSingleResponse)(nil)
// NewSetAttributeSingleResponse factory function for _SetAttributeSingleResponse
func NewSetAttributeSingleResponse() *_SetAttributeSingleResponse {
_result := &_SetAttributeSingleResponse{
CipServiceContract: NewCipService(),
}
_result.CipServiceContract.(*_CipService)._SubType = _result
return _result
}
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
/////////////////////// Builder
///////////////////////
// SetAttributeSingleResponseBuilder is a builder for SetAttributeSingleResponse
type SetAttributeSingleResponseBuilder interface {
utils.Copyable
// WithMandatoryFields adds all mandatory fields (convenience for using multiple builder calls)
WithMandatoryFields() SetAttributeSingleResponseBuilder
// Done is used to finish work on this child and return (or create one if none) to the parent builder
Done() CipServiceBuilder
// Build builds the SetAttributeSingleResponse or returns an error if something is wrong
Build() (SetAttributeSingleResponse, error)
// MustBuild does the same as Build but panics on error
MustBuild() SetAttributeSingleResponse
}
// NewSetAttributeSingleResponseBuilder() creates a SetAttributeSingleResponseBuilder
func NewSetAttributeSingleResponseBuilder() SetAttributeSingleResponseBuilder {
return &_SetAttributeSingleResponseBuilder{_SetAttributeSingleResponse: new(_SetAttributeSingleResponse)}
}
type _SetAttributeSingleResponseBuilder struct {
*_SetAttributeSingleResponse
parentBuilder *_CipServiceBuilder
collectedErr []error
}
var _ (SetAttributeSingleResponseBuilder) = (*_SetAttributeSingleResponseBuilder)(nil)
func (b *_SetAttributeSingleResponseBuilder) setParent(contract CipServiceContract) {
b.CipServiceContract = contract
contract.(*_CipService)._SubType = b._SetAttributeSingleResponse
}
func (b *_SetAttributeSingleResponseBuilder) WithMandatoryFields() SetAttributeSingleResponseBuilder {
return b
}
func (b *_SetAttributeSingleResponseBuilder) Build() (SetAttributeSingleResponse, error) {
if err := stdErrors.Join(b.collectedErr...); err != nil {
return nil, errors.Wrap(err, "error occurred during build")
}
return b._SetAttributeSingleResponse.deepCopy(), nil
}
func (b *_SetAttributeSingleResponseBuilder) MustBuild() SetAttributeSingleResponse {
build, err := b.Build()
if err != nil {
panic(err)
}
return build
}
func (b *_SetAttributeSingleResponseBuilder) Done() CipServiceBuilder {
if b.parentBuilder == nil {
b.parentBuilder = NewCipServiceBuilder().(*_CipServiceBuilder)
}
return b.parentBuilder
}
func (b *_SetAttributeSingleResponseBuilder) buildForCipService() (CipService, error) {
return b.Build()
}
func (b *_SetAttributeSingleResponseBuilder) DeepCopy() any {
_copy := b.CreateSetAttributeSingleResponseBuilder().(*_SetAttributeSingleResponseBuilder)
if b.collectedErr != nil {
copy(_copy.collectedErr, b.collectedErr)
}
return _copy
}
// CreateSetAttributeSingleResponseBuilder creates a SetAttributeSingleResponseBuilder
func (b *_SetAttributeSingleResponse) CreateSetAttributeSingleResponseBuilder() SetAttributeSingleResponseBuilder {
if b == nil {
return NewSetAttributeSingleResponseBuilder()
}
return &_SetAttributeSingleResponseBuilder{_SetAttributeSingleResponse: b.deepCopy()}
}
///////////////////////
///////////////////////
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
/////////////////////// Accessors for discriminator values.
///////////////////////
func (m *_SetAttributeSingleResponse) GetService() uint8 {
return 0x10
}
func (m *_SetAttributeSingleResponse) GetResponse() bool {
return bool(true)
}
func (m *_SetAttributeSingleResponse) GetConnected() bool {
return false
}
///////////////////////
///////////////////////
///////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////
func (m *_SetAttributeSingleResponse) GetParent() CipServiceContract {
return m.CipServiceContract
}
// Deprecated: use the interface for direct cast
func CastSetAttributeSingleResponse(structType any) SetAttributeSingleResponse {
if casted, ok := structType.(SetAttributeSingleResponse); ok {
return casted
}
if casted, ok := structType.(*SetAttributeSingleResponse); ok {
return *casted
}
return nil
}
func (m *_SetAttributeSingleResponse) GetPlx4xTypeName() string {
return "SetAttributeSingleResponse"
}
func (m *_SetAttributeSingleResponse) GetLengthInBits(ctx context.Context) uint16 {
lengthInBits := uint16(m.CipServiceContract.(*_CipService).getLengthInBits(ctx))
return lengthInBits
}
func (m *_SetAttributeSingleResponse) GetLengthInBytes(ctx context.Context) uint16 {
return m.GetLengthInBits(ctx) / 8
}
func (m *_SetAttributeSingleResponse) parse(ctx context.Context, readBuffer utils.ReadBuffer, parent *_CipService, connected bool, serviceLen uint16) (__setAttributeSingleResponse SetAttributeSingleResponse, err error) {
m.CipServiceContract = parent
parent._SubType = m
positionAware := readBuffer
_ = positionAware
if pullErr := readBuffer.PullContext("SetAttributeSingleResponse"); pullErr != nil {
return nil, errors.Wrap(pullErr, "Error pulling for SetAttributeSingleResponse")
}
currentPos := positionAware.GetPos()
_ = currentPos
if closeErr := readBuffer.CloseContext("SetAttributeSingleResponse"); closeErr != nil {
return nil, errors.Wrap(closeErr, "Error closing for SetAttributeSingleResponse")
}
return m, nil
}
func (m *_SetAttributeSingleResponse) 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 *_SetAttributeSingleResponse) SerializeWithWriteBuffer(ctx context.Context, writeBuffer utils.WriteBuffer) error {
positionAware := writeBuffer
_ = positionAware
log := zerolog.Ctx(ctx)
_ = log
ser := func() error {
if pushErr := writeBuffer.PushContext("SetAttributeSingleResponse"); pushErr != nil {
return errors.Wrap(pushErr, "Error pushing for SetAttributeSingleResponse")
}
if popErr := writeBuffer.PopContext("SetAttributeSingleResponse"); popErr != nil {
return errors.Wrap(popErr, "Error popping for SetAttributeSingleResponse")
}
return nil
}
return m.CipServiceContract.(*_CipService).serializeParent(ctx, writeBuffer, m, ser)
}
func (m *_SetAttributeSingleResponse) IsSetAttributeSingleResponse() {}
func (m *_SetAttributeSingleResponse) DeepCopy() any {
return m.deepCopy()
}
func (m *_SetAttributeSingleResponse) deepCopy() *_SetAttributeSingleResponse {
if m == nil {
return nil
}
_SetAttributeSingleResponseCopy := &_SetAttributeSingleResponse{
m.CipServiceContract.(*_CipService).deepCopy(),
}
_SetAttributeSingleResponseCopy.CipServiceContract.(*_CipService)._SubType = m
return _SetAttributeSingleResponseCopy
}
func (m *_SetAttributeSingleResponse) 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()
}