| /* |
| * 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/codegen/fields" |
| . "github.com/apache/plc4x/plc4go/spi/codegen/io" |
| "github.com/apache/plc4x/plc4go/spi/errors" |
| "github.com/apache/plc4x/plc4go/spi/utils" |
| ) |
| |
| // Code generated by code-generation. DO NOT EDIT. |
| |
| // AdsAddDeviceNotificationRequest is the corresponding interface of AdsAddDeviceNotificationRequest |
| type AdsAddDeviceNotificationRequest interface { |
| fmt.Stringer |
| utils.LengthAware |
| utils.Serializable |
| utils.Copyable |
| AmsPacket |
| // GetIndexGroup returns IndexGroup (property field) |
| // 4 bytes Index Group of the data, which should be sent per notification. |
| GetIndexGroup() uint32 |
| // GetIndexOffset returns IndexOffset (property field) |
| // 4 bytes Index Offset of the data, which should be sent per notification. |
| GetIndexOffset() uint32 |
| // GetLength returns Length (property field) |
| // 4 bytes Index Offset of the data, which should be sent per notification. |
| // 4 bytes Length of data in bytes, which should be sent per notification. |
| GetLength() uint32 |
| // GetTransmissionMode returns TransmissionMode (property field) |
| // 4 bytes The type of subscription. |
| GetTransmissionMode() AdsTransMode |
| // GetMaxDelayInMs returns MaxDelayInMs (property field) |
| // 4 bytes At the latest after this time, the ADS Device Notification is called. The unit is 1ms. |
| GetMaxDelayInMs() uint32 |
| // GetCycleTimeInMs returns CycleTimeInMs (property field) |
| // 4 bytes The ADS server checks if the value changes in this time slice. The unit is 1ms |
| GetCycleTimeInMs() uint32 |
| // IsAdsAddDeviceNotificationRequest is a marker method to prevent unintentional type checks (interfaces of same signature) |
| IsAdsAddDeviceNotificationRequest() |
| // CreateBuilder creates a AdsAddDeviceNotificationRequestBuilder |
| CreateAdsAddDeviceNotificationRequestBuilder() AdsAddDeviceNotificationRequestBuilder |
| } |
| |
| // _AdsAddDeviceNotificationRequest is the data-structure of this message |
| type _AdsAddDeviceNotificationRequest struct { |
| AmsPacketContract |
| IndexGroup uint32 |
| IndexOffset uint32 |
| Length uint32 |
| TransmissionMode AdsTransMode |
| MaxDelayInMs uint32 |
| CycleTimeInMs uint32 |
| // Reserved Fields |
| reservedField0 *uint64 |
| reservedField1 *uint64 |
| } |
| |
| var _ AdsAddDeviceNotificationRequest = (*_AdsAddDeviceNotificationRequest)(nil) |
| var _ AmsPacketRequirements = (*_AdsAddDeviceNotificationRequest)(nil) |
| |
| // NewAdsAddDeviceNotificationRequest factory function for _AdsAddDeviceNotificationRequest |
| func NewAdsAddDeviceNotificationRequest(targetAmsNetId AmsNetId, targetAmsPort uint16, sourceAmsNetId AmsNetId, sourceAmsPort uint16, errorCode ReturnCode, invokeId uint32, indexGroup uint32, indexOffset uint32, length uint32, transmissionMode AdsTransMode, maxDelayInMs uint32, cycleTimeInMs uint32) *_AdsAddDeviceNotificationRequest { |
| _result := &_AdsAddDeviceNotificationRequest{ |
| AmsPacketContract: NewAmsPacket(targetAmsNetId, targetAmsPort, sourceAmsNetId, sourceAmsPort, errorCode, invokeId), |
| IndexGroup: indexGroup, |
| IndexOffset: indexOffset, |
| Length: length, |
| TransmissionMode: transmissionMode, |
| MaxDelayInMs: maxDelayInMs, |
| CycleTimeInMs: cycleTimeInMs, |
| } |
| _result.AmsPacketContract.(*_AmsPacket)._SubType = _result |
| return _result |
| } |
| |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////// Builder |
| /////////////////////// |
| |
| // AdsAddDeviceNotificationRequestBuilder is a builder for AdsAddDeviceNotificationRequest |
| type AdsAddDeviceNotificationRequestBuilder interface { |
| utils.Copyable |
| // WithMandatoryFields adds all mandatory fields (convenience for using multiple builder calls) |
| WithMandatoryFields(indexGroup uint32, indexOffset uint32, length uint32, transmissionMode AdsTransMode, maxDelayInMs uint32, cycleTimeInMs uint32) AdsAddDeviceNotificationRequestBuilder |
| // WithIndexGroup adds IndexGroup (property field) |
| WithIndexGroup(uint32) AdsAddDeviceNotificationRequestBuilder |
| // WithIndexOffset adds IndexOffset (property field) |
| WithIndexOffset(uint32) AdsAddDeviceNotificationRequestBuilder |
| // WithLength adds Length (property field) |
| WithLength(uint32) AdsAddDeviceNotificationRequestBuilder |
| // WithTransmissionMode adds TransmissionMode (property field) |
| WithTransmissionMode(AdsTransMode) AdsAddDeviceNotificationRequestBuilder |
| // WithMaxDelayInMs adds MaxDelayInMs (property field) |
| WithMaxDelayInMs(uint32) AdsAddDeviceNotificationRequestBuilder |
| // WithCycleTimeInMs adds CycleTimeInMs (property field) |
| WithCycleTimeInMs(uint32) AdsAddDeviceNotificationRequestBuilder |
| // Done is used to finish work on this child and return (or create one if none) to the parent builder |
| Done() AmsPacketBuilder |
| // Build builds the AdsAddDeviceNotificationRequest or returns an error if something is wrong |
| Build() (AdsAddDeviceNotificationRequest, error) |
| // MustBuild does the same as Build but panics on error |
| MustBuild() AdsAddDeviceNotificationRequest |
| } |
| |
| // NewAdsAddDeviceNotificationRequestBuilder() creates a AdsAddDeviceNotificationRequestBuilder |
| func NewAdsAddDeviceNotificationRequestBuilder() AdsAddDeviceNotificationRequestBuilder { |
| return &_AdsAddDeviceNotificationRequestBuilder{_AdsAddDeviceNotificationRequest: new(_AdsAddDeviceNotificationRequest)} |
| } |
| |
| type _AdsAddDeviceNotificationRequestBuilder struct { |
| *_AdsAddDeviceNotificationRequest |
| |
| parentBuilder *_AmsPacketBuilder |
| |
| collectedErr []error |
| } |
| |
| var _ (AdsAddDeviceNotificationRequestBuilder) = (*_AdsAddDeviceNotificationRequestBuilder)(nil) |
| |
| func (b *_AdsAddDeviceNotificationRequestBuilder) setParent(contract AmsPacketContract) { |
| b.AmsPacketContract = contract |
| contract.(*_AmsPacket)._SubType = b._AdsAddDeviceNotificationRequest |
| } |
| |
| func (b *_AdsAddDeviceNotificationRequestBuilder) WithMandatoryFields(indexGroup uint32, indexOffset uint32, length uint32, transmissionMode AdsTransMode, maxDelayInMs uint32, cycleTimeInMs uint32) AdsAddDeviceNotificationRequestBuilder { |
| return b.WithIndexGroup(indexGroup).WithIndexOffset(indexOffset).WithLength(length).WithTransmissionMode(transmissionMode).WithMaxDelayInMs(maxDelayInMs).WithCycleTimeInMs(cycleTimeInMs) |
| } |
| |
| func (b *_AdsAddDeviceNotificationRequestBuilder) WithIndexGroup(indexGroup uint32) AdsAddDeviceNotificationRequestBuilder { |
| b.IndexGroup = indexGroup |
| return b |
| } |
| |
| func (b *_AdsAddDeviceNotificationRequestBuilder) WithIndexOffset(indexOffset uint32) AdsAddDeviceNotificationRequestBuilder { |
| b.IndexOffset = indexOffset |
| return b |
| } |
| |
| func (b *_AdsAddDeviceNotificationRequestBuilder) WithLength(length uint32) AdsAddDeviceNotificationRequestBuilder { |
| b.Length = length |
| return b |
| } |
| |
| func (b *_AdsAddDeviceNotificationRequestBuilder) WithTransmissionMode(transmissionMode AdsTransMode) AdsAddDeviceNotificationRequestBuilder { |
| b.TransmissionMode = transmissionMode |
| return b |
| } |
| |
| func (b *_AdsAddDeviceNotificationRequestBuilder) WithMaxDelayInMs(maxDelayInMs uint32) AdsAddDeviceNotificationRequestBuilder { |
| b.MaxDelayInMs = maxDelayInMs |
| return b |
| } |
| |
| func (b *_AdsAddDeviceNotificationRequestBuilder) WithCycleTimeInMs(cycleTimeInMs uint32) AdsAddDeviceNotificationRequestBuilder { |
| b.CycleTimeInMs = cycleTimeInMs |
| return b |
| } |
| |
| func (b *_AdsAddDeviceNotificationRequestBuilder) Build() (AdsAddDeviceNotificationRequest, error) { |
| if err := stdErrors.Join(b.collectedErr...); err != nil { |
| return nil, errors.Wrap(err, "error occurred during build") |
| } |
| return b._AdsAddDeviceNotificationRequest.deepCopy(), nil |
| } |
| |
| func (b *_AdsAddDeviceNotificationRequestBuilder) MustBuild() AdsAddDeviceNotificationRequest { |
| build, err := b.Build() |
| if err != nil { |
| panic(err) |
| } |
| return build |
| } |
| |
| func (b *_AdsAddDeviceNotificationRequestBuilder) Done() AmsPacketBuilder { |
| if b.parentBuilder == nil { |
| b.parentBuilder = NewAmsPacketBuilder().(*_AmsPacketBuilder) |
| } |
| return b.parentBuilder |
| } |
| |
| func (b *_AdsAddDeviceNotificationRequestBuilder) buildForAmsPacket() (AmsPacket, error) { |
| return b.Build() |
| } |
| |
| func (b *_AdsAddDeviceNotificationRequestBuilder) DeepCopy() any { |
| _copy := b.CreateAdsAddDeviceNotificationRequestBuilder().(*_AdsAddDeviceNotificationRequestBuilder) |
| if b.collectedErr != nil { |
| copy(_copy.collectedErr, b.collectedErr) |
| } |
| return _copy |
| } |
| |
| // CreateAdsAddDeviceNotificationRequestBuilder creates a AdsAddDeviceNotificationRequestBuilder |
| func (b *_AdsAddDeviceNotificationRequest) CreateAdsAddDeviceNotificationRequestBuilder() AdsAddDeviceNotificationRequestBuilder { |
| if b == nil { |
| return NewAdsAddDeviceNotificationRequestBuilder() |
| } |
| return &_AdsAddDeviceNotificationRequestBuilder{_AdsAddDeviceNotificationRequest: b.deepCopy()} |
| } |
| |
| /////////////////////// |
| /////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////// Accessors for discriminator values. |
| /////////////////////// |
| |
| func (m *_AdsAddDeviceNotificationRequest) GetCommandId() CommandId { |
| return CommandId_ADS_ADD_DEVICE_NOTIFICATION |
| } |
| |
| func (m *_AdsAddDeviceNotificationRequest) GetResponse() bool { |
| return bool(false) |
| } |
| |
| /////////////////////// |
| /////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| |
| func (m *_AdsAddDeviceNotificationRequest) GetParent() AmsPacketContract { |
| return m.AmsPacketContract |
| } |
| |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////// Accessors for property fields. |
| /////////////////////// |
| |
| func (m *_AdsAddDeviceNotificationRequest) GetIndexGroup() uint32 { |
| return m.IndexGroup |
| } |
| |
| func (m *_AdsAddDeviceNotificationRequest) GetIndexOffset() uint32 { |
| return m.IndexOffset |
| } |
| |
| func (m *_AdsAddDeviceNotificationRequest) GetLength() uint32 { |
| return m.Length |
| } |
| |
| func (m *_AdsAddDeviceNotificationRequest) GetTransmissionMode() AdsTransMode { |
| return m.TransmissionMode |
| } |
| |
| func (m *_AdsAddDeviceNotificationRequest) GetMaxDelayInMs() uint32 { |
| return m.MaxDelayInMs |
| } |
| |
| func (m *_AdsAddDeviceNotificationRequest) GetCycleTimeInMs() uint32 { |
| return m.CycleTimeInMs |
| } |
| |
| /////////////////////// |
| /////////////////////// |
| /////////////////////////////////////////////////////////// |
| /////////////////////////////////////////////////////////// |
| |
| // Deprecated: use the interface for direct cast |
| func CastAdsAddDeviceNotificationRequest(structType any) AdsAddDeviceNotificationRequest { |
| if casted, ok := structType.(AdsAddDeviceNotificationRequest); ok { |
| return casted |
| } |
| if casted, ok := structType.(*AdsAddDeviceNotificationRequest); ok { |
| return *casted |
| } |
| return nil |
| } |
| |
| func (m *_AdsAddDeviceNotificationRequest) GetPlx4xTypeName() string { |
| return "AdsAddDeviceNotificationRequest" |
| } |
| |
| func (m *_AdsAddDeviceNotificationRequest) GetLengthInBits(ctx context.Context) uint16 { |
| lengthInBits := uint16(m.AmsPacketContract.(*_AmsPacket).getLengthInBits(ctx)) |
| |
| // Simple field (indexGroup) |
| lengthInBits += 32 |
| |
| // Simple field (indexOffset) |
| lengthInBits += 32 |
| |
| // Simple field (length) |
| lengthInBits += 32 |
| |
| // Simple field (transmissionMode) |
| lengthInBits += 32 |
| |
| // Simple field (maxDelayInMs) |
| lengthInBits += 32 |
| |
| // Simple field (cycleTimeInMs) |
| lengthInBits += 32 |
| |
| // Reserved Field (reserved) |
| lengthInBits += 64 |
| |
| // Reserved Field (reserved) |
| lengthInBits += 64 |
| |
| return lengthInBits |
| } |
| |
| func (m *_AdsAddDeviceNotificationRequest) GetLengthInBytes(ctx context.Context) uint16 { |
| return m.GetLengthInBits(ctx) / 8 |
| } |
| |
| func (m *_AdsAddDeviceNotificationRequest) parse(ctx context.Context, readBuffer utils.ReadBuffer, parent *_AmsPacket) (__adsAddDeviceNotificationRequest AdsAddDeviceNotificationRequest, err error) { |
| m.AmsPacketContract = parent |
| parent._SubType = m |
| positionAware := readBuffer |
| _ = positionAware |
| if pullErr := readBuffer.PullContext("AdsAddDeviceNotificationRequest"); pullErr != nil { |
| return nil, errors.Wrap(pullErr, "Error pulling for AdsAddDeviceNotificationRequest") |
| } |
| currentPos := positionAware.GetPos() |
| _ = currentPos |
| |
| indexGroup, err := ReadSimpleField(ctx, "indexGroup", ReadUnsignedInt(readBuffer, uint8(32))) |
| if err != nil { |
| return nil, errors.Wrap(err, fmt.Sprintf("Error parsing 'indexGroup' field")) |
| } |
| m.IndexGroup = indexGroup |
| |
| indexOffset, err := ReadSimpleField(ctx, "indexOffset", ReadUnsignedInt(readBuffer, uint8(32))) |
| if err != nil { |
| return nil, errors.Wrap(err, fmt.Sprintf("Error parsing 'indexOffset' field")) |
| } |
| m.IndexOffset = indexOffset |
| |
| length, err := ReadSimpleField(ctx, "length", ReadUnsignedInt(readBuffer, uint8(32))) |
| if err != nil { |
| return nil, errors.Wrap(err, fmt.Sprintf("Error parsing 'length' field")) |
| } |
| m.Length = length |
| |
| transmissionMode, err := ReadEnumField[AdsTransMode](ctx, "transmissionMode", "AdsTransMode", ReadEnum(AdsTransModeByValue, ReadUnsignedInt(readBuffer, uint8(32)))) |
| if err != nil { |
| return nil, errors.Wrap(err, fmt.Sprintf("Error parsing 'transmissionMode' field")) |
| } |
| m.TransmissionMode = transmissionMode |
| |
| maxDelayInMs, err := ReadSimpleField(ctx, "maxDelayInMs", ReadUnsignedInt(readBuffer, uint8(32))) |
| if err != nil { |
| return nil, errors.Wrap(err, fmt.Sprintf("Error parsing 'maxDelayInMs' field")) |
| } |
| m.MaxDelayInMs = maxDelayInMs |
| |
| cycleTimeInMs, err := ReadSimpleField(ctx, "cycleTimeInMs", ReadUnsignedInt(readBuffer, uint8(32))) |
| if err != nil { |
| return nil, errors.Wrap(err, fmt.Sprintf("Error parsing 'cycleTimeInMs' field")) |
| } |
| m.CycleTimeInMs = cycleTimeInMs |
| |
| reservedField0, err := ReadReservedField(ctx, "reserved", ReadUnsignedLong(readBuffer, uint8(64)), uint64(0x0000)) |
| if err != nil { |
| return nil, errors.Wrap(err, fmt.Sprintf("Error parsing reserved field")) |
| } |
| m.reservedField0 = reservedField0 |
| |
| reservedField1, err := ReadReservedField(ctx, "reserved", ReadUnsignedLong(readBuffer, uint8(64)), uint64(0x0000)) |
| if err != nil { |
| return nil, errors.Wrap(err, fmt.Sprintf("Error parsing reserved field")) |
| } |
| m.reservedField1 = reservedField1 |
| |
| if closeErr := readBuffer.CloseContext("AdsAddDeviceNotificationRequest"); closeErr != nil { |
| return nil, errors.Wrap(closeErr, "Error closing for AdsAddDeviceNotificationRequest") |
| } |
| |
| return m, nil |
| } |
| |
| func (m *_AdsAddDeviceNotificationRequest) 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 *_AdsAddDeviceNotificationRequest) SerializeWithWriteBuffer(ctx context.Context, writeBuffer utils.WriteBuffer) error { |
| positionAware := writeBuffer |
| _ = positionAware |
| log := zerolog.Ctx(ctx) |
| _ = log |
| ser := func() error { |
| if pushErr := writeBuffer.PushContext("AdsAddDeviceNotificationRequest"); pushErr != nil { |
| return errors.Wrap(pushErr, "Error pushing for AdsAddDeviceNotificationRequest") |
| } |
| |
| if err := WriteSimpleField[uint32](ctx, "indexGroup", m.GetIndexGroup(), WriteUnsignedInt(writeBuffer, 32)); err != nil { |
| return errors.Wrap(err, "Error serializing 'indexGroup' field") |
| } |
| |
| if err := WriteSimpleField[uint32](ctx, "indexOffset", m.GetIndexOffset(), WriteUnsignedInt(writeBuffer, 32)); err != nil { |
| return errors.Wrap(err, "Error serializing 'indexOffset' field") |
| } |
| |
| if err := WriteSimpleField[uint32](ctx, "length", m.GetLength(), WriteUnsignedInt(writeBuffer, 32)); err != nil { |
| return errors.Wrap(err, "Error serializing 'length' field") |
| } |
| |
| if err := WriteSimpleEnumField[AdsTransMode](ctx, "transmissionMode", "AdsTransMode", m.GetTransmissionMode(), WriteEnum[AdsTransMode, uint32](AdsTransMode.GetValue, AdsTransMode.PLC4XEnumName, WriteUnsignedInt(writeBuffer, 32))); err != nil { |
| return errors.Wrap(err, "Error serializing 'transmissionMode' field") |
| } |
| |
| if err := WriteSimpleField[uint32](ctx, "maxDelayInMs", m.GetMaxDelayInMs(), WriteUnsignedInt(writeBuffer, 32)); err != nil { |
| return errors.Wrap(err, "Error serializing 'maxDelayInMs' field") |
| } |
| |
| if err := WriteSimpleField[uint32](ctx, "cycleTimeInMs", m.GetCycleTimeInMs(), WriteUnsignedInt(writeBuffer, 32)); err != nil { |
| return errors.Wrap(err, "Error serializing 'cycleTimeInMs' field") |
| } |
| |
| if err := WriteReservedField[uint64](ctx, "reserved", uint64(0x0000), WriteUnsignedLong(writeBuffer, 64)); err != nil { |
| return errors.Wrap(err, "Error serializing 'reserved' field number 1") |
| } |
| |
| if err := WriteReservedField[uint64](ctx, "reserved", uint64(0x0000), WriteUnsignedLong(writeBuffer, 64)); err != nil { |
| return errors.Wrap(err, "Error serializing 'reserved' field number 2") |
| } |
| |
| if popErr := writeBuffer.PopContext("AdsAddDeviceNotificationRequest"); popErr != nil { |
| return errors.Wrap(popErr, "Error popping for AdsAddDeviceNotificationRequest") |
| } |
| return nil |
| } |
| return m.AmsPacketContract.(*_AmsPacket).serializeParent(ctx, writeBuffer, m, ser) |
| } |
| |
| func (m *_AdsAddDeviceNotificationRequest) IsAdsAddDeviceNotificationRequest() {} |
| |
| func (m *_AdsAddDeviceNotificationRequest) DeepCopy() any { |
| return m.deepCopy() |
| } |
| |
| func (m *_AdsAddDeviceNotificationRequest) deepCopy() *_AdsAddDeviceNotificationRequest { |
| if m == nil { |
| return nil |
| } |
| _AdsAddDeviceNotificationRequestCopy := &_AdsAddDeviceNotificationRequest{ |
| m.AmsPacketContract.(*_AmsPacket).deepCopy(), |
| m.IndexGroup, |
| m.IndexOffset, |
| m.Length, |
| m.TransmissionMode, |
| m.MaxDelayInMs, |
| m.CycleTimeInMs, |
| m.reservedField0, |
| m.reservedField1, |
| } |
| _AdsAddDeviceNotificationRequestCopy.AmsPacketContract.(*_AmsPacket)._SubType = m |
| return _AdsAddDeviceNotificationRequestCopy |
| } |
| |
| func (m *_AdsAddDeviceNotificationRequest) 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() |
| } |