blob: fdf79ab2774e9d15637e41625e95f93b26e8ed00 [file] [log] [blame]
/*
* 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/utils"
)
// Code generated by code-generation. DO NOT EDIT.
// ModbusDeviceInformationLevel is an enum
type ModbusDeviceInformationLevel uint8
type IModbusDeviceInformationLevel interface {
fmt.Stringer
utils.LengthAware
utils.Serializable
}
const (
ModbusDeviceInformationLevel_BASIC ModbusDeviceInformationLevel = 0x01
ModbusDeviceInformationLevel_REGULAR ModbusDeviceInformationLevel = 0x02
ModbusDeviceInformationLevel_EXTENDED ModbusDeviceInformationLevel = 0x03
ModbusDeviceInformationLevel_INDIVIDUAL ModbusDeviceInformationLevel = 0x04
)
var ModbusDeviceInformationLevelValues []ModbusDeviceInformationLevel
func init() {
_ = errors.New
ModbusDeviceInformationLevelValues = []ModbusDeviceInformationLevel{
ModbusDeviceInformationLevel_BASIC,
ModbusDeviceInformationLevel_REGULAR,
ModbusDeviceInformationLevel_EXTENDED,
ModbusDeviceInformationLevel_INDIVIDUAL,
}
}
func ModbusDeviceInformationLevelByValue(value uint8) (enum ModbusDeviceInformationLevel, ok bool) {
switch value {
case 0x01:
return ModbusDeviceInformationLevel_BASIC, true
case 0x02:
return ModbusDeviceInformationLevel_REGULAR, true
case 0x03:
return ModbusDeviceInformationLevel_EXTENDED, true
case 0x04:
return ModbusDeviceInformationLevel_INDIVIDUAL, true
}
return 0, false
}
func ModbusDeviceInformationLevelByName(value string) (enum ModbusDeviceInformationLevel, ok bool) {
switch value {
case "BASIC":
return ModbusDeviceInformationLevel_BASIC, true
case "REGULAR":
return ModbusDeviceInformationLevel_REGULAR, true
case "EXTENDED":
return ModbusDeviceInformationLevel_EXTENDED, true
case "INDIVIDUAL":
return ModbusDeviceInformationLevel_INDIVIDUAL, true
}
return 0, false
}
func ModbusDeviceInformationLevelKnows(value uint8) bool {
for _, typeValue := range ModbusDeviceInformationLevelValues {
if uint8(typeValue) == value {
return true
}
}
return false
}
func CastModbusDeviceInformationLevel(structType any) ModbusDeviceInformationLevel {
castFunc := func(typ any) ModbusDeviceInformationLevel {
if sModbusDeviceInformationLevel, ok := typ.(ModbusDeviceInformationLevel); ok {
return sModbusDeviceInformationLevel
}
return 0
}
return castFunc(structType)
}
func (m ModbusDeviceInformationLevel) GetLengthInBits(ctx context.Context) uint16 {
return 8
}
func (m ModbusDeviceInformationLevel) GetLengthInBytes(ctx context.Context) uint16 {
return m.GetLengthInBits(ctx) / 8
}
func ModbusDeviceInformationLevelParse(ctx context.Context, theBytes []byte) (ModbusDeviceInformationLevel, error) {
return ModbusDeviceInformationLevelParseWithBuffer(ctx, utils.NewReadBufferByteBased(theBytes))
}
func ModbusDeviceInformationLevelParseWithBuffer(ctx context.Context, readBuffer utils.ReadBuffer) (ModbusDeviceInformationLevel, error) {
log := zerolog.Ctx(ctx)
_ = log
val, err := /*TODO: migrate me*/ /*TODO: migrate me*/ readBuffer.ReadUint8("ModbusDeviceInformationLevel", 8)
if err != nil {
return 0, errors.Wrap(err, "error reading ModbusDeviceInformationLevel")
}
if enum, ok := ModbusDeviceInformationLevelByValue(val); !ok {
log.Debug().Interface("val", val).Msg("no value val found for ModbusDeviceInformationLevel")
return ModbusDeviceInformationLevel(val), nil
} else {
return enum, nil
}
}
func (e ModbusDeviceInformationLevel) Serialize() ([]byte, error) {
wb := utils.NewWriteBufferByteBased()
if err := e.SerializeWithWriteBuffer(context.Background(), wb); err != nil {
return nil, err
}
return wb.GetBytes(), nil
}
func (e ModbusDeviceInformationLevel) SerializeWithWriteBuffer(ctx context.Context, writeBuffer utils.WriteBuffer) error {
log := zerolog.Ctx(ctx)
_ = log
return /*TODO: migrate me*/ writeBuffer.WriteUint8("ModbusDeviceInformationLevel", 8, uint8(uint8(e)), utils.WithAdditionalStringRepresentation(e.PLC4XEnumName()))
}
func (e ModbusDeviceInformationLevel) GetValue() uint8 {
return uint8(e)
}
// PLC4XEnumName returns the name that is used in code to identify this enum
func (e ModbusDeviceInformationLevel) PLC4XEnumName() string {
switch e {
case ModbusDeviceInformationLevel_BASIC:
return "BASIC"
case ModbusDeviceInformationLevel_REGULAR:
return "REGULAR"
case ModbusDeviceInformationLevel_EXTENDED:
return "EXTENDED"
case ModbusDeviceInformationLevel_INDIVIDUAL:
return "INDIVIDUAL"
}
return fmt.Sprintf("Unknown(%v)", uint8(e))
}
func (e ModbusDeviceInformationLevel) String() string {
return e.PLC4XEnumName()
}