plc4go/protocols/opcua/readwrite/model/OpcuaNodeIdServicesVariableChassis.go (103 lines of code) (raw):
/*
* 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.
// OpcuaNodeIdServicesVariableChassis is an enum
type OpcuaNodeIdServicesVariableChassis int32
type IOpcuaNodeIdServicesVariableChassis interface {
fmt.Stringer
utils.LengthAware
utils.Serializable
}
const (
OpcuaNodeIdServicesVariableChassis_ChassisIdSubtype_EnumValues OpcuaNodeIdServicesVariableChassis = 18948
)
var OpcuaNodeIdServicesVariableChassisValues []OpcuaNodeIdServicesVariableChassis
func init() {
_ = errors.New
OpcuaNodeIdServicesVariableChassisValues = []OpcuaNodeIdServicesVariableChassis{
OpcuaNodeIdServicesVariableChassis_ChassisIdSubtype_EnumValues,
}
}
func OpcuaNodeIdServicesVariableChassisByValue(value int32) (enum OpcuaNodeIdServicesVariableChassis, ok bool) {
switch value {
case 18948:
return OpcuaNodeIdServicesVariableChassis_ChassisIdSubtype_EnumValues, true
}
return 0, false
}
func OpcuaNodeIdServicesVariableChassisByName(value string) (enum OpcuaNodeIdServicesVariableChassis, ok bool) {
switch value {
case "ChassisIdSubtype_EnumValues":
return OpcuaNodeIdServicesVariableChassis_ChassisIdSubtype_EnumValues, true
}
return 0, false
}
func OpcuaNodeIdServicesVariableChassisKnows(value int32) bool {
for _, typeValue := range OpcuaNodeIdServicesVariableChassisValues {
if int32(typeValue) == value {
return true
}
}
return false
}
func CastOpcuaNodeIdServicesVariableChassis(structType any) OpcuaNodeIdServicesVariableChassis {
castFunc := func(typ any) OpcuaNodeIdServicesVariableChassis {
if sOpcuaNodeIdServicesVariableChassis, ok := typ.(OpcuaNodeIdServicesVariableChassis); ok {
return sOpcuaNodeIdServicesVariableChassis
}
return 0
}
return castFunc(structType)
}
func (m OpcuaNodeIdServicesVariableChassis) GetLengthInBits(ctx context.Context) uint16 {
return 32
}
func (m OpcuaNodeIdServicesVariableChassis) GetLengthInBytes(ctx context.Context) uint16 {
return m.GetLengthInBits(ctx) / 8
}
func OpcuaNodeIdServicesVariableChassisParse(ctx context.Context, theBytes []byte) (OpcuaNodeIdServicesVariableChassis, error) {
return OpcuaNodeIdServicesVariableChassisParseWithBuffer(ctx, utils.NewReadBufferByteBased(theBytes))
}
func OpcuaNodeIdServicesVariableChassisParseWithBuffer(ctx context.Context, readBuffer utils.ReadBuffer) (OpcuaNodeIdServicesVariableChassis, error) {
log := zerolog.Ctx(ctx)
_ = log
val, err := /*TODO: migrate me*/ /*TODO: migrate me*/ readBuffer.ReadInt32("OpcuaNodeIdServicesVariableChassis", 32)
if err != nil {
return 0, errors.Wrap(err, "error reading OpcuaNodeIdServicesVariableChassis")
}
if enum, ok := OpcuaNodeIdServicesVariableChassisByValue(val); !ok {
log.Debug().Interface("val", val).Msg("no value val found for OpcuaNodeIdServicesVariableChassis")
return OpcuaNodeIdServicesVariableChassis(val), nil
} else {
return enum, nil
}
}
func (e OpcuaNodeIdServicesVariableChassis) Serialize() ([]byte, error) {
wb := utils.NewWriteBufferByteBased()
if err := e.SerializeWithWriteBuffer(context.Background(), wb); err != nil {
return nil, err
}
return wb.GetBytes(), nil
}
func (e OpcuaNodeIdServicesVariableChassis) SerializeWithWriteBuffer(ctx context.Context, writeBuffer utils.WriteBuffer) error {
log := zerolog.Ctx(ctx)
_ = log
return /*TODO: migrate me*/ writeBuffer.WriteInt32("OpcuaNodeIdServicesVariableChassis", 32, int32(int32(e)), utils.WithAdditionalStringRepresentation(e.PLC4XEnumName()))
}
func (e OpcuaNodeIdServicesVariableChassis) GetValue() int32 {
return int32(e)
}
// PLC4XEnumName returns the name that is used in code to identify this enum
func (e OpcuaNodeIdServicesVariableChassis) PLC4XEnumName() string {
switch e {
case OpcuaNodeIdServicesVariableChassis_ChassisIdSubtype_EnumValues:
return "ChassisIdSubtype_EnumValues"
}
return fmt.Sprintf("Unknown(%v)", int32(e))
}
func (e OpcuaNodeIdServicesVariableChassis) String() string {
return e.PLC4XEnumName()
}