| /* |
| * 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/rs/zerolog" |
| |
| "github.com/apache/plc4x/plc4go/spi/errors" |
| "github.com/apache/plc4x/plc4go/spi/utils" |
| ) |
| |
| // Code generated by code-generation. DO NOT EDIT. |
| |
| // DataTransportErrorCode is an enum |
| type DataTransportErrorCode uint8 |
| |
| type IDataTransportErrorCode interface { |
| fmt.Stringer |
| utils.LengthAware |
| utils.Serializable |
| } |
| |
| const ( |
| DataTransportErrorCode_RESERVED DataTransportErrorCode = 0x00 |
| DataTransportErrorCode_OK DataTransportErrorCode = 0xFF |
| DataTransportErrorCode_ACCESS_DENIED DataTransportErrorCode = 0x03 |
| DataTransportErrorCode_INVALID_ADDRESS DataTransportErrorCode = 0x05 |
| DataTransportErrorCode_DATA_TYPE_NOT_SUPPORTED DataTransportErrorCode = 0x06 |
| DataTransportErrorCode_NOT_FOUND DataTransportErrorCode = 0x0A |
| ) |
| |
| var DataTransportErrorCodeValues []DataTransportErrorCode |
| |
| func init() { |
| _ = errors.New |
| DataTransportErrorCodeValues = []DataTransportErrorCode{ |
| DataTransportErrorCode_RESERVED, |
| DataTransportErrorCode_OK, |
| DataTransportErrorCode_ACCESS_DENIED, |
| DataTransportErrorCode_INVALID_ADDRESS, |
| DataTransportErrorCode_DATA_TYPE_NOT_SUPPORTED, |
| DataTransportErrorCode_NOT_FOUND, |
| } |
| } |
| |
| func DataTransportErrorCodeByValue(value uint8) (enum DataTransportErrorCode, ok bool) { |
| switch value { |
| case 0x00: |
| return DataTransportErrorCode_RESERVED, true |
| case 0x03: |
| return DataTransportErrorCode_ACCESS_DENIED, true |
| case 0x05: |
| return DataTransportErrorCode_INVALID_ADDRESS, true |
| case 0x06: |
| return DataTransportErrorCode_DATA_TYPE_NOT_SUPPORTED, true |
| case 0x0A: |
| return DataTransportErrorCode_NOT_FOUND, true |
| case 0xFF: |
| return DataTransportErrorCode_OK, true |
| } |
| return 0, false |
| } |
| |
| func DataTransportErrorCodeByName(value string) (enum DataTransportErrorCode, ok bool) { |
| switch value { |
| case "RESERVED": |
| return DataTransportErrorCode_RESERVED, true |
| case "ACCESS_DENIED": |
| return DataTransportErrorCode_ACCESS_DENIED, true |
| case "INVALID_ADDRESS": |
| return DataTransportErrorCode_INVALID_ADDRESS, true |
| case "DATA_TYPE_NOT_SUPPORTED": |
| return DataTransportErrorCode_DATA_TYPE_NOT_SUPPORTED, true |
| case "NOT_FOUND": |
| return DataTransportErrorCode_NOT_FOUND, true |
| case "OK": |
| return DataTransportErrorCode_OK, true |
| } |
| return 0, false |
| } |
| |
| func DataTransportErrorCodeKnows(value uint8) bool { |
| for _, typeValue := range DataTransportErrorCodeValues { |
| if uint8(typeValue) == value { |
| return true |
| } |
| } |
| return false |
| } |
| |
| func CastDataTransportErrorCode(structType any) DataTransportErrorCode { |
| castFunc := func(typ any) DataTransportErrorCode { |
| if sDataTransportErrorCode, ok := typ.(DataTransportErrorCode); ok { |
| return sDataTransportErrorCode |
| } |
| return 0 |
| } |
| return castFunc(structType) |
| } |
| |
| func (m DataTransportErrorCode) GetLengthInBits(ctx context.Context) uint16 { |
| return 8 |
| } |
| |
| func (m DataTransportErrorCode) GetLengthInBytes(ctx context.Context) uint16 { |
| return m.GetLengthInBits(ctx) / 8 |
| } |
| |
| func DataTransportErrorCodeParse(ctx context.Context, theBytes []byte) (DataTransportErrorCode, error) { |
| return DataTransportErrorCodeParseWithBuffer(ctx, utils.NewReadBufferByteBased(theBytes)) |
| } |
| |
| func DataTransportErrorCodeParseWithBuffer(ctx context.Context, readBuffer utils.ReadBuffer) (DataTransportErrorCode, error) { |
| log := zerolog.Ctx(ctx) |
| _ = log |
| val, err := /*TODO: migrate me*/ /*TODO: migrate me*/ readBuffer.ReadUint8("DataTransportErrorCode", 8) |
| if err != nil { |
| return 0, errors.Wrap(err, "error reading DataTransportErrorCode") |
| } |
| if enum, ok := DataTransportErrorCodeByValue(val); !ok { |
| log.Debug().Interface("val", val).Msg("no value val found for DataTransportErrorCode") |
| return DataTransportErrorCode(val), nil |
| } else { |
| return enum, nil |
| } |
| } |
| |
| func (e DataTransportErrorCode) Serialize() ([]byte, error) { |
| wb := utils.NewWriteBufferByteBased() |
| if err := e.SerializeWithWriteBuffer(context.Background(), wb); err != nil { |
| return nil, err |
| } |
| return wb.GetBytes(), nil |
| } |
| |
| func (e DataTransportErrorCode) SerializeWithWriteBuffer(ctx context.Context, writeBuffer utils.WriteBuffer) error { |
| log := zerolog.Ctx(ctx) |
| _ = log |
| return /*TODO: migrate me*/ writeBuffer.WriteUint8("DataTransportErrorCode", 8, uint8(uint8(e)), utils.WithAdditionalStringRepresentation(e.PLC4XEnumName())) |
| } |
| |
| func (e DataTransportErrorCode) GetValue() uint8 { |
| return uint8(e) |
| } |
| |
| // PLC4XEnumName returns the name that is used in code to identify this enum |
| func (e DataTransportErrorCode) PLC4XEnumName() string { |
| switch e { |
| case DataTransportErrorCode_RESERVED: |
| return "RESERVED" |
| case DataTransportErrorCode_ACCESS_DENIED: |
| return "ACCESS_DENIED" |
| case DataTransportErrorCode_INVALID_ADDRESS: |
| return "INVALID_ADDRESS" |
| case DataTransportErrorCode_DATA_TYPE_NOT_SUPPORTED: |
| return "DATA_TYPE_NOT_SUPPORTED" |
| case DataTransportErrorCode_NOT_FOUND: |
| return "NOT_FOUND" |
| case DataTransportErrorCode_OK: |
| return "OK" |
| } |
| return fmt.Sprintf("Unknown(%v)", uint8(e)) |
| } |
| |
| func (e DataTransportErrorCode) String() string { |
| return e.PLC4XEnumName() |
| } |