/* ======================================================================== * Copyright (c) 2005-2021 The OPC Foundation, Inc. All rights reserved. * * OPC Foundation MIT License 1.00 * * Permission is hereby granted, free of charge, to any person * obtaining a copy of this software and associated documentation * files (the "Software"), to deal in the Software without * restriction, including without limitation the rights to use, * copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following * conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * * The complete license agreement can be found here: * http://opcfoundation.org/License/MIT/1.00/ * ======================================================================*/ /* base */ #include #include #include #include /* core */ #include #include #include /* stack */ #include #include /* types */ #include /* self */ #include #ifndef OPCUA_EXCLUDE_IdType /*============================================================================ * OpcUa_IdType_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_IdType_EnumeratedValues[] = { { "Numeric", 0 }, { "String", 1 }, { "Guid", 2 }, { "Opaque", 3 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_IdType_EnumeratedType = { "IdType", g_OpcUa_IdType_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_NodeClass /*============================================================================ * OpcUa_NodeClass_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_NodeClass_EnumeratedValues[] = { { "Unspecified", 0 }, { "Object", 1 }, { "Variable", 2 }, { "Method", 4 }, { "ObjectType", 8 }, { "VariableType", 16 }, { "ReferenceType", 32 }, { "DataType", 64 }, { "View", 128 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_NodeClass_EnumeratedType = { "NodeClass", g_OpcUa_NodeClass_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_PermissionType /*============================================================================ * OpcUa_PermissionType_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_PermissionType_EnumeratedValues[] = { { "None", 0 }, { "Browse", 1 }, { "ReadRolePermissions", 2 }, { "WriteAttribute", 4 }, { "WriteRolePermissions", 8 }, { "WriteHistorizing", 16 }, { "Read", 32 }, { "Write", 64 }, { "ReadHistory", 128 }, { "InsertHistory", 256 }, { "ModifyHistory", 512 }, { "DeleteHistory", 1024 }, { "ReceiveEvents", 2048 }, { "Call", 4096 }, { "AddReference", 8192 }, { "RemoveReference", 16384 }, { "DeleteNode", 32768 }, { "AddNode", 65536 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_PermissionType_EnumeratedType = { "PermissionType", g_OpcUa_PermissionType_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_AccessLevelType /*============================================================================ * OpcUa_AccessLevelType_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_AccessLevelType_EnumeratedValues[] = { { "None", 0 }, { "CurrentRead", 1 }, { "CurrentWrite", 2 }, { "HistoryRead", 4 }, { "HistoryWrite", 8 }, { "SemanticChange", 16 }, { "StatusWrite", 32 }, { "TimestampWrite", 64 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_AccessLevelType_EnumeratedType = { "AccessLevelType", g_OpcUa_AccessLevelType_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_AccessLevelExType /*============================================================================ * OpcUa_AccessLevelExType_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_AccessLevelExType_EnumeratedValues[] = { { "None", 0 }, { "CurrentRead", 1 }, { "CurrentWrite", 2 }, { "HistoryRead", 4 }, { "HistoryWrite", 8 }, { "SemanticChange", 16 }, { "StatusWrite", 32 }, { "TimestampWrite", 64 }, { "NonatomicRead", 256 }, { "NonatomicWrite", 512 }, { "WriteFullArrayOnly", 1024 }, { "NoSubDataTypes", 2048 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_AccessLevelExType_EnumeratedType = { "AccessLevelExType", g_OpcUa_AccessLevelExType_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_EventNotifierType /*============================================================================ * OpcUa_EventNotifierType_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_EventNotifierType_EnumeratedValues[] = { { "None", 0 }, { "SubscribeToEvents", 1 }, { "HistoryRead", 4 }, { "HistoryWrite", 8 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_EventNotifierType_EnumeratedType = { "EventNotifierType", g_OpcUa_EventNotifierType_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_AccessRestrictionType /*============================================================================ * OpcUa_AccessRestrictionType_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_AccessRestrictionType_EnumeratedValues[] = { { "None", 0 }, { "SigningRequired", 1 }, { "EncryptionRequired", 2 }, { "SessionRequired", 4 }, { "ApplyRestrictionsToBrowse", 8 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_AccessRestrictionType_EnumeratedType = { "AccessRestrictionType", g_OpcUa_AccessRestrictionType_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_RolePermissionType /*============================================================================ * OpcUa_RolePermissionType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_RolePermissionType_Initialize(OpcUa_RolePermissionType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, RoleId); OpcUa_Field_InitializeEnumerated(OpcUa_PermissionType, Permissions); } } /*============================================================================ * OpcUa_RolePermissionType_Clear *===========================================================================*/ OpcUa_Void OpcUa_RolePermissionType_Clear(OpcUa_RolePermissionType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, RoleId); OpcUa_Field_ClearEnumerated(OpcUa_PermissionType, Permissions); } } /*============================================================================ * OpcUa_RolePermissionType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_RolePermissionType_GetSize(OpcUa_RolePermissionType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RolePermissionType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, RoleId); OpcUa_Field_GetSizeEnumerated(OpcUa_PermissionType, Permissions); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RolePermissionType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_RolePermissionType_Encode(OpcUa_RolePermissionType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RolePermissionType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, RoleId); OpcUa_Field_WriteEnumerated(OpcUa_PermissionType, Permissions); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RolePermissionType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_RolePermissionType_Decode(OpcUa_RolePermissionType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RolePermissionType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_RolePermissionType_Initialize(a_pValue); OpcUa_Field_Read(NodeId, RoleId); OpcUa_Field_ReadEnumerated(OpcUa_PermissionType, Permissions); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_RolePermissionType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RolePermissionType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_RolePermissionType_EncodeableType = { "RolePermissionType", OpcUaId_RolePermissionType, OpcUaId_RolePermissionType_Encoding_DefaultBinary, OpcUaId_RolePermissionType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_RolePermissionType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_RolePermissionType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_RolePermissionType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_RolePermissionType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_RolePermissionType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_RolePermissionType_Decode }; #endif #ifndef OPCUA_EXCLUDE_StructureType /*============================================================================ * OpcUa_StructureType_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_StructureType_EnumeratedValues[] = { { "Structure", 0 }, { "StructureWithOptionalFields", 1 }, { "Union", 2 }, { "StructureWithSubtypedValues", 3 }, { "UnionWithSubtypedValues", 4 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_StructureType_EnumeratedType = { "StructureType", g_OpcUa_StructureType_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_StructureField /*============================================================================ * OpcUa_StructureField_Initialize *===========================================================================*/ OpcUa_Void OpcUa_StructureField_Initialize(OpcUa_StructureField* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(String, Name); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(NodeId, DataType); OpcUa_Field_Initialize(Int32, ValueRank); OpcUa_Field_InitializeArray(UInt32, ArrayDimensions); OpcUa_Field_Initialize(UInt32, MaxStringLength); OpcUa_Field_Initialize(Boolean, IsOptional); } } /*============================================================================ * OpcUa_StructureField_Clear *===========================================================================*/ OpcUa_Void OpcUa_StructureField_Clear(OpcUa_StructureField* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(String, Name); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(NodeId, DataType); OpcUa_Field_Clear(Int32, ValueRank); OpcUa_Field_ClearArray(UInt32, ArrayDimensions); OpcUa_Field_Clear(UInt32, MaxStringLength); OpcUa_Field_Clear(Boolean, IsOptional); } } /*============================================================================ * OpcUa_StructureField_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_StructureField_GetSize(OpcUa_StructureField* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "StructureField_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(String, Name); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(NodeId, DataType); OpcUa_Field_GetSize(Int32, ValueRank); OpcUa_Field_GetSizeArray(UInt32, ArrayDimensions); OpcUa_Field_GetSize(UInt32, MaxStringLength); OpcUa_Field_GetSize(Boolean, IsOptional); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_StructureField_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_StructureField_Encode(OpcUa_StructureField* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "StructureField_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(String, Name); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(NodeId, DataType); OpcUa_Field_Write(Int32, ValueRank); OpcUa_Field_WriteArray(UInt32, ArrayDimensions); OpcUa_Field_Write(UInt32, MaxStringLength); OpcUa_Field_Write(Boolean, IsOptional); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_StructureField_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_StructureField_Decode(OpcUa_StructureField* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "StructureField_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_StructureField_Initialize(a_pValue); OpcUa_Field_Read(String, Name); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(NodeId, DataType); OpcUa_Field_Read(Int32, ValueRank); OpcUa_Field_ReadArray(UInt32, ArrayDimensions); OpcUa_Field_Read(UInt32, MaxStringLength); OpcUa_Field_Read(Boolean, IsOptional); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_StructureField_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_StructureField_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_StructureField_EncodeableType = { "StructureField", OpcUaId_StructureField, OpcUaId_StructureField_Encoding_DefaultBinary, OpcUaId_StructureField_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_StructureField), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_StructureField_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_StructureField_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_StructureField_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_StructureField_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_StructureField_Decode }; #endif #ifndef OPCUA_EXCLUDE_StructureDefinition /*============================================================================ * OpcUa_StructureDefinition_Initialize *===========================================================================*/ OpcUa_Void OpcUa_StructureDefinition_Initialize(OpcUa_StructureDefinition* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, DefaultEncodingId); OpcUa_Field_Initialize(NodeId, BaseDataType); OpcUa_Field_InitializeEnumerated(OpcUa_StructureType, StructureType); OpcUa_Field_InitializeEncodeableArray(OpcUa_StructureField, Fields); } } /*============================================================================ * OpcUa_StructureDefinition_Clear *===========================================================================*/ OpcUa_Void OpcUa_StructureDefinition_Clear(OpcUa_StructureDefinition* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, DefaultEncodingId); OpcUa_Field_Clear(NodeId, BaseDataType); OpcUa_Field_ClearEnumerated(OpcUa_StructureType, StructureType); OpcUa_Field_ClearEncodeableArray(OpcUa_StructureField, Fields); } } /*============================================================================ * OpcUa_StructureDefinition_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_StructureDefinition_GetSize(OpcUa_StructureDefinition* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "StructureDefinition_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, DefaultEncodingId); OpcUa_Field_GetSize(NodeId, BaseDataType); OpcUa_Field_GetSizeEnumerated(OpcUa_StructureType, StructureType); OpcUa_Field_GetSizeEncodeableArray(OpcUa_StructureField, Fields); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_StructureDefinition_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_StructureDefinition_Encode(OpcUa_StructureDefinition* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "StructureDefinition_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, DefaultEncodingId); OpcUa_Field_Write(NodeId, BaseDataType); OpcUa_Field_WriteEnumerated(OpcUa_StructureType, StructureType); OpcUa_Field_WriteEncodeableArray(OpcUa_StructureField, Fields); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_StructureDefinition_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_StructureDefinition_Decode(OpcUa_StructureDefinition* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "StructureDefinition_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_StructureDefinition_Initialize(a_pValue); OpcUa_Field_Read(NodeId, DefaultEncodingId); OpcUa_Field_Read(NodeId, BaseDataType); OpcUa_Field_ReadEnumerated(OpcUa_StructureType, StructureType); OpcUa_Field_ReadEncodeableArray(OpcUa_StructureField, Fields); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_StructureDefinition_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_StructureDefinition_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_StructureDefinition_EncodeableType = { "StructureDefinition", OpcUaId_StructureDefinition, OpcUaId_StructureDefinition_Encoding_DefaultBinary, OpcUaId_StructureDefinition_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_StructureDefinition), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_StructureDefinition_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_StructureDefinition_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_StructureDefinition_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_StructureDefinition_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_StructureDefinition_Decode }; #endif #ifndef OPCUA_EXCLUDE_EnumDefinition /*============================================================================ * OpcUa_EnumDefinition_Initialize *===========================================================================*/ OpcUa_Void OpcUa_EnumDefinition_Initialize(OpcUa_EnumDefinition* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeableArray(OpcUa_EnumField, Fields); } } /*============================================================================ * OpcUa_EnumDefinition_Clear *===========================================================================*/ OpcUa_Void OpcUa_EnumDefinition_Clear(OpcUa_EnumDefinition* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeableArray(OpcUa_EnumField, Fields); } } /*============================================================================ * OpcUa_EnumDefinition_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_EnumDefinition_GetSize(OpcUa_EnumDefinition* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EnumDefinition_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeableArray(OpcUa_EnumField, Fields); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EnumDefinition_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_EnumDefinition_Encode(OpcUa_EnumDefinition* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EnumDefinition_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeableArray(OpcUa_EnumField, Fields); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EnumDefinition_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_EnumDefinition_Decode(OpcUa_EnumDefinition* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EnumDefinition_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_EnumDefinition_Initialize(a_pValue); OpcUa_Field_ReadEncodeableArray(OpcUa_EnumField, Fields); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_EnumDefinition_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EnumDefinition_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_EnumDefinition_EncodeableType = { "EnumDefinition", OpcUaId_EnumDefinition, OpcUaId_EnumDefinition_Encoding_DefaultBinary, OpcUaId_EnumDefinition_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_EnumDefinition), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_EnumDefinition_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_EnumDefinition_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_EnumDefinition_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_EnumDefinition_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_EnumDefinition_Decode }; #endif #ifndef OPCUA_EXCLUDE_Node /*============================================================================ * OpcUa_Node_Initialize *===========================================================================*/ OpcUa_Void OpcUa_Node_Initialize(OpcUa_Node* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_InitializeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Initialize(QualifiedName, BrowseName); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Initialize(UInt16, AccessRestrictions); OpcUa_Field_InitializeEncodeableArray(OpcUa_ReferenceNode, References); } } /*============================================================================ * OpcUa_Node_Clear *===========================================================================*/ OpcUa_Void OpcUa_Node_Clear(OpcUa_Node* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_ClearEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Clear(QualifiedName, BrowseName); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Clear(UInt16, AccessRestrictions); OpcUa_Field_ClearEncodeableArray(OpcUa_ReferenceNode, References); } } /*============================================================================ * OpcUa_Node_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_Node_GetSize(OpcUa_Node* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "Node_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSizeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_GetSize(QualifiedName, BrowseName); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_GetSize(UInt16, AccessRestrictions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_ReferenceNode, References); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_Node_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_Node_Encode(OpcUa_Node* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "Node_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_WriteEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Write(QualifiedName, BrowseName); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Write(UInt16, AccessRestrictions); OpcUa_Field_WriteEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_Node_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_Node_Decode(OpcUa_Node* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "Node_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_Node_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_ReadEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Read(QualifiedName, BrowseName); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Read(UInt16, AccessRestrictions); OpcUa_Field_ReadEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_Node_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_Node_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_Node_EncodeableType = { "Node", OpcUaId_Node, OpcUaId_Node_Encoding_DefaultBinary, OpcUaId_Node_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_Node), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_Node_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_Node_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_Node_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_Node_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_Node_Decode }; #endif #ifndef OPCUA_EXCLUDE_InstanceNode /*============================================================================ * OpcUa_InstanceNode_Initialize *===========================================================================*/ OpcUa_Void OpcUa_InstanceNode_Initialize(OpcUa_InstanceNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_InitializeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Initialize(QualifiedName, BrowseName); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Initialize(UInt16, AccessRestrictions); OpcUa_Field_InitializeEncodeableArray(OpcUa_ReferenceNode, References); } } /*============================================================================ * OpcUa_InstanceNode_Clear *===========================================================================*/ OpcUa_Void OpcUa_InstanceNode_Clear(OpcUa_InstanceNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_ClearEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Clear(QualifiedName, BrowseName); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Clear(UInt16, AccessRestrictions); OpcUa_Field_ClearEncodeableArray(OpcUa_ReferenceNode, References); } } /*============================================================================ * OpcUa_InstanceNode_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_InstanceNode_GetSize(OpcUa_InstanceNode* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "InstanceNode_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSizeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_GetSize(QualifiedName, BrowseName); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_GetSize(UInt16, AccessRestrictions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_ReferenceNode, References); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_InstanceNode_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_InstanceNode_Encode(OpcUa_InstanceNode* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "InstanceNode_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_WriteEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Write(QualifiedName, BrowseName); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Write(UInt16, AccessRestrictions); OpcUa_Field_WriteEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_InstanceNode_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_InstanceNode_Decode(OpcUa_InstanceNode* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "InstanceNode_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_InstanceNode_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_ReadEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Read(QualifiedName, BrowseName); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Read(UInt16, AccessRestrictions); OpcUa_Field_ReadEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_InstanceNode_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_InstanceNode_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_InstanceNode_EncodeableType = { "InstanceNode", OpcUaId_InstanceNode, OpcUaId_InstanceNode_Encoding_DefaultBinary, OpcUaId_InstanceNode_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_InstanceNode), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_InstanceNode_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_InstanceNode_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_InstanceNode_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_InstanceNode_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_InstanceNode_Decode }; #endif #ifndef OPCUA_EXCLUDE_TypeNode /*============================================================================ * OpcUa_TypeNode_Initialize *===========================================================================*/ OpcUa_Void OpcUa_TypeNode_Initialize(OpcUa_TypeNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_InitializeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Initialize(QualifiedName, BrowseName); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Initialize(UInt16, AccessRestrictions); OpcUa_Field_InitializeEncodeableArray(OpcUa_ReferenceNode, References); } } /*============================================================================ * OpcUa_TypeNode_Clear *===========================================================================*/ OpcUa_Void OpcUa_TypeNode_Clear(OpcUa_TypeNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_ClearEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Clear(QualifiedName, BrowseName); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Clear(UInt16, AccessRestrictions); OpcUa_Field_ClearEncodeableArray(OpcUa_ReferenceNode, References); } } /*============================================================================ * OpcUa_TypeNode_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_TypeNode_GetSize(OpcUa_TypeNode* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TypeNode_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSizeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_GetSize(QualifiedName, BrowseName); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_GetSize(UInt16, AccessRestrictions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_ReferenceNode, References); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TypeNode_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_TypeNode_Encode(OpcUa_TypeNode* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TypeNode_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_WriteEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Write(QualifiedName, BrowseName); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Write(UInt16, AccessRestrictions); OpcUa_Field_WriteEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TypeNode_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_TypeNode_Decode(OpcUa_TypeNode* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TypeNode_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_TypeNode_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_ReadEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Read(QualifiedName, BrowseName); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Read(UInt16, AccessRestrictions); OpcUa_Field_ReadEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_TypeNode_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TypeNode_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_TypeNode_EncodeableType = { "TypeNode", OpcUaId_TypeNode, OpcUaId_TypeNode_Encoding_DefaultBinary, OpcUaId_TypeNode_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_TypeNode), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_TypeNode_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_TypeNode_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_TypeNode_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_TypeNode_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_TypeNode_Decode }; #endif #ifndef OPCUA_EXCLUDE_ObjectNode /*============================================================================ * OpcUa_ObjectNode_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ObjectNode_Initialize(OpcUa_ObjectNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_InitializeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Initialize(QualifiedName, BrowseName); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Initialize(UInt16, AccessRestrictions); OpcUa_Field_InitializeEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Initialize(Byte, EventNotifier); } } /*============================================================================ * OpcUa_ObjectNode_Clear *===========================================================================*/ OpcUa_Void OpcUa_ObjectNode_Clear(OpcUa_ObjectNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_ClearEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Clear(QualifiedName, BrowseName); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Clear(UInt16, AccessRestrictions); OpcUa_Field_ClearEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Clear(Byte, EventNotifier); } } /*============================================================================ * OpcUa_ObjectNode_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ObjectNode_GetSize(OpcUa_ObjectNode* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ObjectNode_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSizeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_GetSize(QualifiedName, BrowseName); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_GetSize(UInt16, AccessRestrictions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_GetSize(Byte, EventNotifier); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ObjectNode_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ObjectNode_Encode(OpcUa_ObjectNode* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ObjectNode_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_WriteEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Write(QualifiedName, BrowseName); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Write(UInt16, AccessRestrictions); OpcUa_Field_WriteEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Write(Byte, EventNotifier); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ObjectNode_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ObjectNode_Decode(OpcUa_ObjectNode* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ObjectNode_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ObjectNode_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_ReadEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Read(QualifiedName, BrowseName); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Read(UInt16, AccessRestrictions); OpcUa_Field_ReadEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Read(Byte, EventNotifier); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ObjectNode_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ObjectNode_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ObjectNode_EncodeableType = { "ObjectNode", OpcUaId_ObjectNode, OpcUaId_ObjectNode_Encoding_DefaultBinary, OpcUaId_ObjectNode_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ObjectNode), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ObjectNode_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ObjectNode_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ObjectNode_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ObjectNode_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ObjectNode_Decode }; #endif #ifndef OPCUA_EXCLUDE_ObjectTypeNode /*============================================================================ * OpcUa_ObjectTypeNode_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ObjectTypeNode_Initialize(OpcUa_ObjectTypeNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_InitializeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Initialize(QualifiedName, BrowseName); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Initialize(UInt16, AccessRestrictions); OpcUa_Field_InitializeEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Initialize(Boolean, IsAbstract); } } /*============================================================================ * OpcUa_ObjectTypeNode_Clear *===========================================================================*/ OpcUa_Void OpcUa_ObjectTypeNode_Clear(OpcUa_ObjectTypeNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_ClearEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Clear(QualifiedName, BrowseName); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Clear(UInt16, AccessRestrictions); OpcUa_Field_ClearEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Clear(Boolean, IsAbstract); } } /*============================================================================ * OpcUa_ObjectTypeNode_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ObjectTypeNode_GetSize(OpcUa_ObjectTypeNode* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ObjectTypeNode_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSizeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_GetSize(QualifiedName, BrowseName); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_GetSize(UInt16, AccessRestrictions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_GetSize(Boolean, IsAbstract); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ObjectTypeNode_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ObjectTypeNode_Encode(OpcUa_ObjectTypeNode* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ObjectTypeNode_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_WriteEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Write(QualifiedName, BrowseName); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Write(UInt16, AccessRestrictions); OpcUa_Field_WriteEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Write(Boolean, IsAbstract); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ObjectTypeNode_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ObjectTypeNode_Decode(OpcUa_ObjectTypeNode* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ObjectTypeNode_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ObjectTypeNode_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_ReadEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Read(QualifiedName, BrowseName); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Read(UInt16, AccessRestrictions); OpcUa_Field_ReadEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Read(Boolean, IsAbstract); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ObjectTypeNode_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ObjectTypeNode_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ObjectTypeNode_EncodeableType = { "ObjectTypeNode", OpcUaId_ObjectTypeNode, OpcUaId_ObjectTypeNode_Encoding_DefaultBinary, OpcUaId_ObjectTypeNode_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ObjectTypeNode), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ObjectTypeNode_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ObjectTypeNode_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ObjectTypeNode_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ObjectTypeNode_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ObjectTypeNode_Decode }; #endif #ifndef OPCUA_EXCLUDE_VariableNode /*============================================================================ * OpcUa_VariableNode_Initialize *===========================================================================*/ OpcUa_Void OpcUa_VariableNode_Initialize(OpcUa_VariableNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_InitializeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Initialize(QualifiedName, BrowseName); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Initialize(UInt16, AccessRestrictions); OpcUa_Field_InitializeEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Initialize(Variant, Value); OpcUa_Field_Initialize(NodeId, DataType); OpcUa_Field_Initialize(Int32, ValueRank); OpcUa_Field_InitializeArray(UInt32, ArrayDimensions); OpcUa_Field_Initialize(Byte, AccessLevel); OpcUa_Field_Initialize(Byte, UserAccessLevel); OpcUa_Field_Initialize(Double, MinimumSamplingInterval); OpcUa_Field_Initialize(Boolean, Historizing); OpcUa_Field_Initialize(UInt32, AccessLevelEx); } } /*============================================================================ * OpcUa_VariableNode_Clear *===========================================================================*/ OpcUa_Void OpcUa_VariableNode_Clear(OpcUa_VariableNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_ClearEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Clear(QualifiedName, BrowseName); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Clear(UInt16, AccessRestrictions); OpcUa_Field_ClearEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Clear(Variant, Value); OpcUa_Field_Clear(NodeId, DataType); OpcUa_Field_Clear(Int32, ValueRank); OpcUa_Field_ClearArray(UInt32, ArrayDimensions); OpcUa_Field_Clear(Byte, AccessLevel); OpcUa_Field_Clear(Byte, UserAccessLevel); OpcUa_Field_Clear(Double, MinimumSamplingInterval); OpcUa_Field_Clear(Boolean, Historizing); OpcUa_Field_Clear(UInt32, AccessLevelEx); } } /*============================================================================ * OpcUa_VariableNode_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_VariableNode_GetSize(OpcUa_VariableNode* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "VariableNode_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSizeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_GetSize(QualifiedName, BrowseName); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_GetSize(UInt16, AccessRestrictions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_GetSize(Variant, Value); OpcUa_Field_GetSize(NodeId, DataType); OpcUa_Field_GetSize(Int32, ValueRank); OpcUa_Field_GetSizeArray(UInt32, ArrayDimensions); OpcUa_Field_GetSize(Byte, AccessLevel); OpcUa_Field_GetSize(Byte, UserAccessLevel); OpcUa_Field_GetSize(Double, MinimumSamplingInterval); OpcUa_Field_GetSize(Boolean, Historizing); OpcUa_Field_GetSize(UInt32, AccessLevelEx); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_VariableNode_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_VariableNode_Encode(OpcUa_VariableNode* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "VariableNode_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_WriteEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Write(QualifiedName, BrowseName); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Write(UInt16, AccessRestrictions); OpcUa_Field_WriteEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Write(Variant, Value); OpcUa_Field_Write(NodeId, DataType); OpcUa_Field_Write(Int32, ValueRank); OpcUa_Field_WriteArray(UInt32, ArrayDimensions); OpcUa_Field_Write(Byte, AccessLevel); OpcUa_Field_Write(Byte, UserAccessLevel); OpcUa_Field_Write(Double, MinimumSamplingInterval); OpcUa_Field_Write(Boolean, Historizing); OpcUa_Field_Write(UInt32, AccessLevelEx); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_VariableNode_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_VariableNode_Decode(OpcUa_VariableNode* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "VariableNode_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_VariableNode_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_ReadEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Read(QualifiedName, BrowseName); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Read(UInt16, AccessRestrictions); OpcUa_Field_ReadEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Read(Variant, Value); OpcUa_Field_Read(NodeId, DataType); OpcUa_Field_Read(Int32, ValueRank); OpcUa_Field_ReadArray(UInt32, ArrayDimensions); OpcUa_Field_Read(Byte, AccessLevel); OpcUa_Field_Read(Byte, UserAccessLevel); OpcUa_Field_Read(Double, MinimumSamplingInterval); OpcUa_Field_Read(Boolean, Historizing); OpcUa_Field_Read(UInt32, AccessLevelEx); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_VariableNode_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_VariableNode_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_VariableNode_EncodeableType = { "VariableNode", OpcUaId_VariableNode, OpcUaId_VariableNode_Encoding_DefaultBinary, OpcUaId_VariableNode_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_VariableNode), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_VariableNode_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_VariableNode_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_VariableNode_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_VariableNode_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_VariableNode_Decode }; #endif #ifndef OPCUA_EXCLUDE_VariableTypeNode /*============================================================================ * OpcUa_VariableTypeNode_Initialize *===========================================================================*/ OpcUa_Void OpcUa_VariableTypeNode_Initialize(OpcUa_VariableTypeNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_InitializeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Initialize(QualifiedName, BrowseName); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Initialize(UInt16, AccessRestrictions); OpcUa_Field_InitializeEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Initialize(Variant, Value); OpcUa_Field_Initialize(NodeId, DataType); OpcUa_Field_Initialize(Int32, ValueRank); OpcUa_Field_InitializeArray(UInt32, ArrayDimensions); OpcUa_Field_Initialize(Boolean, IsAbstract); } } /*============================================================================ * OpcUa_VariableTypeNode_Clear *===========================================================================*/ OpcUa_Void OpcUa_VariableTypeNode_Clear(OpcUa_VariableTypeNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_ClearEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Clear(QualifiedName, BrowseName); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Clear(UInt16, AccessRestrictions); OpcUa_Field_ClearEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Clear(Variant, Value); OpcUa_Field_Clear(NodeId, DataType); OpcUa_Field_Clear(Int32, ValueRank); OpcUa_Field_ClearArray(UInt32, ArrayDimensions); OpcUa_Field_Clear(Boolean, IsAbstract); } } /*============================================================================ * OpcUa_VariableTypeNode_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_VariableTypeNode_GetSize(OpcUa_VariableTypeNode* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "VariableTypeNode_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSizeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_GetSize(QualifiedName, BrowseName); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_GetSize(UInt16, AccessRestrictions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_GetSize(Variant, Value); OpcUa_Field_GetSize(NodeId, DataType); OpcUa_Field_GetSize(Int32, ValueRank); OpcUa_Field_GetSizeArray(UInt32, ArrayDimensions); OpcUa_Field_GetSize(Boolean, IsAbstract); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_VariableTypeNode_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_VariableTypeNode_Encode(OpcUa_VariableTypeNode* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "VariableTypeNode_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_WriteEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Write(QualifiedName, BrowseName); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Write(UInt16, AccessRestrictions); OpcUa_Field_WriteEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Write(Variant, Value); OpcUa_Field_Write(NodeId, DataType); OpcUa_Field_Write(Int32, ValueRank); OpcUa_Field_WriteArray(UInt32, ArrayDimensions); OpcUa_Field_Write(Boolean, IsAbstract); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_VariableTypeNode_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_VariableTypeNode_Decode(OpcUa_VariableTypeNode* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "VariableTypeNode_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_VariableTypeNode_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_ReadEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Read(QualifiedName, BrowseName); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Read(UInt16, AccessRestrictions); OpcUa_Field_ReadEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Read(Variant, Value); OpcUa_Field_Read(NodeId, DataType); OpcUa_Field_Read(Int32, ValueRank); OpcUa_Field_ReadArray(UInt32, ArrayDimensions); OpcUa_Field_Read(Boolean, IsAbstract); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_VariableTypeNode_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_VariableTypeNode_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_VariableTypeNode_EncodeableType = { "VariableTypeNode", OpcUaId_VariableTypeNode, OpcUaId_VariableTypeNode_Encoding_DefaultBinary, OpcUaId_VariableTypeNode_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_VariableTypeNode), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_VariableTypeNode_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_VariableTypeNode_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_VariableTypeNode_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_VariableTypeNode_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_VariableTypeNode_Decode }; #endif #ifndef OPCUA_EXCLUDE_ReferenceTypeNode /*============================================================================ * OpcUa_ReferenceTypeNode_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ReferenceTypeNode_Initialize(OpcUa_ReferenceTypeNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_InitializeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Initialize(QualifiedName, BrowseName); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Initialize(UInt16, AccessRestrictions); OpcUa_Field_InitializeEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Initialize(Boolean, IsAbstract); OpcUa_Field_Initialize(Boolean, Symmetric); OpcUa_Field_Initialize(LocalizedText, InverseName); } } /*============================================================================ * OpcUa_ReferenceTypeNode_Clear *===========================================================================*/ OpcUa_Void OpcUa_ReferenceTypeNode_Clear(OpcUa_ReferenceTypeNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_ClearEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Clear(QualifiedName, BrowseName); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Clear(UInt16, AccessRestrictions); OpcUa_Field_ClearEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Clear(Boolean, IsAbstract); OpcUa_Field_Clear(Boolean, Symmetric); OpcUa_Field_Clear(LocalizedText, InverseName); } } /*============================================================================ * OpcUa_ReferenceTypeNode_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ReferenceTypeNode_GetSize(OpcUa_ReferenceTypeNode* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReferenceTypeNode_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSizeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_GetSize(QualifiedName, BrowseName); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_GetSize(UInt16, AccessRestrictions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_GetSize(Boolean, IsAbstract); OpcUa_Field_GetSize(Boolean, Symmetric); OpcUa_Field_GetSize(LocalizedText, InverseName); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReferenceTypeNode_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReferenceTypeNode_Encode(OpcUa_ReferenceTypeNode* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReferenceTypeNode_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_WriteEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Write(QualifiedName, BrowseName); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Write(UInt16, AccessRestrictions); OpcUa_Field_WriteEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Write(Boolean, IsAbstract); OpcUa_Field_Write(Boolean, Symmetric); OpcUa_Field_Write(LocalizedText, InverseName); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReferenceTypeNode_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReferenceTypeNode_Decode(OpcUa_ReferenceTypeNode* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReferenceTypeNode_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ReferenceTypeNode_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_ReadEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Read(QualifiedName, BrowseName); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Read(UInt16, AccessRestrictions); OpcUa_Field_ReadEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Read(Boolean, IsAbstract); OpcUa_Field_Read(Boolean, Symmetric); OpcUa_Field_Read(LocalizedText, InverseName); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ReferenceTypeNode_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReferenceTypeNode_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ReferenceTypeNode_EncodeableType = { "ReferenceTypeNode", OpcUaId_ReferenceTypeNode, OpcUaId_ReferenceTypeNode_Encoding_DefaultBinary, OpcUaId_ReferenceTypeNode_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ReferenceTypeNode), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ReferenceTypeNode_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ReferenceTypeNode_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ReferenceTypeNode_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ReferenceTypeNode_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ReferenceTypeNode_Decode }; #endif #ifndef OPCUA_EXCLUDE_MethodNode /*============================================================================ * OpcUa_MethodNode_Initialize *===========================================================================*/ OpcUa_Void OpcUa_MethodNode_Initialize(OpcUa_MethodNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_InitializeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Initialize(QualifiedName, BrowseName); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Initialize(UInt16, AccessRestrictions); OpcUa_Field_InitializeEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Initialize(Boolean, Executable); OpcUa_Field_Initialize(Boolean, UserExecutable); } } /*============================================================================ * OpcUa_MethodNode_Clear *===========================================================================*/ OpcUa_Void OpcUa_MethodNode_Clear(OpcUa_MethodNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_ClearEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Clear(QualifiedName, BrowseName); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Clear(UInt16, AccessRestrictions); OpcUa_Field_ClearEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Clear(Boolean, Executable); OpcUa_Field_Clear(Boolean, UserExecutable); } } /*============================================================================ * OpcUa_MethodNode_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_MethodNode_GetSize(OpcUa_MethodNode* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MethodNode_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSizeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_GetSize(QualifiedName, BrowseName); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_GetSize(UInt16, AccessRestrictions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_GetSize(Boolean, Executable); OpcUa_Field_GetSize(Boolean, UserExecutable); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MethodNode_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_MethodNode_Encode(OpcUa_MethodNode* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MethodNode_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_WriteEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Write(QualifiedName, BrowseName); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Write(UInt16, AccessRestrictions); OpcUa_Field_WriteEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Write(Boolean, Executable); OpcUa_Field_Write(Boolean, UserExecutable); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MethodNode_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_MethodNode_Decode(OpcUa_MethodNode* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MethodNode_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_MethodNode_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_ReadEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Read(QualifiedName, BrowseName); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Read(UInt16, AccessRestrictions); OpcUa_Field_ReadEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Read(Boolean, Executable); OpcUa_Field_Read(Boolean, UserExecutable); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_MethodNode_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MethodNode_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_MethodNode_EncodeableType = { "MethodNode", OpcUaId_MethodNode, OpcUaId_MethodNode_Encoding_DefaultBinary, OpcUaId_MethodNode_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_MethodNode), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_MethodNode_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_MethodNode_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_MethodNode_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_MethodNode_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_MethodNode_Decode }; #endif #ifndef OPCUA_EXCLUDE_ViewNode /*============================================================================ * OpcUa_ViewNode_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ViewNode_Initialize(OpcUa_ViewNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_InitializeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Initialize(QualifiedName, BrowseName); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Initialize(UInt16, AccessRestrictions); OpcUa_Field_InitializeEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Initialize(Boolean, ContainsNoLoops); OpcUa_Field_Initialize(Byte, EventNotifier); } } /*============================================================================ * OpcUa_ViewNode_Clear *===========================================================================*/ OpcUa_Void OpcUa_ViewNode_Clear(OpcUa_ViewNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_ClearEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Clear(QualifiedName, BrowseName); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Clear(UInt16, AccessRestrictions); OpcUa_Field_ClearEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Clear(Boolean, ContainsNoLoops); OpcUa_Field_Clear(Byte, EventNotifier); } } /*============================================================================ * OpcUa_ViewNode_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ViewNode_GetSize(OpcUa_ViewNode* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ViewNode_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSizeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_GetSize(QualifiedName, BrowseName); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_GetSize(UInt16, AccessRestrictions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_GetSize(Boolean, ContainsNoLoops); OpcUa_Field_GetSize(Byte, EventNotifier); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ViewNode_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ViewNode_Encode(OpcUa_ViewNode* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ViewNode_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_WriteEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Write(QualifiedName, BrowseName); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Write(UInt16, AccessRestrictions); OpcUa_Field_WriteEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Write(Boolean, ContainsNoLoops); OpcUa_Field_Write(Byte, EventNotifier); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ViewNode_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ViewNode_Decode(OpcUa_ViewNode* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ViewNode_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ViewNode_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_ReadEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Read(QualifiedName, BrowseName); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Read(UInt16, AccessRestrictions); OpcUa_Field_ReadEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Read(Boolean, ContainsNoLoops); OpcUa_Field_Read(Byte, EventNotifier); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ViewNode_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ViewNode_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ViewNode_EncodeableType = { "ViewNode", OpcUaId_ViewNode, OpcUaId_ViewNode_Encoding_DefaultBinary, OpcUaId_ViewNode_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ViewNode), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ViewNode_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ViewNode_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ViewNode_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ViewNode_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ViewNode_Decode }; #endif #ifndef OPCUA_EXCLUDE_DataTypeNode /*============================================================================ * OpcUa_DataTypeNode_Initialize *===========================================================================*/ OpcUa_Void OpcUa_DataTypeNode_Initialize(OpcUa_DataTypeNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_InitializeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Initialize(QualifiedName, BrowseName); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_InitializeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Initialize(UInt16, AccessRestrictions); OpcUa_Field_InitializeEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Initialize(Boolean, IsAbstract); OpcUa_Field_Initialize(ExtensionObject, DataTypeDefinition); } } /*============================================================================ * OpcUa_DataTypeNode_Clear *===========================================================================*/ OpcUa_Void OpcUa_DataTypeNode_Clear(OpcUa_DataTypeNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_ClearEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Clear(QualifiedName, BrowseName); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ClearEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Clear(UInt16, AccessRestrictions); OpcUa_Field_ClearEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Clear(Boolean, IsAbstract); OpcUa_Field_Clear(ExtensionObject, DataTypeDefinition); } } /*============================================================================ * OpcUa_DataTypeNode_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_DataTypeNode_GetSize(OpcUa_DataTypeNode* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DataTypeNode_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSizeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_GetSize(QualifiedName, BrowseName); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_GetSize(UInt16, AccessRestrictions); OpcUa_Field_GetSizeEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_GetSize(Boolean, IsAbstract); OpcUa_Field_GetSize(ExtensionObject, DataTypeDefinition); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DataTypeNode_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_DataTypeNode_Encode(OpcUa_DataTypeNode* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DataTypeNode_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_WriteEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Write(QualifiedName, BrowseName); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_WriteEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Write(UInt16, AccessRestrictions); OpcUa_Field_WriteEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Write(Boolean, IsAbstract); OpcUa_Field_Write(ExtensionObject, DataTypeDefinition); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DataTypeNode_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_DataTypeNode_Decode(OpcUa_DataTypeNode* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DataTypeNode_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_DataTypeNode_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_ReadEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Read(QualifiedName, BrowseName); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, RolePermissions); OpcUa_Field_ReadEncodeableArray(OpcUa_RolePermissionType, UserRolePermissions); OpcUa_Field_Read(UInt16, AccessRestrictions); OpcUa_Field_ReadEncodeableArray(OpcUa_ReferenceNode, References); OpcUa_Field_Read(Boolean, IsAbstract); OpcUa_Field_Read(ExtensionObject, DataTypeDefinition); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_DataTypeNode_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DataTypeNode_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_DataTypeNode_EncodeableType = { "DataTypeNode", OpcUaId_DataTypeNode, OpcUaId_DataTypeNode_Encoding_DefaultBinary, OpcUaId_DataTypeNode_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_DataTypeNode), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_DataTypeNode_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_DataTypeNode_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_DataTypeNode_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_DataTypeNode_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_DataTypeNode_Decode }; #endif #ifndef OPCUA_EXCLUDE_ReferenceNode /*============================================================================ * OpcUa_ReferenceNode_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ReferenceNode_Initialize(OpcUa_ReferenceNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, ReferenceTypeId); OpcUa_Field_Initialize(Boolean, IsInverse); OpcUa_Field_Initialize(ExpandedNodeId, TargetId); } } /*============================================================================ * OpcUa_ReferenceNode_Clear *===========================================================================*/ OpcUa_Void OpcUa_ReferenceNode_Clear(OpcUa_ReferenceNode* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, ReferenceTypeId); OpcUa_Field_Clear(Boolean, IsInverse); OpcUa_Field_Clear(ExpandedNodeId, TargetId); } } /*============================================================================ * OpcUa_ReferenceNode_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ReferenceNode_GetSize(OpcUa_ReferenceNode* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReferenceNode_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, ReferenceTypeId); OpcUa_Field_GetSize(Boolean, IsInverse); OpcUa_Field_GetSize(ExpandedNodeId, TargetId); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReferenceNode_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReferenceNode_Encode(OpcUa_ReferenceNode* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReferenceNode_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, ReferenceTypeId); OpcUa_Field_Write(Boolean, IsInverse); OpcUa_Field_Write(ExpandedNodeId, TargetId); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReferenceNode_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReferenceNode_Decode(OpcUa_ReferenceNode* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReferenceNode_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ReferenceNode_Initialize(a_pValue); OpcUa_Field_Read(NodeId, ReferenceTypeId); OpcUa_Field_Read(Boolean, IsInverse); OpcUa_Field_Read(ExpandedNodeId, TargetId); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ReferenceNode_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReferenceNode_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ReferenceNode_EncodeableType = { "ReferenceNode", OpcUaId_ReferenceNode, OpcUaId_ReferenceNode_Encoding_DefaultBinary, OpcUaId_ReferenceNode_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ReferenceNode), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ReferenceNode_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ReferenceNode_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ReferenceNode_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ReferenceNode_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ReferenceNode_Decode }; #endif #ifndef OPCUA_EXCLUDE_Argument /*============================================================================ * OpcUa_Argument_Initialize *===========================================================================*/ OpcUa_Void OpcUa_Argument_Initialize(OpcUa_Argument* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(String, Name); OpcUa_Field_Initialize(NodeId, DataType); OpcUa_Field_Initialize(Int32, ValueRank); OpcUa_Field_InitializeArray(UInt32, ArrayDimensions); OpcUa_Field_Initialize(LocalizedText, Description); } } /*============================================================================ * OpcUa_Argument_Clear *===========================================================================*/ OpcUa_Void OpcUa_Argument_Clear(OpcUa_Argument* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(String, Name); OpcUa_Field_Clear(NodeId, DataType); OpcUa_Field_Clear(Int32, ValueRank); OpcUa_Field_ClearArray(UInt32, ArrayDimensions); OpcUa_Field_Clear(LocalizedText, Description); } } /*============================================================================ * OpcUa_Argument_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_Argument_GetSize(OpcUa_Argument* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "Argument_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(String, Name); OpcUa_Field_GetSize(NodeId, DataType); OpcUa_Field_GetSize(Int32, ValueRank); OpcUa_Field_GetSizeArray(UInt32, ArrayDimensions); OpcUa_Field_GetSize(LocalizedText, Description); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_Argument_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_Argument_Encode(OpcUa_Argument* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "Argument_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(String, Name); OpcUa_Field_Write(NodeId, DataType); OpcUa_Field_Write(Int32, ValueRank); OpcUa_Field_WriteArray(UInt32, ArrayDimensions); OpcUa_Field_Write(LocalizedText, Description); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_Argument_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_Argument_Decode(OpcUa_Argument* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "Argument_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_Argument_Initialize(a_pValue); OpcUa_Field_Read(String, Name); OpcUa_Field_Read(NodeId, DataType); OpcUa_Field_Read(Int32, ValueRank); OpcUa_Field_ReadArray(UInt32, ArrayDimensions); OpcUa_Field_Read(LocalizedText, Description); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_Argument_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_Argument_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_Argument_EncodeableType = { "Argument", OpcUaId_Argument, OpcUaId_Argument_Encoding_DefaultBinary, OpcUaId_Argument_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_Argument), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_Argument_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_Argument_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_Argument_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_Argument_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_Argument_Decode }; #endif #ifndef OPCUA_EXCLUDE_EnumValueType /*============================================================================ * OpcUa_EnumValueType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_EnumValueType_Initialize(OpcUa_EnumValueType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(Int64, Value); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); } } /*============================================================================ * OpcUa_EnumValueType_Clear *===========================================================================*/ OpcUa_Void OpcUa_EnumValueType_Clear(OpcUa_EnumValueType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(Int64, Value); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); } } /*============================================================================ * OpcUa_EnumValueType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_EnumValueType_GetSize(OpcUa_EnumValueType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EnumValueType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(Int64, Value); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EnumValueType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_EnumValueType_Encode(OpcUa_EnumValueType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EnumValueType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(Int64, Value); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EnumValueType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_EnumValueType_Decode(OpcUa_EnumValueType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EnumValueType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_EnumValueType_Initialize(a_pValue); OpcUa_Field_Read(Int64, Value); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_EnumValueType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EnumValueType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_EnumValueType_EncodeableType = { "EnumValueType", OpcUaId_EnumValueType, OpcUaId_EnumValueType_Encoding_DefaultBinary, OpcUaId_EnumValueType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_EnumValueType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_EnumValueType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_EnumValueType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_EnumValueType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_EnumValueType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_EnumValueType_Decode }; #endif #ifndef OPCUA_EXCLUDE_EnumField /*============================================================================ * OpcUa_EnumField_Initialize *===========================================================================*/ OpcUa_Void OpcUa_EnumField_Initialize(OpcUa_EnumField* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(Int64, Value); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(String, Name); } } /*============================================================================ * OpcUa_EnumField_Clear *===========================================================================*/ OpcUa_Void OpcUa_EnumField_Clear(OpcUa_EnumField* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(Int64, Value); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(String, Name); } } /*============================================================================ * OpcUa_EnumField_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_EnumField_GetSize(OpcUa_EnumField* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EnumField_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(Int64, Value); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(String, Name); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EnumField_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_EnumField_Encode(OpcUa_EnumField* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EnumField_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(Int64, Value); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(String, Name); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EnumField_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_EnumField_Decode(OpcUa_EnumField* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EnumField_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_EnumField_Initialize(a_pValue); OpcUa_Field_Read(Int64, Value); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(String, Name); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_EnumField_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EnumField_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_EnumField_EncodeableType = { "EnumField", OpcUaId_EnumField, OpcUaId_EnumField_Encoding_DefaultBinary, OpcUaId_EnumField_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_EnumField), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_EnumField_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_EnumField_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_EnumField_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_EnumField_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_EnumField_Decode }; #endif #ifndef OPCUA_EXCLUDE_OptionSet /*============================================================================ * OpcUa_OptionSet_Initialize *===========================================================================*/ OpcUa_Void OpcUa_OptionSet_Initialize(OpcUa_OptionSet* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(ByteString, Value); OpcUa_Field_Initialize(ByteString, ValidBits); } } /*============================================================================ * OpcUa_OptionSet_Clear *===========================================================================*/ OpcUa_Void OpcUa_OptionSet_Clear(OpcUa_OptionSet* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(ByteString, Value); OpcUa_Field_Clear(ByteString, ValidBits); } } /*============================================================================ * OpcUa_OptionSet_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_OptionSet_GetSize(OpcUa_OptionSet* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "OptionSet_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(ByteString, Value); OpcUa_Field_GetSize(ByteString, ValidBits); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_OptionSet_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_OptionSet_Encode(OpcUa_OptionSet* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "OptionSet_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(ByteString, Value); OpcUa_Field_Write(ByteString, ValidBits); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_OptionSet_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_OptionSet_Decode(OpcUa_OptionSet* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "OptionSet_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_OptionSet_Initialize(a_pValue); OpcUa_Field_Read(ByteString, Value); OpcUa_Field_Read(ByteString, ValidBits); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_OptionSet_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_OptionSet_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_OptionSet_EncodeableType = { "OptionSet", OpcUaId_OptionSet, OpcUaId_OptionSet_Encoding_DefaultBinary, OpcUaId_OptionSet_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_OptionSet), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_OptionSet_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_OptionSet_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_OptionSet_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_OptionSet_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_OptionSet_Decode }; #endif #ifndef OPCUA_EXCLUDE_TimeZoneDataType /*============================================================================ * OpcUa_TimeZoneDataType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_TimeZoneDataType_Initialize(OpcUa_TimeZoneDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(Int16, Offset); OpcUa_Field_Initialize(Boolean, DaylightSavingInOffset); } } /*============================================================================ * OpcUa_TimeZoneDataType_Clear *===========================================================================*/ OpcUa_Void OpcUa_TimeZoneDataType_Clear(OpcUa_TimeZoneDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(Int16, Offset); OpcUa_Field_Clear(Boolean, DaylightSavingInOffset); } } /*============================================================================ * OpcUa_TimeZoneDataType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_TimeZoneDataType_GetSize(OpcUa_TimeZoneDataType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TimeZoneDataType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(Int16, Offset); OpcUa_Field_GetSize(Boolean, DaylightSavingInOffset); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TimeZoneDataType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_TimeZoneDataType_Encode(OpcUa_TimeZoneDataType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TimeZoneDataType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(Int16, Offset); OpcUa_Field_Write(Boolean, DaylightSavingInOffset); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TimeZoneDataType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_TimeZoneDataType_Decode(OpcUa_TimeZoneDataType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TimeZoneDataType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_TimeZoneDataType_Initialize(a_pValue); OpcUa_Field_Read(Int16, Offset); OpcUa_Field_Read(Boolean, DaylightSavingInOffset); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_TimeZoneDataType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TimeZoneDataType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_TimeZoneDataType_EncodeableType = { "TimeZoneDataType", OpcUaId_TimeZoneDataType, OpcUaId_TimeZoneDataType_Encoding_DefaultBinary, OpcUaId_TimeZoneDataType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_TimeZoneDataType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_TimeZoneDataType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_TimeZoneDataType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_TimeZoneDataType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_TimeZoneDataType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_TimeZoneDataType_Decode }; #endif #ifndef OPCUA_EXCLUDE_ApplicationType /*============================================================================ * OpcUa_ApplicationType_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_ApplicationType_EnumeratedValues[] = { { "Server", 0 }, { "Client", 1 }, { "ClientAndServer", 2 }, { "DiscoveryServer", 3 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_ApplicationType_EnumeratedType = { "ApplicationType", g_OpcUa_ApplicationType_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_ApplicationDescription /*============================================================================ * OpcUa_ApplicationDescription_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ApplicationDescription_Initialize(OpcUa_ApplicationDescription* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(String, ApplicationUri); OpcUa_Field_Initialize(String, ProductUri); OpcUa_Field_Initialize(LocalizedText, ApplicationName); OpcUa_Field_InitializeEnumerated(OpcUa_ApplicationType, ApplicationType); OpcUa_Field_Initialize(String, GatewayServerUri); OpcUa_Field_Initialize(String, DiscoveryProfileUri); OpcUa_Field_InitializeArray(String, DiscoveryUrls); } } /*============================================================================ * OpcUa_ApplicationDescription_Clear *===========================================================================*/ OpcUa_Void OpcUa_ApplicationDescription_Clear(OpcUa_ApplicationDescription* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(String, ApplicationUri); OpcUa_Field_Clear(String, ProductUri); OpcUa_Field_Clear(LocalizedText, ApplicationName); OpcUa_Field_ClearEnumerated(OpcUa_ApplicationType, ApplicationType); OpcUa_Field_Clear(String, GatewayServerUri); OpcUa_Field_Clear(String, DiscoveryProfileUri); OpcUa_Field_ClearArray(String, DiscoveryUrls); } } /*============================================================================ * OpcUa_ApplicationDescription_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ApplicationDescription_GetSize(OpcUa_ApplicationDescription* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ApplicationDescription_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(String, ApplicationUri); OpcUa_Field_GetSize(String, ProductUri); OpcUa_Field_GetSize(LocalizedText, ApplicationName); OpcUa_Field_GetSizeEnumerated(OpcUa_ApplicationType, ApplicationType); OpcUa_Field_GetSize(String, GatewayServerUri); OpcUa_Field_GetSize(String, DiscoveryProfileUri); OpcUa_Field_GetSizeArray(String, DiscoveryUrls); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ApplicationDescription_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ApplicationDescription_Encode(OpcUa_ApplicationDescription* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ApplicationDescription_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(String, ApplicationUri); OpcUa_Field_Write(String, ProductUri); OpcUa_Field_Write(LocalizedText, ApplicationName); OpcUa_Field_WriteEnumerated(OpcUa_ApplicationType, ApplicationType); OpcUa_Field_Write(String, GatewayServerUri); OpcUa_Field_Write(String, DiscoveryProfileUri); OpcUa_Field_WriteArray(String, DiscoveryUrls); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ApplicationDescription_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ApplicationDescription_Decode(OpcUa_ApplicationDescription* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ApplicationDescription_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ApplicationDescription_Initialize(a_pValue); OpcUa_Field_Read(String, ApplicationUri); OpcUa_Field_Read(String, ProductUri); OpcUa_Field_Read(LocalizedText, ApplicationName); OpcUa_Field_ReadEnumerated(OpcUa_ApplicationType, ApplicationType); OpcUa_Field_Read(String, GatewayServerUri); OpcUa_Field_Read(String, DiscoveryProfileUri); OpcUa_Field_ReadArray(String, DiscoveryUrls); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ApplicationDescription_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ApplicationDescription_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ApplicationDescription_EncodeableType = { "ApplicationDescription", OpcUaId_ApplicationDescription, OpcUaId_ApplicationDescription_Encoding_DefaultBinary, OpcUaId_ApplicationDescription_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ApplicationDescription), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ApplicationDescription_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ApplicationDescription_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ApplicationDescription_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ApplicationDescription_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ApplicationDescription_Decode }; #endif #ifndef OPCUA_EXCLUDE_RequestHeader /*============================================================================ * OpcUa_RequestHeader_Initialize *===========================================================================*/ OpcUa_Void OpcUa_RequestHeader_Initialize(OpcUa_RequestHeader* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, AuthenticationToken); OpcUa_Field_Initialize(DateTime, Timestamp); OpcUa_Field_Initialize(UInt32, RequestHandle); OpcUa_Field_Initialize(UInt32, ReturnDiagnostics); OpcUa_Field_Initialize(String, AuditEntryId); OpcUa_Field_Initialize(UInt32, TimeoutHint); OpcUa_Field_Initialize(ExtensionObject, AdditionalHeader); } } /*============================================================================ * OpcUa_RequestHeader_Clear *===========================================================================*/ OpcUa_Void OpcUa_RequestHeader_Clear(OpcUa_RequestHeader* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, AuthenticationToken); OpcUa_Field_Clear(DateTime, Timestamp); OpcUa_Field_Clear(UInt32, RequestHandle); OpcUa_Field_Clear(UInt32, ReturnDiagnostics); OpcUa_Field_Clear(String, AuditEntryId); OpcUa_Field_Clear(UInt32, TimeoutHint); OpcUa_Field_Clear(ExtensionObject, AdditionalHeader); } } /*============================================================================ * OpcUa_RequestHeader_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_RequestHeader_GetSize(OpcUa_RequestHeader* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RequestHeader_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, AuthenticationToken); OpcUa_Field_GetSize(DateTime, Timestamp); OpcUa_Field_GetSize(UInt32, RequestHandle); OpcUa_Field_GetSize(UInt32, ReturnDiagnostics); OpcUa_Field_GetSize(String, AuditEntryId); OpcUa_Field_GetSize(UInt32, TimeoutHint); OpcUa_Field_GetSize(ExtensionObject, AdditionalHeader); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RequestHeader_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_RequestHeader_Encode(OpcUa_RequestHeader* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RequestHeader_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, AuthenticationToken); OpcUa_Field_Write(DateTime, Timestamp); OpcUa_Field_Write(UInt32, RequestHandle); OpcUa_Field_Write(UInt32, ReturnDiagnostics); OpcUa_Field_Write(String, AuditEntryId); OpcUa_Field_Write(UInt32, TimeoutHint); OpcUa_Field_Write(ExtensionObject, AdditionalHeader); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RequestHeader_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_RequestHeader_Decode(OpcUa_RequestHeader* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RequestHeader_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_RequestHeader_Initialize(a_pValue); OpcUa_Field_Read(NodeId, AuthenticationToken); OpcUa_Field_Read(DateTime, Timestamp); OpcUa_Field_Read(UInt32, RequestHandle); OpcUa_Field_Read(UInt32, ReturnDiagnostics); OpcUa_Field_Read(String, AuditEntryId); OpcUa_Field_Read(UInt32, TimeoutHint); OpcUa_Field_Read(ExtensionObject, AdditionalHeader); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_RequestHeader_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RequestHeader_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_RequestHeader_EncodeableType = { "RequestHeader", OpcUaId_RequestHeader, OpcUaId_RequestHeader_Encoding_DefaultBinary, OpcUaId_RequestHeader_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_RequestHeader), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_RequestHeader_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_RequestHeader_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_RequestHeader_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_RequestHeader_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_RequestHeader_Decode }; #endif #ifndef OPCUA_EXCLUDE_ResponseHeader /*============================================================================ * OpcUa_ResponseHeader_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ResponseHeader_Initialize(OpcUa_ResponseHeader* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(DateTime, Timestamp); OpcUa_Field_Initialize(UInt32, RequestHandle); OpcUa_Field_Initialize(StatusCode, ServiceResult); OpcUa_Field_Initialize(DiagnosticInfo, ServiceDiagnostics); OpcUa_Field_InitializeArray(String, StringTable); OpcUa_Field_Initialize(ExtensionObject, AdditionalHeader); } } /*============================================================================ * OpcUa_ResponseHeader_Clear *===========================================================================*/ OpcUa_Void OpcUa_ResponseHeader_Clear(OpcUa_ResponseHeader* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(DateTime, Timestamp); OpcUa_Field_Clear(UInt32, RequestHandle); OpcUa_Field_Clear(StatusCode, ServiceResult); OpcUa_Field_Clear(DiagnosticInfo, ServiceDiagnostics); OpcUa_Field_ClearArray(String, StringTable); OpcUa_Field_Clear(ExtensionObject, AdditionalHeader); } } /*============================================================================ * OpcUa_ResponseHeader_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ResponseHeader_GetSize(OpcUa_ResponseHeader* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ResponseHeader_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(DateTime, Timestamp); OpcUa_Field_GetSize(UInt32, RequestHandle); OpcUa_Field_GetSize(StatusCode, ServiceResult); OpcUa_Field_GetSize(DiagnosticInfo, ServiceDiagnostics); OpcUa_Field_GetSizeArray(String, StringTable); OpcUa_Field_GetSize(ExtensionObject, AdditionalHeader); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ResponseHeader_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ResponseHeader_Encode(OpcUa_ResponseHeader* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ResponseHeader_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(DateTime, Timestamp); OpcUa_Field_Write(UInt32, RequestHandle); OpcUa_Field_Write(StatusCode, ServiceResult); OpcUa_Field_Write(DiagnosticInfo, ServiceDiagnostics); OpcUa_Field_WriteArray(String, StringTable); OpcUa_Field_Write(ExtensionObject, AdditionalHeader); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ResponseHeader_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ResponseHeader_Decode(OpcUa_ResponseHeader* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ResponseHeader_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ResponseHeader_Initialize(a_pValue); OpcUa_Field_Read(DateTime, Timestamp); OpcUa_Field_Read(UInt32, RequestHandle); OpcUa_Field_Read(StatusCode, ServiceResult); OpcUa_Field_Read(DiagnosticInfo, ServiceDiagnostics); OpcUa_Field_ReadArray(String, StringTable); OpcUa_Field_Read(ExtensionObject, AdditionalHeader); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ResponseHeader_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ResponseHeader_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ResponseHeader_EncodeableType = { "ResponseHeader", OpcUaId_ResponseHeader, OpcUaId_ResponseHeader_Encoding_DefaultBinary, OpcUaId_ResponseHeader_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ResponseHeader), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ResponseHeader_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ResponseHeader_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ResponseHeader_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ResponseHeader_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ResponseHeader_Decode }; #endif #ifndef OPCUA_EXCLUDE_ServiceFault /*============================================================================ * OpcUa_ServiceFault_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ServiceFault_Initialize(OpcUa_ServiceFault* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); } } /*============================================================================ * OpcUa_ServiceFault_Clear *===========================================================================*/ OpcUa_Void OpcUa_ServiceFault_Clear(OpcUa_ServiceFault* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); } } /*============================================================================ * OpcUa_ServiceFault_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ServiceFault_GetSize(OpcUa_ServiceFault* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ServiceFault_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ServiceFault_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ServiceFault_Encode(OpcUa_ServiceFault* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ServiceFault_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ServiceFault_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ServiceFault_Decode(OpcUa_ServiceFault* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ServiceFault_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ServiceFault_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ServiceFault_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ServiceFault_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ServiceFault_EncodeableType = { "ServiceFault", OpcUaId_ServiceFault, OpcUaId_ServiceFault_Encoding_DefaultBinary, OpcUaId_ServiceFault_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ServiceFault), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ServiceFault_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ServiceFault_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ServiceFault_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ServiceFault_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ServiceFault_Decode }; #endif #ifndef OPCUA_EXCLUDE_SessionlessInvokeRequestType /*============================================================================ * OpcUa_SessionlessInvokeRequestType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_SessionlessInvokeRequestType_Initialize(OpcUa_SessionlessInvokeRequestType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, UrisVersion); OpcUa_Field_InitializeArray(String, NamespaceUris); OpcUa_Field_InitializeArray(String, ServerUris); OpcUa_Field_InitializeArray(String, LocaleIds); OpcUa_Field_Initialize(UInt32, ServiceId); } } /*============================================================================ * OpcUa_SessionlessInvokeRequestType_Clear *===========================================================================*/ OpcUa_Void OpcUa_SessionlessInvokeRequestType_Clear(OpcUa_SessionlessInvokeRequestType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, UrisVersion); OpcUa_Field_ClearArray(String, NamespaceUris); OpcUa_Field_ClearArray(String, ServerUris); OpcUa_Field_ClearArray(String, LocaleIds); OpcUa_Field_Clear(UInt32, ServiceId); } } /*============================================================================ * OpcUa_SessionlessInvokeRequestType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_SessionlessInvokeRequestType_GetSize(OpcUa_SessionlessInvokeRequestType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SessionlessInvokeRequestType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, UrisVersion); OpcUa_Field_GetSizeArray(String, NamespaceUris); OpcUa_Field_GetSizeArray(String, ServerUris); OpcUa_Field_GetSizeArray(String, LocaleIds); OpcUa_Field_GetSize(UInt32, ServiceId); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SessionlessInvokeRequestType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_SessionlessInvokeRequestType_Encode(OpcUa_SessionlessInvokeRequestType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SessionlessInvokeRequestType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, UrisVersion); OpcUa_Field_WriteArray(String, NamespaceUris); OpcUa_Field_WriteArray(String, ServerUris); OpcUa_Field_WriteArray(String, LocaleIds); OpcUa_Field_Write(UInt32, ServiceId); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SessionlessInvokeRequestType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_SessionlessInvokeRequestType_Decode(OpcUa_SessionlessInvokeRequestType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SessionlessInvokeRequestType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_SessionlessInvokeRequestType_Initialize(a_pValue); OpcUa_Field_Read(UInt32, UrisVersion); OpcUa_Field_ReadArray(String, NamespaceUris); OpcUa_Field_ReadArray(String, ServerUris); OpcUa_Field_ReadArray(String, LocaleIds); OpcUa_Field_Read(UInt32, ServiceId); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_SessionlessInvokeRequestType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SessionlessInvokeRequestType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_SessionlessInvokeRequestType_EncodeableType = { "SessionlessInvokeRequestType", OpcUaId_SessionlessInvokeRequestType, OpcUaId_SessionlessInvokeRequestType_Encoding_DefaultBinary, OpcUaId_SessionlessInvokeRequestType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_SessionlessInvokeRequestType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_SessionlessInvokeRequestType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_SessionlessInvokeRequestType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_SessionlessInvokeRequestType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_SessionlessInvokeRequestType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_SessionlessInvokeRequestType_Decode }; #endif #ifndef OPCUA_EXCLUDE_SessionlessInvokeResponseType /*============================================================================ * OpcUa_SessionlessInvokeResponseType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_SessionlessInvokeResponseType_Initialize(OpcUa_SessionlessInvokeResponseType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeArray(String, NamespaceUris); OpcUa_Field_InitializeArray(String, ServerUris); OpcUa_Field_Initialize(UInt32, ServiceId); } } /*============================================================================ * OpcUa_SessionlessInvokeResponseType_Clear *===========================================================================*/ OpcUa_Void OpcUa_SessionlessInvokeResponseType_Clear(OpcUa_SessionlessInvokeResponseType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearArray(String, NamespaceUris); OpcUa_Field_ClearArray(String, ServerUris); OpcUa_Field_Clear(UInt32, ServiceId); } } /*============================================================================ * OpcUa_SessionlessInvokeResponseType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_SessionlessInvokeResponseType_GetSize(OpcUa_SessionlessInvokeResponseType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SessionlessInvokeResponseType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeArray(String, NamespaceUris); OpcUa_Field_GetSizeArray(String, ServerUris); OpcUa_Field_GetSize(UInt32, ServiceId); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SessionlessInvokeResponseType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_SessionlessInvokeResponseType_Encode(OpcUa_SessionlessInvokeResponseType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SessionlessInvokeResponseType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteArray(String, NamespaceUris); OpcUa_Field_WriteArray(String, ServerUris); OpcUa_Field_Write(UInt32, ServiceId); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SessionlessInvokeResponseType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_SessionlessInvokeResponseType_Decode(OpcUa_SessionlessInvokeResponseType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SessionlessInvokeResponseType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_SessionlessInvokeResponseType_Initialize(a_pValue); OpcUa_Field_ReadArray(String, NamespaceUris); OpcUa_Field_ReadArray(String, ServerUris); OpcUa_Field_Read(UInt32, ServiceId); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_SessionlessInvokeResponseType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SessionlessInvokeResponseType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_SessionlessInvokeResponseType_EncodeableType = { "SessionlessInvokeResponseType", OpcUaId_SessionlessInvokeResponseType, OpcUaId_SessionlessInvokeResponseType_Encoding_DefaultBinary, OpcUaId_SessionlessInvokeResponseType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_SessionlessInvokeResponseType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_SessionlessInvokeResponseType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_SessionlessInvokeResponseType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_SessionlessInvokeResponseType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_SessionlessInvokeResponseType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_SessionlessInvokeResponseType_Decode }; #endif #ifndef OPCUA_EXCLUDE_FindServers #ifndef OPCUA_EXCLUDE_FindServersRequest /*============================================================================ * OpcUa_FindServersRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_FindServersRequest_Initialize(OpcUa_FindServersRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(String, EndpointUrl); OpcUa_Field_InitializeArray(String, LocaleIds); OpcUa_Field_InitializeArray(String, ServerUris); } } /*============================================================================ * OpcUa_FindServersRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_FindServersRequest_Clear(OpcUa_FindServersRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(String, EndpointUrl); OpcUa_Field_ClearArray(String, LocaleIds); OpcUa_Field_ClearArray(String, ServerUris); } } /*============================================================================ * OpcUa_FindServersRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_FindServersRequest_GetSize(OpcUa_FindServersRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "FindServersRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(String, EndpointUrl); OpcUa_Field_GetSizeArray(String, LocaleIds); OpcUa_Field_GetSizeArray(String, ServerUris); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_FindServersRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_FindServersRequest_Encode(OpcUa_FindServersRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "FindServersRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(String, EndpointUrl); OpcUa_Field_WriteArray(String, LocaleIds); OpcUa_Field_WriteArray(String, ServerUris); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_FindServersRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_FindServersRequest_Decode(OpcUa_FindServersRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "FindServersRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_FindServersRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(String, EndpointUrl); OpcUa_Field_ReadArray(String, LocaleIds); OpcUa_Field_ReadArray(String, ServerUris); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_FindServersRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_FindServersRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_FindServersRequest_EncodeableType = { "FindServersRequest", OpcUaId_FindServersRequest, OpcUaId_FindServersRequest_Encoding_DefaultBinary, OpcUaId_FindServersRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_FindServersRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_FindServersRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_FindServersRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_FindServersRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_FindServersRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_FindServersRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_FindServersResponse /*============================================================================ * OpcUa_FindServersResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_FindServersResponse_Initialize(OpcUa_FindServersResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_ApplicationDescription, Servers); } } /*============================================================================ * OpcUa_FindServersResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_FindServersResponse_Clear(OpcUa_FindServersResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_ApplicationDescription, Servers); } } /*============================================================================ * OpcUa_FindServersResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_FindServersResponse_GetSize(OpcUa_FindServersResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "FindServersResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_ApplicationDescription, Servers); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_FindServersResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_FindServersResponse_Encode(OpcUa_FindServersResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "FindServersResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_ApplicationDescription, Servers); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_FindServersResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_FindServersResponse_Decode(OpcUa_FindServersResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "FindServersResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_FindServersResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_ApplicationDescription, Servers); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_FindServersResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_FindServersResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_FindServersResponse_EncodeableType = { "FindServersResponse", OpcUaId_FindServersResponse, OpcUaId_FindServersResponse_Encoding_DefaultBinary, OpcUaId_FindServersResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_FindServersResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_FindServersResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_FindServersResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_FindServersResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_FindServersResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_FindServersResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_ServerOnNetwork /*============================================================================ * OpcUa_ServerOnNetwork_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ServerOnNetwork_Initialize(OpcUa_ServerOnNetwork* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, RecordId); OpcUa_Field_Initialize(String, ServerName); OpcUa_Field_Initialize(String, DiscoveryUrl); OpcUa_Field_InitializeArray(String, ServerCapabilities); } } /*============================================================================ * OpcUa_ServerOnNetwork_Clear *===========================================================================*/ OpcUa_Void OpcUa_ServerOnNetwork_Clear(OpcUa_ServerOnNetwork* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, RecordId); OpcUa_Field_Clear(String, ServerName); OpcUa_Field_Clear(String, DiscoveryUrl); OpcUa_Field_ClearArray(String, ServerCapabilities); } } /*============================================================================ * OpcUa_ServerOnNetwork_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ServerOnNetwork_GetSize(OpcUa_ServerOnNetwork* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ServerOnNetwork_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, RecordId); OpcUa_Field_GetSize(String, ServerName); OpcUa_Field_GetSize(String, DiscoveryUrl); OpcUa_Field_GetSizeArray(String, ServerCapabilities); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ServerOnNetwork_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ServerOnNetwork_Encode(OpcUa_ServerOnNetwork* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ServerOnNetwork_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, RecordId); OpcUa_Field_Write(String, ServerName); OpcUa_Field_Write(String, DiscoveryUrl); OpcUa_Field_WriteArray(String, ServerCapabilities); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ServerOnNetwork_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ServerOnNetwork_Decode(OpcUa_ServerOnNetwork* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ServerOnNetwork_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ServerOnNetwork_Initialize(a_pValue); OpcUa_Field_Read(UInt32, RecordId); OpcUa_Field_Read(String, ServerName); OpcUa_Field_Read(String, DiscoveryUrl); OpcUa_Field_ReadArray(String, ServerCapabilities); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ServerOnNetwork_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ServerOnNetwork_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ServerOnNetwork_EncodeableType = { "ServerOnNetwork", OpcUaId_ServerOnNetwork, OpcUaId_ServerOnNetwork_Encoding_DefaultBinary, OpcUaId_ServerOnNetwork_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ServerOnNetwork), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ServerOnNetwork_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ServerOnNetwork_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ServerOnNetwork_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ServerOnNetwork_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ServerOnNetwork_Decode }; #endif #ifndef OPCUA_EXCLUDE_FindServersOnNetwork #ifndef OPCUA_EXCLUDE_FindServersOnNetworkRequest /*============================================================================ * OpcUa_FindServersOnNetworkRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_FindServersOnNetworkRequest_Initialize(OpcUa_FindServersOnNetworkRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(UInt32, StartingRecordId); OpcUa_Field_Initialize(UInt32, MaxRecordsToReturn); OpcUa_Field_InitializeArray(String, ServerCapabilityFilter); } } /*============================================================================ * OpcUa_FindServersOnNetworkRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_FindServersOnNetworkRequest_Clear(OpcUa_FindServersOnNetworkRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(UInt32, StartingRecordId); OpcUa_Field_Clear(UInt32, MaxRecordsToReturn); OpcUa_Field_ClearArray(String, ServerCapabilityFilter); } } /*============================================================================ * OpcUa_FindServersOnNetworkRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_FindServersOnNetworkRequest_GetSize(OpcUa_FindServersOnNetworkRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "FindServersOnNetworkRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(UInt32, StartingRecordId); OpcUa_Field_GetSize(UInt32, MaxRecordsToReturn); OpcUa_Field_GetSizeArray(String, ServerCapabilityFilter); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_FindServersOnNetworkRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_FindServersOnNetworkRequest_Encode(OpcUa_FindServersOnNetworkRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "FindServersOnNetworkRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(UInt32, StartingRecordId); OpcUa_Field_Write(UInt32, MaxRecordsToReturn); OpcUa_Field_WriteArray(String, ServerCapabilityFilter); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_FindServersOnNetworkRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_FindServersOnNetworkRequest_Decode(OpcUa_FindServersOnNetworkRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "FindServersOnNetworkRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_FindServersOnNetworkRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(UInt32, StartingRecordId); OpcUa_Field_Read(UInt32, MaxRecordsToReturn); OpcUa_Field_ReadArray(String, ServerCapabilityFilter); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_FindServersOnNetworkRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_FindServersOnNetworkRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_FindServersOnNetworkRequest_EncodeableType = { "FindServersOnNetworkRequest", OpcUaId_FindServersOnNetworkRequest, OpcUaId_FindServersOnNetworkRequest_Encoding_DefaultBinary, OpcUaId_FindServersOnNetworkRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_FindServersOnNetworkRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_FindServersOnNetworkRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_FindServersOnNetworkRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_FindServersOnNetworkRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_FindServersOnNetworkRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_FindServersOnNetworkRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_FindServersOnNetworkResponse /*============================================================================ * OpcUa_FindServersOnNetworkResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_FindServersOnNetworkResponse_Initialize(OpcUa_FindServersOnNetworkResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Initialize(DateTime, LastCounterResetTime); OpcUa_Field_InitializeEncodeableArray(OpcUa_ServerOnNetwork, Servers); } } /*============================================================================ * OpcUa_FindServersOnNetworkResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_FindServersOnNetworkResponse_Clear(OpcUa_FindServersOnNetworkResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Clear(DateTime, LastCounterResetTime); OpcUa_Field_ClearEncodeableArray(OpcUa_ServerOnNetwork, Servers); } } /*============================================================================ * OpcUa_FindServersOnNetworkResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_FindServersOnNetworkResponse_GetSize(OpcUa_FindServersOnNetworkResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "FindServersOnNetworkResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSize(DateTime, LastCounterResetTime); OpcUa_Field_GetSizeEncodeableArray(OpcUa_ServerOnNetwork, Servers); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_FindServersOnNetworkResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_FindServersOnNetworkResponse_Encode(OpcUa_FindServersOnNetworkResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "FindServersOnNetworkResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Write(DateTime, LastCounterResetTime); OpcUa_Field_WriteEncodeableArray(OpcUa_ServerOnNetwork, Servers); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_FindServersOnNetworkResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_FindServersOnNetworkResponse_Decode(OpcUa_FindServersOnNetworkResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "FindServersOnNetworkResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_FindServersOnNetworkResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Read(DateTime, LastCounterResetTime); OpcUa_Field_ReadEncodeableArray(OpcUa_ServerOnNetwork, Servers); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_FindServersOnNetworkResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_FindServersOnNetworkResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_FindServersOnNetworkResponse_EncodeableType = { "FindServersOnNetworkResponse", OpcUaId_FindServersOnNetworkResponse, OpcUaId_FindServersOnNetworkResponse_Encoding_DefaultBinary, OpcUaId_FindServersOnNetworkResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_FindServersOnNetworkResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_FindServersOnNetworkResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_FindServersOnNetworkResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_FindServersOnNetworkResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_FindServersOnNetworkResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_FindServersOnNetworkResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_MessageSecurityMode /*============================================================================ * OpcUa_MessageSecurityMode_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_MessageSecurityMode_EnumeratedValues[] = { { "Invalid", 0 }, { "None", 1 }, { "Sign", 2 }, { "SignAndEncrypt", 3 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_MessageSecurityMode_EnumeratedType = { "MessageSecurityMode", g_OpcUa_MessageSecurityMode_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_UserTokenType /*============================================================================ * OpcUa_UserTokenType_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_UserTokenType_EnumeratedValues[] = { { "Anonymous", 0 }, { "UserName", 1 }, { "Certificate", 2 }, { "IssuedToken", 3 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_UserTokenType_EnumeratedType = { "UserTokenType", g_OpcUa_UserTokenType_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_UserTokenPolicy /*============================================================================ * OpcUa_UserTokenPolicy_Initialize *===========================================================================*/ OpcUa_Void OpcUa_UserTokenPolicy_Initialize(OpcUa_UserTokenPolicy* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(String, PolicyId); OpcUa_Field_InitializeEnumerated(OpcUa_UserTokenType, TokenType); OpcUa_Field_Initialize(String, IssuedTokenType); OpcUa_Field_Initialize(String, IssuerEndpointUrl); OpcUa_Field_Initialize(String, SecurityPolicyUri); } } /*============================================================================ * OpcUa_UserTokenPolicy_Clear *===========================================================================*/ OpcUa_Void OpcUa_UserTokenPolicy_Clear(OpcUa_UserTokenPolicy* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(String, PolicyId); OpcUa_Field_ClearEnumerated(OpcUa_UserTokenType, TokenType); OpcUa_Field_Clear(String, IssuedTokenType); OpcUa_Field_Clear(String, IssuerEndpointUrl); OpcUa_Field_Clear(String, SecurityPolicyUri); } } /*============================================================================ * OpcUa_UserTokenPolicy_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_UserTokenPolicy_GetSize(OpcUa_UserTokenPolicy* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UserTokenPolicy_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(String, PolicyId); OpcUa_Field_GetSizeEnumerated(OpcUa_UserTokenType, TokenType); OpcUa_Field_GetSize(String, IssuedTokenType); OpcUa_Field_GetSize(String, IssuerEndpointUrl); OpcUa_Field_GetSize(String, SecurityPolicyUri); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UserTokenPolicy_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_UserTokenPolicy_Encode(OpcUa_UserTokenPolicy* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UserTokenPolicy_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(String, PolicyId); OpcUa_Field_WriteEnumerated(OpcUa_UserTokenType, TokenType); OpcUa_Field_Write(String, IssuedTokenType); OpcUa_Field_Write(String, IssuerEndpointUrl); OpcUa_Field_Write(String, SecurityPolicyUri); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UserTokenPolicy_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_UserTokenPolicy_Decode(OpcUa_UserTokenPolicy* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UserTokenPolicy_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_UserTokenPolicy_Initialize(a_pValue); OpcUa_Field_Read(String, PolicyId); OpcUa_Field_ReadEnumerated(OpcUa_UserTokenType, TokenType); OpcUa_Field_Read(String, IssuedTokenType); OpcUa_Field_Read(String, IssuerEndpointUrl); OpcUa_Field_Read(String, SecurityPolicyUri); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_UserTokenPolicy_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UserTokenPolicy_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_UserTokenPolicy_EncodeableType = { "UserTokenPolicy", OpcUaId_UserTokenPolicy, OpcUaId_UserTokenPolicy_Encoding_DefaultBinary, OpcUaId_UserTokenPolicy_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_UserTokenPolicy), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_UserTokenPolicy_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_UserTokenPolicy_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_UserTokenPolicy_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_UserTokenPolicy_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_UserTokenPolicy_Decode }; #endif #ifndef OPCUA_EXCLUDE_EndpointDescription /*============================================================================ * OpcUa_EndpointDescription_Initialize *===========================================================================*/ OpcUa_Void OpcUa_EndpointDescription_Initialize(OpcUa_EndpointDescription* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(String, EndpointUrl); OpcUa_Field_InitializeEncodeable(OpcUa_ApplicationDescription, Server); OpcUa_Field_Initialize(ByteString, ServerCertificate); OpcUa_Field_InitializeEnumerated(OpcUa_MessageSecurityMode, SecurityMode); OpcUa_Field_Initialize(String, SecurityPolicyUri); OpcUa_Field_InitializeEncodeableArray(OpcUa_UserTokenPolicy, UserIdentityTokens); OpcUa_Field_Initialize(String, TransportProfileUri); OpcUa_Field_Initialize(Byte, SecurityLevel); } } /*============================================================================ * OpcUa_EndpointDescription_Clear *===========================================================================*/ OpcUa_Void OpcUa_EndpointDescription_Clear(OpcUa_EndpointDescription* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(String, EndpointUrl); OpcUa_Field_ClearEncodeable(OpcUa_ApplicationDescription, Server); OpcUa_Field_Clear(ByteString, ServerCertificate); OpcUa_Field_ClearEnumerated(OpcUa_MessageSecurityMode, SecurityMode); OpcUa_Field_Clear(String, SecurityPolicyUri); OpcUa_Field_ClearEncodeableArray(OpcUa_UserTokenPolicy, UserIdentityTokens); OpcUa_Field_Clear(String, TransportProfileUri); OpcUa_Field_Clear(Byte, SecurityLevel); } } /*============================================================================ * OpcUa_EndpointDescription_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_EndpointDescription_GetSize(OpcUa_EndpointDescription* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EndpointDescription_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(String, EndpointUrl); OpcUa_Field_GetSizeEncodeable(OpcUa_ApplicationDescription, Server); OpcUa_Field_GetSize(ByteString, ServerCertificate); OpcUa_Field_GetSizeEnumerated(OpcUa_MessageSecurityMode, SecurityMode); OpcUa_Field_GetSize(String, SecurityPolicyUri); OpcUa_Field_GetSizeEncodeableArray(OpcUa_UserTokenPolicy, UserIdentityTokens); OpcUa_Field_GetSize(String, TransportProfileUri); OpcUa_Field_GetSize(Byte, SecurityLevel); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EndpointDescription_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_EndpointDescription_Encode(OpcUa_EndpointDescription* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EndpointDescription_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(String, EndpointUrl); OpcUa_Field_WriteEncodeable(OpcUa_ApplicationDescription, Server); OpcUa_Field_Write(ByteString, ServerCertificate); OpcUa_Field_WriteEnumerated(OpcUa_MessageSecurityMode, SecurityMode); OpcUa_Field_Write(String, SecurityPolicyUri); OpcUa_Field_WriteEncodeableArray(OpcUa_UserTokenPolicy, UserIdentityTokens); OpcUa_Field_Write(String, TransportProfileUri); OpcUa_Field_Write(Byte, SecurityLevel); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EndpointDescription_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_EndpointDescription_Decode(OpcUa_EndpointDescription* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EndpointDescription_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_EndpointDescription_Initialize(a_pValue); OpcUa_Field_Read(String, EndpointUrl); OpcUa_Field_ReadEncodeable(OpcUa_ApplicationDescription, Server); OpcUa_Field_Read(ByteString, ServerCertificate); OpcUa_Field_ReadEnumerated(OpcUa_MessageSecurityMode, SecurityMode); OpcUa_Field_Read(String, SecurityPolicyUri); OpcUa_Field_ReadEncodeableArray(OpcUa_UserTokenPolicy, UserIdentityTokens); OpcUa_Field_Read(String, TransportProfileUri); OpcUa_Field_Read(Byte, SecurityLevel); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_EndpointDescription_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EndpointDescription_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_EndpointDescription_EncodeableType = { "EndpointDescription", OpcUaId_EndpointDescription, OpcUaId_EndpointDescription_Encoding_DefaultBinary, OpcUaId_EndpointDescription_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_EndpointDescription), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_EndpointDescription_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_EndpointDescription_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_EndpointDescription_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_EndpointDescription_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_EndpointDescription_Decode }; #endif #ifndef OPCUA_EXCLUDE_GetEndpoints #ifndef OPCUA_EXCLUDE_GetEndpointsRequest /*============================================================================ * OpcUa_GetEndpointsRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_GetEndpointsRequest_Initialize(OpcUa_GetEndpointsRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(String, EndpointUrl); OpcUa_Field_InitializeArray(String, LocaleIds); OpcUa_Field_InitializeArray(String, ProfileUris); } } /*============================================================================ * OpcUa_GetEndpointsRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_GetEndpointsRequest_Clear(OpcUa_GetEndpointsRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(String, EndpointUrl); OpcUa_Field_ClearArray(String, LocaleIds); OpcUa_Field_ClearArray(String, ProfileUris); } } /*============================================================================ * OpcUa_GetEndpointsRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_GetEndpointsRequest_GetSize(OpcUa_GetEndpointsRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "GetEndpointsRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(String, EndpointUrl); OpcUa_Field_GetSizeArray(String, LocaleIds); OpcUa_Field_GetSizeArray(String, ProfileUris); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_GetEndpointsRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_GetEndpointsRequest_Encode(OpcUa_GetEndpointsRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "GetEndpointsRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(String, EndpointUrl); OpcUa_Field_WriteArray(String, LocaleIds); OpcUa_Field_WriteArray(String, ProfileUris); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_GetEndpointsRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_GetEndpointsRequest_Decode(OpcUa_GetEndpointsRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "GetEndpointsRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_GetEndpointsRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(String, EndpointUrl); OpcUa_Field_ReadArray(String, LocaleIds); OpcUa_Field_ReadArray(String, ProfileUris); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_GetEndpointsRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_GetEndpointsRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_GetEndpointsRequest_EncodeableType = { "GetEndpointsRequest", OpcUaId_GetEndpointsRequest, OpcUaId_GetEndpointsRequest_Encoding_DefaultBinary, OpcUaId_GetEndpointsRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_GetEndpointsRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_GetEndpointsRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_GetEndpointsRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_GetEndpointsRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_GetEndpointsRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_GetEndpointsRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_GetEndpointsResponse /*============================================================================ * OpcUa_GetEndpointsResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_GetEndpointsResponse_Initialize(OpcUa_GetEndpointsResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_EndpointDescription, Endpoints); } } /*============================================================================ * OpcUa_GetEndpointsResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_GetEndpointsResponse_Clear(OpcUa_GetEndpointsResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_EndpointDescription, Endpoints); } } /*============================================================================ * OpcUa_GetEndpointsResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_GetEndpointsResponse_GetSize(OpcUa_GetEndpointsResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "GetEndpointsResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_EndpointDescription, Endpoints); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_GetEndpointsResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_GetEndpointsResponse_Encode(OpcUa_GetEndpointsResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "GetEndpointsResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_EndpointDescription, Endpoints); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_GetEndpointsResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_GetEndpointsResponse_Decode(OpcUa_GetEndpointsResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "GetEndpointsResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_GetEndpointsResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_EndpointDescription, Endpoints); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_GetEndpointsResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_GetEndpointsResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_GetEndpointsResponse_EncodeableType = { "GetEndpointsResponse", OpcUaId_GetEndpointsResponse, OpcUaId_GetEndpointsResponse_Encoding_DefaultBinary, OpcUaId_GetEndpointsResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_GetEndpointsResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_GetEndpointsResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_GetEndpointsResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_GetEndpointsResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_GetEndpointsResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_GetEndpointsResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_RegisteredServer /*============================================================================ * OpcUa_RegisteredServer_Initialize *===========================================================================*/ OpcUa_Void OpcUa_RegisteredServer_Initialize(OpcUa_RegisteredServer* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(String, ServerUri); OpcUa_Field_Initialize(String, ProductUri); OpcUa_Field_InitializeArray(LocalizedText, ServerNames); OpcUa_Field_InitializeEnumerated(OpcUa_ApplicationType, ServerType); OpcUa_Field_Initialize(String, GatewayServerUri); OpcUa_Field_InitializeArray(String, DiscoveryUrls); OpcUa_Field_Initialize(String, SemaphoreFilePath); OpcUa_Field_Initialize(Boolean, IsOnline); } } /*============================================================================ * OpcUa_RegisteredServer_Clear *===========================================================================*/ OpcUa_Void OpcUa_RegisteredServer_Clear(OpcUa_RegisteredServer* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(String, ServerUri); OpcUa_Field_Clear(String, ProductUri); OpcUa_Field_ClearArray(LocalizedText, ServerNames); OpcUa_Field_ClearEnumerated(OpcUa_ApplicationType, ServerType); OpcUa_Field_Clear(String, GatewayServerUri); OpcUa_Field_ClearArray(String, DiscoveryUrls); OpcUa_Field_Clear(String, SemaphoreFilePath); OpcUa_Field_Clear(Boolean, IsOnline); } } /*============================================================================ * OpcUa_RegisteredServer_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisteredServer_GetSize(OpcUa_RegisteredServer* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisteredServer_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(String, ServerUri); OpcUa_Field_GetSize(String, ProductUri); OpcUa_Field_GetSizeArray(LocalizedText, ServerNames); OpcUa_Field_GetSizeEnumerated(OpcUa_ApplicationType, ServerType); OpcUa_Field_GetSize(String, GatewayServerUri); OpcUa_Field_GetSizeArray(String, DiscoveryUrls); OpcUa_Field_GetSize(String, SemaphoreFilePath); OpcUa_Field_GetSize(Boolean, IsOnline); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisteredServer_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisteredServer_Encode(OpcUa_RegisteredServer* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisteredServer_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(String, ServerUri); OpcUa_Field_Write(String, ProductUri); OpcUa_Field_WriteArray(LocalizedText, ServerNames); OpcUa_Field_WriteEnumerated(OpcUa_ApplicationType, ServerType); OpcUa_Field_Write(String, GatewayServerUri); OpcUa_Field_WriteArray(String, DiscoveryUrls); OpcUa_Field_Write(String, SemaphoreFilePath); OpcUa_Field_Write(Boolean, IsOnline); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisteredServer_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisteredServer_Decode(OpcUa_RegisteredServer* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisteredServer_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_RegisteredServer_Initialize(a_pValue); OpcUa_Field_Read(String, ServerUri); OpcUa_Field_Read(String, ProductUri); OpcUa_Field_ReadArray(LocalizedText, ServerNames); OpcUa_Field_ReadEnumerated(OpcUa_ApplicationType, ServerType); OpcUa_Field_Read(String, GatewayServerUri); OpcUa_Field_ReadArray(String, DiscoveryUrls); OpcUa_Field_Read(String, SemaphoreFilePath); OpcUa_Field_Read(Boolean, IsOnline); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_RegisteredServer_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisteredServer_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_RegisteredServer_EncodeableType = { "RegisteredServer", OpcUaId_RegisteredServer, OpcUaId_RegisteredServer_Encoding_DefaultBinary, OpcUaId_RegisteredServer_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_RegisteredServer), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_RegisteredServer_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_RegisteredServer_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_RegisteredServer_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_RegisteredServer_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_RegisteredServer_Decode }; #endif #ifndef OPCUA_EXCLUDE_RegisterServer #ifndef OPCUA_EXCLUDE_RegisterServerRequest /*============================================================================ * OpcUa_RegisterServerRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_RegisterServerRequest_Initialize(OpcUa_RegisterServerRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeEncodeable(OpcUa_RegisteredServer, Server); } } /*============================================================================ * OpcUa_RegisterServerRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_RegisterServerRequest_Clear(OpcUa_RegisterServerRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearEncodeable(OpcUa_RegisteredServer, Server); } } /*============================================================================ * OpcUa_RegisterServerRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisterServerRequest_GetSize(OpcUa_RegisterServerRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisterServerRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeEncodeable(OpcUa_RegisteredServer, Server); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisterServerRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisterServerRequest_Encode(OpcUa_RegisterServerRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisterServerRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteEncodeable(OpcUa_RegisteredServer, Server); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisterServerRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisterServerRequest_Decode(OpcUa_RegisterServerRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisterServerRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_RegisterServerRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadEncodeable(OpcUa_RegisteredServer, Server); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_RegisterServerRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisterServerRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_RegisterServerRequest_EncodeableType = { "RegisterServerRequest", OpcUaId_RegisterServerRequest, OpcUaId_RegisterServerRequest_Encoding_DefaultBinary, OpcUaId_RegisterServerRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_RegisterServerRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_RegisterServerRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_RegisterServerRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_RegisterServerRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_RegisterServerRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_RegisterServerRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_RegisterServerResponse /*============================================================================ * OpcUa_RegisterServerResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_RegisterServerResponse_Initialize(OpcUa_RegisterServerResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); } } /*============================================================================ * OpcUa_RegisterServerResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_RegisterServerResponse_Clear(OpcUa_RegisterServerResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); } } /*============================================================================ * OpcUa_RegisterServerResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisterServerResponse_GetSize(OpcUa_RegisterServerResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisterServerResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisterServerResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisterServerResponse_Encode(OpcUa_RegisterServerResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisterServerResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisterServerResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisterServerResponse_Decode(OpcUa_RegisterServerResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisterServerResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_RegisterServerResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_RegisterServerResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisterServerResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_RegisterServerResponse_EncodeableType = { "RegisterServerResponse", OpcUaId_RegisterServerResponse, OpcUaId_RegisterServerResponse_Encoding_DefaultBinary, OpcUaId_RegisterServerResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_RegisterServerResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_RegisterServerResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_RegisterServerResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_RegisterServerResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_RegisterServerResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_RegisterServerResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_MdnsDiscoveryConfiguration /*============================================================================ * OpcUa_MdnsDiscoveryConfiguration_Initialize *===========================================================================*/ OpcUa_Void OpcUa_MdnsDiscoveryConfiguration_Initialize(OpcUa_MdnsDiscoveryConfiguration* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(String, MdnsServerName); OpcUa_Field_InitializeArray(String, ServerCapabilities); } } /*============================================================================ * OpcUa_MdnsDiscoveryConfiguration_Clear *===========================================================================*/ OpcUa_Void OpcUa_MdnsDiscoveryConfiguration_Clear(OpcUa_MdnsDiscoveryConfiguration* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(String, MdnsServerName); OpcUa_Field_ClearArray(String, ServerCapabilities); } } /*============================================================================ * OpcUa_MdnsDiscoveryConfiguration_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_MdnsDiscoveryConfiguration_GetSize(OpcUa_MdnsDiscoveryConfiguration* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MdnsDiscoveryConfiguration_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(String, MdnsServerName); OpcUa_Field_GetSizeArray(String, ServerCapabilities); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MdnsDiscoveryConfiguration_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_MdnsDiscoveryConfiguration_Encode(OpcUa_MdnsDiscoveryConfiguration* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MdnsDiscoveryConfiguration_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(String, MdnsServerName); OpcUa_Field_WriteArray(String, ServerCapabilities); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MdnsDiscoveryConfiguration_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_MdnsDiscoveryConfiguration_Decode(OpcUa_MdnsDiscoveryConfiguration* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MdnsDiscoveryConfiguration_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_MdnsDiscoveryConfiguration_Initialize(a_pValue); OpcUa_Field_Read(String, MdnsServerName); OpcUa_Field_ReadArray(String, ServerCapabilities); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_MdnsDiscoveryConfiguration_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MdnsDiscoveryConfiguration_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_MdnsDiscoveryConfiguration_EncodeableType = { "MdnsDiscoveryConfiguration", OpcUaId_MdnsDiscoveryConfiguration, OpcUaId_MdnsDiscoveryConfiguration_Encoding_DefaultBinary, OpcUaId_MdnsDiscoveryConfiguration_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_MdnsDiscoveryConfiguration), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_MdnsDiscoveryConfiguration_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_MdnsDiscoveryConfiguration_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_MdnsDiscoveryConfiguration_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_MdnsDiscoveryConfiguration_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_MdnsDiscoveryConfiguration_Decode }; #endif #ifndef OPCUA_EXCLUDE_RegisterServer2 #ifndef OPCUA_EXCLUDE_RegisterServer2Request /*============================================================================ * OpcUa_RegisterServer2Request_Initialize *===========================================================================*/ OpcUa_Void OpcUa_RegisterServer2Request_Initialize(OpcUa_RegisterServer2Request* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeEncodeable(OpcUa_RegisteredServer, Server); OpcUa_Field_InitializeArray(ExtensionObject, DiscoveryConfiguration); } } /*============================================================================ * OpcUa_RegisterServer2Request_Clear *===========================================================================*/ OpcUa_Void OpcUa_RegisterServer2Request_Clear(OpcUa_RegisterServer2Request* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearEncodeable(OpcUa_RegisteredServer, Server); OpcUa_Field_ClearArray(ExtensionObject, DiscoveryConfiguration); } } /*============================================================================ * OpcUa_RegisterServer2Request_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisterServer2Request_GetSize(OpcUa_RegisterServer2Request* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisterServer2Request_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeEncodeable(OpcUa_RegisteredServer, Server); OpcUa_Field_GetSizeArray(ExtensionObject, DiscoveryConfiguration); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisterServer2Request_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisterServer2Request_Encode(OpcUa_RegisterServer2Request* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisterServer2Request_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteEncodeable(OpcUa_RegisteredServer, Server); OpcUa_Field_WriteArray(ExtensionObject, DiscoveryConfiguration); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisterServer2Request_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisterServer2Request_Decode(OpcUa_RegisterServer2Request* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisterServer2Request_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_RegisterServer2Request_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadEncodeable(OpcUa_RegisteredServer, Server); OpcUa_Field_ReadArray(ExtensionObject, DiscoveryConfiguration); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_RegisterServer2Request_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisterServer2Request_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_RegisterServer2Request_EncodeableType = { "RegisterServer2Request", OpcUaId_RegisterServer2Request, OpcUaId_RegisterServer2Request_Encoding_DefaultBinary, OpcUaId_RegisterServer2Request_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_RegisterServer2Request), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_RegisterServer2Request_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_RegisterServer2Request_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_RegisterServer2Request_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_RegisterServer2Request_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_RegisterServer2Request_Decode }; #endif #ifndef OPCUA_EXCLUDE_RegisterServer2Response /*============================================================================ * OpcUa_RegisterServer2Response_Initialize *===========================================================================*/ OpcUa_Void OpcUa_RegisterServer2Response_Initialize(OpcUa_RegisterServer2Response* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeArray(StatusCode, ConfigurationResults); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_RegisterServer2Response_Clear *===========================================================================*/ OpcUa_Void OpcUa_RegisterServer2Response_Clear(OpcUa_RegisterServer2Response* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearArray(StatusCode, ConfigurationResults); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_RegisterServer2Response_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisterServer2Response_GetSize(OpcUa_RegisterServer2Response* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisterServer2Response_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeArray(StatusCode, ConfigurationResults); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisterServer2Response_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisterServer2Response_Encode(OpcUa_RegisterServer2Response* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisterServer2Response_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteArray(StatusCode, ConfigurationResults); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisterServer2Response_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisterServer2Response_Decode(OpcUa_RegisterServer2Response* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisterServer2Response_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_RegisterServer2Response_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadArray(StatusCode, ConfigurationResults); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_RegisterServer2Response_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisterServer2Response_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_RegisterServer2Response_EncodeableType = { "RegisterServer2Response", OpcUaId_RegisterServer2Response, OpcUaId_RegisterServer2Response_Encoding_DefaultBinary, OpcUaId_RegisterServer2Response_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_RegisterServer2Response), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_RegisterServer2Response_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_RegisterServer2Response_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_RegisterServer2Response_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_RegisterServer2Response_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_RegisterServer2Response_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_SecurityTokenRequestType /*============================================================================ * OpcUa_SecurityTokenRequestType_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_SecurityTokenRequestType_EnumeratedValues[] = { { "Issue", 0 }, { "Renew", 1 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_SecurityTokenRequestType_EnumeratedType = { "SecurityTokenRequestType", g_OpcUa_SecurityTokenRequestType_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_ChannelSecurityToken /*============================================================================ * OpcUa_ChannelSecurityToken_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ChannelSecurityToken_Initialize(OpcUa_ChannelSecurityToken* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, ChannelId); OpcUa_Field_Initialize(UInt32, TokenId); OpcUa_Field_Initialize(DateTime, CreatedAt); OpcUa_Field_Initialize(UInt32, RevisedLifetime); } } /*============================================================================ * OpcUa_ChannelSecurityToken_Clear *===========================================================================*/ OpcUa_Void OpcUa_ChannelSecurityToken_Clear(OpcUa_ChannelSecurityToken* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, ChannelId); OpcUa_Field_Clear(UInt32, TokenId); OpcUa_Field_Clear(DateTime, CreatedAt); OpcUa_Field_Clear(UInt32, RevisedLifetime); } } /*============================================================================ * OpcUa_ChannelSecurityToken_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ChannelSecurityToken_GetSize(OpcUa_ChannelSecurityToken* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ChannelSecurityToken_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, ChannelId); OpcUa_Field_GetSize(UInt32, TokenId); OpcUa_Field_GetSize(DateTime, CreatedAt); OpcUa_Field_GetSize(UInt32, RevisedLifetime); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ChannelSecurityToken_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ChannelSecurityToken_Encode(OpcUa_ChannelSecurityToken* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ChannelSecurityToken_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, ChannelId); OpcUa_Field_Write(UInt32, TokenId); OpcUa_Field_Write(DateTime, CreatedAt); OpcUa_Field_Write(UInt32, RevisedLifetime); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ChannelSecurityToken_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ChannelSecurityToken_Decode(OpcUa_ChannelSecurityToken* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ChannelSecurityToken_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ChannelSecurityToken_Initialize(a_pValue); OpcUa_Field_Read(UInt32, ChannelId); OpcUa_Field_Read(UInt32, TokenId); OpcUa_Field_Read(DateTime, CreatedAt); OpcUa_Field_Read(UInt32, RevisedLifetime); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ChannelSecurityToken_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ChannelSecurityToken_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ChannelSecurityToken_EncodeableType = { "ChannelSecurityToken", OpcUaId_ChannelSecurityToken, OpcUaId_ChannelSecurityToken_Encoding_DefaultBinary, OpcUaId_ChannelSecurityToken_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ChannelSecurityToken), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ChannelSecurityToken_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ChannelSecurityToken_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ChannelSecurityToken_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ChannelSecurityToken_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ChannelSecurityToken_Decode }; #endif #ifndef OPCUA_EXCLUDE_OpenSecureChannel #ifndef OPCUA_EXCLUDE_OpenSecureChannelRequest /*============================================================================ * OpcUa_OpenSecureChannelRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_OpenSecureChannelRequest_Initialize(OpcUa_OpenSecureChannelRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(UInt32, ClientProtocolVersion); OpcUa_Field_InitializeEnumerated(OpcUa_SecurityTokenRequestType, RequestType); OpcUa_Field_InitializeEnumerated(OpcUa_MessageSecurityMode, SecurityMode); OpcUa_Field_Initialize(ByteString, ClientNonce); OpcUa_Field_Initialize(UInt32, RequestedLifetime); } } /*============================================================================ * OpcUa_OpenSecureChannelRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_OpenSecureChannelRequest_Clear(OpcUa_OpenSecureChannelRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(UInt32, ClientProtocolVersion); OpcUa_Field_ClearEnumerated(OpcUa_SecurityTokenRequestType, RequestType); OpcUa_Field_ClearEnumerated(OpcUa_MessageSecurityMode, SecurityMode); OpcUa_Field_Clear(ByteString, ClientNonce); OpcUa_Field_Clear(UInt32, RequestedLifetime); } } /*============================================================================ * OpcUa_OpenSecureChannelRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_OpenSecureChannelRequest_GetSize(OpcUa_OpenSecureChannelRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "OpenSecureChannelRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(UInt32, ClientProtocolVersion); OpcUa_Field_GetSizeEnumerated(OpcUa_SecurityTokenRequestType, RequestType); OpcUa_Field_GetSizeEnumerated(OpcUa_MessageSecurityMode, SecurityMode); OpcUa_Field_GetSize(ByteString, ClientNonce); OpcUa_Field_GetSize(UInt32, RequestedLifetime); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_OpenSecureChannelRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_OpenSecureChannelRequest_Encode(OpcUa_OpenSecureChannelRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "OpenSecureChannelRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(UInt32, ClientProtocolVersion); OpcUa_Field_WriteEnumerated(OpcUa_SecurityTokenRequestType, RequestType); OpcUa_Field_WriteEnumerated(OpcUa_MessageSecurityMode, SecurityMode); OpcUa_Field_Write(ByteString, ClientNonce); OpcUa_Field_Write(UInt32, RequestedLifetime); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_OpenSecureChannelRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_OpenSecureChannelRequest_Decode(OpcUa_OpenSecureChannelRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "OpenSecureChannelRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_OpenSecureChannelRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(UInt32, ClientProtocolVersion); OpcUa_Field_ReadEnumerated(OpcUa_SecurityTokenRequestType, RequestType); OpcUa_Field_ReadEnumerated(OpcUa_MessageSecurityMode, SecurityMode); OpcUa_Field_Read(ByteString, ClientNonce); OpcUa_Field_Read(UInt32, RequestedLifetime); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_OpenSecureChannelRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_OpenSecureChannelRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_OpenSecureChannelRequest_EncodeableType = { "OpenSecureChannelRequest", OpcUaId_OpenSecureChannelRequest, OpcUaId_OpenSecureChannelRequest_Encoding_DefaultBinary, OpcUaId_OpenSecureChannelRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_OpenSecureChannelRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_OpenSecureChannelRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_OpenSecureChannelRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_OpenSecureChannelRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_OpenSecureChannelRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_OpenSecureChannelRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_OpenSecureChannelResponse /*============================================================================ * OpcUa_OpenSecureChannelResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_OpenSecureChannelResponse_Initialize(OpcUa_OpenSecureChannelResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Initialize(UInt32, ServerProtocolVersion); OpcUa_Field_InitializeEncodeable(OpcUa_ChannelSecurityToken, SecurityToken); OpcUa_Field_Initialize(ByteString, ServerNonce); } } /*============================================================================ * OpcUa_OpenSecureChannelResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_OpenSecureChannelResponse_Clear(OpcUa_OpenSecureChannelResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Clear(UInt32, ServerProtocolVersion); OpcUa_Field_ClearEncodeable(OpcUa_ChannelSecurityToken, SecurityToken); OpcUa_Field_Clear(ByteString, ServerNonce); } } /*============================================================================ * OpcUa_OpenSecureChannelResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_OpenSecureChannelResponse_GetSize(OpcUa_OpenSecureChannelResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "OpenSecureChannelResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSize(UInt32, ServerProtocolVersion); OpcUa_Field_GetSizeEncodeable(OpcUa_ChannelSecurityToken, SecurityToken); OpcUa_Field_GetSize(ByteString, ServerNonce); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_OpenSecureChannelResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_OpenSecureChannelResponse_Encode(OpcUa_OpenSecureChannelResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "OpenSecureChannelResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Write(UInt32, ServerProtocolVersion); OpcUa_Field_WriteEncodeable(OpcUa_ChannelSecurityToken, SecurityToken); OpcUa_Field_Write(ByteString, ServerNonce); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_OpenSecureChannelResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_OpenSecureChannelResponse_Decode(OpcUa_OpenSecureChannelResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "OpenSecureChannelResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_OpenSecureChannelResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Read(UInt32, ServerProtocolVersion); OpcUa_Field_ReadEncodeable(OpcUa_ChannelSecurityToken, SecurityToken); OpcUa_Field_Read(ByteString, ServerNonce); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_OpenSecureChannelResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_OpenSecureChannelResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_OpenSecureChannelResponse_EncodeableType = { "OpenSecureChannelResponse", OpcUaId_OpenSecureChannelResponse, OpcUaId_OpenSecureChannelResponse_Encoding_DefaultBinary, OpcUaId_OpenSecureChannelResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_OpenSecureChannelResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_OpenSecureChannelResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_OpenSecureChannelResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_OpenSecureChannelResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_OpenSecureChannelResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_OpenSecureChannelResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_CloseSecureChannel #ifndef OPCUA_EXCLUDE_CloseSecureChannelRequest /*============================================================================ * OpcUa_CloseSecureChannelRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_CloseSecureChannelRequest_Initialize(OpcUa_CloseSecureChannelRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); } } /*============================================================================ * OpcUa_CloseSecureChannelRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_CloseSecureChannelRequest_Clear(OpcUa_CloseSecureChannelRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); } } /*============================================================================ * OpcUa_CloseSecureChannelRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_CloseSecureChannelRequest_GetSize(OpcUa_CloseSecureChannelRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CloseSecureChannelRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CloseSecureChannelRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_CloseSecureChannelRequest_Encode(OpcUa_CloseSecureChannelRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CloseSecureChannelRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CloseSecureChannelRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_CloseSecureChannelRequest_Decode(OpcUa_CloseSecureChannelRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CloseSecureChannelRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_CloseSecureChannelRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_CloseSecureChannelRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CloseSecureChannelRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_CloseSecureChannelRequest_EncodeableType = { "CloseSecureChannelRequest", OpcUaId_CloseSecureChannelRequest, OpcUaId_CloseSecureChannelRequest_Encoding_DefaultBinary, OpcUaId_CloseSecureChannelRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_CloseSecureChannelRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_CloseSecureChannelRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_CloseSecureChannelRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_CloseSecureChannelRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_CloseSecureChannelRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_CloseSecureChannelRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_CloseSecureChannelResponse /*============================================================================ * OpcUa_CloseSecureChannelResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_CloseSecureChannelResponse_Initialize(OpcUa_CloseSecureChannelResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); } } /*============================================================================ * OpcUa_CloseSecureChannelResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_CloseSecureChannelResponse_Clear(OpcUa_CloseSecureChannelResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); } } /*============================================================================ * OpcUa_CloseSecureChannelResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_CloseSecureChannelResponse_GetSize(OpcUa_CloseSecureChannelResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CloseSecureChannelResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CloseSecureChannelResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_CloseSecureChannelResponse_Encode(OpcUa_CloseSecureChannelResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CloseSecureChannelResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CloseSecureChannelResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_CloseSecureChannelResponse_Decode(OpcUa_CloseSecureChannelResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CloseSecureChannelResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_CloseSecureChannelResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_CloseSecureChannelResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CloseSecureChannelResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_CloseSecureChannelResponse_EncodeableType = { "CloseSecureChannelResponse", OpcUaId_CloseSecureChannelResponse, OpcUaId_CloseSecureChannelResponse_Encoding_DefaultBinary, OpcUaId_CloseSecureChannelResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_CloseSecureChannelResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_CloseSecureChannelResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_CloseSecureChannelResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_CloseSecureChannelResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_CloseSecureChannelResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_CloseSecureChannelResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_SignedSoftwareCertificate /*============================================================================ * OpcUa_SignedSoftwareCertificate_Initialize *===========================================================================*/ OpcUa_Void OpcUa_SignedSoftwareCertificate_Initialize(OpcUa_SignedSoftwareCertificate* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(ByteString, CertificateData); OpcUa_Field_Initialize(ByteString, Signature); } } /*============================================================================ * OpcUa_SignedSoftwareCertificate_Clear *===========================================================================*/ OpcUa_Void OpcUa_SignedSoftwareCertificate_Clear(OpcUa_SignedSoftwareCertificate* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(ByteString, CertificateData); OpcUa_Field_Clear(ByteString, Signature); } } /*============================================================================ * OpcUa_SignedSoftwareCertificate_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_SignedSoftwareCertificate_GetSize(OpcUa_SignedSoftwareCertificate* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SignedSoftwareCertificate_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(ByteString, CertificateData); OpcUa_Field_GetSize(ByteString, Signature); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SignedSoftwareCertificate_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_SignedSoftwareCertificate_Encode(OpcUa_SignedSoftwareCertificate* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SignedSoftwareCertificate_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(ByteString, CertificateData); OpcUa_Field_Write(ByteString, Signature); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SignedSoftwareCertificate_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_SignedSoftwareCertificate_Decode(OpcUa_SignedSoftwareCertificate* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SignedSoftwareCertificate_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_SignedSoftwareCertificate_Initialize(a_pValue); OpcUa_Field_Read(ByteString, CertificateData); OpcUa_Field_Read(ByteString, Signature); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_SignedSoftwareCertificate_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SignedSoftwareCertificate_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_SignedSoftwareCertificate_EncodeableType = { "SignedSoftwareCertificate", OpcUaId_SignedSoftwareCertificate, OpcUaId_SignedSoftwareCertificate_Encoding_DefaultBinary, OpcUaId_SignedSoftwareCertificate_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_SignedSoftwareCertificate), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_SignedSoftwareCertificate_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_SignedSoftwareCertificate_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_SignedSoftwareCertificate_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_SignedSoftwareCertificate_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_SignedSoftwareCertificate_Decode }; #endif #ifndef OPCUA_EXCLUDE_SignatureData /*============================================================================ * OpcUa_SignatureData_Initialize *===========================================================================*/ OpcUa_Void OpcUa_SignatureData_Initialize(OpcUa_SignatureData* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(String, Algorithm); OpcUa_Field_Initialize(ByteString, Signature); } } /*============================================================================ * OpcUa_SignatureData_Clear *===========================================================================*/ OpcUa_Void OpcUa_SignatureData_Clear(OpcUa_SignatureData* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(String, Algorithm); OpcUa_Field_Clear(ByteString, Signature); } } /*============================================================================ * OpcUa_SignatureData_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_SignatureData_GetSize(OpcUa_SignatureData* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SignatureData_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(String, Algorithm); OpcUa_Field_GetSize(ByteString, Signature); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SignatureData_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_SignatureData_Encode(OpcUa_SignatureData* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SignatureData_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(String, Algorithm); OpcUa_Field_Write(ByteString, Signature); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SignatureData_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_SignatureData_Decode(OpcUa_SignatureData* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SignatureData_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_SignatureData_Initialize(a_pValue); OpcUa_Field_Read(String, Algorithm); OpcUa_Field_Read(ByteString, Signature); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_SignatureData_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SignatureData_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_SignatureData_EncodeableType = { "SignatureData", OpcUaId_SignatureData, OpcUaId_SignatureData_Encoding_DefaultBinary, OpcUaId_SignatureData_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_SignatureData), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_SignatureData_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_SignatureData_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_SignatureData_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_SignatureData_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_SignatureData_Decode }; #endif #ifndef OPCUA_EXCLUDE_CreateSession #ifndef OPCUA_EXCLUDE_CreateSessionRequest /*============================================================================ * OpcUa_CreateSessionRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_CreateSessionRequest_Initialize(OpcUa_CreateSessionRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeEncodeable(OpcUa_ApplicationDescription, ClientDescription); OpcUa_Field_Initialize(String, ServerUri); OpcUa_Field_Initialize(String, EndpointUrl); OpcUa_Field_Initialize(String, SessionName); OpcUa_Field_Initialize(ByteString, ClientNonce); OpcUa_Field_Initialize(ByteString, ClientCertificate); OpcUa_Field_Initialize(Double, RequestedSessionTimeout); OpcUa_Field_Initialize(UInt32, MaxResponseMessageSize); } } /*============================================================================ * OpcUa_CreateSessionRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_CreateSessionRequest_Clear(OpcUa_CreateSessionRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearEncodeable(OpcUa_ApplicationDescription, ClientDescription); OpcUa_Field_Clear(String, ServerUri); OpcUa_Field_Clear(String, EndpointUrl); OpcUa_Field_Clear(String, SessionName); OpcUa_Field_Clear(ByteString, ClientNonce); OpcUa_Field_Clear(ByteString, ClientCertificate); OpcUa_Field_Clear(Double, RequestedSessionTimeout); OpcUa_Field_Clear(UInt32, MaxResponseMessageSize); } } /*============================================================================ * OpcUa_CreateSessionRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_CreateSessionRequest_GetSize(OpcUa_CreateSessionRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CreateSessionRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeEncodeable(OpcUa_ApplicationDescription, ClientDescription); OpcUa_Field_GetSize(String, ServerUri); OpcUa_Field_GetSize(String, EndpointUrl); OpcUa_Field_GetSize(String, SessionName); OpcUa_Field_GetSize(ByteString, ClientNonce); OpcUa_Field_GetSize(ByteString, ClientCertificate); OpcUa_Field_GetSize(Double, RequestedSessionTimeout); OpcUa_Field_GetSize(UInt32, MaxResponseMessageSize); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CreateSessionRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_CreateSessionRequest_Encode(OpcUa_CreateSessionRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CreateSessionRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteEncodeable(OpcUa_ApplicationDescription, ClientDescription); OpcUa_Field_Write(String, ServerUri); OpcUa_Field_Write(String, EndpointUrl); OpcUa_Field_Write(String, SessionName); OpcUa_Field_Write(ByteString, ClientNonce); OpcUa_Field_Write(ByteString, ClientCertificate); OpcUa_Field_Write(Double, RequestedSessionTimeout); OpcUa_Field_Write(UInt32, MaxResponseMessageSize); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CreateSessionRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_CreateSessionRequest_Decode(OpcUa_CreateSessionRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CreateSessionRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_CreateSessionRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadEncodeable(OpcUa_ApplicationDescription, ClientDescription); OpcUa_Field_Read(String, ServerUri); OpcUa_Field_Read(String, EndpointUrl); OpcUa_Field_Read(String, SessionName); OpcUa_Field_Read(ByteString, ClientNonce); OpcUa_Field_Read(ByteString, ClientCertificate); OpcUa_Field_Read(Double, RequestedSessionTimeout); OpcUa_Field_Read(UInt32, MaxResponseMessageSize); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_CreateSessionRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CreateSessionRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_CreateSessionRequest_EncodeableType = { "CreateSessionRequest", OpcUaId_CreateSessionRequest, OpcUaId_CreateSessionRequest_Encoding_DefaultBinary, OpcUaId_CreateSessionRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_CreateSessionRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_CreateSessionRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_CreateSessionRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_CreateSessionRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_CreateSessionRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_CreateSessionRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_CreateSessionResponse /*============================================================================ * OpcUa_CreateSessionResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_CreateSessionResponse_Initialize(OpcUa_CreateSessionResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Initialize(NodeId, SessionId); OpcUa_Field_Initialize(NodeId, AuthenticationToken); OpcUa_Field_Initialize(Double, RevisedSessionTimeout); OpcUa_Field_Initialize(ByteString, ServerNonce); OpcUa_Field_Initialize(ByteString, ServerCertificate); OpcUa_Field_InitializeEncodeableArray(OpcUa_EndpointDescription, ServerEndpoints); OpcUa_Field_InitializeEncodeableArray(OpcUa_SignedSoftwareCertificate, ServerSoftwareCertificates); OpcUa_Field_InitializeEncodeable(OpcUa_SignatureData, ServerSignature); OpcUa_Field_Initialize(UInt32, MaxRequestMessageSize); } } /*============================================================================ * OpcUa_CreateSessionResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_CreateSessionResponse_Clear(OpcUa_CreateSessionResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Clear(NodeId, SessionId); OpcUa_Field_Clear(NodeId, AuthenticationToken); OpcUa_Field_Clear(Double, RevisedSessionTimeout); OpcUa_Field_Clear(ByteString, ServerNonce); OpcUa_Field_Clear(ByteString, ServerCertificate); OpcUa_Field_ClearEncodeableArray(OpcUa_EndpointDescription, ServerEndpoints); OpcUa_Field_ClearEncodeableArray(OpcUa_SignedSoftwareCertificate, ServerSoftwareCertificates); OpcUa_Field_ClearEncodeable(OpcUa_SignatureData, ServerSignature); OpcUa_Field_Clear(UInt32, MaxRequestMessageSize); } } /*============================================================================ * OpcUa_CreateSessionResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_CreateSessionResponse_GetSize(OpcUa_CreateSessionResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CreateSessionResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSize(NodeId, SessionId); OpcUa_Field_GetSize(NodeId, AuthenticationToken); OpcUa_Field_GetSize(Double, RevisedSessionTimeout); OpcUa_Field_GetSize(ByteString, ServerNonce); OpcUa_Field_GetSize(ByteString, ServerCertificate); OpcUa_Field_GetSizeEncodeableArray(OpcUa_EndpointDescription, ServerEndpoints); OpcUa_Field_GetSizeEncodeableArray(OpcUa_SignedSoftwareCertificate, ServerSoftwareCertificates); OpcUa_Field_GetSizeEncodeable(OpcUa_SignatureData, ServerSignature); OpcUa_Field_GetSize(UInt32, MaxRequestMessageSize); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CreateSessionResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_CreateSessionResponse_Encode(OpcUa_CreateSessionResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CreateSessionResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Write(NodeId, SessionId); OpcUa_Field_Write(NodeId, AuthenticationToken); OpcUa_Field_Write(Double, RevisedSessionTimeout); OpcUa_Field_Write(ByteString, ServerNonce); OpcUa_Field_Write(ByteString, ServerCertificate); OpcUa_Field_WriteEncodeableArray(OpcUa_EndpointDescription, ServerEndpoints); OpcUa_Field_WriteEncodeableArray(OpcUa_SignedSoftwareCertificate, ServerSoftwareCertificates); OpcUa_Field_WriteEncodeable(OpcUa_SignatureData, ServerSignature); OpcUa_Field_Write(UInt32, MaxRequestMessageSize); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CreateSessionResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_CreateSessionResponse_Decode(OpcUa_CreateSessionResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CreateSessionResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_CreateSessionResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Read(NodeId, SessionId); OpcUa_Field_Read(NodeId, AuthenticationToken); OpcUa_Field_Read(Double, RevisedSessionTimeout); OpcUa_Field_Read(ByteString, ServerNonce); OpcUa_Field_Read(ByteString, ServerCertificate); OpcUa_Field_ReadEncodeableArray(OpcUa_EndpointDescription, ServerEndpoints); OpcUa_Field_ReadEncodeableArray(OpcUa_SignedSoftwareCertificate, ServerSoftwareCertificates); OpcUa_Field_ReadEncodeable(OpcUa_SignatureData, ServerSignature); OpcUa_Field_Read(UInt32, MaxRequestMessageSize); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_CreateSessionResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CreateSessionResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_CreateSessionResponse_EncodeableType = { "CreateSessionResponse", OpcUaId_CreateSessionResponse, OpcUaId_CreateSessionResponse_Encoding_DefaultBinary, OpcUaId_CreateSessionResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_CreateSessionResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_CreateSessionResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_CreateSessionResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_CreateSessionResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_CreateSessionResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_CreateSessionResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_UserIdentityToken /*============================================================================ * OpcUa_UserIdentityToken_Initialize *===========================================================================*/ OpcUa_Void OpcUa_UserIdentityToken_Initialize(OpcUa_UserIdentityToken* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(String, PolicyId); } } /*============================================================================ * OpcUa_UserIdentityToken_Clear *===========================================================================*/ OpcUa_Void OpcUa_UserIdentityToken_Clear(OpcUa_UserIdentityToken* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(String, PolicyId); } } /*============================================================================ * OpcUa_UserIdentityToken_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_UserIdentityToken_GetSize(OpcUa_UserIdentityToken* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UserIdentityToken_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(String, PolicyId); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UserIdentityToken_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_UserIdentityToken_Encode(OpcUa_UserIdentityToken* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UserIdentityToken_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(String, PolicyId); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UserIdentityToken_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_UserIdentityToken_Decode(OpcUa_UserIdentityToken* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UserIdentityToken_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_UserIdentityToken_Initialize(a_pValue); OpcUa_Field_Read(String, PolicyId); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_UserIdentityToken_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UserIdentityToken_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_UserIdentityToken_EncodeableType = { "UserIdentityToken", OpcUaId_UserIdentityToken, OpcUaId_UserIdentityToken_Encoding_DefaultBinary, OpcUaId_UserIdentityToken_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_UserIdentityToken), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_UserIdentityToken_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_UserIdentityToken_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_UserIdentityToken_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_UserIdentityToken_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_UserIdentityToken_Decode }; #endif #ifndef OPCUA_EXCLUDE_AnonymousIdentityToken /*============================================================================ * OpcUa_AnonymousIdentityToken_Initialize *===========================================================================*/ OpcUa_Void OpcUa_AnonymousIdentityToken_Initialize(OpcUa_AnonymousIdentityToken* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(String, PolicyId); } } /*============================================================================ * OpcUa_AnonymousIdentityToken_Clear *===========================================================================*/ OpcUa_Void OpcUa_AnonymousIdentityToken_Clear(OpcUa_AnonymousIdentityToken* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(String, PolicyId); } } /*============================================================================ * OpcUa_AnonymousIdentityToken_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_AnonymousIdentityToken_GetSize(OpcUa_AnonymousIdentityToken* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AnonymousIdentityToken_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(String, PolicyId); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AnonymousIdentityToken_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_AnonymousIdentityToken_Encode(OpcUa_AnonymousIdentityToken* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AnonymousIdentityToken_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(String, PolicyId); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AnonymousIdentityToken_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_AnonymousIdentityToken_Decode(OpcUa_AnonymousIdentityToken* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AnonymousIdentityToken_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_AnonymousIdentityToken_Initialize(a_pValue); OpcUa_Field_Read(String, PolicyId); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_AnonymousIdentityToken_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AnonymousIdentityToken_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_AnonymousIdentityToken_EncodeableType = { "AnonymousIdentityToken", OpcUaId_AnonymousIdentityToken, OpcUaId_AnonymousIdentityToken_Encoding_DefaultBinary, OpcUaId_AnonymousIdentityToken_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_AnonymousIdentityToken), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_AnonymousIdentityToken_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_AnonymousIdentityToken_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_AnonymousIdentityToken_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_AnonymousIdentityToken_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_AnonymousIdentityToken_Decode }; #endif #ifndef OPCUA_EXCLUDE_UserNameIdentityToken /*============================================================================ * OpcUa_UserNameIdentityToken_Initialize *===========================================================================*/ OpcUa_Void OpcUa_UserNameIdentityToken_Initialize(OpcUa_UserNameIdentityToken* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(String, PolicyId); OpcUa_Field_Initialize(String, UserName); OpcUa_Field_Initialize(ByteString, Password); OpcUa_Field_Initialize(String, EncryptionAlgorithm); } } /*============================================================================ * OpcUa_UserNameIdentityToken_Clear *===========================================================================*/ OpcUa_Void OpcUa_UserNameIdentityToken_Clear(OpcUa_UserNameIdentityToken* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(String, PolicyId); OpcUa_Field_Clear(String, UserName); OpcUa_Field_Clear(ByteString, Password); OpcUa_Field_Clear(String, EncryptionAlgorithm); } } /*============================================================================ * OpcUa_UserNameIdentityToken_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_UserNameIdentityToken_GetSize(OpcUa_UserNameIdentityToken* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UserNameIdentityToken_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(String, PolicyId); OpcUa_Field_GetSize(String, UserName); OpcUa_Field_GetSize(ByteString, Password); OpcUa_Field_GetSize(String, EncryptionAlgorithm); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UserNameIdentityToken_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_UserNameIdentityToken_Encode(OpcUa_UserNameIdentityToken* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UserNameIdentityToken_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(String, PolicyId); OpcUa_Field_Write(String, UserName); OpcUa_Field_Write(ByteString, Password); OpcUa_Field_Write(String, EncryptionAlgorithm); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UserNameIdentityToken_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_UserNameIdentityToken_Decode(OpcUa_UserNameIdentityToken* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UserNameIdentityToken_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_UserNameIdentityToken_Initialize(a_pValue); OpcUa_Field_Read(String, PolicyId); OpcUa_Field_Read(String, UserName); OpcUa_Field_Read(ByteString, Password); OpcUa_Field_Read(String, EncryptionAlgorithm); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_UserNameIdentityToken_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UserNameIdentityToken_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_UserNameIdentityToken_EncodeableType = { "UserNameIdentityToken", OpcUaId_UserNameIdentityToken, OpcUaId_UserNameIdentityToken_Encoding_DefaultBinary, OpcUaId_UserNameIdentityToken_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_UserNameIdentityToken), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_UserNameIdentityToken_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_UserNameIdentityToken_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_UserNameIdentityToken_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_UserNameIdentityToken_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_UserNameIdentityToken_Decode }; #endif #ifndef OPCUA_EXCLUDE_X509IdentityToken /*============================================================================ * OpcUa_X509IdentityToken_Initialize *===========================================================================*/ OpcUa_Void OpcUa_X509IdentityToken_Initialize(OpcUa_X509IdentityToken* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(String, PolicyId); OpcUa_Field_Initialize(ByteString, CertificateData); } } /*============================================================================ * OpcUa_X509IdentityToken_Clear *===========================================================================*/ OpcUa_Void OpcUa_X509IdentityToken_Clear(OpcUa_X509IdentityToken* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(String, PolicyId); OpcUa_Field_Clear(ByteString, CertificateData); } } /*============================================================================ * OpcUa_X509IdentityToken_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_X509IdentityToken_GetSize(OpcUa_X509IdentityToken* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "X509IdentityToken_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(String, PolicyId); OpcUa_Field_GetSize(ByteString, CertificateData); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_X509IdentityToken_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_X509IdentityToken_Encode(OpcUa_X509IdentityToken* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "X509IdentityToken_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(String, PolicyId); OpcUa_Field_Write(ByteString, CertificateData); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_X509IdentityToken_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_X509IdentityToken_Decode(OpcUa_X509IdentityToken* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "X509IdentityToken_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_X509IdentityToken_Initialize(a_pValue); OpcUa_Field_Read(String, PolicyId); OpcUa_Field_Read(ByteString, CertificateData); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_X509IdentityToken_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_X509IdentityToken_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_X509IdentityToken_EncodeableType = { "X509IdentityToken", OpcUaId_X509IdentityToken, OpcUaId_X509IdentityToken_Encoding_DefaultBinary, OpcUaId_X509IdentityToken_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_X509IdentityToken), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_X509IdentityToken_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_X509IdentityToken_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_X509IdentityToken_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_X509IdentityToken_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_X509IdentityToken_Decode }; #endif #ifndef OPCUA_EXCLUDE_IssuedIdentityToken /*============================================================================ * OpcUa_IssuedIdentityToken_Initialize *===========================================================================*/ OpcUa_Void OpcUa_IssuedIdentityToken_Initialize(OpcUa_IssuedIdentityToken* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(String, PolicyId); OpcUa_Field_Initialize(ByteString, TokenData); OpcUa_Field_Initialize(String, EncryptionAlgorithm); } } /*============================================================================ * OpcUa_IssuedIdentityToken_Clear *===========================================================================*/ OpcUa_Void OpcUa_IssuedIdentityToken_Clear(OpcUa_IssuedIdentityToken* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(String, PolicyId); OpcUa_Field_Clear(ByteString, TokenData); OpcUa_Field_Clear(String, EncryptionAlgorithm); } } /*============================================================================ * OpcUa_IssuedIdentityToken_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_IssuedIdentityToken_GetSize(OpcUa_IssuedIdentityToken* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "IssuedIdentityToken_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(String, PolicyId); OpcUa_Field_GetSize(ByteString, TokenData); OpcUa_Field_GetSize(String, EncryptionAlgorithm); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_IssuedIdentityToken_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_IssuedIdentityToken_Encode(OpcUa_IssuedIdentityToken* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "IssuedIdentityToken_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(String, PolicyId); OpcUa_Field_Write(ByteString, TokenData); OpcUa_Field_Write(String, EncryptionAlgorithm); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_IssuedIdentityToken_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_IssuedIdentityToken_Decode(OpcUa_IssuedIdentityToken* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "IssuedIdentityToken_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_IssuedIdentityToken_Initialize(a_pValue); OpcUa_Field_Read(String, PolicyId); OpcUa_Field_Read(ByteString, TokenData); OpcUa_Field_Read(String, EncryptionAlgorithm); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_IssuedIdentityToken_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_IssuedIdentityToken_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_IssuedIdentityToken_EncodeableType = { "IssuedIdentityToken", OpcUaId_IssuedIdentityToken, OpcUaId_IssuedIdentityToken_Encoding_DefaultBinary, OpcUaId_IssuedIdentityToken_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_IssuedIdentityToken), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_IssuedIdentityToken_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_IssuedIdentityToken_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_IssuedIdentityToken_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_IssuedIdentityToken_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_IssuedIdentityToken_Decode }; #endif #ifndef OPCUA_EXCLUDE_ActivateSession #ifndef OPCUA_EXCLUDE_ActivateSessionRequest /*============================================================================ * OpcUa_ActivateSessionRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ActivateSessionRequest_Initialize(OpcUa_ActivateSessionRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeEncodeable(OpcUa_SignatureData, ClientSignature); OpcUa_Field_InitializeEncodeableArray(OpcUa_SignedSoftwareCertificate, ClientSoftwareCertificates); OpcUa_Field_InitializeArray(String, LocaleIds); OpcUa_Field_Initialize(ExtensionObject, UserIdentityToken); OpcUa_Field_InitializeEncodeable(OpcUa_SignatureData, UserTokenSignature); } } /*============================================================================ * OpcUa_ActivateSessionRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_ActivateSessionRequest_Clear(OpcUa_ActivateSessionRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearEncodeable(OpcUa_SignatureData, ClientSignature); OpcUa_Field_ClearEncodeableArray(OpcUa_SignedSoftwareCertificate, ClientSoftwareCertificates); OpcUa_Field_ClearArray(String, LocaleIds); OpcUa_Field_Clear(ExtensionObject, UserIdentityToken); OpcUa_Field_ClearEncodeable(OpcUa_SignatureData, UserTokenSignature); } } /*============================================================================ * OpcUa_ActivateSessionRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ActivateSessionRequest_GetSize(OpcUa_ActivateSessionRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ActivateSessionRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeEncodeable(OpcUa_SignatureData, ClientSignature); OpcUa_Field_GetSizeEncodeableArray(OpcUa_SignedSoftwareCertificate, ClientSoftwareCertificates); OpcUa_Field_GetSizeArray(String, LocaleIds); OpcUa_Field_GetSize(ExtensionObject, UserIdentityToken); OpcUa_Field_GetSizeEncodeable(OpcUa_SignatureData, UserTokenSignature); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ActivateSessionRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ActivateSessionRequest_Encode(OpcUa_ActivateSessionRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ActivateSessionRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteEncodeable(OpcUa_SignatureData, ClientSignature); OpcUa_Field_WriteEncodeableArray(OpcUa_SignedSoftwareCertificate, ClientSoftwareCertificates); OpcUa_Field_WriteArray(String, LocaleIds); OpcUa_Field_Write(ExtensionObject, UserIdentityToken); OpcUa_Field_WriteEncodeable(OpcUa_SignatureData, UserTokenSignature); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ActivateSessionRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ActivateSessionRequest_Decode(OpcUa_ActivateSessionRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ActivateSessionRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ActivateSessionRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadEncodeable(OpcUa_SignatureData, ClientSignature); OpcUa_Field_ReadEncodeableArray(OpcUa_SignedSoftwareCertificate, ClientSoftwareCertificates); OpcUa_Field_ReadArray(String, LocaleIds); OpcUa_Field_Read(ExtensionObject, UserIdentityToken); OpcUa_Field_ReadEncodeable(OpcUa_SignatureData, UserTokenSignature); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ActivateSessionRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ActivateSessionRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ActivateSessionRequest_EncodeableType = { "ActivateSessionRequest", OpcUaId_ActivateSessionRequest, OpcUaId_ActivateSessionRequest_Encoding_DefaultBinary, OpcUaId_ActivateSessionRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ActivateSessionRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ActivateSessionRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ActivateSessionRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ActivateSessionRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ActivateSessionRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ActivateSessionRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_ActivateSessionResponse /*============================================================================ * OpcUa_ActivateSessionResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ActivateSessionResponse_Initialize(OpcUa_ActivateSessionResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Initialize(ByteString, ServerNonce); OpcUa_Field_InitializeArray(StatusCode, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_ActivateSessionResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_ActivateSessionResponse_Clear(OpcUa_ActivateSessionResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Clear(ByteString, ServerNonce); OpcUa_Field_ClearArray(StatusCode, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_ActivateSessionResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ActivateSessionResponse_GetSize(OpcUa_ActivateSessionResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ActivateSessionResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSize(ByteString, ServerNonce); OpcUa_Field_GetSizeArray(StatusCode, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ActivateSessionResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ActivateSessionResponse_Encode(OpcUa_ActivateSessionResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ActivateSessionResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Write(ByteString, ServerNonce); OpcUa_Field_WriteArray(StatusCode, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ActivateSessionResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ActivateSessionResponse_Decode(OpcUa_ActivateSessionResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ActivateSessionResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ActivateSessionResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Read(ByteString, ServerNonce); OpcUa_Field_ReadArray(StatusCode, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ActivateSessionResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ActivateSessionResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ActivateSessionResponse_EncodeableType = { "ActivateSessionResponse", OpcUaId_ActivateSessionResponse, OpcUaId_ActivateSessionResponse_Encoding_DefaultBinary, OpcUaId_ActivateSessionResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ActivateSessionResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ActivateSessionResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ActivateSessionResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ActivateSessionResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ActivateSessionResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ActivateSessionResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_CloseSession #ifndef OPCUA_EXCLUDE_CloseSessionRequest /*============================================================================ * OpcUa_CloseSessionRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_CloseSessionRequest_Initialize(OpcUa_CloseSessionRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(Boolean, DeleteSubscriptions); } } /*============================================================================ * OpcUa_CloseSessionRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_CloseSessionRequest_Clear(OpcUa_CloseSessionRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(Boolean, DeleteSubscriptions); } } /*============================================================================ * OpcUa_CloseSessionRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_CloseSessionRequest_GetSize(OpcUa_CloseSessionRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CloseSessionRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(Boolean, DeleteSubscriptions); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CloseSessionRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_CloseSessionRequest_Encode(OpcUa_CloseSessionRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CloseSessionRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(Boolean, DeleteSubscriptions); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CloseSessionRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_CloseSessionRequest_Decode(OpcUa_CloseSessionRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CloseSessionRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_CloseSessionRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(Boolean, DeleteSubscriptions); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_CloseSessionRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CloseSessionRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_CloseSessionRequest_EncodeableType = { "CloseSessionRequest", OpcUaId_CloseSessionRequest, OpcUaId_CloseSessionRequest_Encoding_DefaultBinary, OpcUaId_CloseSessionRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_CloseSessionRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_CloseSessionRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_CloseSessionRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_CloseSessionRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_CloseSessionRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_CloseSessionRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_CloseSessionResponse /*============================================================================ * OpcUa_CloseSessionResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_CloseSessionResponse_Initialize(OpcUa_CloseSessionResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); } } /*============================================================================ * OpcUa_CloseSessionResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_CloseSessionResponse_Clear(OpcUa_CloseSessionResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); } } /*============================================================================ * OpcUa_CloseSessionResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_CloseSessionResponse_GetSize(OpcUa_CloseSessionResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CloseSessionResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CloseSessionResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_CloseSessionResponse_Encode(OpcUa_CloseSessionResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CloseSessionResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CloseSessionResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_CloseSessionResponse_Decode(OpcUa_CloseSessionResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CloseSessionResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_CloseSessionResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_CloseSessionResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CloseSessionResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_CloseSessionResponse_EncodeableType = { "CloseSessionResponse", OpcUaId_CloseSessionResponse, OpcUaId_CloseSessionResponse_Encoding_DefaultBinary, OpcUaId_CloseSessionResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_CloseSessionResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_CloseSessionResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_CloseSessionResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_CloseSessionResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_CloseSessionResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_CloseSessionResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_Cancel #ifndef OPCUA_EXCLUDE_CancelRequest /*============================================================================ * OpcUa_CancelRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_CancelRequest_Initialize(OpcUa_CancelRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(UInt32, RequestHandle); } } /*============================================================================ * OpcUa_CancelRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_CancelRequest_Clear(OpcUa_CancelRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(UInt32, RequestHandle); } } /*============================================================================ * OpcUa_CancelRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_CancelRequest_GetSize(OpcUa_CancelRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CancelRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(UInt32, RequestHandle); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CancelRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_CancelRequest_Encode(OpcUa_CancelRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CancelRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(UInt32, RequestHandle); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CancelRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_CancelRequest_Decode(OpcUa_CancelRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CancelRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_CancelRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(UInt32, RequestHandle); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_CancelRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CancelRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_CancelRequest_EncodeableType = { "CancelRequest", OpcUaId_CancelRequest, OpcUaId_CancelRequest_Encoding_DefaultBinary, OpcUaId_CancelRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_CancelRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_CancelRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_CancelRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_CancelRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_CancelRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_CancelRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_CancelResponse /*============================================================================ * OpcUa_CancelResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_CancelResponse_Initialize(OpcUa_CancelResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Initialize(UInt32, CancelCount); } } /*============================================================================ * OpcUa_CancelResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_CancelResponse_Clear(OpcUa_CancelResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Clear(UInt32, CancelCount); } } /*============================================================================ * OpcUa_CancelResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_CancelResponse_GetSize(OpcUa_CancelResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CancelResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSize(UInt32, CancelCount); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CancelResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_CancelResponse_Encode(OpcUa_CancelResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CancelResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Write(UInt32, CancelCount); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CancelResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_CancelResponse_Decode(OpcUa_CancelResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CancelResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_CancelResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Read(UInt32, CancelCount); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_CancelResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CancelResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_CancelResponse_EncodeableType = { "CancelResponse", OpcUaId_CancelResponse, OpcUaId_CancelResponse_Encoding_DefaultBinary, OpcUaId_CancelResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_CancelResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_CancelResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_CancelResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_CancelResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_CancelResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_CancelResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_NodeAttributesMask /*============================================================================ * OpcUa_NodeAttributesMask_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_NodeAttributesMask_EnumeratedValues[] = { { "None", 0 }, { "AccessLevel", 1 }, { "ArrayDimensions", 2 }, { "BrowseName", 4 }, { "ContainsNoLoops", 8 }, { "DataType", 16 }, { "Description", 32 }, { "DisplayName", 64 }, { "EventNotifier", 128 }, { "Executable", 256 }, { "Historizing", 512 }, { "InverseName", 1024 }, { "IsAbstract", 2048 }, { "MinimumSamplingInterval", 4096 }, { "NodeClass", 8192 }, { "NodeId", 16384 }, { "Symmetric", 32768 }, { "UserAccessLevel", 65536 }, { "UserExecutable", 131072 }, { "UserWriteMask", 262144 }, { "ValueRank", 524288 }, { "WriteMask", 1048576 }, { "Value", 2097152 }, { "DataTypeDefinition", 4194304 }, { "RolePermissions", 8388608 }, { "AccessRestrictions", 16777216 }, { "All", 33554431 }, { "BaseNode", 26501220 }, { "Object", 26501348 }, { "ObjectType", 26503268 }, { "Variable", 26571383 }, { "VariableType", 28600438 }, { "Method", 26632548 }, { "ReferenceType", 26537060 }, { "View", 26501356 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_NodeAttributesMask_EnumeratedType = { "NodeAttributesMask", g_OpcUa_NodeAttributesMask_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_NodeAttributes /*============================================================================ * OpcUa_NodeAttributes_Initialize *===========================================================================*/ OpcUa_Void OpcUa_NodeAttributes_Initialize(OpcUa_NodeAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, SpecifiedAttributes); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); } } /*============================================================================ * OpcUa_NodeAttributes_Clear *===========================================================================*/ OpcUa_Void OpcUa_NodeAttributes_Clear(OpcUa_NodeAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, SpecifiedAttributes); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); } } /*============================================================================ * OpcUa_NodeAttributes_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_NodeAttributes_GetSize(OpcUa_NodeAttributes* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "NodeAttributes_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, SpecifiedAttributes); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_NodeAttributes_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_NodeAttributes_Encode(OpcUa_NodeAttributes* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "NodeAttributes_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, SpecifiedAttributes); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_NodeAttributes_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_NodeAttributes_Decode(OpcUa_NodeAttributes* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "NodeAttributes_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_NodeAttributes_Initialize(a_pValue); OpcUa_Field_Read(UInt32, SpecifiedAttributes); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_NodeAttributes_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_NodeAttributes_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_NodeAttributes_EncodeableType = { "NodeAttributes", OpcUaId_NodeAttributes, OpcUaId_NodeAttributes_Encoding_DefaultBinary, OpcUaId_NodeAttributes_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_NodeAttributes), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_NodeAttributes_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_NodeAttributes_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_NodeAttributes_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_NodeAttributes_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_NodeAttributes_Decode }; #endif #ifndef OPCUA_EXCLUDE_ObjectAttributes /*============================================================================ * OpcUa_ObjectAttributes_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ObjectAttributes_Initialize(OpcUa_ObjectAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, SpecifiedAttributes); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_Initialize(Byte, EventNotifier); } } /*============================================================================ * OpcUa_ObjectAttributes_Clear *===========================================================================*/ OpcUa_Void OpcUa_ObjectAttributes_Clear(OpcUa_ObjectAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, SpecifiedAttributes); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_Clear(Byte, EventNotifier); } } /*============================================================================ * OpcUa_ObjectAttributes_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ObjectAttributes_GetSize(OpcUa_ObjectAttributes* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ObjectAttributes_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, SpecifiedAttributes); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSize(Byte, EventNotifier); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ObjectAttributes_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ObjectAttributes_Encode(OpcUa_ObjectAttributes* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ObjectAttributes_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, SpecifiedAttributes); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_Write(Byte, EventNotifier); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ObjectAttributes_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ObjectAttributes_Decode(OpcUa_ObjectAttributes* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ObjectAttributes_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ObjectAttributes_Initialize(a_pValue); OpcUa_Field_Read(UInt32, SpecifiedAttributes); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_Read(Byte, EventNotifier); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ObjectAttributes_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ObjectAttributes_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ObjectAttributes_EncodeableType = { "ObjectAttributes", OpcUaId_ObjectAttributes, OpcUaId_ObjectAttributes_Encoding_DefaultBinary, OpcUaId_ObjectAttributes_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ObjectAttributes), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ObjectAttributes_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ObjectAttributes_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ObjectAttributes_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ObjectAttributes_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ObjectAttributes_Decode }; #endif #ifndef OPCUA_EXCLUDE_VariableAttributes /*============================================================================ * OpcUa_VariableAttributes_Initialize *===========================================================================*/ OpcUa_Void OpcUa_VariableAttributes_Initialize(OpcUa_VariableAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, SpecifiedAttributes); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_Initialize(Variant, Value); OpcUa_Field_Initialize(NodeId, DataType); OpcUa_Field_Initialize(Int32, ValueRank); OpcUa_Field_InitializeArray(UInt32, ArrayDimensions); OpcUa_Field_Initialize(Byte, AccessLevel); OpcUa_Field_Initialize(Byte, UserAccessLevel); OpcUa_Field_Initialize(Double, MinimumSamplingInterval); OpcUa_Field_Initialize(Boolean, Historizing); } } /*============================================================================ * OpcUa_VariableAttributes_Clear *===========================================================================*/ OpcUa_Void OpcUa_VariableAttributes_Clear(OpcUa_VariableAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, SpecifiedAttributes); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_Clear(Variant, Value); OpcUa_Field_Clear(NodeId, DataType); OpcUa_Field_Clear(Int32, ValueRank); OpcUa_Field_ClearArray(UInt32, ArrayDimensions); OpcUa_Field_Clear(Byte, AccessLevel); OpcUa_Field_Clear(Byte, UserAccessLevel); OpcUa_Field_Clear(Double, MinimumSamplingInterval); OpcUa_Field_Clear(Boolean, Historizing); } } /*============================================================================ * OpcUa_VariableAttributes_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_VariableAttributes_GetSize(OpcUa_VariableAttributes* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "VariableAttributes_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, SpecifiedAttributes); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSize(Variant, Value); OpcUa_Field_GetSize(NodeId, DataType); OpcUa_Field_GetSize(Int32, ValueRank); OpcUa_Field_GetSizeArray(UInt32, ArrayDimensions); OpcUa_Field_GetSize(Byte, AccessLevel); OpcUa_Field_GetSize(Byte, UserAccessLevel); OpcUa_Field_GetSize(Double, MinimumSamplingInterval); OpcUa_Field_GetSize(Boolean, Historizing); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_VariableAttributes_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_VariableAttributes_Encode(OpcUa_VariableAttributes* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "VariableAttributes_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, SpecifiedAttributes); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_Write(Variant, Value); OpcUa_Field_Write(NodeId, DataType); OpcUa_Field_Write(Int32, ValueRank); OpcUa_Field_WriteArray(UInt32, ArrayDimensions); OpcUa_Field_Write(Byte, AccessLevel); OpcUa_Field_Write(Byte, UserAccessLevel); OpcUa_Field_Write(Double, MinimumSamplingInterval); OpcUa_Field_Write(Boolean, Historizing); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_VariableAttributes_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_VariableAttributes_Decode(OpcUa_VariableAttributes* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "VariableAttributes_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_VariableAttributes_Initialize(a_pValue); OpcUa_Field_Read(UInt32, SpecifiedAttributes); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_Read(Variant, Value); OpcUa_Field_Read(NodeId, DataType); OpcUa_Field_Read(Int32, ValueRank); OpcUa_Field_ReadArray(UInt32, ArrayDimensions); OpcUa_Field_Read(Byte, AccessLevel); OpcUa_Field_Read(Byte, UserAccessLevel); OpcUa_Field_Read(Double, MinimumSamplingInterval); OpcUa_Field_Read(Boolean, Historizing); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_VariableAttributes_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_VariableAttributes_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_VariableAttributes_EncodeableType = { "VariableAttributes", OpcUaId_VariableAttributes, OpcUaId_VariableAttributes_Encoding_DefaultBinary, OpcUaId_VariableAttributes_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_VariableAttributes), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_VariableAttributes_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_VariableAttributes_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_VariableAttributes_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_VariableAttributes_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_VariableAttributes_Decode }; #endif #ifndef OPCUA_EXCLUDE_MethodAttributes /*============================================================================ * OpcUa_MethodAttributes_Initialize *===========================================================================*/ OpcUa_Void OpcUa_MethodAttributes_Initialize(OpcUa_MethodAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, SpecifiedAttributes); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_Initialize(Boolean, Executable); OpcUa_Field_Initialize(Boolean, UserExecutable); } } /*============================================================================ * OpcUa_MethodAttributes_Clear *===========================================================================*/ OpcUa_Void OpcUa_MethodAttributes_Clear(OpcUa_MethodAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, SpecifiedAttributes); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_Clear(Boolean, Executable); OpcUa_Field_Clear(Boolean, UserExecutable); } } /*============================================================================ * OpcUa_MethodAttributes_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_MethodAttributes_GetSize(OpcUa_MethodAttributes* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MethodAttributes_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, SpecifiedAttributes); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSize(Boolean, Executable); OpcUa_Field_GetSize(Boolean, UserExecutable); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MethodAttributes_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_MethodAttributes_Encode(OpcUa_MethodAttributes* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MethodAttributes_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, SpecifiedAttributes); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_Write(Boolean, Executable); OpcUa_Field_Write(Boolean, UserExecutable); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MethodAttributes_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_MethodAttributes_Decode(OpcUa_MethodAttributes* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MethodAttributes_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_MethodAttributes_Initialize(a_pValue); OpcUa_Field_Read(UInt32, SpecifiedAttributes); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_Read(Boolean, Executable); OpcUa_Field_Read(Boolean, UserExecutable); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_MethodAttributes_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MethodAttributes_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_MethodAttributes_EncodeableType = { "MethodAttributes", OpcUaId_MethodAttributes, OpcUaId_MethodAttributes_Encoding_DefaultBinary, OpcUaId_MethodAttributes_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_MethodAttributes), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_MethodAttributes_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_MethodAttributes_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_MethodAttributes_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_MethodAttributes_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_MethodAttributes_Decode }; #endif #ifndef OPCUA_EXCLUDE_ObjectTypeAttributes /*============================================================================ * OpcUa_ObjectTypeAttributes_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ObjectTypeAttributes_Initialize(OpcUa_ObjectTypeAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, SpecifiedAttributes); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_Initialize(Boolean, IsAbstract); } } /*============================================================================ * OpcUa_ObjectTypeAttributes_Clear *===========================================================================*/ OpcUa_Void OpcUa_ObjectTypeAttributes_Clear(OpcUa_ObjectTypeAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, SpecifiedAttributes); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_Clear(Boolean, IsAbstract); } } /*============================================================================ * OpcUa_ObjectTypeAttributes_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ObjectTypeAttributes_GetSize(OpcUa_ObjectTypeAttributes* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ObjectTypeAttributes_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, SpecifiedAttributes); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSize(Boolean, IsAbstract); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ObjectTypeAttributes_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ObjectTypeAttributes_Encode(OpcUa_ObjectTypeAttributes* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ObjectTypeAttributes_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, SpecifiedAttributes); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_Write(Boolean, IsAbstract); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ObjectTypeAttributes_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ObjectTypeAttributes_Decode(OpcUa_ObjectTypeAttributes* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ObjectTypeAttributes_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ObjectTypeAttributes_Initialize(a_pValue); OpcUa_Field_Read(UInt32, SpecifiedAttributes); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_Read(Boolean, IsAbstract); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ObjectTypeAttributes_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ObjectTypeAttributes_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ObjectTypeAttributes_EncodeableType = { "ObjectTypeAttributes", OpcUaId_ObjectTypeAttributes, OpcUaId_ObjectTypeAttributes_Encoding_DefaultBinary, OpcUaId_ObjectTypeAttributes_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ObjectTypeAttributes), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ObjectTypeAttributes_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ObjectTypeAttributes_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ObjectTypeAttributes_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ObjectTypeAttributes_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ObjectTypeAttributes_Decode }; #endif #ifndef OPCUA_EXCLUDE_VariableTypeAttributes /*============================================================================ * OpcUa_VariableTypeAttributes_Initialize *===========================================================================*/ OpcUa_Void OpcUa_VariableTypeAttributes_Initialize(OpcUa_VariableTypeAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, SpecifiedAttributes); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_Initialize(Variant, Value); OpcUa_Field_Initialize(NodeId, DataType); OpcUa_Field_Initialize(Int32, ValueRank); OpcUa_Field_InitializeArray(UInt32, ArrayDimensions); OpcUa_Field_Initialize(Boolean, IsAbstract); } } /*============================================================================ * OpcUa_VariableTypeAttributes_Clear *===========================================================================*/ OpcUa_Void OpcUa_VariableTypeAttributes_Clear(OpcUa_VariableTypeAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, SpecifiedAttributes); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_Clear(Variant, Value); OpcUa_Field_Clear(NodeId, DataType); OpcUa_Field_Clear(Int32, ValueRank); OpcUa_Field_ClearArray(UInt32, ArrayDimensions); OpcUa_Field_Clear(Boolean, IsAbstract); } } /*============================================================================ * OpcUa_VariableTypeAttributes_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_VariableTypeAttributes_GetSize(OpcUa_VariableTypeAttributes* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "VariableTypeAttributes_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, SpecifiedAttributes); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSize(Variant, Value); OpcUa_Field_GetSize(NodeId, DataType); OpcUa_Field_GetSize(Int32, ValueRank); OpcUa_Field_GetSizeArray(UInt32, ArrayDimensions); OpcUa_Field_GetSize(Boolean, IsAbstract); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_VariableTypeAttributes_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_VariableTypeAttributes_Encode(OpcUa_VariableTypeAttributes* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "VariableTypeAttributes_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, SpecifiedAttributes); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_Write(Variant, Value); OpcUa_Field_Write(NodeId, DataType); OpcUa_Field_Write(Int32, ValueRank); OpcUa_Field_WriteArray(UInt32, ArrayDimensions); OpcUa_Field_Write(Boolean, IsAbstract); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_VariableTypeAttributes_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_VariableTypeAttributes_Decode(OpcUa_VariableTypeAttributes* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "VariableTypeAttributes_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_VariableTypeAttributes_Initialize(a_pValue); OpcUa_Field_Read(UInt32, SpecifiedAttributes); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_Read(Variant, Value); OpcUa_Field_Read(NodeId, DataType); OpcUa_Field_Read(Int32, ValueRank); OpcUa_Field_ReadArray(UInt32, ArrayDimensions); OpcUa_Field_Read(Boolean, IsAbstract); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_VariableTypeAttributes_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_VariableTypeAttributes_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_VariableTypeAttributes_EncodeableType = { "VariableTypeAttributes", OpcUaId_VariableTypeAttributes, OpcUaId_VariableTypeAttributes_Encoding_DefaultBinary, OpcUaId_VariableTypeAttributes_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_VariableTypeAttributes), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_VariableTypeAttributes_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_VariableTypeAttributes_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_VariableTypeAttributes_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_VariableTypeAttributes_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_VariableTypeAttributes_Decode }; #endif #ifndef OPCUA_EXCLUDE_ReferenceTypeAttributes /*============================================================================ * OpcUa_ReferenceTypeAttributes_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ReferenceTypeAttributes_Initialize(OpcUa_ReferenceTypeAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, SpecifiedAttributes); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_Initialize(Boolean, IsAbstract); OpcUa_Field_Initialize(Boolean, Symmetric); OpcUa_Field_Initialize(LocalizedText, InverseName); } } /*============================================================================ * OpcUa_ReferenceTypeAttributes_Clear *===========================================================================*/ OpcUa_Void OpcUa_ReferenceTypeAttributes_Clear(OpcUa_ReferenceTypeAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, SpecifiedAttributes); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_Clear(Boolean, IsAbstract); OpcUa_Field_Clear(Boolean, Symmetric); OpcUa_Field_Clear(LocalizedText, InverseName); } } /*============================================================================ * OpcUa_ReferenceTypeAttributes_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ReferenceTypeAttributes_GetSize(OpcUa_ReferenceTypeAttributes* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReferenceTypeAttributes_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, SpecifiedAttributes); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSize(Boolean, IsAbstract); OpcUa_Field_GetSize(Boolean, Symmetric); OpcUa_Field_GetSize(LocalizedText, InverseName); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReferenceTypeAttributes_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReferenceTypeAttributes_Encode(OpcUa_ReferenceTypeAttributes* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReferenceTypeAttributes_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, SpecifiedAttributes); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_Write(Boolean, IsAbstract); OpcUa_Field_Write(Boolean, Symmetric); OpcUa_Field_Write(LocalizedText, InverseName); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReferenceTypeAttributes_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReferenceTypeAttributes_Decode(OpcUa_ReferenceTypeAttributes* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReferenceTypeAttributes_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ReferenceTypeAttributes_Initialize(a_pValue); OpcUa_Field_Read(UInt32, SpecifiedAttributes); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_Read(Boolean, IsAbstract); OpcUa_Field_Read(Boolean, Symmetric); OpcUa_Field_Read(LocalizedText, InverseName); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ReferenceTypeAttributes_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReferenceTypeAttributes_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ReferenceTypeAttributes_EncodeableType = { "ReferenceTypeAttributes", OpcUaId_ReferenceTypeAttributes, OpcUaId_ReferenceTypeAttributes_Encoding_DefaultBinary, OpcUaId_ReferenceTypeAttributes_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ReferenceTypeAttributes), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ReferenceTypeAttributes_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ReferenceTypeAttributes_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ReferenceTypeAttributes_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ReferenceTypeAttributes_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ReferenceTypeAttributes_Decode }; #endif #ifndef OPCUA_EXCLUDE_DataTypeAttributes /*============================================================================ * OpcUa_DataTypeAttributes_Initialize *===========================================================================*/ OpcUa_Void OpcUa_DataTypeAttributes_Initialize(OpcUa_DataTypeAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, SpecifiedAttributes); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_Initialize(Boolean, IsAbstract); } } /*============================================================================ * OpcUa_DataTypeAttributes_Clear *===========================================================================*/ OpcUa_Void OpcUa_DataTypeAttributes_Clear(OpcUa_DataTypeAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, SpecifiedAttributes); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_Clear(Boolean, IsAbstract); } } /*============================================================================ * OpcUa_DataTypeAttributes_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_DataTypeAttributes_GetSize(OpcUa_DataTypeAttributes* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DataTypeAttributes_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, SpecifiedAttributes); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSize(Boolean, IsAbstract); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DataTypeAttributes_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_DataTypeAttributes_Encode(OpcUa_DataTypeAttributes* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DataTypeAttributes_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, SpecifiedAttributes); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_Write(Boolean, IsAbstract); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DataTypeAttributes_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_DataTypeAttributes_Decode(OpcUa_DataTypeAttributes* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DataTypeAttributes_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_DataTypeAttributes_Initialize(a_pValue); OpcUa_Field_Read(UInt32, SpecifiedAttributes); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_Read(Boolean, IsAbstract); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_DataTypeAttributes_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DataTypeAttributes_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_DataTypeAttributes_EncodeableType = { "DataTypeAttributes", OpcUaId_DataTypeAttributes, OpcUaId_DataTypeAttributes_Encoding_DefaultBinary, OpcUaId_DataTypeAttributes_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_DataTypeAttributes), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_DataTypeAttributes_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_DataTypeAttributes_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_DataTypeAttributes_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_DataTypeAttributes_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_DataTypeAttributes_Decode }; #endif #ifndef OPCUA_EXCLUDE_ViewAttributes /*============================================================================ * OpcUa_ViewAttributes_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ViewAttributes_Initialize(OpcUa_ViewAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, SpecifiedAttributes); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_Initialize(Boolean, ContainsNoLoops); OpcUa_Field_Initialize(Byte, EventNotifier); } } /*============================================================================ * OpcUa_ViewAttributes_Clear *===========================================================================*/ OpcUa_Void OpcUa_ViewAttributes_Clear(OpcUa_ViewAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, SpecifiedAttributes); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_Clear(Boolean, ContainsNoLoops); OpcUa_Field_Clear(Byte, EventNotifier); } } /*============================================================================ * OpcUa_ViewAttributes_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ViewAttributes_GetSize(OpcUa_ViewAttributes* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ViewAttributes_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, SpecifiedAttributes); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSize(Boolean, ContainsNoLoops); OpcUa_Field_GetSize(Byte, EventNotifier); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ViewAttributes_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ViewAttributes_Encode(OpcUa_ViewAttributes* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ViewAttributes_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, SpecifiedAttributes); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_Write(Boolean, ContainsNoLoops); OpcUa_Field_Write(Byte, EventNotifier); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ViewAttributes_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ViewAttributes_Decode(OpcUa_ViewAttributes* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ViewAttributes_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ViewAttributes_Initialize(a_pValue); OpcUa_Field_Read(UInt32, SpecifiedAttributes); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_Read(Boolean, ContainsNoLoops); OpcUa_Field_Read(Byte, EventNotifier); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ViewAttributes_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ViewAttributes_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ViewAttributes_EncodeableType = { "ViewAttributes", OpcUaId_ViewAttributes, OpcUaId_ViewAttributes_Encoding_DefaultBinary, OpcUaId_ViewAttributes_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ViewAttributes), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ViewAttributes_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ViewAttributes_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ViewAttributes_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ViewAttributes_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ViewAttributes_Decode }; #endif #ifndef OPCUA_EXCLUDE_GenericAttributeValue /*============================================================================ * OpcUa_GenericAttributeValue_Initialize *===========================================================================*/ OpcUa_Void OpcUa_GenericAttributeValue_Initialize(OpcUa_GenericAttributeValue* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, AttributeId); OpcUa_Field_Initialize(Variant, Value); } } /*============================================================================ * OpcUa_GenericAttributeValue_Clear *===========================================================================*/ OpcUa_Void OpcUa_GenericAttributeValue_Clear(OpcUa_GenericAttributeValue* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, AttributeId); OpcUa_Field_Clear(Variant, Value); } } /*============================================================================ * OpcUa_GenericAttributeValue_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_GenericAttributeValue_GetSize(OpcUa_GenericAttributeValue* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "GenericAttributeValue_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, AttributeId); OpcUa_Field_GetSize(Variant, Value); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_GenericAttributeValue_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_GenericAttributeValue_Encode(OpcUa_GenericAttributeValue* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "GenericAttributeValue_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, AttributeId); OpcUa_Field_Write(Variant, Value); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_GenericAttributeValue_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_GenericAttributeValue_Decode(OpcUa_GenericAttributeValue* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "GenericAttributeValue_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_GenericAttributeValue_Initialize(a_pValue); OpcUa_Field_Read(UInt32, AttributeId); OpcUa_Field_Read(Variant, Value); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_GenericAttributeValue_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_GenericAttributeValue_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_GenericAttributeValue_EncodeableType = { "GenericAttributeValue", OpcUaId_GenericAttributeValue, OpcUaId_GenericAttributeValue_Encoding_DefaultBinary, OpcUaId_GenericAttributeValue_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_GenericAttributeValue), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_GenericAttributeValue_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_GenericAttributeValue_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_GenericAttributeValue_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_GenericAttributeValue_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_GenericAttributeValue_Decode }; #endif #ifndef OPCUA_EXCLUDE_GenericAttributes /*============================================================================ * OpcUa_GenericAttributes_Initialize *===========================================================================*/ OpcUa_Void OpcUa_GenericAttributes_Initialize(OpcUa_GenericAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, SpecifiedAttributes); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); OpcUa_Field_Initialize(UInt32, WriteMask); OpcUa_Field_Initialize(UInt32, UserWriteMask); OpcUa_Field_InitializeEncodeableArray(OpcUa_GenericAttributeValue, AttributeValues); } } /*============================================================================ * OpcUa_GenericAttributes_Clear *===========================================================================*/ OpcUa_Void OpcUa_GenericAttributes_Clear(OpcUa_GenericAttributes* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, SpecifiedAttributes); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); OpcUa_Field_Clear(UInt32, WriteMask); OpcUa_Field_Clear(UInt32, UserWriteMask); OpcUa_Field_ClearEncodeableArray(OpcUa_GenericAttributeValue, AttributeValues); } } /*============================================================================ * OpcUa_GenericAttributes_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_GenericAttributes_GetSize(OpcUa_GenericAttributes* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "GenericAttributes_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, SpecifiedAttributes); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); OpcUa_Field_GetSize(UInt32, WriteMask); OpcUa_Field_GetSize(UInt32, UserWriteMask); OpcUa_Field_GetSizeEncodeableArray(OpcUa_GenericAttributeValue, AttributeValues); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_GenericAttributes_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_GenericAttributes_Encode(OpcUa_GenericAttributes* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "GenericAttributes_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, SpecifiedAttributes); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_Field_Write(UInt32, WriteMask); OpcUa_Field_Write(UInt32, UserWriteMask); OpcUa_Field_WriteEncodeableArray(OpcUa_GenericAttributeValue, AttributeValues); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_GenericAttributes_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_GenericAttributes_Decode(OpcUa_GenericAttributes* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "GenericAttributes_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_GenericAttributes_Initialize(a_pValue); OpcUa_Field_Read(UInt32, SpecifiedAttributes); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_Field_Read(UInt32, WriteMask); OpcUa_Field_Read(UInt32, UserWriteMask); OpcUa_Field_ReadEncodeableArray(OpcUa_GenericAttributeValue, AttributeValues); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_GenericAttributes_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_GenericAttributes_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_GenericAttributes_EncodeableType = { "GenericAttributes", OpcUaId_GenericAttributes, OpcUaId_GenericAttributes_Encoding_DefaultBinary, OpcUaId_GenericAttributes_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_GenericAttributes), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_GenericAttributes_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_GenericAttributes_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_GenericAttributes_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_GenericAttributes_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_GenericAttributes_Decode }; #endif #ifndef OPCUA_EXCLUDE_AddNodesItem /*============================================================================ * OpcUa_AddNodesItem_Initialize *===========================================================================*/ OpcUa_Void OpcUa_AddNodesItem_Initialize(OpcUa_AddNodesItem* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(ExpandedNodeId, ParentNodeId); OpcUa_Field_Initialize(NodeId, ReferenceTypeId); OpcUa_Field_Initialize(ExpandedNodeId, RequestedNewNodeId); OpcUa_Field_Initialize(QualifiedName, BrowseName); OpcUa_Field_InitializeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Initialize(ExtensionObject, NodeAttributes); OpcUa_Field_Initialize(ExpandedNodeId, TypeDefinition); } } /*============================================================================ * OpcUa_AddNodesItem_Clear *===========================================================================*/ OpcUa_Void OpcUa_AddNodesItem_Clear(OpcUa_AddNodesItem* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(ExpandedNodeId, ParentNodeId); OpcUa_Field_Clear(NodeId, ReferenceTypeId); OpcUa_Field_Clear(ExpandedNodeId, RequestedNewNodeId); OpcUa_Field_Clear(QualifiedName, BrowseName); OpcUa_Field_ClearEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Clear(ExtensionObject, NodeAttributes); OpcUa_Field_Clear(ExpandedNodeId, TypeDefinition); } } /*============================================================================ * OpcUa_AddNodesItem_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_AddNodesItem_GetSize(OpcUa_AddNodesItem* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddNodesItem_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(ExpandedNodeId, ParentNodeId); OpcUa_Field_GetSize(NodeId, ReferenceTypeId); OpcUa_Field_GetSize(ExpandedNodeId, RequestedNewNodeId); OpcUa_Field_GetSize(QualifiedName, BrowseName); OpcUa_Field_GetSizeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_GetSize(ExtensionObject, NodeAttributes); OpcUa_Field_GetSize(ExpandedNodeId, TypeDefinition); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddNodesItem_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_AddNodesItem_Encode(OpcUa_AddNodesItem* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddNodesItem_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(ExpandedNodeId, ParentNodeId); OpcUa_Field_Write(NodeId, ReferenceTypeId); OpcUa_Field_Write(ExpandedNodeId, RequestedNewNodeId); OpcUa_Field_Write(QualifiedName, BrowseName); OpcUa_Field_WriteEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Write(ExtensionObject, NodeAttributes); OpcUa_Field_Write(ExpandedNodeId, TypeDefinition); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddNodesItem_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_AddNodesItem_Decode(OpcUa_AddNodesItem* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddNodesItem_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_AddNodesItem_Initialize(a_pValue); OpcUa_Field_Read(ExpandedNodeId, ParentNodeId); OpcUa_Field_Read(NodeId, ReferenceTypeId); OpcUa_Field_Read(ExpandedNodeId, RequestedNewNodeId); OpcUa_Field_Read(QualifiedName, BrowseName); OpcUa_Field_ReadEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Read(ExtensionObject, NodeAttributes); OpcUa_Field_Read(ExpandedNodeId, TypeDefinition); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_AddNodesItem_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddNodesItem_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_AddNodesItem_EncodeableType = { "AddNodesItem", OpcUaId_AddNodesItem, OpcUaId_AddNodesItem_Encoding_DefaultBinary, OpcUaId_AddNodesItem_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_AddNodesItem), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_AddNodesItem_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_AddNodesItem_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_AddNodesItem_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_AddNodesItem_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_AddNodesItem_Decode }; #endif #ifndef OPCUA_EXCLUDE_AddNodesResult /*============================================================================ * OpcUa_AddNodesResult_Initialize *===========================================================================*/ OpcUa_Void OpcUa_AddNodesResult_Initialize(OpcUa_AddNodesResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(StatusCode, StatusCode); OpcUa_Field_Initialize(NodeId, AddedNodeId); } } /*============================================================================ * OpcUa_AddNodesResult_Clear *===========================================================================*/ OpcUa_Void OpcUa_AddNodesResult_Clear(OpcUa_AddNodesResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(StatusCode, StatusCode); OpcUa_Field_Clear(NodeId, AddedNodeId); } } /*============================================================================ * OpcUa_AddNodesResult_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_AddNodesResult_GetSize(OpcUa_AddNodesResult* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddNodesResult_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(StatusCode, StatusCode); OpcUa_Field_GetSize(NodeId, AddedNodeId); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddNodesResult_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_AddNodesResult_Encode(OpcUa_AddNodesResult* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddNodesResult_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(StatusCode, StatusCode); OpcUa_Field_Write(NodeId, AddedNodeId); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddNodesResult_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_AddNodesResult_Decode(OpcUa_AddNodesResult* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddNodesResult_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_AddNodesResult_Initialize(a_pValue); OpcUa_Field_Read(StatusCode, StatusCode); OpcUa_Field_Read(NodeId, AddedNodeId); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_AddNodesResult_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddNodesResult_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_AddNodesResult_EncodeableType = { "AddNodesResult", OpcUaId_AddNodesResult, OpcUaId_AddNodesResult_Encoding_DefaultBinary, OpcUaId_AddNodesResult_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_AddNodesResult), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_AddNodesResult_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_AddNodesResult_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_AddNodesResult_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_AddNodesResult_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_AddNodesResult_Decode }; #endif #ifndef OPCUA_EXCLUDE_AddNodes #ifndef OPCUA_EXCLUDE_AddNodesRequest /*============================================================================ * OpcUa_AddNodesRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_AddNodesRequest_Initialize(OpcUa_AddNodesRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_AddNodesItem, NodesToAdd); } } /*============================================================================ * OpcUa_AddNodesRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_AddNodesRequest_Clear(OpcUa_AddNodesRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_AddNodesItem, NodesToAdd); } } /*============================================================================ * OpcUa_AddNodesRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_AddNodesRequest_GetSize(OpcUa_AddNodesRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddNodesRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_AddNodesItem, NodesToAdd); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddNodesRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_AddNodesRequest_Encode(OpcUa_AddNodesRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddNodesRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_AddNodesItem, NodesToAdd); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddNodesRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_AddNodesRequest_Decode(OpcUa_AddNodesRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddNodesRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_AddNodesRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_AddNodesItem, NodesToAdd); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_AddNodesRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddNodesRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_AddNodesRequest_EncodeableType = { "AddNodesRequest", OpcUaId_AddNodesRequest, OpcUaId_AddNodesRequest_Encoding_DefaultBinary, OpcUaId_AddNodesRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_AddNodesRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_AddNodesRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_AddNodesRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_AddNodesRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_AddNodesRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_AddNodesRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_AddNodesResponse /*============================================================================ * OpcUa_AddNodesResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_AddNodesResponse_Initialize(OpcUa_AddNodesResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_AddNodesResult, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_AddNodesResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_AddNodesResponse_Clear(OpcUa_AddNodesResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_AddNodesResult, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_AddNodesResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_AddNodesResponse_GetSize(OpcUa_AddNodesResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddNodesResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_AddNodesResult, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddNodesResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_AddNodesResponse_Encode(OpcUa_AddNodesResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddNodesResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_AddNodesResult, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddNodesResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_AddNodesResponse_Decode(OpcUa_AddNodesResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddNodesResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_AddNodesResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_AddNodesResult, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_AddNodesResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddNodesResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_AddNodesResponse_EncodeableType = { "AddNodesResponse", OpcUaId_AddNodesResponse, OpcUaId_AddNodesResponse_Encoding_DefaultBinary, OpcUaId_AddNodesResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_AddNodesResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_AddNodesResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_AddNodesResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_AddNodesResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_AddNodesResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_AddNodesResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_AddReferencesItem /*============================================================================ * OpcUa_AddReferencesItem_Initialize *===========================================================================*/ OpcUa_Void OpcUa_AddReferencesItem_Initialize(OpcUa_AddReferencesItem* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, SourceNodeId); OpcUa_Field_Initialize(NodeId, ReferenceTypeId); OpcUa_Field_Initialize(Boolean, IsForward); OpcUa_Field_Initialize(String, TargetServerUri); OpcUa_Field_Initialize(ExpandedNodeId, TargetNodeId); OpcUa_Field_InitializeEnumerated(OpcUa_NodeClass, TargetNodeClass); } } /*============================================================================ * OpcUa_AddReferencesItem_Clear *===========================================================================*/ OpcUa_Void OpcUa_AddReferencesItem_Clear(OpcUa_AddReferencesItem* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, SourceNodeId); OpcUa_Field_Clear(NodeId, ReferenceTypeId); OpcUa_Field_Clear(Boolean, IsForward); OpcUa_Field_Clear(String, TargetServerUri); OpcUa_Field_Clear(ExpandedNodeId, TargetNodeId); OpcUa_Field_ClearEnumerated(OpcUa_NodeClass, TargetNodeClass); } } /*============================================================================ * OpcUa_AddReferencesItem_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_AddReferencesItem_GetSize(OpcUa_AddReferencesItem* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddReferencesItem_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, SourceNodeId); OpcUa_Field_GetSize(NodeId, ReferenceTypeId); OpcUa_Field_GetSize(Boolean, IsForward); OpcUa_Field_GetSize(String, TargetServerUri); OpcUa_Field_GetSize(ExpandedNodeId, TargetNodeId); OpcUa_Field_GetSizeEnumerated(OpcUa_NodeClass, TargetNodeClass); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddReferencesItem_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_AddReferencesItem_Encode(OpcUa_AddReferencesItem* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddReferencesItem_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, SourceNodeId); OpcUa_Field_Write(NodeId, ReferenceTypeId); OpcUa_Field_Write(Boolean, IsForward); OpcUa_Field_Write(String, TargetServerUri); OpcUa_Field_Write(ExpandedNodeId, TargetNodeId); OpcUa_Field_WriteEnumerated(OpcUa_NodeClass, TargetNodeClass); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddReferencesItem_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_AddReferencesItem_Decode(OpcUa_AddReferencesItem* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddReferencesItem_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_AddReferencesItem_Initialize(a_pValue); OpcUa_Field_Read(NodeId, SourceNodeId); OpcUa_Field_Read(NodeId, ReferenceTypeId); OpcUa_Field_Read(Boolean, IsForward); OpcUa_Field_Read(String, TargetServerUri); OpcUa_Field_Read(ExpandedNodeId, TargetNodeId); OpcUa_Field_ReadEnumerated(OpcUa_NodeClass, TargetNodeClass); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_AddReferencesItem_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddReferencesItem_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_AddReferencesItem_EncodeableType = { "AddReferencesItem", OpcUaId_AddReferencesItem, OpcUaId_AddReferencesItem_Encoding_DefaultBinary, OpcUaId_AddReferencesItem_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_AddReferencesItem), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_AddReferencesItem_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_AddReferencesItem_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_AddReferencesItem_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_AddReferencesItem_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_AddReferencesItem_Decode }; #endif #ifndef OPCUA_EXCLUDE_AddReferences #ifndef OPCUA_EXCLUDE_AddReferencesRequest /*============================================================================ * OpcUa_AddReferencesRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_AddReferencesRequest_Initialize(OpcUa_AddReferencesRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_AddReferencesItem, ReferencesToAdd); } } /*============================================================================ * OpcUa_AddReferencesRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_AddReferencesRequest_Clear(OpcUa_AddReferencesRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_AddReferencesItem, ReferencesToAdd); } } /*============================================================================ * OpcUa_AddReferencesRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_AddReferencesRequest_GetSize(OpcUa_AddReferencesRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddReferencesRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_AddReferencesItem, ReferencesToAdd); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddReferencesRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_AddReferencesRequest_Encode(OpcUa_AddReferencesRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddReferencesRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_AddReferencesItem, ReferencesToAdd); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddReferencesRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_AddReferencesRequest_Decode(OpcUa_AddReferencesRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddReferencesRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_AddReferencesRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_AddReferencesItem, ReferencesToAdd); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_AddReferencesRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddReferencesRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_AddReferencesRequest_EncodeableType = { "AddReferencesRequest", OpcUaId_AddReferencesRequest, OpcUaId_AddReferencesRequest_Encoding_DefaultBinary, OpcUaId_AddReferencesRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_AddReferencesRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_AddReferencesRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_AddReferencesRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_AddReferencesRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_AddReferencesRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_AddReferencesRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_AddReferencesResponse /*============================================================================ * OpcUa_AddReferencesResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_AddReferencesResponse_Initialize(OpcUa_AddReferencesResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeArray(StatusCode, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_AddReferencesResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_AddReferencesResponse_Clear(OpcUa_AddReferencesResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearArray(StatusCode, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_AddReferencesResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_AddReferencesResponse_GetSize(OpcUa_AddReferencesResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddReferencesResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeArray(StatusCode, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddReferencesResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_AddReferencesResponse_Encode(OpcUa_AddReferencesResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddReferencesResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteArray(StatusCode, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddReferencesResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_AddReferencesResponse_Decode(OpcUa_AddReferencesResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AddReferencesResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_AddReferencesResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadArray(StatusCode, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_AddReferencesResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AddReferencesResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_AddReferencesResponse_EncodeableType = { "AddReferencesResponse", OpcUaId_AddReferencesResponse, OpcUaId_AddReferencesResponse_Encoding_DefaultBinary, OpcUaId_AddReferencesResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_AddReferencesResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_AddReferencesResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_AddReferencesResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_AddReferencesResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_AddReferencesResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_AddReferencesResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_DeleteNodesItem /*============================================================================ * OpcUa_DeleteNodesItem_Initialize *===========================================================================*/ OpcUa_Void OpcUa_DeleteNodesItem_Initialize(OpcUa_DeleteNodesItem* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_Initialize(Boolean, DeleteTargetReferences); } } /*============================================================================ * OpcUa_DeleteNodesItem_Clear *===========================================================================*/ OpcUa_Void OpcUa_DeleteNodesItem_Clear(OpcUa_DeleteNodesItem* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_Clear(Boolean, DeleteTargetReferences); } } /*============================================================================ * OpcUa_DeleteNodesItem_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteNodesItem_GetSize(OpcUa_DeleteNodesItem* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteNodesItem_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSize(Boolean, DeleteTargetReferences); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteNodesItem_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteNodesItem_Encode(OpcUa_DeleteNodesItem* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteNodesItem_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_Write(Boolean, DeleteTargetReferences); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteNodesItem_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteNodesItem_Decode(OpcUa_DeleteNodesItem* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteNodesItem_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_DeleteNodesItem_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_Read(Boolean, DeleteTargetReferences); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_DeleteNodesItem_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteNodesItem_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_DeleteNodesItem_EncodeableType = { "DeleteNodesItem", OpcUaId_DeleteNodesItem, OpcUaId_DeleteNodesItem_Encoding_DefaultBinary, OpcUaId_DeleteNodesItem_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_DeleteNodesItem), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_DeleteNodesItem_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_DeleteNodesItem_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_DeleteNodesItem_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_DeleteNodesItem_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_DeleteNodesItem_Decode }; #endif #ifndef OPCUA_EXCLUDE_DeleteNodes #ifndef OPCUA_EXCLUDE_DeleteNodesRequest /*============================================================================ * OpcUa_DeleteNodesRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_DeleteNodesRequest_Initialize(OpcUa_DeleteNodesRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_DeleteNodesItem, NodesToDelete); } } /*============================================================================ * OpcUa_DeleteNodesRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_DeleteNodesRequest_Clear(OpcUa_DeleteNodesRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_DeleteNodesItem, NodesToDelete); } } /*============================================================================ * OpcUa_DeleteNodesRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteNodesRequest_GetSize(OpcUa_DeleteNodesRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteNodesRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_DeleteNodesItem, NodesToDelete); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteNodesRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteNodesRequest_Encode(OpcUa_DeleteNodesRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteNodesRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_DeleteNodesItem, NodesToDelete); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteNodesRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteNodesRequest_Decode(OpcUa_DeleteNodesRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteNodesRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_DeleteNodesRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_DeleteNodesItem, NodesToDelete); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_DeleteNodesRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteNodesRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_DeleteNodesRequest_EncodeableType = { "DeleteNodesRequest", OpcUaId_DeleteNodesRequest, OpcUaId_DeleteNodesRequest_Encoding_DefaultBinary, OpcUaId_DeleteNodesRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_DeleteNodesRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_DeleteNodesRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_DeleteNodesRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_DeleteNodesRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_DeleteNodesRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_DeleteNodesRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_DeleteNodesResponse /*============================================================================ * OpcUa_DeleteNodesResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_DeleteNodesResponse_Initialize(OpcUa_DeleteNodesResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeArray(StatusCode, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_DeleteNodesResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_DeleteNodesResponse_Clear(OpcUa_DeleteNodesResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearArray(StatusCode, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_DeleteNodesResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteNodesResponse_GetSize(OpcUa_DeleteNodesResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteNodesResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeArray(StatusCode, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteNodesResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteNodesResponse_Encode(OpcUa_DeleteNodesResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteNodesResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteArray(StatusCode, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteNodesResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteNodesResponse_Decode(OpcUa_DeleteNodesResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteNodesResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_DeleteNodesResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadArray(StatusCode, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_DeleteNodesResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteNodesResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_DeleteNodesResponse_EncodeableType = { "DeleteNodesResponse", OpcUaId_DeleteNodesResponse, OpcUaId_DeleteNodesResponse_Encoding_DefaultBinary, OpcUaId_DeleteNodesResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_DeleteNodesResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_DeleteNodesResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_DeleteNodesResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_DeleteNodesResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_DeleteNodesResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_DeleteNodesResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_DeleteReferencesItem /*============================================================================ * OpcUa_DeleteReferencesItem_Initialize *===========================================================================*/ OpcUa_Void OpcUa_DeleteReferencesItem_Initialize(OpcUa_DeleteReferencesItem* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, SourceNodeId); OpcUa_Field_Initialize(NodeId, ReferenceTypeId); OpcUa_Field_Initialize(Boolean, IsForward); OpcUa_Field_Initialize(ExpandedNodeId, TargetNodeId); OpcUa_Field_Initialize(Boolean, DeleteBidirectional); } } /*============================================================================ * OpcUa_DeleteReferencesItem_Clear *===========================================================================*/ OpcUa_Void OpcUa_DeleteReferencesItem_Clear(OpcUa_DeleteReferencesItem* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, SourceNodeId); OpcUa_Field_Clear(NodeId, ReferenceTypeId); OpcUa_Field_Clear(Boolean, IsForward); OpcUa_Field_Clear(ExpandedNodeId, TargetNodeId); OpcUa_Field_Clear(Boolean, DeleteBidirectional); } } /*============================================================================ * OpcUa_DeleteReferencesItem_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteReferencesItem_GetSize(OpcUa_DeleteReferencesItem* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteReferencesItem_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, SourceNodeId); OpcUa_Field_GetSize(NodeId, ReferenceTypeId); OpcUa_Field_GetSize(Boolean, IsForward); OpcUa_Field_GetSize(ExpandedNodeId, TargetNodeId); OpcUa_Field_GetSize(Boolean, DeleteBidirectional); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteReferencesItem_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteReferencesItem_Encode(OpcUa_DeleteReferencesItem* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteReferencesItem_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, SourceNodeId); OpcUa_Field_Write(NodeId, ReferenceTypeId); OpcUa_Field_Write(Boolean, IsForward); OpcUa_Field_Write(ExpandedNodeId, TargetNodeId); OpcUa_Field_Write(Boolean, DeleteBidirectional); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteReferencesItem_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteReferencesItem_Decode(OpcUa_DeleteReferencesItem* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteReferencesItem_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_DeleteReferencesItem_Initialize(a_pValue); OpcUa_Field_Read(NodeId, SourceNodeId); OpcUa_Field_Read(NodeId, ReferenceTypeId); OpcUa_Field_Read(Boolean, IsForward); OpcUa_Field_Read(ExpandedNodeId, TargetNodeId); OpcUa_Field_Read(Boolean, DeleteBidirectional); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_DeleteReferencesItem_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteReferencesItem_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_DeleteReferencesItem_EncodeableType = { "DeleteReferencesItem", OpcUaId_DeleteReferencesItem, OpcUaId_DeleteReferencesItem_Encoding_DefaultBinary, OpcUaId_DeleteReferencesItem_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_DeleteReferencesItem), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_DeleteReferencesItem_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_DeleteReferencesItem_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_DeleteReferencesItem_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_DeleteReferencesItem_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_DeleteReferencesItem_Decode }; #endif #ifndef OPCUA_EXCLUDE_DeleteReferences #ifndef OPCUA_EXCLUDE_DeleteReferencesRequest /*============================================================================ * OpcUa_DeleteReferencesRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_DeleteReferencesRequest_Initialize(OpcUa_DeleteReferencesRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_DeleteReferencesItem, ReferencesToDelete); } } /*============================================================================ * OpcUa_DeleteReferencesRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_DeleteReferencesRequest_Clear(OpcUa_DeleteReferencesRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_DeleteReferencesItem, ReferencesToDelete); } } /*============================================================================ * OpcUa_DeleteReferencesRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteReferencesRequest_GetSize(OpcUa_DeleteReferencesRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteReferencesRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_DeleteReferencesItem, ReferencesToDelete); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteReferencesRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteReferencesRequest_Encode(OpcUa_DeleteReferencesRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteReferencesRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_DeleteReferencesItem, ReferencesToDelete); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteReferencesRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteReferencesRequest_Decode(OpcUa_DeleteReferencesRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteReferencesRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_DeleteReferencesRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_DeleteReferencesItem, ReferencesToDelete); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_DeleteReferencesRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteReferencesRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_DeleteReferencesRequest_EncodeableType = { "DeleteReferencesRequest", OpcUaId_DeleteReferencesRequest, OpcUaId_DeleteReferencesRequest_Encoding_DefaultBinary, OpcUaId_DeleteReferencesRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_DeleteReferencesRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_DeleteReferencesRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_DeleteReferencesRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_DeleteReferencesRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_DeleteReferencesRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_DeleteReferencesRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_DeleteReferencesResponse /*============================================================================ * OpcUa_DeleteReferencesResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_DeleteReferencesResponse_Initialize(OpcUa_DeleteReferencesResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeArray(StatusCode, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_DeleteReferencesResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_DeleteReferencesResponse_Clear(OpcUa_DeleteReferencesResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearArray(StatusCode, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_DeleteReferencesResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteReferencesResponse_GetSize(OpcUa_DeleteReferencesResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteReferencesResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeArray(StatusCode, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteReferencesResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteReferencesResponse_Encode(OpcUa_DeleteReferencesResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteReferencesResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteArray(StatusCode, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteReferencesResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteReferencesResponse_Decode(OpcUa_DeleteReferencesResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteReferencesResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_DeleteReferencesResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadArray(StatusCode, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_DeleteReferencesResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteReferencesResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_DeleteReferencesResponse_EncodeableType = { "DeleteReferencesResponse", OpcUaId_DeleteReferencesResponse, OpcUaId_DeleteReferencesResponse_Encoding_DefaultBinary, OpcUaId_DeleteReferencesResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_DeleteReferencesResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_DeleteReferencesResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_DeleteReferencesResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_DeleteReferencesResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_DeleteReferencesResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_DeleteReferencesResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_AttributeWriteMask /*============================================================================ * OpcUa_AttributeWriteMask_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_AttributeWriteMask_EnumeratedValues[] = { { "None", 0 }, { "AccessLevel", 1 }, { "ArrayDimensions", 2 }, { "BrowseName", 4 }, { "ContainsNoLoops", 8 }, { "DataType", 16 }, { "Description", 32 }, { "DisplayName", 64 }, { "EventNotifier", 128 }, { "Executable", 256 }, { "Historizing", 512 }, { "InverseName", 1024 }, { "IsAbstract", 2048 }, { "MinimumSamplingInterval", 4096 }, { "NodeClass", 8192 }, { "NodeId", 16384 }, { "Symmetric", 32768 }, { "UserAccessLevel", 65536 }, { "UserExecutable", 131072 }, { "UserWriteMask", 262144 }, { "ValueRank", 524288 }, { "WriteMask", 1048576 }, { "ValueForVariableType", 2097152 }, { "DataTypeDefinition", 4194304 }, { "RolePermissions", 8388608 }, { "AccessRestrictions", 16777216 }, { "AccessLevelEx", 33554432 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_AttributeWriteMask_EnumeratedType = { "AttributeWriteMask", g_OpcUa_AttributeWriteMask_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_BrowseDirection /*============================================================================ * OpcUa_BrowseDirection_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_BrowseDirection_EnumeratedValues[] = { { "Forward", 0 }, { "Inverse", 1 }, { "Both", 2 }, { "Invalid", 3 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_BrowseDirection_EnumeratedType = { "BrowseDirection", g_OpcUa_BrowseDirection_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_ViewDescription /*============================================================================ * OpcUa_ViewDescription_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ViewDescription_Initialize(OpcUa_ViewDescription* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, ViewId); OpcUa_Field_Initialize(DateTime, Timestamp); OpcUa_Field_Initialize(UInt32, ViewVersion); } } /*============================================================================ * OpcUa_ViewDescription_Clear *===========================================================================*/ OpcUa_Void OpcUa_ViewDescription_Clear(OpcUa_ViewDescription* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, ViewId); OpcUa_Field_Clear(DateTime, Timestamp); OpcUa_Field_Clear(UInt32, ViewVersion); } } /*============================================================================ * OpcUa_ViewDescription_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ViewDescription_GetSize(OpcUa_ViewDescription* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ViewDescription_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, ViewId); OpcUa_Field_GetSize(DateTime, Timestamp); OpcUa_Field_GetSize(UInt32, ViewVersion); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ViewDescription_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ViewDescription_Encode(OpcUa_ViewDescription* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ViewDescription_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, ViewId); OpcUa_Field_Write(DateTime, Timestamp); OpcUa_Field_Write(UInt32, ViewVersion); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ViewDescription_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ViewDescription_Decode(OpcUa_ViewDescription* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ViewDescription_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ViewDescription_Initialize(a_pValue); OpcUa_Field_Read(NodeId, ViewId); OpcUa_Field_Read(DateTime, Timestamp); OpcUa_Field_Read(UInt32, ViewVersion); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ViewDescription_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ViewDescription_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ViewDescription_EncodeableType = { "ViewDescription", OpcUaId_ViewDescription, OpcUaId_ViewDescription_Encoding_DefaultBinary, OpcUaId_ViewDescription_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ViewDescription), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ViewDescription_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ViewDescription_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ViewDescription_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ViewDescription_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ViewDescription_Decode }; #endif #ifndef OPCUA_EXCLUDE_BrowseDescription /*============================================================================ * OpcUa_BrowseDescription_Initialize *===========================================================================*/ OpcUa_Void OpcUa_BrowseDescription_Initialize(OpcUa_BrowseDescription* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_InitializeEnumerated(OpcUa_BrowseDirection, BrowseDirection); OpcUa_Field_Initialize(NodeId, ReferenceTypeId); OpcUa_Field_Initialize(Boolean, IncludeSubtypes); OpcUa_Field_Initialize(UInt32, NodeClassMask); OpcUa_Field_Initialize(UInt32, ResultMask); } } /*============================================================================ * OpcUa_BrowseDescription_Clear *===========================================================================*/ OpcUa_Void OpcUa_BrowseDescription_Clear(OpcUa_BrowseDescription* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_ClearEnumerated(OpcUa_BrowseDirection, BrowseDirection); OpcUa_Field_Clear(NodeId, ReferenceTypeId); OpcUa_Field_Clear(Boolean, IncludeSubtypes); OpcUa_Field_Clear(UInt32, NodeClassMask); OpcUa_Field_Clear(UInt32, ResultMask); } } /*============================================================================ * OpcUa_BrowseDescription_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowseDescription_GetSize(OpcUa_BrowseDescription* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowseDescription_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSizeEnumerated(OpcUa_BrowseDirection, BrowseDirection); OpcUa_Field_GetSize(NodeId, ReferenceTypeId); OpcUa_Field_GetSize(Boolean, IncludeSubtypes); OpcUa_Field_GetSize(UInt32, NodeClassMask); OpcUa_Field_GetSize(UInt32, ResultMask); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowseDescription_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowseDescription_Encode(OpcUa_BrowseDescription* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowseDescription_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_WriteEnumerated(OpcUa_BrowseDirection, BrowseDirection); OpcUa_Field_Write(NodeId, ReferenceTypeId); OpcUa_Field_Write(Boolean, IncludeSubtypes); OpcUa_Field_Write(UInt32, NodeClassMask); OpcUa_Field_Write(UInt32, ResultMask); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowseDescription_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowseDescription_Decode(OpcUa_BrowseDescription* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowseDescription_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_BrowseDescription_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_ReadEnumerated(OpcUa_BrowseDirection, BrowseDirection); OpcUa_Field_Read(NodeId, ReferenceTypeId); OpcUa_Field_Read(Boolean, IncludeSubtypes); OpcUa_Field_Read(UInt32, NodeClassMask); OpcUa_Field_Read(UInt32, ResultMask); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_BrowseDescription_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowseDescription_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_BrowseDescription_EncodeableType = { "BrowseDescription", OpcUaId_BrowseDescription, OpcUaId_BrowseDescription_Encoding_DefaultBinary, OpcUaId_BrowseDescription_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_BrowseDescription), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_BrowseDescription_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_BrowseDescription_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_BrowseDescription_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_BrowseDescription_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_BrowseDescription_Decode }; #endif #ifndef OPCUA_EXCLUDE_BrowseResultMask /*============================================================================ * OpcUa_BrowseResultMask_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_BrowseResultMask_EnumeratedValues[] = { { "None", 0 }, { "ReferenceTypeId", 1 }, { "IsForward", 2 }, { "NodeClass", 4 }, { "BrowseName", 8 }, { "DisplayName", 16 }, { "TypeDefinition", 32 }, { "All", 63 }, { "ReferenceTypeInfo", 3 }, { "TargetInfo", 60 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_BrowseResultMask_EnumeratedType = { "BrowseResultMask", g_OpcUa_BrowseResultMask_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_ReferenceDescription /*============================================================================ * OpcUa_ReferenceDescription_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ReferenceDescription_Initialize(OpcUa_ReferenceDescription* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, ReferenceTypeId); OpcUa_Field_Initialize(Boolean, IsForward); OpcUa_Field_Initialize(ExpandedNodeId, NodeId); OpcUa_Field_Initialize(QualifiedName, BrowseName); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_InitializeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Initialize(ExpandedNodeId, TypeDefinition); } } /*============================================================================ * OpcUa_ReferenceDescription_Clear *===========================================================================*/ OpcUa_Void OpcUa_ReferenceDescription_Clear(OpcUa_ReferenceDescription* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, ReferenceTypeId); OpcUa_Field_Clear(Boolean, IsForward); OpcUa_Field_Clear(ExpandedNodeId, NodeId); OpcUa_Field_Clear(QualifiedName, BrowseName); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_ClearEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Clear(ExpandedNodeId, TypeDefinition); } } /*============================================================================ * OpcUa_ReferenceDescription_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ReferenceDescription_GetSize(OpcUa_ReferenceDescription* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReferenceDescription_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, ReferenceTypeId); OpcUa_Field_GetSize(Boolean, IsForward); OpcUa_Field_GetSize(ExpandedNodeId, NodeId); OpcUa_Field_GetSize(QualifiedName, BrowseName); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSizeEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_GetSize(ExpandedNodeId, TypeDefinition); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReferenceDescription_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReferenceDescription_Encode(OpcUa_ReferenceDescription* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReferenceDescription_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, ReferenceTypeId); OpcUa_Field_Write(Boolean, IsForward); OpcUa_Field_Write(ExpandedNodeId, NodeId); OpcUa_Field_Write(QualifiedName, BrowseName); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_WriteEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Write(ExpandedNodeId, TypeDefinition); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReferenceDescription_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReferenceDescription_Decode(OpcUa_ReferenceDescription* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReferenceDescription_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ReferenceDescription_Initialize(a_pValue); OpcUa_Field_Read(NodeId, ReferenceTypeId); OpcUa_Field_Read(Boolean, IsForward); OpcUa_Field_Read(ExpandedNodeId, NodeId); OpcUa_Field_Read(QualifiedName, BrowseName); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_ReadEnumerated(OpcUa_NodeClass, NodeClass); OpcUa_Field_Read(ExpandedNodeId, TypeDefinition); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ReferenceDescription_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReferenceDescription_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ReferenceDescription_EncodeableType = { "ReferenceDescription", OpcUaId_ReferenceDescription, OpcUaId_ReferenceDescription_Encoding_DefaultBinary, OpcUaId_ReferenceDescription_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ReferenceDescription), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ReferenceDescription_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ReferenceDescription_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ReferenceDescription_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ReferenceDescription_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ReferenceDescription_Decode }; #endif #ifndef OPCUA_EXCLUDE_BrowseResult /*============================================================================ * OpcUa_BrowseResult_Initialize *===========================================================================*/ OpcUa_Void OpcUa_BrowseResult_Initialize(OpcUa_BrowseResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(StatusCode, StatusCode); OpcUa_Field_Initialize(ByteString, ContinuationPoint); OpcUa_Field_InitializeEncodeableArray(OpcUa_ReferenceDescription, References); } } /*============================================================================ * OpcUa_BrowseResult_Clear *===========================================================================*/ OpcUa_Void OpcUa_BrowseResult_Clear(OpcUa_BrowseResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(StatusCode, StatusCode); OpcUa_Field_Clear(ByteString, ContinuationPoint); OpcUa_Field_ClearEncodeableArray(OpcUa_ReferenceDescription, References); } } /*============================================================================ * OpcUa_BrowseResult_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowseResult_GetSize(OpcUa_BrowseResult* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowseResult_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(StatusCode, StatusCode); OpcUa_Field_GetSize(ByteString, ContinuationPoint); OpcUa_Field_GetSizeEncodeableArray(OpcUa_ReferenceDescription, References); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowseResult_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowseResult_Encode(OpcUa_BrowseResult* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowseResult_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(StatusCode, StatusCode); OpcUa_Field_Write(ByteString, ContinuationPoint); OpcUa_Field_WriteEncodeableArray(OpcUa_ReferenceDescription, References); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowseResult_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowseResult_Decode(OpcUa_BrowseResult* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowseResult_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_BrowseResult_Initialize(a_pValue); OpcUa_Field_Read(StatusCode, StatusCode); OpcUa_Field_Read(ByteString, ContinuationPoint); OpcUa_Field_ReadEncodeableArray(OpcUa_ReferenceDescription, References); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_BrowseResult_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowseResult_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_BrowseResult_EncodeableType = { "BrowseResult", OpcUaId_BrowseResult, OpcUaId_BrowseResult_Encoding_DefaultBinary, OpcUaId_BrowseResult_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_BrowseResult), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_BrowseResult_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_BrowseResult_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_BrowseResult_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_BrowseResult_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_BrowseResult_Decode }; #endif #ifndef OPCUA_EXCLUDE_Browse #ifndef OPCUA_EXCLUDE_BrowseRequest /*============================================================================ * OpcUa_BrowseRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_BrowseRequest_Initialize(OpcUa_BrowseRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeEncodeable(OpcUa_ViewDescription, View); OpcUa_Field_Initialize(UInt32, RequestedMaxReferencesPerNode); OpcUa_Field_InitializeEncodeableArray(OpcUa_BrowseDescription, NodesToBrowse); } } /*============================================================================ * OpcUa_BrowseRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_BrowseRequest_Clear(OpcUa_BrowseRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearEncodeable(OpcUa_ViewDescription, View); OpcUa_Field_Clear(UInt32, RequestedMaxReferencesPerNode); OpcUa_Field_ClearEncodeableArray(OpcUa_BrowseDescription, NodesToBrowse); } } /*============================================================================ * OpcUa_BrowseRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowseRequest_GetSize(OpcUa_BrowseRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowseRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeEncodeable(OpcUa_ViewDescription, View); OpcUa_Field_GetSize(UInt32, RequestedMaxReferencesPerNode); OpcUa_Field_GetSizeEncodeableArray(OpcUa_BrowseDescription, NodesToBrowse); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowseRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowseRequest_Encode(OpcUa_BrowseRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowseRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteEncodeable(OpcUa_ViewDescription, View); OpcUa_Field_Write(UInt32, RequestedMaxReferencesPerNode); OpcUa_Field_WriteEncodeableArray(OpcUa_BrowseDescription, NodesToBrowse); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowseRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowseRequest_Decode(OpcUa_BrowseRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowseRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_BrowseRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadEncodeable(OpcUa_ViewDescription, View); OpcUa_Field_Read(UInt32, RequestedMaxReferencesPerNode); OpcUa_Field_ReadEncodeableArray(OpcUa_BrowseDescription, NodesToBrowse); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_BrowseRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowseRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_BrowseRequest_EncodeableType = { "BrowseRequest", OpcUaId_BrowseRequest, OpcUaId_BrowseRequest_Encoding_DefaultBinary, OpcUaId_BrowseRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_BrowseRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_BrowseRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_BrowseRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_BrowseRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_BrowseRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_BrowseRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_BrowseResponse /*============================================================================ * OpcUa_BrowseResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_BrowseResponse_Initialize(OpcUa_BrowseResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_BrowseResult, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_BrowseResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_BrowseResponse_Clear(OpcUa_BrowseResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_BrowseResult, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_BrowseResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowseResponse_GetSize(OpcUa_BrowseResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowseResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_BrowseResult, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowseResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowseResponse_Encode(OpcUa_BrowseResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowseResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_BrowseResult, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowseResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowseResponse_Decode(OpcUa_BrowseResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowseResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_BrowseResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_BrowseResult, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_BrowseResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowseResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_BrowseResponse_EncodeableType = { "BrowseResponse", OpcUaId_BrowseResponse, OpcUaId_BrowseResponse_Encoding_DefaultBinary, OpcUaId_BrowseResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_BrowseResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_BrowseResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_BrowseResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_BrowseResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_BrowseResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_BrowseResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_BrowseNext #ifndef OPCUA_EXCLUDE_BrowseNextRequest /*============================================================================ * OpcUa_BrowseNextRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_BrowseNextRequest_Initialize(OpcUa_BrowseNextRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(Boolean, ReleaseContinuationPoints); OpcUa_Field_InitializeArray(ByteString, ContinuationPoints); } } /*============================================================================ * OpcUa_BrowseNextRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_BrowseNextRequest_Clear(OpcUa_BrowseNextRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(Boolean, ReleaseContinuationPoints); OpcUa_Field_ClearArray(ByteString, ContinuationPoints); } } /*============================================================================ * OpcUa_BrowseNextRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowseNextRequest_GetSize(OpcUa_BrowseNextRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowseNextRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(Boolean, ReleaseContinuationPoints); OpcUa_Field_GetSizeArray(ByteString, ContinuationPoints); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowseNextRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowseNextRequest_Encode(OpcUa_BrowseNextRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowseNextRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(Boolean, ReleaseContinuationPoints); OpcUa_Field_WriteArray(ByteString, ContinuationPoints); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowseNextRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowseNextRequest_Decode(OpcUa_BrowseNextRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowseNextRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_BrowseNextRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(Boolean, ReleaseContinuationPoints); OpcUa_Field_ReadArray(ByteString, ContinuationPoints); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_BrowseNextRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowseNextRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_BrowseNextRequest_EncodeableType = { "BrowseNextRequest", OpcUaId_BrowseNextRequest, OpcUaId_BrowseNextRequest_Encoding_DefaultBinary, OpcUaId_BrowseNextRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_BrowseNextRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_BrowseNextRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_BrowseNextRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_BrowseNextRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_BrowseNextRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_BrowseNextRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_BrowseNextResponse /*============================================================================ * OpcUa_BrowseNextResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_BrowseNextResponse_Initialize(OpcUa_BrowseNextResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_BrowseResult, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_BrowseNextResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_BrowseNextResponse_Clear(OpcUa_BrowseNextResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_BrowseResult, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_BrowseNextResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowseNextResponse_GetSize(OpcUa_BrowseNextResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowseNextResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_BrowseResult, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowseNextResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowseNextResponse_Encode(OpcUa_BrowseNextResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowseNextResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_BrowseResult, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowseNextResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowseNextResponse_Decode(OpcUa_BrowseNextResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowseNextResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_BrowseNextResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_BrowseResult, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_BrowseNextResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowseNextResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_BrowseNextResponse_EncodeableType = { "BrowseNextResponse", OpcUaId_BrowseNextResponse, OpcUaId_BrowseNextResponse_Encoding_DefaultBinary, OpcUaId_BrowseNextResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_BrowseNextResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_BrowseNextResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_BrowseNextResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_BrowseNextResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_BrowseNextResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_BrowseNextResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_RelativePathElement /*============================================================================ * OpcUa_RelativePathElement_Initialize *===========================================================================*/ OpcUa_Void OpcUa_RelativePathElement_Initialize(OpcUa_RelativePathElement* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, ReferenceTypeId); OpcUa_Field_Initialize(Boolean, IsInverse); OpcUa_Field_Initialize(Boolean, IncludeSubtypes); OpcUa_Field_Initialize(QualifiedName, TargetName); } } /*============================================================================ * OpcUa_RelativePathElement_Clear *===========================================================================*/ OpcUa_Void OpcUa_RelativePathElement_Clear(OpcUa_RelativePathElement* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, ReferenceTypeId); OpcUa_Field_Clear(Boolean, IsInverse); OpcUa_Field_Clear(Boolean, IncludeSubtypes); OpcUa_Field_Clear(QualifiedName, TargetName); } } /*============================================================================ * OpcUa_RelativePathElement_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_RelativePathElement_GetSize(OpcUa_RelativePathElement* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RelativePathElement_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, ReferenceTypeId); OpcUa_Field_GetSize(Boolean, IsInverse); OpcUa_Field_GetSize(Boolean, IncludeSubtypes); OpcUa_Field_GetSize(QualifiedName, TargetName); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RelativePathElement_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_RelativePathElement_Encode(OpcUa_RelativePathElement* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RelativePathElement_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, ReferenceTypeId); OpcUa_Field_Write(Boolean, IsInverse); OpcUa_Field_Write(Boolean, IncludeSubtypes); OpcUa_Field_Write(QualifiedName, TargetName); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RelativePathElement_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_RelativePathElement_Decode(OpcUa_RelativePathElement* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RelativePathElement_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_RelativePathElement_Initialize(a_pValue); OpcUa_Field_Read(NodeId, ReferenceTypeId); OpcUa_Field_Read(Boolean, IsInverse); OpcUa_Field_Read(Boolean, IncludeSubtypes); OpcUa_Field_Read(QualifiedName, TargetName); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_RelativePathElement_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RelativePathElement_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_RelativePathElement_EncodeableType = { "RelativePathElement", OpcUaId_RelativePathElement, OpcUaId_RelativePathElement_Encoding_DefaultBinary, OpcUaId_RelativePathElement_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_RelativePathElement), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_RelativePathElement_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_RelativePathElement_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_RelativePathElement_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_RelativePathElement_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_RelativePathElement_Decode }; #endif #ifndef OPCUA_EXCLUDE_RelativePath /*============================================================================ * OpcUa_RelativePath_Initialize *===========================================================================*/ OpcUa_Void OpcUa_RelativePath_Initialize(OpcUa_RelativePath* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeableArray(OpcUa_RelativePathElement, Elements); } } /*============================================================================ * OpcUa_RelativePath_Clear *===========================================================================*/ OpcUa_Void OpcUa_RelativePath_Clear(OpcUa_RelativePath* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeableArray(OpcUa_RelativePathElement, Elements); } } /*============================================================================ * OpcUa_RelativePath_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_RelativePath_GetSize(OpcUa_RelativePath* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RelativePath_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeableArray(OpcUa_RelativePathElement, Elements); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RelativePath_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_RelativePath_Encode(OpcUa_RelativePath* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RelativePath_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeableArray(OpcUa_RelativePathElement, Elements); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RelativePath_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_RelativePath_Decode(OpcUa_RelativePath* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RelativePath_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_RelativePath_Initialize(a_pValue); OpcUa_Field_ReadEncodeableArray(OpcUa_RelativePathElement, Elements); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_RelativePath_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RelativePath_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_RelativePath_EncodeableType = { "RelativePath", OpcUaId_RelativePath, OpcUaId_RelativePath_Encoding_DefaultBinary, OpcUaId_RelativePath_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_RelativePath), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_RelativePath_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_RelativePath_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_RelativePath_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_RelativePath_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_RelativePath_Decode }; #endif #ifndef OPCUA_EXCLUDE_BrowsePath /*============================================================================ * OpcUa_BrowsePath_Initialize *===========================================================================*/ OpcUa_Void OpcUa_BrowsePath_Initialize(OpcUa_BrowsePath* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, StartingNode); OpcUa_Field_InitializeEncodeable(OpcUa_RelativePath, RelativePath); } } /*============================================================================ * OpcUa_BrowsePath_Clear *===========================================================================*/ OpcUa_Void OpcUa_BrowsePath_Clear(OpcUa_BrowsePath* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, StartingNode); OpcUa_Field_ClearEncodeable(OpcUa_RelativePath, RelativePath); } } /*============================================================================ * OpcUa_BrowsePath_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowsePath_GetSize(OpcUa_BrowsePath* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowsePath_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, StartingNode); OpcUa_Field_GetSizeEncodeable(OpcUa_RelativePath, RelativePath); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowsePath_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowsePath_Encode(OpcUa_BrowsePath* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowsePath_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, StartingNode); OpcUa_Field_WriteEncodeable(OpcUa_RelativePath, RelativePath); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowsePath_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowsePath_Decode(OpcUa_BrowsePath* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowsePath_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_BrowsePath_Initialize(a_pValue); OpcUa_Field_Read(NodeId, StartingNode); OpcUa_Field_ReadEncodeable(OpcUa_RelativePath, RelativePath); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_BrowsePath_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowsePath_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_BrowsePath_EncodeableType = { "BrowsePath", OpcUaId_BrowsePath, OpcUaId_BrowsePath_Encoding_DefaultBinary, OpcUaId_BrowsePath_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_BrowsePath), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_BrowsePath_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_BrowsePath_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_BrowsePath_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_BrowsePath_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_BrowsePath_Decode }; #endif #ifndef OPCUA_EXCLUDE_BrowsePathTarget /*============================================================================ * OpcUa_BrowsePathTarget_Initialize *===========================================================================*/ OpcUa_Void OpcUa_BrowsePathTarget_Initialize(OpcUa_BrowsePathTarget* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(ExpandedNodeId, TargetId); OpcUa_Field_Initialize(UInt32, RemainingPathIndex); } } /*============================================================================ * OpcUa_BrowsePathTarget_Clear *===========================================================================*/ OpcUa_Void OpcUa_BrowsePathTarget_Clear(OpcUa_BrowsePathTarget* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(ExpandedNodeId, TargetId); OpcUa_Field_Clear(UInt32, RemainingPathIndex); } } /*============================================================================ * OpcUa_BrowsePathTarget_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowsePathTarget_GetSize(OpcUa_BrowsePathTarget* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowsePathTarget_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(ExpandedNodeId, TargetId); OpcUa_Field_GetSize(UInt32, RemainingPathIndex); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowsePathTarget_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowsePathTarget_Encode(OpcUa_BrowsePathTarget* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowsePathTarget_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(ExpandedNodeId, TargetId); OpcUa_Field_Write(UInt32, RemainingPathIndex); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowsePathTarget_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowsePathTarget_Decode(OpcUa_BrowsePathTarget* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowsePathTarget_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_BrowsePathTarget_Initialize(a_pValue); OpcUa_Field_Read(ExpandedNodeId, TargetId); OpcUa_Field_Read(UInt32, RemainingPathIndex); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_BrowsePathTarget_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowsePathTarget_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_BrowsePathTarget_EncodeableType = { "BrowsePathTarget", OpcUaId_BrowsePathTarget, OpcUaId_BrowsePathTarget_Encoding_DefaultBinary, OpcUaId_BrowsePathTarget_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_BrowsePathTarget), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_BrowsePathTarget_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_BrowsePathTarget_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_BrowsePathTarget_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_BrowsePathTarget_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_BrowsePathTarget_Decode }; #endif #ifndef OPCUA_EXCLUDE_BrowsePathResult /*============================================================================ * OpcUa_BrowsePathResult_Initialize *===========================================================================*/ OpcUa_Void OpcUa_BrowsePathResult_Initialize(OpcUa_BrowsePathResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(StatusCode, StatusCode); OpcUa_Field_InitializeEncodeableArray(OpcUa_BrowsePathTarget, Targets); } } /*============================================================================ * OpcUa_BrowsePathResult_Clear *===========================================================================*/ OpcUa_Void OpcUa_BrowsePathResult_Clear(OpcUa_BrowsePathResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(StatusCode, StatusCode); OpcUa_Field_ClearEncodeableArray(OpcUa_BrowsePathTarget, Targets); } } /*============================================================================ * OpcUa_BrowsePathResult_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowsePathResult_GetSize(OpcUa_BrowsePathResult* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowsePathResult_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(StatusCode, StatusCode); OpcUa_Field_GetSizeEncodeableArray(OpcUa_BrowsePathTarget, Targets); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowsePathResult_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowsePathResult_Encode(OpcUa_BrowsePathResult* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowsePathResult_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(StatusCode, StatusCode); OpcUa_Field_WriteEncodeableArray(OpcUa_BrowsePathTarget, Targets); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowsePathResult_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_BrowsePathResult_Decode(OpcUa_BrowsePathResult* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BrowsePathResult_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_BrowsePathResult_Initialize(a_pValue); OpcUa_Field_Read(StatusCode, StatusCode); OpcUa_Field_ReadEncodeableArray(OpcUa_BrowsePathTarget, Targets); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_BrowsePathResult_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BrowsePathResult_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_BrowsePathResult_EncodeableType = { "BrowsePathResult", OpcUaId_BrowsePathResult, OpcUaId_BrowsePathResult_Encoding_DefaultBinary, OpcUaId_BrowsePathResult_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_BrowsePathResult), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_BrowsePathResult_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_BrowsePathResult_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_BrowsePathResult_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_BrowsePathResult_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_BrowsePathResult_Decode }; #endif #ifndef OPCUA_EXCLUDE_TranslateBrowsePathsToNodeIds #ifndef OPCUA_EXCLUDE_TranslateBrowsePathsToNodeIdsRequest /*============================================================================ * OpcUa_TranslateBrowsePathsToNodeIdsRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_TranslateBrowsePathsToNodeIdsRequest_Initialize(OpcUa_TranslateBrowsePathsToNodeIdsRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_BrowsePath, BrowsePaths); } } /*============================================================================ * OpcUa_TranslateBrowsePathsToNodeIdsRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_TranslateBrowsePathsToNodeIdsRequest_Clear(OpcUa_TranslateBrowsePathsToNodeIdsRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_BrowsePath, BrowsePaths); } } /*============================================================================ * OpcUa_TranslateBrowsePathsToNodeIdsRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_TranslateBrowsePathsToNodeIdsRequest_GetSize(OpcUa_TranslateBrowsePathsToNodeIdsRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TranslateBrowsePathsToNodeIdsRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_BrowsePath, BrowsePaths); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TranslateBrowsePathsToNodeIdsRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_TranslateBrowsePathsToNodeIdsRequest_Encode(OpcUa_TranslateBrowsePathsToNodeIdsRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TranslateBrowsePathsToNodeIdsRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_BrowsePath, BrowsePaths); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TranslateBrowsePathsToNodeIdsRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_TranslateBrowsePathsToNodeIdsRequest_Decode(OpcUa_TranslateBrowsePathsToNodeIdsRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TranslateBrowsePathsToNodeIdsRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_TranslateBrowsePathsToNodeIdsRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_BrowsePath, BrowsePaths); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_TranslateBrowsePathsToNodeIdsRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TranslateBrowsePathsToNodeIdsRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_TranslateBrowsePathsToNodeIdsRequest_EncodeableType = { "TranslateBrowsePathsToNodeIdsRequest", OpcUaId_TranslateBrowsePathsToNodeIdsRequest, OpcUaId_TranslateBrowsePathsToNodeIdsRequest_Encoding_DefaultBinary, OpcUaId_TranslateBrowsePathsToNodeIdsRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_TranslateBrowsePathsToNodeIdsRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_TranslateBrowsePathsToNodeIdsRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_TranslateBrowsePathsToNodeIdsRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_TranslateBrowsePathsToNodeIdsRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_TranslateBrowsePathsToNodeIdsRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_TranslateBrowsePathsToNodeIdsRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_TranslateBrowsePathsToNodeIdsResponse /*============================================================================ * OpcUa_TranslateBrowsePathsToNodeIdsResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_TranslateBrowsePathsToNodeIdsResponse_Initialize(OpcUa_TranslateBrowsePathsToNodeIdsResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_BrowsePathResult, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_TranslateBrowsePathsToNodeIdsResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_TranslateBrowsePathsToNodeIdsResponse_Clear(OpcUa_TranslateBrowsePathsToNodeIdsResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_BrowsePathResult, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_TranslateBrowsePathsToNodeIdsResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_TranslateBrowsePathsToNodeIdsResponse_GetSize(OpcUa_TranslateBrowsePathsToNodeIdsResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TranslateBrowsePathsToNodeIdsResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_BrowsePathResult, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TranslateBrowsePathsToNodeIdsResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_TranslateBrowsePathsToNodeIdsResponse_Encode(OpcUa_TranslateBrowsePathsToNodeIdsResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TranslateBrowsePathsToNodeIdsResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_BrowsePathResult, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TranslateBrowsePathsToNodeIdsResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_TranslateBrowsePathsToNodeIdsResponse_Decode(OpcUa_TranslateBrowsePathsToNodeIdsResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TranslateBrowsePathsToNodeIdsResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_TranslateBrowsePathsToNodeIdsResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_BrowsePathResult, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_TranslateBrowsePathsToNodeIdsResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TranslateBrowsePathsToNodeIdsResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_TranslateBrowsePathsToNodeIdsResponse_EncodeableType = { "TranslateBrowsePathsToNodeIdsResponse", OpcUaId_TranslateBrowsePathsToNodeIdsResponse, OpcUaId_TranslateBrowsePathsToNodeIdsResponse_Encoding_DefaultBinary, OpcUaId_TranslateBrowsePathsToNodeIdsResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_TranslateBrowsePathsToNodeIdsResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_TranslateBrowsePathsToNodeIdsResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_TranslateBrowsePathsToNodeIdsResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_TranslateBrowsePathsToNodeIdsResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_TranslateBrowsePathsToNodeIdsResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_TranslateBrowsePathsToNodeIdsResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_RegisterNodes #ifndef OPCUA_EXCLUDE_RegisterNodesRequest /*============================================================================ * OpcUa_RegisterNodesRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_RegisterNodesRequest_Initialize(OpcUa_RegisterNodesRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeArray(NodeId, NodesToRegister); } } /*============================================================================ * OpcUa_RegisterNodesRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_RegisterNodesRequest_Clear(OpcUa_RegisterNodesRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearArray(NodeId, NodesToRegister); } } /*============================================================================ * OpcUa_RegisterNodesRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisterNodesRequest_GetSize(OpcUa_RegisterNodesRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisterNodesRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeArray(NodeId, NodesToRegister); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisterNodesRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisterNodesRequest_Encode(OpcUa_RegisterNodesRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisterNodesRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteArray(NodeId, NodesToRegister); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisterNodesRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisterNodesRequest_Decode(OpcUa_RegisterNodesRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisterNodesRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_RegisterNodesRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadArray(NodeId, NodesToRegister); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_RegisterNodesRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisterNodesRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_RegisterNodesRequest_EncodeableType = { "RegisterNodesRequest", OpcUaId_RegisterNodesRequest, OpcUaId_RegisterNodesRequest_Encoding_DefaultBinary, OpcUaId_RegisterNodesRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_RegisterNodesRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_RegisterNodesRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_RegisterNodesRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_RegisterNodesRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_RegisterNodesRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_RegisterNodesRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_RegisterNodesResponse /*============================================================================ * OpcUa_RegisterNodesResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_RegisterNodesResponse_Initialize(OpcUa_RegisterNodesResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeArray(NodeId, RegisteredNodeIds); } } /*============================================================================ * OpcUa_RegisterNodesResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_RegisterNodesResponse_Clear(OpcUa_RegisterNodesResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearArray(NodeId, RegisteredNodeIds); } } /*============================================================================ * OpcUa_RegisterNodesResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisterNodesResponse_GetSize(OpcUa_RegisterNodesResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisterNodesResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeArray(NodeId, RegisteredNodeIds); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisterNodesResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisterNodesResponse_Encode(OpcUa_RegisterNodesResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisterNodesResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteArray(NodeId, RegisteredNodeIds); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisterNodesResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_RegisterNodesResponse_Decode(OpcUa_RegisterNodesResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RegisterNodesResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_RegisterNodesResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadArray(NodeId, RegisteredNodeIds); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_RegisterNodesResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RegisterNodesResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_RegisterNodesResponse_EncodeableType = { "RegisterNodesResponse", OpcUaId_RegisterNodesResponse, OpcUaId_RegisterNodesResponse_Encoding_DefaultBinary, OpcUaId_RegisterNodesResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_RegisterNodesResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_RegisterNodesResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_RegisterNodesResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_RegisterNodesResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_RegisterNodesResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_RegisterNodesResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_UnregisterNodes #ifndef OPCUA_EXCLUDE_UnregisterNodesRequest /*============================================================================ * OpcUa_UnregisterNodesRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_UnregisterNodesRequest_Initialize(OpcUa_UnregisterNodesRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeArray(NodeId, NodesToUnregister); } } /*============================================================================ * OpcUa_UnregisterNodesRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_UnregisterNodesRequest_Clear(OpcUa_UnregisterNodesRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearArray(NodeId, NodesToUnregister); } } /*============================================================================ * OpcUa_UnregisterNodesRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_UnregisterNodesRequest_GetSize(OpcUa_UnregisterNodesRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UnregisterNodesRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeArray(NodeId, NodesToUnregister); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UnregisterNodesRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_UnregisterNodesRequest_Encode(OpcUa_UnregisterNodesRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UnregisterNodesRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteArray(NodeId, NodesToUnregister); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UnregisterNodesRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_UnregisterNodesRequest_Decode(OpcUa_UnregisterNodesRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UnregisterNodesRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_UnregisterNodesRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadArray(NodeId, NodesToUnregister); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_UnregisterNodesRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UnregisterNodesRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_UnregisterNodesRequest_EncodeableType = { "UnregisterNodesRequest", OpcUaId_UnregisterNodesRequest, OpcUaId_UnregisterNodesRequest_Encoding_DefaultBinary, OpcUaId_UnregisterNodesRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_UnregisterNodesRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_UnregisterNodesRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_UnregisterNodesRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_UnregisterNodesRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_UnregisterNodesRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_UnregisterNodesRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_UnregisterNodesResponse /*============================================================================ * OpcUa_UnregisterNodesResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_UnregisterNodesResponse_Initialize(OpcUa_UnregisterNodesResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); } } /*============================================================================ * OpcUa_UnregisterNodesResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_UnregisterNodesResponse_Clear(OpcUa_UnregisterNodesResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); } } /*============================================================================ * OpcUa_UnregisterNodesResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_UnregisterNodesResponse_GetSize(OpcUa_UnregisterNodesResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UnregisterNodesResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UnregisterNodesResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_UnregisterNodesResponse_Encode(OpcUa_UnregisterNodesResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UnregisterNodesResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UnregisterNodesResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_UnregisterNodesResponse_Decode(OpcUa_UnregisterNodesResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UnregisterNodesResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_UnregisterNodesResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_UnregisterNodesResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UnregisterNodesResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_UnregisterNodesResponse_EncodeableType = { "UnregisterNodesResponse", OpcUaId_UnregisterNodesResponse, OpcUaId_UnregisterNodesResponse_Encoding_DefaultBinary, OpcUaId_UnregisterNodesResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_UnregisterNodesResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_UnregisterNodesResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_UnregisterNodesResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_UnregisterNodesResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_UnregisterNodesResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_UnregisterNodesResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_EndpointConfiguration /*============================================================================ * OpcUa_EndpointConfiguration_Initialize *===========================================================================*/ OpcUa_Void OpcUa_EndpointConfiguration_Initialize(OpcUa_EndpointConfiguration* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(Int32, OperationTimeout); OpcUa_Field_Initialize(Boolean, UseBinaryEncoding); OpcUa_Field_Initialize(Int32, MaxStringLength); OpcUa_Field_Initialize(Int32, MaxByteStringLength); OpcUa_Field_Initialize(Int32, MaxArrayLength); OpcUa_Field_Initialize(Int32, MaxMessageSize); OpcUa_Field_Initialize(Int32, MaxBufferSize); OpcUa_Field_Initialize(Int32, ChannelLifetime); OpcUa_Field_Initialize(Int32, SecurityTokenLifetime); } } /*============================================================================ * OpcUa_EndpointConfiguration_Clear *===========================================================================*/ OpcUa_Void OpcUa_EndpointConfiguration_Clear(OpcUa_EndpointConfiguration* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(Int32, OperationTimeout); OpcUa_Field_Clear(Boolean, UseBinaryEncoding); OpcUa_Field_Clear(Int32, MaxStringLength); OpcUa_Field_Clear(Int32, MaxByteStringLength); OpcUa_Field_Clear(Int32, MaxArrayLength); OpcUa_Field_Clear(Int32, MaxMessageSize); OpcUa_Field_Clear(Int32, MaxBufferSize); OpcUa_Field_Clear(Int32, ChannelLifetime); OpcUa_Field_Clear(Int32, SecurityTokenLifetime); } } /*============================================================================ * OpcUa_EndpointConfiguration_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_EndpointConfiguration_GetSize(OpcUa_EndpointConfiguration* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EndpointConfiguration_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(Int32, OperationTimeout); OpcUa_Field_GetSize(Boolean, UseBinaryEncoding); OpcUa_Field_GetSize(Int32, MaxStringLength); OpcUa_Field_GetSize(Int32, MaxByteStringLength); OpcUa_Field_GetSize(Int32, MaxArrayLength); OpcUa_Field_GetSize(Int32, MaxMessageSize); OpcUa_Field_GetSize(Int32, MaxBufferSize); OpcUa_Field_GetSize(Int32, ChannelLifetime); OpcUa_Field_GetSize(Int32, SecurityTokenLifetime); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EndpointConfiguration_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_EndpointConfiguration_Encode(OpcUa_EndpointConfiguration* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EndpointConfiguration_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(Int32, OperationTimeout); OpcUa_Field_Write(Boolean, UseBinaryEncoding); OpcUa_Field_Write(Int32, MaxStringLength); OpcUa_Field_Write(Int32, MaxByteStringLength); OpcUa_Field_Write(Int32, MaxArrayLength); OpcUa_Field_Write(Int32, MaxMessageSize); OpcUa_Field_Write(Int32, MaxBufferSize); OpcUa_Field_Write(Int32, ChannelLifetime); OpcUa_Field_Write(Int32, SecurityTokenLifetime); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EndpointConfiguration_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_EndpointConfiguration_Decode(OpcUa_EndpointConfiguration* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EndpointConfiguration_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_EndpointConfiguration_Initialize(a_pValue); OpcUa_Field_Read(Int32, OperationTimeout); OpcUa_Field_Read(Boolean, UseBinaryEncoding); OpcUa_Field_Read(Int32, MaxStringLength); OpcUa_Field_Read(Int32, MaxByteStringLength); OpcUa_Field_Read(Int32, MaxArrayLength); OpcUa_Field_Read(Int32, MaxMessageSize); OpcUa_Field_Read(Int32, MaxBufferSize); OpcUa_Field_Read(Int32, ChannelLifetime); OpcUa_Field_Read(Int32, SecurityTokenLifetime); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_EndpointConfiguration_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EndpointConfiguration_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_EndpointConfiguration_EncodeableType = { "EndpointConfiguration", OpcUaId_EndpointConfiguration, OpcUaId_EndpointConfiguration_Encoding_DefaultBinary, OpcUaId_EndpointConfiguration_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_EndpointConfiguration), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_EndpointConfiguration_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_EndpointConfiguration_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_EndpointConfiguration_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_EndpointConfiguration_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_EndpointConfiguration_Decode }; #endif #ifndef OPCUA_EXCLUDE_QueryDataDescription /*============================================================================ * OpcUa_QueryDataDescription_Initialize *===========================================================================*/ OpcUa_Void OpcUa_QueryDataDescription_Initialize(OpcUa_QueryDataDescription* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RelativePath, RelativePath); OpcUa_Field_Initialize(UInt32, AttributeId); OpcUa_Field_Initialize(String, IndexRange); } } /*============================================================================ * OpcUa_QueryDataDescription_Clear *===========================================================================*/ OpcUa_Void OpcUa_QueryDataDescription_Clear(OpcUa_QueryDataDescription* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RelativePath, RelativePath); OpcUa_Field_Clear(UInt32, AttributeId); OpcUa_Field_Clear(String, IndexRange); } } /*============================================================================ * OpcUa_QueryDataDescription_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_QueryDataDescription_GetSize(OpcUa_QueryDataDescription* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "QueryDataDescription_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RelativePath, RelativePath); OpcUa_Field_GetSize(UInt32, AttributeId); OpcUa_Field_GetSize(String, IndexRange); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_QueryDataDescription_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_QueryDataDescription_Encode(OpcUa_QueryDataDescription* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "QueryDataDescription_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RelativePath, RelativePath); OpcUa_Field_Write(UInt32, AttributeId); OpcUa_Field_Write(String, IndexRange); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_QueryDataDescription_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_QueryDataDescription_Decode(OpcUa_QueryDataDescription* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "QueryDataDescription_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_QueryDataDescription_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RelativePath, RelativePath); OpcUa_Field_Read(UInt32, AttributeId); OpcUa_Field_Read(String, IndexRange); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_QueryDataDescription_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_QueryDataDescription_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_QueryDataDescription_EncodeableType = { "QueryDataDescription", OpcUaId_QueryDataDescription, OpcUaId_QueryDataDescription_Encoding_DefaultBinary, OpcUaId_QueryDataDescription_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_QueryDataDescription), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_QueryDataDescription_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_QueryDataDescription_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_QueryDataDescription_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_QueryDataDescription_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_QueryDataDescription_Decode }; #endif #ifndef OPCUA_EXCLUDE_NodeTypeDescription /*============================================================================ * OpcUa_NodeTypeDescription_Initialize *===========================================================================*/ OpcUa_Void OpcUa_NodeTypeDescription_Initialize(OpcUa_NodeTypeDescription* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(ExpandedNodeId, TypeDefinitionNode); OpcUa_Field_Initialize(Boolean, IncludeSubTypes); OpcUa_Field_InitializeEncodeableArray(OpcUa_QueryDataDescription, DataToReturn); } } /*============================================================================ * OpcUa_NodeTypeDescription_Clear *===========================================================================*/ OpcUa_Void OpcUa_NodeTypeDescription_Clear(OpcUa_NodeTypeDescription* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(ExpandedNodeId, TypeDefinitionNode); OpcUa_Field_Clear(Boolean, IncludeSubTypes); OpcUa_Field_ClearEncodeableArray(OpcUa_QueryDataDescription, DataToReturn); } } /*============================================================================ * OpcUa_NodeTypeDescription_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_NodeTypeDescription_GetSize(OpcUa_NodeTypeDescription* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "NodeTypeDescription_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(ExpandedNodeId, TypeDefinitionNode); OpcUa_Field_GetSize(Boolean, IncludeSubTypes); OpcUa_Field_GetSizeEncodeableArray(OpcUa_QueryDataDescription, DataToReturn); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_NodeTypeDescription_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_NodeTypeDescription_Encode(OpcUa_NodeTypeDescription* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "NodeTypeDescription_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(ExpandedNodeId, TypeDefinitionNode); OpcUa_Field_Write(Boolean, IncludeSubTypes); OpcUa_Field_WriteEncodeableArray(OpcUa_QueryDataDescription, DataToReturn); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_NodeTypeDescription_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_NodeTypeDescription_Decode(OpcUa_NodeTypeDescription* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "NodeTypeDescription_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_NodeTypeDescription_Initialize(a_pValue); OpcUa_Field_Read(ExpandedNodeId, TypeDefinitionNode); OpcUa_Field_Read(Boolean, IncludeSubTypes); OpcUa_Field_ReadEncodeableArray(OpcUa_QueryDataDescription, DataToReturn); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_NodeTypeDescription_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_NodeTypeDescription_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_NodeTypeDescription_EncodeableType = { "NodeTypeDescription", OpcUaId_NodeTypeDescription, OpcUaId_NodeTypeDescription_Encoding_DefaultBinary, OpcUaId_NodeTypeDescription_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_NodeTypeDescription), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_NodeTypeDescription_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_NodeTypeDescription_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_NodeTypeDescription_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_NodeTypeDescription_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_NodeTypeDescription_Decode }; #endif #ifndef OPCUA_EXCLUDE_FilterOperator /*============================================================================ * OpcUa_FilterOperator_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_FilterOperator_EnumeratedValues[] = { { "Equals", 0 }, { "IsNull", 1 }, { "GreaterThan", 2 }, { "LessThan", 3 }, { "GreaterThanOrEqual", 4 }, { "LessThanOrEqual", 5 }, { "Like", 6 }, { "Not", 7 }, { "Between", 8 }, { "InList", 9 }, { "And", 10 }, { "Or", 11 }, { "Cast", 12 }, { "InView", 13 }, { "OfType", 14 }, { "RelatedTo", 15 }, { "BitwiseAnd", 16 }, { "BitwiseOr", 17 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_FilterOperator_EnumeratedType = { "FilterOperator", g_OpcUa_FilterOperator_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_QueryDataSet /*============================================================================ * OpcUa_QueryDataSet_Initialize *===========================================================================*/ OpcUa_Void OpcUa_QueryDataSet_Initialize(OpcUa_QueryDataSet* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(ExpandedNodeId, NodeId); OpcUa_Field_Initialize(ExpandedNodeId, TypeDefinitionNode); OpcUa_Field_InitializeArray(Variant, Values); } } /*============================================================================ * OpcUa_QueryDataSet_Clear *===========================================================================*/ OpcUa_Void OpcUa_QueryDataSet_Clear(OpcUa_QueryDataSet* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(ExpandedNodeId, NodeId); OpcUa_Field_Clear(ExpandedNodeId, TypeDefinitionNode); OpcUa_Field_ClearArray(Variant, Values); } } /*============================================================================ * OpcUa_QueryDataSet_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_QueryDataSet_GetSize(OpcUa_QueryDataSet* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "QueryDataSet_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(ExpandedNodeId, NodeId); OpcUa_Field_GetSize(ExpandedNodeId, TypeDefinitionNode); OpcUa_Field_GetSizeArray(Variant, Values); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_QueryDataSet_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_QueryDataSet_Encode(OpcUa_QueryDataSet* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "QueryDataSet_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(ExpandedNodeId, NodeId); OpcUa_Field_Write(ExpandedNodeId, TypeDefinitionNode); OpcUa_Field_WriteArray(Variant, Values); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_QueryDataSet_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_QueryDataSet_Decode(OpcUa_QueryDataSet* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "QueryDataSet_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_QueryDataSet_Initialize(a_pValue); OpcUa_Field_Read(ExpandedNodeId, NodeId); OpcUa_Field_Read(ExpandedNodeId, TypeDefinitionNode); OpcUa_Field_ReadArray(Variant, Values); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_QueryDataSet_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_QueryDataSet_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_QueryDataSet_EncodeableType = { "QueryDataSet", OpcUaId_QueryDataSet, OpcUaId_QueryDataSet_Encoding_DefaultBinary, OpcUaId_QueryDataSet_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_QueryDataSet), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_QueryDataSet_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_QueryDataSet_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_QueryDataSet_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_QueryDataSet_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_QueryDataSet_Decode }; #endif #ifndef OPCUA_EXCLUDE_NodeReference /*============================================================================ * OpcUa_NodeReference_Initialize *===========================================================================*/ OpcUa_Void OpcUa_NodeReference_Initialize(OpcUa_NodeReference* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_Initialize(NodeId, ReferenceTypeId); OpcUa_Field_Initialize(Boolean, IsForward); OpcUa_Field_InitializeArray(NodeId, ReferencedNodeIds); } } /*============================================================================ * OpcUa_NodeReference_Clear *===========================================================================*/ OpcUa_Void OpcUa_NodeReference_Clear(OpcUa_NodeReference* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_Clear(NodeId, ReferenceTypeId); OpcUa_Field_Clear(Boolean, IsForward); OpcUa_Field_ClearArray(NodeId, ReferencedNodeIds); } } /*============================================================================ * OpcUa_NodeReference_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_NodeReference_GetSize(OpcUa_NodeReference* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "NodeReference_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSize(NodeId, ReferenceTypeId); OpcUa_Field_GetSize(Boolean, IsForward); OpcUa_Field_GetSizeArray(NodeId, ReferencedNodeIds); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_NodeReference_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_NodeReference_Encode(OpcUa_NodeReference* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "NodeReference_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_Write(NodeId, ReferenceTypeId); OpcUa_Field_Write(Boolean, IsForward); OpcUa_Field_WriteArray(NodeId, ReferencedNodeIds); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_NodeReference_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_NodeReference_Decode(OpcUa_NodeReference* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "NodeReference_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_NodeReference_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_Read(NodeId, ReferenceTypeId); OpcUa_Field_Read(Boolean, IsForward); OpcUa_Field_ReadArray(NodeId, ReferencedNodeIds); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_NodeReference_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_NodeReference_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_NodeReference_EncodeableType = { "NodeReference", OpcUaId_NodeReference, OpcUaId_NodeReference_Encoding_DefaultBinary, OpcUaId_NodeReference_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_NodeReference), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_NodeReference_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_NodeReference_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_NodeReference_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_NodeReference_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_NodeReference_Decode }; #endif #ifndef OPCUA_EXCLUDE_ContentFilterElement /*============================================================================ * OpcUa_ContentFilterElement_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ContentFilterElement_Initialize(OpcUa_ContentFilterElement* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEnumerated(OpcUa_FilterOperator, FilterOperator); OpcUa_Field_InitializeArray(ExtensionObject, FilterOperands); } } /*============================================================================ * OpcUa_ContentFilterElement_Clear *===========================================================================*/ OpcUa_Void OpcUa_ContentFilterElement_Clear(OpcUa_ContentFilterElement* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEnumerated(OpcUa_FilterOperator, FilterOperator); OpcUa_Field_ClearArray(ExtensionObject, FilterOperands); } } /*============================================================================ * OpcUa_ContentFilterElement_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ContentFilterElement_GetSize(OpcUa_ContentFilterElement* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ContentFilterElement_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEnumerated(OpcUa_FilterOperator, FilterOperator); OpcUa_Field_GetSizeArray(ExtensionObject, FilterOperands); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ContentFilterElement_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ContentFilterElement_Encode(OpcUa_ContentFilterElement* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ContentFilterElement_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEnumerated(OpcUa_FilterOperator, FilterOperator); OpcUa_Field_WriteArray(ExtensionObject, FilterOperands); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ContentFilterElement_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ContentFilterElement_Decode(OpcUa_ContentFilterElement* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ContentFilterElement_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ContentFilterElement_Initialize(a_pValue); OpcUa_Field_ReadEnumerated(OpcUa_FilterOperator, FilterOperator); OpcUa_Field_ReadArray(ExtensionObject, FilterOperands); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ContentFilterElement_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ContentFilterElement_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ContentFilterElement_EncodeableType = { "ContentFilterElement", OpcUaId_ContentFilterElement, OpcUaId_ContentFilterElement_Encoding_DefaultBinary, OpcUaId_ContentFilterElement_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ContentFilterElement), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ContentFilterElement_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ContentFilterElement_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ContentFilterElement_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ContentFilterElement_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ContentFilterElement_Decode }; #endif #ifndef OPCUA_EXCLUDE_ContentFilter /*============================================================================ * OpcUa_ContentFilter_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ContentFilter_Initialize(OpcUa_ContentFilter* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeableArray(OpcUa_ContentFilterElement, Elements); } } /*============================================================================ * OpcUa_ContentFilter_Clear *===========================================================================*/ OpcUa_Void OpcUa_ContentFilter_Clear(OpcUa_ContentFilter* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeableArray(OpcUa_ContentFilterElement, Elements); } } /*============================================================================ * OpcUa_ContentFilter_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ContentFilter_GetSize(OpcUa_ContentFilter* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ContentFilter_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeableArray(OpcUa_ContentFilterElement, Elements); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ContentFilter_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ContentFilter_Encode(OpcUa_ContentFilter* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ContentFilter_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeableArray(OpcUa_ContentFilterElement, Elements); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ContentFilter_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ContentFilter_Decode(OpcUa_ContentFilter* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ContentFilter_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ContentFilter_Initialize(a_pValue); OpcUa_Field_ReadEncodeableArray(OpcUa_ContentFilterElement, Elements); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ContentFilter_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ContentFilter_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ContentFilter_EncodeableType = { "ContentFilter", OpcUaId_ContentFilter, OpcUaId_ContentFilter_Encoding_DefaultBinary, OpcUaId_ContentFilter_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ContentFilter), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ContentFilter_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ContentFilter_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ContentFilter_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ContentFilter_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ContentFilter_Decode }; #endif #ifndef OPCUA_EXCLUDE_ElementOperand /*============================================================================ * OpcUa_ElementOperand_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ElementOperand_Initialize(OpcUa_ElementOperand* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, Index); } } /*============================================================================ * OpcUa_ElementOperand_Clear *===========================================================================*/ OpcUa_Void OpcUa_ElementOperand_Clear(OpcUa_ElementOperand* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, Index); } } /*============================================================================ * OpcUa_ElementOperand_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ElementOperand_GetSize(OpcUa_ElementOperand* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ElementOperand_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, Index); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ElementOperand_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ElementOperand_Encode(OpcUa_ElementOperand* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ElementOperand_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, Index); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ElementOperand_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ElementOperand_Decode(OpcUa_ElementOperand* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ElementOperand_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ElementOperand_Initialize(a_pValue); OpcUa_Field_Read(UInt32, Index); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ElementOperand_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ElementOperand_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ElementOperand_EncodeableType = { "ElementOperand", OpcUaId_ElementOperand, OpcUaId_ElementOperand_Encoding_DefaultBinary, OpcUaId_ElementOperand_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ElementOperand), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ElementOperand_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ElementOperand_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ElementOperand_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ElementOperand_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ElementOperand_Decode }; #endif #ifndef OPCUA_EXCLUDE_LiteralOperand /*============================================================================ * OpcUa_LiteralOperand_Initialize *===========================================================================*/ OpcUa_Void OpcUa_LiteralOperand_Initialize(OpcUa_LiteralOperand* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(Variant, Value); } } /*============================================================================ * OpcUa_LiteralOperand_Clear *===========================================================================*/ OpcUa_Void OpcUa_LiteralOperand_Clear(OpcUa_LiteralOperand* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(Variant, Value); } } /*============================================================================ * OpcUa_LiteralOperand_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_LiteralOperand_GetSize(OpcUa_LiteralOperand* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "LiteralOperand_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(Variant, Value); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_LiteralOperand_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_LiteralOperand_Encode(OpcUa_LiteralOperand* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "LiteralOperand_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(Variant, Value); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_LiteralOperand_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_LiteralOperand_Decode(OpcUa_LiteralOperand* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "LiteralOperand_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_LiteralOperand_Initialize(a_pValue); OpcUa_Field_Read(Variant, Value); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_LiteralOperand_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_LiteralOperand_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_LiteralOperand_EncodeableType = { "LiteralOperand", OpcUaId_LiteralOperand, OpcUaId_LiteralOperand_Encoding_DefaultBinary, OpcUaId_LiteralOperand_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_LiteralOperand), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_LiteralOperand_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_LiteralOperand_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_LiteralOperand_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_LiteralOperand_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_LiteralOperand_Decode }; #endif #ifndef OPCUA_EXCLUDE_AttributeOperand /*============================================================================ * OpcUa_AttributeOperand_Initialize *===========================================================================*/ OpcUa_Void OpcUa_AttributeOperand_Initialize(OpcUa_AttributeOperand* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_Initialize(String, Alias); OpcUa_Field_InitializeEncodeable(OpcUa_RelativePath, BrowsePath); OpcUa_Field_Initialize(UInt32, AttributeId); OpcUa_Field_Initialize(String, IndexRange); } } /*============================================================================ * OpcUa_AttributeOperand_Clear *===========================================================================*/ OpcUa_Void OpcUa_AttributeOperand_Clear(OpcUa_AttributeOperand* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_Clear(String, Alias); OpcUa_Field_ClearEncodeable(OpcUa_RelativePath, BrowsePath); OpcUa_Field_Clear(UInt32, AttributeId); OpcUa_Field_Clear(String, IndexRange); } } /*============================================================================ * OpcUa_AttributeOperand_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_AttributeOperand_GetSize(OpcUa_AttributeOperand* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AttributeOperand_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSize(String, Alias); OpcUa_Field_GetSizeEncodeable(OpcUa_RelativePath, BrowsePath); OpcUa_Field_GetSize(UInt32, AttributeId); OpcUa_Field_GetSize(String, IndexRange); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AttributeOperand_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_AttributeOperand_Encode(OpcUa_AttributeOperand* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AttributeOperand_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_Write(String, Alias); OpcUa_Field_WriteEncodeable(OpcUa_RelativePath, BrowsePath); OpcUa_Field_Write(UInt32, AttributeId); OpcUa_Field_Write(String, IndexRange); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AttributeOperand_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_AttributeOperand_Decode(OpcUa_AttributeOperand* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AttributeOperand_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_AttributeOperand_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_Read(String, Alias); OpcUa_Field_ReadEncodeable(OpcUa_RelativePath, BrowsePath); OpcUa_Field_Read(UInt32, AttributeId); OpcUa_Field_Read(String, IndexRange); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_AttributeOperand_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AttributeOperand_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_AttributeOperand_EncodeableType = { "AttributeOperand", OpcUaId_AttributeOperand, OpcUaId_AttributeOperand_Encoding_DefaultBinary, OpcUaId_AttributeOperand_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_AttributeOperand), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_AttributeOperand_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_AttributeOperand_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_AttributeOperand_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_AttributeOperand_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_AttributeOperand_Decode }; #endif #ifndef OPCUA_EXCLUDE_SimpleAttributeOperand /*============================================================================ * OpcUa_SimpleAttributeOperand_Initialize *===========================================================================*/ OpcUa_Void OpcUa_SimpleAttributeOperand_Initialize(OpcUa_SimpleAttributeOperand* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, TypeDefinitionId); OpcUa_Field_InitializeArray(QualifiedName, BrowsePath); OpcUa_Field_Initialize(UInt32, AttributeId); OpcUa_Field_Initialize(String, IndexRange); } } /*============================================================================ * OpcUa_SimpleAttributeOperand_Clear *===========================================================================*/ OpcUa_Void OpcUa_SimpleAttributeOperand_Clear(OpcUa_SimpleAttributeOperand* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, TypeDefinitionId); OpcUa_Field_ClearArray(QualifiedName, BrowsePath); OpcUa_Field_Clear(UInt32, AttributeId); OpcUa_Field_Clear(String, IndexRange); } } /*============================================================================ * OpcUa_SimpleAttributeOperand_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_SimpleAttributeOperand_GetSize(OpcUa_SimpleAttributeOperand* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SimpleAttributeOperand_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, TypeDefinitionId); OpcUa_Field_GetSizeArray(QualifiedName, BrowsePath); OpcUa_Field_GetSize(UInt32, AttributeId); OpcUa_Field_GetSize(String, IndexRange); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SimpleAttributeOperand_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_SimpleAttributeOperand_Encode(OpcUa_SimpleAttributeOperand* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SimpleAttributeOperand_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, TypeDefinitionId); OpcUa_Field_WriteArray(QualifiedName, BrowsePath); OpcUa_Field_Write(UInt32, AttributeId); OpcUa_Field_Write(String, IndexRange); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SimpleAttributeOperand_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_SimpleAttributeOperand_Decode(OpcUa_SimpleAttributeOperand* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SimpleAttributeOperand_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_SimpleAttributeOperand_Initialize(a_pValue); OpcUa_Field_Read(NodeId, TypeDefinitionId); OpcUa_Field_ReadArray(QualifiedName, BrowsePath); OpcUa_Field_Read(UInt32, AttributeId); OpcUa_Field_Read(String, IndexRange); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_SimpleAttributeOperand_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SimpleAttributeOperand_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_SimpleAttributeOperand_EncodeableType = { "SimpleAttributeOperand", OpcUaId_SimpleAttributeOperand, OpcUaId_SimpleAttributeOperand_Encoding_DefaultBinary, OpcUaId_SimpleAttributeOperand_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_SimpleAttributeOperand), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_SimpleAttributeOperand_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_SimpleAttributeOperand_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_SimpleAttributeOperand_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_SimpleAttributeOperand_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_SimpleAttributeOperand_Decode }; #endif #ifndef OPCUA_EXCLUDE_ContentFilterElementResult /*============================================================================ * OpcUa_ContentFilterElementResult_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ContentFilterElementResult_Initialize(OpcUa_ContentFilterElementResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(StatusCode, StatusCode); OpcUa_Field_InitializeArray(StatusCode, OperandStatusCodes); OpcUa_Field_InitializeArray(DiagnosticInfo, OperandDiagnosticInfos); } } /*============================================================================ * OpcUa_ContentFilterElementResult_Clear *===========================================================================*/ OpcUa_Void OpcUa_ContentFilterElementResult_Clear(OpcUa_ContentFilterElementResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(StatusCode, StatusCode); OpcUa_Field_ClearArray(StatusCode, OperandStatusCodes); OpcUa_Field_ClearArray(DiagnosticInfo, OperandDiagnosticInfos); } } /*============================================================================ * OpcUa_ContentFilterElementResult_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ContentFilterElementResult_GetSize(OpcUa_ContentFilterElementResult* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ContentFilterElementResult_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(StatusCode, StatusCode); OpcUa_Field_GetSizeArray(StatusCode, OperandStatusCodes); OpcUa_Field_GetSizeArray(DiagnosticInfo, OperandDiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ContentFilterElementResult_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ContentFilterElementResult_Encode(OpcUa_ContentFilterElementResult* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ContentFilterElementResult_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(StatusCode, StatusCode); OpcUa_Field_WriteArray(StatusCode, OperandStatusCodes); OpcUa_Field_WriteArray(DiagnosticInfo, OperandDiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ContentFilterElementResult_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ContentFilterElementResult_Decode(OpcUa_ContentFilterElementResult* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ContentFilterElementResult_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ContentFilterElementResult_Initialize(a_pValue); OpcUa_Field_Read(StatusCode, StatusCode); OpcUa_Field_ReadArray(StatusCode, OperandStatusCodes); OpcUa_Field_ReadArray(DiagnosticInfo, OperandDiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ContentFilterElementResult_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ContentFilterElementResult_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ContentFilterElementResult_EncodeableType = { "ContentFilterElementResult", OpcUaId_ContentFilterElementResult, OpcUaId_ContentFilterElementResult_Encoding_DefaultBinary, OpcUaId_ContentFilterElementResult_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ContentFilterElementResult), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ContentFilterElementResult_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ContentFilterElementResult_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ContentFilterElementResult_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ContentFilterElementResult_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ContentFilterElementResult_Decode }; #endif #ifndef OPCUA_EXCLUDE_ContentFilterResult /*============================================================================ * OpcUa_ContentFilterResult_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ContentFilterResult_Initialize(OpcUa_ContentFilterResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeableArray(OpcUa_ContentFilterElementResult, ElementResults); OpcUa_Field_InitializeArray(DiagnosticInfo, ElementDiagnosticInfos); } } /*============================================================================ * OpcUa_ContentFilterResult_Clear *===========================================================================*/ OpcUa_Void OpcUa_ContentFilterResult_Clear(OpcUa_ContentFilterResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeableArray(OpcUa_ContentFilterElementResult, ElementResults); OpcUa_Field_ClearArray(DiagnosticInfo, ElementDiagnosticInfos); } } /*============================================================================ * OpcUa_ContentFilterResult_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ContentFilterResult_GetSize(OpcUa_ContentFilterResult* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ContentFilterResult_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeableArray(OpcUa_ContentFilterElementResult, ElementResults); OpcUa_Field_GetSizeArray(DiagnosticInfo, ElementDiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ContentFilterResult_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ContentFilterResult_Encode(OpcUa_ContentFilterResult* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ContentFilterResult_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeableArray(OpcUa_ContentFilterElementResult, ElementResults); OpcUa_Field_WriteArray(DiagnosticInfo, ElementDiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ContentFilterResult_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ContentFilterResult_Decode(OpcUa_ContentFilterResult* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ContentFilterResult_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ContentFilterResult_Initialize(a_pValue); OpcUa_Field_ReadEncodeableArray(OpcUa_ContentFilterElementResult, ElementResults); OpcUa_Field_ReadArray(DiagnosticInfo, ElementDiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ContentFilterResult_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ContentFilterResult_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ContentFilterResult_EncodeableType = { "ContentFilterResult", OpcUaId_ContentFilterResult, OpcUaId_ContentFilterResult_Encoding_DefaultBinary, OpcUaId_ContentFilterResult_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ContentFilterResult), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ContentFilterResult_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ContentFilterResult_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ContentFilterResult_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ContentFilterResult_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ContentFilterResult_Decode }; #endif #ifndef OPCUA_EXCLUDE_ParsingResult /*============================================================================ * OpcUa_ParsingResult_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ParsingResult_Initialize(OpcUa_ParsingResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(StatusCode, StatusCode); OpcUa_Field_InitializeArray(StatusCode, DataStatusCodes); OpcUa_Field_InitializeArray(DiagnosticInfo, DataDiagnosticInfos); } } /*============================================================================ * OpcUa_ParsingResult_Clear *===========================================================================*/ OpcUa_Void OpcUa_ParsingResult_Clear(OpcUa_ParsingResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(StatusCode, StatusCode); OpcUa_Field_ClearArray(StatusCode, DataStatusCodes); OpcUa_Field_ClearArray(DiagnosticInfo, DataDiagnosticInfos); } } /*============================================================================ * OpcUa_ParsingResult_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ParsingResult_GetSize(OpcUa_ParsingResult* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ParsingResult_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(StatusCode, StatusCode); OpcUa_Field_GetSizeArray(StatusCode, DataStatusCodes); OpcUa_Field_GetSizeArray(DiagnosticInfo, DataDiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ParsingResult_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ParsingResult_Encode(OpcUa_ParsingResult* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ParsingResult_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(StatusCode, StatusCode); OpcUa_Field_WriteArray(StatusCode, DataStatusCodes); OpcUa_Field_WriteArray(DiagnosticInfo, DataDiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ParsingResult_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ParsingResult_Decode(OpcUa_ParsingResult* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ParsingResult_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ParsingResult_Initialize(a_pValue); OpcUa_Field_Read(StatusCode, StatusCode); OpcUa_Field_ReadArray(StatusCode, DataStatusCodes); OpcUa_Field_ReadArray(DiagnosticInfo, DataDiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ParsingResult_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ParsingResult_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ParsingResult_EncodeableType = { "ParsingResult", OpcUaId_ParsingResult, OpcUaId_ParsingResult_Encoding_DefaultBinary, OpcUaId_ParsingResult_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ParsingResult), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ParsingResult_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ParsingResult_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ParsingResult_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ParsingResult_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ParsingResult_Decode }; #endif #ifndef OPCUA_EXCLUDE_QueryFirst #ifndef OPCUA_EXCLUDE_QueryFirstRequest /*============================================================================ * OpcUa_QueryFirstRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_QueryFirstRequest_Initialize(OpcUa_QueryFirstRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeEncodeable(OpcUa_ViewDescription, View); OpcUa_Field_InitializeEncodeableArray(OpcUa_NodeTypeDescription, NodeTypes); OpcUa_Field_InitializeEncodeable(OpcUa_ContentFilter, Filter); OpcUa_Field_Initialize(UInt32, MaxDataSetsToReturn); OpcUa_Field_Initialize(UInt32, MaxReferencesToReturn); } } /*============================================================================ * OpcUa_QueryFirstRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_QueryFirstRequest_Clear(OpcUa_QueryFirstRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearEncodeable(OpcUa_ViewDescription, View); OpcUa_Field_ClearEncodeableArray(OpcUa_NodeTypeDescription, NodeTypes); OpcUa_Field_ClearEncodeable(OpcUa_ContentFilter, Filter); OpcUa_Field_Clear(UInt32, MaxDataSetsToReturn); OpcUa_Field_Clear(UInt32, MaxReferencesToReturn); } } /*============================================================================ * OpcUa_QueryFirstRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_QueryFirstRequest_GetSize(OpcUa_QueryFirstRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "QueryFirstRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeEncodeable(OpcUa_ViewDescription, View); OpcUa_Field_GetSizeEncodeableArray(OpcUa_NodeTypeDescription, NodeTypes); OpcUa_Field_GetSizeEncodeable(OpcUa_ContentFilter, Filter); OpcUa_Field_GetSize(UInt32, MaxDataSetsToReturn); OpcUa_Field_GetSize(UInt32, MaxReferencesToReturn); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_QueryFirstRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_QueryFirstRequest_Encode(OpcUa_QueryFirstRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "QueryFirstRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteEncodeable(OpcUa_ViewDescription, View); OpcUa_Field_WriteEncodeableArray(OpcUa_NodeTypeDescription, NodeTypes); OpcUa_Field_WriteEncodeable(OpcUa_ContentFilter, Filter); OpcUa_Field_Write(UInt32, MaxDataSetsToReturn); OpcUa_Field_Write(UInt32, MaxReferencesToReturn); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_QueryFirstRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_QueryFirstRequest_Decode(OpcUa_QueryFirstRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "QueryFirstRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_QueryFirstRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadEncodeable(OpcUa_ViewDescription, View); OpcUa_Field_ReadEncodeableArray(OpcUa_NodeTypeDescription, NodeTypes); OpcUa_Field_ReadEncodeable(OpcUa_ContentFilter, Filter); OpcUa_Field_Read(UInt32, MaxDataSetsToReturn); OpcUa_Field_Read(UInt32, MaxReferencesToReturn); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_QueryFirstRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_QueryFirstRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_QueryFirstRequest_EncodeableType = { "QueryFirstRequest", OpcUaId_QueryFirstRequest, OpcUaId_QueryFirstRequest_Encoding_DefaultBinary, OpcUaId_QueryFirstRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_QueryFirstRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_QueryFirstRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_QueryFirstRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_QueryFirstRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_QueryFirstRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_QueryFirstRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_QueryFirstResponse /*============================================================================ * OpcUa_QueryFirstResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_QueryFirstResponse_Initialize(OpcUa_QueryFirstResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_QueryDataSet, QueryDataSets); OpcUa_Field_Initialize(ByteString, ContinuationPoint); OpcUa_Field_InitializeEncodeableArray(OpcUa_ParsingResult, ParsingResults); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); OpcUa_Field_InitializeEncodeable(OpcUa_ContentFilterResult, FilterResult); } } /*============================================================================ * OpcUa_QueryFirstResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_QueryFirstResponse_Clear(OpcUa_QueryFirstResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_QueryDataSet, QueryDataSets); OpcUa_Field_Clear(ByteString, ContinuationPoint); OpcUa_Field_ClearEncodeableArray(OpcUa_ParsingResult, ParsingResults); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); OpcUa_Field_ClearEncodeable(OpcUa_ContentFilterResult, FilterResult); } } /*============================================================================ * OpcUa_QueryFirstResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_QueryFirstResponse_GetSize(OpcUa_QueryFirstResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "QueryFirstResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_QueryDataSet, QueryDataSets); OpcUa_Field_GetSize(ByteString, ContinuationPoint); OpcUa_Field_GetSizeEncodeableArray(OpcUa_ParsingResult, ParsingResults); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); OpcUa_Field_GetSizeEncodeable(OpcUa_ContentFilterResult, FilterResult); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_QueryFirstResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_QueryFirstResponse_Encode(OpcUa_QueryFirstResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "QueryFirstResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_QueryDataSet, QueryDataSets); OpcUa_Field_Write(ByteString, ContinuationPoint); OpcUa_Field_WriteEncodeableArray(OpcUa_ParsingResult, ParsingResults); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_Field_WriteEncodeable(OpcUa_ContentFilterResult, FilterResult); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_QueryFirstResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_QueryFirstResponse_Decode(OpcUa_QueryFirstResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "QueryFirstResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_QueryFirstResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_QueryDataSet, QueryDataSets); OpcUa_Field_Read(ByteString, ContinuationPoint); OpcUa_Field_ReadEncodeableArray(OpcUa_ParsingResult, ParsingResults); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_Field_ReadEncodeable(OpcUa_ContentFilterResult, FilterResult); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_QueryFirstResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_QueryFirstResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_QueryFirstResponse_EncodeableType = { "QueryFirstResponse", OpcUaId_QueryFirstResponse, OpcUaId_QueryFirstResponse_Encoding_DefaultBinary, OpcUaId_QueryFirstResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_QueryFirstResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_QueryFirstResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_QueryFirstResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_QueryFirstResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_QueryFirstResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_QueryFirstResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_QueryNext #ifndef OPCUA_EXCLUDE_QueryNextRequest /*============================================================================ * OpcUa_QueryNextRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_QueryNextRequest_Initialize(OpcUa_QueryNextRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(Boolean, ReleaseContinuationPoint); OpcUa_Field_Initialize(ByteString, ContinuationPoint); } } /*============================================================================ * OpcUa_QueryNextRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_QueryNextRequest_Clear(OpcUa_QueryNextRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(Boolean, ReleaseContinuationPoint); OpcUa_Field_Clear(ByteString, ContinuationPoint); } } /*============================================================================ * OpcUa_QueryNextRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_QueryNextRequest_GetSize(OpcUa_QueryNextRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "QueryNextRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(Boolean, ReleaseContinuationPoint); OpcUa_Field_GetSize(ByteString, ContinuationPoint); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_QueryNextRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_QueryNextRequest_Encode(OpcUa_QueryNextRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "QueryNextRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(Boolean, ReleaseContinuationPoint); OpcUa_Field_Write(ByteString, ContinuationPoint); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_QueryNextRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_QueryNextRequest_Decode(OpcUa_QueryNextRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "QueryNextRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_QueryNextRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(Boolean, ReleaseContinuationPoint); OpcUa_Field_Read(ByteString, ContinuationPoint); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_QueryNextRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_QueryNextRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_QueryNextRequest_EncodeableType = { "QueryNextRequest", OpcUaId_QueryNextRequest, OpcUaId_QueryNextRequest_Encoding_DefaultBinary, OpcUaId_QueryNextRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_QueryNextRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_QueryNextRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_QueryNextRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_QueryNextRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_QueryNextRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_QueryNextRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_QueryNextResponse /*============================================================================ * OpcUa_QueryNextResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_QueryNextResponse_Initialize(OpcUa_QueryNextResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_QueryDataSet, QueryDataSets); OpcUa_Field_Initialize(ByteString, RevisedContinuationPoint); } } /*============================================================================ * OpcUa_QueryNextResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_QueryNextResponse_Clear(OpcUa_QueryNextResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_QueryDataSet, QueryDataSets); OpcUa_Field_Clear(ByteString, RevisedContinuationPoint); } } /*============================================================================ * OpcUa_QueryNextResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_QueryNextResponse_GetSize(OpcUa_QueryNextResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "QueryNextResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_QueryDataSet, QueryDataSets); OpcUa_Field_GetSize(ByteString, RevisedContinuationPoint); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_QueryNextResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_QueryNextResponse_Encode(OpcUa_QueryNextResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "QueryNextResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_QueryDataSet, QueryDataSets); OpcUa_Field_Write(ByteString, RevisedContinuationPoint); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_QueryNextResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_QueryNextResponse_Decode(OpcUa_QueryNextResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "QueryNextResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_QueryNextResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_QueryDataSet, QueryDataSets); OpcUa_Field_Read(ByteString, RevisedContinuationPoint); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_QueryNextResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_QueryNextResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_QueryNextResponse_EncodeableType = { "QueryNextResponse", OpcUaId_QueryNextResponse, OpcUaId_QueryNextResponse_Encoding_DefaultBinary, OpcUaId_QueryNextResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_QueryNextResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_QueryNextResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_QueryNextResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_QueryNextResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_QueryNextResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_QueryNextResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_TimestampsToReturn /*============================================================================ * OpcUa_TimestampsToReturn_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_TimestampsToReturn_EnumeratedValues[] = { { "Source", 0 }, { "Server", 1 }, { "Both", 2 }, { "Neither", 3 }, { "Invalid", 4 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_TimestampsToReturn_EnumeratedType = { "TimestampsToReturn", g_OpcUa_TimestampsToReturn_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_ReadValueId /*============================================================================ * OpcUa_ReadValueId_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ReadValueId_Initialize(OpcUa_ReadValueId* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_Initialize(UInt32, AttributeId); OpcUa_Field_Initialize(String, IndexRange); OpcUa_Field_Initialize(QualifiedName, DataEncoding); } } /*============================================================================ * OpcUa_ReadValueId_Clear *===========================================================================*/ OpcUa_Void OpcUa_ReadValueId_Clear(OpcUa_ReadValueId* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_Clear(UInt32, AttributeId); OpcUa_Field_Clear(String, IndexRange); OpcUa_Field_Clear(QualifiedName, DataEncoding); } } /*============================================================================ * OpcUa_ReadValueId_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadValueId_GetSize(OpcUa_ReadValueId* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadValueId_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSize(UInt32, AttributeId); OpcUa_Field_GetSize(String, IndexRange); OpcUa_Field_GetSize(QualifiedName, DataEncoding); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadValueId_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadValueId_Encode(OpcUa_ReadValueId* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadValueId_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_Write(UInt32, AttributeId); OpcUa_Field_Write(String, IndexRange); OpcUa_Field_Write(QualifiedName, DataEncoding); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadValueId_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadValueId_Decode(OpcUa_ReadValueId* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadValueId_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ReadValueId_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_Read(UInt32, AttributeId); OpcUa_Field_Read(String, IndexRange); OpcUa_Field_Read(QualifiedName, DataEncoding); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ReadValueId_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadValueId_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ReadValueId_EncodeableType = { "ReadValueId", OpcUaId_ReadValueId, OpcUaId_ReadValueId_Encoding_DefaultBinary, OpcUaId_ReadValueId_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ReadValueId), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ReadValueId_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ReadValueId_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ReadValueId_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ReadValueId_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ReadValueId_Decode }; #endif #ifndef OPCUA_EXCLUDE_Read #ifndef OPCUA_EXCLUDE_ReadRequest /*============================================================================ * OpcUa_ReadRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ReadRequest_Initialize(OpcUa_ReadRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(Double, MaxAge); OpcUa_Field_InitializeEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_InitializeEncodeableArray(OpcUa_ReadValueId, NodesToRead); } } /*============================================================================ * OpcUa_ReadRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_ReadRequest_Clear(OpcUa_ReadRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(Double, MaxAge); OpcUa_Field_ClearEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_ClearEncodeableArray(OpcUa_ReadValueId, NodesToRead); } } /*============================================================================ * OpcUa_ReadRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadRequest_GetSize(OpcUa_ReadRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(Double, MaxAge); OpcUa_Field_GetSizeEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_GetSizeEncodeableArray(OpcUa_ReadValueId, NodesToRead); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadRequest_Encode(OpcUa_ReadRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(Double, MaxAge); OpcUa_Field_WriteEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_WriteEncodeableArray(OpcUa_ReadValueId, NodesToRead); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadRequest_Decode(OpcUa_ReadRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ReadRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(Double, MaxAge); OpcUa_Field_ReadEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_ReadEncodeableArray(OpcUa_ReadValueId, NodesToRead); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ReadRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ReadRequest_EncodeableType = { "ReadRequest", OpcUaId_ReadRequest, OpcUaId_ReadRequest_Encoding_DefaultBinary, OpcUaId_ReadRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ReadRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ReadRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ReadRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ReadRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ReadRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ReadRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_ReadResponse /*============================================================================ * OpcUa_ReadResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ReadResponse_Initialize(OpcUa_ReadResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeArray(DataValue, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_ReadResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_ReadResponse_Clear(OpcUa_ReadResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearArray(DataValue, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_ReadResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadResponse_GetSize(OpcUa_ReadResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeArray(DataValue, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadResponse_Encode(OpcUa_ReadResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteArray(DataValue, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadResponse_Decode(OpcUa_ReadResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ReadResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadArray(DataValue, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ReadResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ReadResponse_EncodeableType = { "ReadResponse", OpcUaId_ReadResponse, OpcUaId_ReadResponse_Encoding_DefaultBinary, OpcUaId_ReadResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ReadResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ReadResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ReadResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ReadResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ReadResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ReadResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_HistoryReadValueId /*============================================================================ * OpcUa_HistoryReadValueId_Initialize *===========================================================================*/ OpcUa_Void OpcUa_HistoryReadValueId_Initialize(OpcUa_HistoryReadValueId* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_Initialize(String, IndexRange); OpcUa_Field_Initialize(QualifiedName, DataEncoding); OpcUa_Field_Initialize(ByteString, ContinuationPoint); } } /*============================================================================ * OpcUa_HistoryReadValueId_Clear *===========================================================================*/ OpcUa_Void OpcUa_HistoryReadValueId_Clear(OpcUa_HistoryReadValueId* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_Clear(String, IndexRange); OpcUa_Field_Clear(QualifiedName, DataEncoding); OpcUa_Field_Clear(ByteString, ContinuationPoint); } } /*============================================================================ * OpcUa_HistoryReadValueId_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryReadValueId_GetSize(OpcUa_HistoryReadValueId* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryReadValueId_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSize(String, IndexRange); OpcUa_Field_GetSize(QualifiedName, DataEncoding); OpcUa_Field_GetSize(ByteString, ContinuationPoint); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryReadValueId_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryReadValueId_Encode(OpcUa_HistoryReadValueId* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryReadValueId_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_Write(String, IndexRange); OpcUa_Field_Write(QualifiedName, DataEncoding); OpcUa_Field_Write(ByteString, ContinuationPoint); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryReadValueId_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryReadValueId_Decode(OpcUa_HistoryReadValueId* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryReadValueId_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_HistoryReadValueId_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_Read(String, IndexRange); OpcUa_Field_Read(QualifiedName, DataEncoding); OpcUa_Field_Read(ByteString, ContinuationPoint); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_HistoryReadValueId_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryReadValueId_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_HistoryReadValueId_EncodeableType = { "HistoryReadValueId", OpcUaId_HistoryReadValueId, OpcUaId_HistoryReadValueId_Encoding_DefaultBinary, OpcUaId_HistoryReadValueId_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_HistoryReadValueId), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_HistoryReadValueId_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_HistoryReadValueId_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_HistoryReadValueId_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_HistoryReadValueId_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_HistoryReadValueId_Decode }; #endif #ifndef OPCUA_EXCLUDE_HistoryReadResult /*============================================================================ * OpcUa_HistoryReadResult_Initialize *===========================================================================*/ OpcUa_Void OpcUa_HistoryReadResult_Initialize(OpcUa_HistoryReadResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(StatusCode, StatusCode); OpcUa_Field_Initialize(ByteString, ContinuationPoint); OpcUa_Field_Initialize(ExtensionObject, HistoryData); } } /*============================================================================ * OpcUa_HistoryReadResult_Clear *===========================================================================*/ OpcUa_Void OpcUa_HistoryReadResult_Clear(OpcUa_HistoryReadResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(StatusCode, StatusCode); OpcUa_Field_Clear(ByteString, ContinuationPoint); OpcUa_Field_Clear(ExtensionObject, HistoryData); } } /*============================================================================ * OpcUa_HistoryReadResult_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryReadResult_GetSize(OpcUa_HistoryReadResult* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryReadResult_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(StatusCode, StatusCode); OpcUa_Field_GetSize(ByteString, ContinuationPoint); OpcUa_Field_GetSize(ExtensionObject, HistoryData); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryReadResult_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryReadResult_Encode(OpcUa_HistoryReadResult* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryReadResult_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(StatusCode, StatusCode); OpcUa_Field_Write(ByteString, ContinuationPoint); OpcUa_Field_Write(ExtensionObject, HistoryData); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryReadResult_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryReadResult_Decode(OpcUa_HistoryReadResult* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryReadResult_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_HistoryReadResult_Initialize(a_pValue); OpcUa_Field_Read(StatusCode, StatusCode); OpcUa_Field_Read(ByteString, ContinuationPoint); OpcUa_Field_Read(ExtensionObject, HistoryData); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_HistoryReadResult_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryReadResult_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_HistoryReadResult_EncodeableType = { "HistoryReadResult", OpcUaId_HistoryReadResult, OpcUaId_HistoryReadResult_Encoding_DefaultBinary, OpcUaId_HistoryReadResult_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_HistoryReadResult), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_HistoryReadResult_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_HistoryReadResult_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_HistoryReadResult_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_HistoryReadResult_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_HistoryReadResult_Decode }; #endif #ifndef OPCUA_EXCLUDE_ReadEventDetails /*============================================================================ * OpcUa_ReadEventDetails_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ReadEventDetails_Initialize(OpcUa_ReadEventDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, NumValuesPerNode); OpcUa_Field_Initialize(DateTime, StartTime); OpcUa_Field_Initialize(DateTime, EndTime); OpcUa_Field_InitializeEncodeable(OpcUa_EventFilter, Filter); } } /*============================================================================ * OpcUa_ReadEventDetails_Clear *===========================================================================*/ OpcUa_Void OpcUa_ReadEventDetails_Clear(OpcUa_ReadEventDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, NumValuesPerNode); OpcUa_Field_Clear(DateTime, StartTime); OpcUa_Field_Clear(DateTime, EndTime); OpcUa_Field_ClearEncodeable(OpcUa_EventFilter, Filter); } } /*============================================================================ * OpcUa_ReadEventDetails_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadEventDetails_GetSize(OpcUa_ReadEventDetails* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadEventDetails_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, NumValuesPerNode); OpcUa_Field_GetSize(DateTime, StartTime); OpcUa_Field_GetSize(DateTime, EndTime); OpcUa_Field_GetSizeEncodeable(OpcUa_EventFilter, Filter); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadEventDetails_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadEventDetails_Encode(OpcUa_ReadEventDetails* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadEventDetails_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, NumValuesPerNode); OpcUa_Field_Write(DateTime, StartTime); OpcUa_Field_Write(DateTime, EndTime); OpcUa_Field_WriteEncodeable(OpcUa_EventFilter, Filter); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadEventDetails_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadEventDetails_Decode(OpcUa_ReadEventDetails* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadEventDetails_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ReadEventDetails_Initialize(a_pValue); OpcUa_Field_Read(UInt32, NumValuesPerNode); OpcUa_Field_Read(DateTime, StartTime); OpcUa_Field_Read(DateTime, EndTime); OpcUa_Field_ReadEncodeable(OpcUa_EventFilter, Filter); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ReadEventDetails_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadEventDetails_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ReadEventDetails_EncodeableType = { "ReadEventDetails", OpcUaId_ReadEventDetails, OpcUaId_ReadEventDetails_Encoding_DefaultBinary, OpcUaId_ReadEventDetails_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ReadEventDetails), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ReadEventDetails_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ReadEventDetails_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ReadEventDetails_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ReadEventDetails_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ReadEventDetails_Decode }; #endif #ifndef OPCUA_EXCLUDE_ReadRawModifiedDetails /*============================================================================ * OpcUa_ReadRawModifiedDetails_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ReadRawModifiedDetails_Initialize(OpcUa_ReadRawModifiedDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(Boolean, IsReadModified); OpcUa_Field_Initialize(DateTime, StartTime); OpcUa_Field_Initialize(DateTime, EndTime); OpcUa_Field_Initialize(UInt32, NumValuesPerNode); OpcUa_Field_Initialize(Boolean, ReturnBounds); } } /*============================================================================ * OpcUa_ReadRawModifiedDetails_Clear *===========================================================================*/ OpcUa_Void OpcUa_ReadRawModifiedDetails_Clear(OpcUa_ReadRawModifiedDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(Boolean, IsReadModified); OpcUa_Field_Clear(DateTime, StartTime); OpcUa_Field_Clear(DateTime, EndTime); OpcUa_Field_Clear(UInt32, NumValuesPerNode); OpcUa_Field_Clear(Boolean, ReturnBounds); } } /*============================================================================ * OpcUa_ReadRawModifiedDetails_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadRawModifiedDetails_GetSize(OpcUa_ReadRawModifiedDetails* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadRawModifiedDetails_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(Boolean, IsReadModified); OpcUa_Field_GetSize(DateTime, StartTime); OpcUa_Field_GetSize(DateTime, EndTime); OpcUa_Field_GetSize(UInt32, NumValuesPerNode); OpcUa_Field_GetSize(Boolean, ReturnBounds); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadRawModifiedDetails_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadRawModifiedDetails_Encode(OpcUa_ReadRawModifiedDetails* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadRawModifiedDetails_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(Boolean, IsReadModified); OpcUa_Field_Write(DateTime, StartTime); OpcUa_Field_Write(DateTime, EndTime); OpcUa_Field_Write(UInt32, NumValuesPerNode); OpcUa_Field_Write(Boolean, ReturnBounds); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadRawModifiedDetails_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadRawModifiedDetails_Decode(OpcUa_ReadRawModifiedDetails* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadRawModifiedDetails_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ReadRawModifiedDetails_Initialize(a_pValue); OpcUa_Field_Read(Boolean, IsReadModified); OpcUa_Field_Read(DateTime, StartTime); OpcUa_Field_Read(DateTime, EndTime); OpcUa_Field_Read(UInt32, NumValuesPerNode); OpcUa_Field_Read(Boolean, ReturnBounds); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ReadRawModifiedDetails_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadRawModifiedDetails_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ReadRawModifiedDetails_EncodeableType = { "ReadRawModifiedDetails", OpcUaId_ReadRawModifiedDetails, OpcUaId_ReadRawModifiedDetails_Encoding_DefaultBinary, OpcUaId_ReadRawModifiedDetails_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ReadRawModifiedDetails), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ReadRawModifiedDetails_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ReadRawModifiedDetails_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ReadRawModifiedDetails_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ReadRawModifiedDetails_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ReadRawModifiedDetails_Decode }; #endif #ifndef OPCUA_EXCLUDE_ReadProcessedDetails /*============================================================================ * OpcUa_ReadProcessedDetails_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ReadProcessedDetails_Initialize(OpcUa_ReadProcessedDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(DateTime, StartTime); OpcUa_Field_Initialize(DateTime, EndTime); OpcUa_Field_Initialize(Double, ProcessingInterval); OpcUa_Field_InitializeArray(NodeId, AggregateType); OpcUa_Field_InitializeEncodeable(OpcUa_AggregateConfiguration, AggregateConfiguration); } } /*============================================================================ * OpcUa_ReadProcessedDetails_Clear *===========================================================================*/ OpcUa_Void OpcUa_ReadProcessedDetails_Clear(OpcUa_ReadProcessedDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(DateTime, StartTime); OpcUa_Field_Clear(DateTime, EndTime); OpcUa_Field_Clear(Double, ProcessingInterval); OpcUa_Field_ClearArray(NodeId, AggregateType); OpcUa_Field_ClearEncodeable(OpcUa_AggregateConfiguration, AggregateConfiguration); } } /*============================================================================ * OpcUa_ReadProcessedDetails_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadProcessedDetails_GetSize(OpcUa_ReadProcessedDetails* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadProcessedDetails_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(DateTime, StartTime); OpcUa_Field_GetSize(DateTime, EndTime); OpcUa_Field_GetSize(Double, ProcessingInterval); OpcUa_Field_GetSizeArray(NodeId, AggregateType); OpcUa_Field_GetSizeEncodeable(OpcUa_AggregateConfiguration, AggregateConfiguration); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadProcessedDetails_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadProcessedDetails_Encode(OpcUa_ReadProcessedDetails* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadProcessedDetails_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(DateTime, StartTime); OpcUa_Field_Write(DateTime, EndTime); OpcUa_Field_Write(Double, ProcessingInterval); OpcUa_Field_WriteArray(NodeId, AggregateType); OpcUa_Field_WriteEncodeable(OpcUa_AggregateConfiguration, AggregateConfiguration); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadProcessedDetails_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadProcessedDetails_Decode(OpcUa_ReadProcessedDetails* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadProcessedDetails_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ReadProcessedDetails_Initialize(a_pValue); OpcUa_Field_Read(DateTime, StartTime); OpcUa_Field_Read(DateTime, EndTime); OpcUa_Field_Read(Double, ProcessingInterval); OpcUa_Field_ReadArray(NodeId, AggregateType); OpcUa_Field_ReadEncodeable(OpcUa_AggregateConfiguration, AggregateConfiguration); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ReadProcessedDetails_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadProcessedDetails_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ReadProcessedDetails_EncodeableType = { "ReadProcessedDetails", OpcUaId_ReadProcessedDetails, OpcUaId_ReadProcessedDetails_Encoding_DefaultBinary, OpcUaId_ReadProcessedDetails_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ReadProcessedDetails), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ReadProcessedDetails_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ReadProcessedDetails_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ReadProcessedDetails_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ReadProcessedDetails_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ReadProcessedDetails_Decode }; #endif #ifndef OPCUA_EXCLUDE_ReadAtTimeDetails /*============================================================================ * OpcUa_ReadAtTimeDetails_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ReadAtTimeDetails_Initialize(OpcUa_ReadAtTimeDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeArray(DateTime, ReqTimes); OpcUa_Field_Initialize(Boolean, UseSimpleBounds); } } /*============================================================================ * OpcUa_ReadAtTimeDetails_Clear *===========================================================================*/ OpcUa_Void OpcUa_ReadAtTimeDetails_Clear(OpcUa_ReadAtTimeDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearArray(DateTime, ReqTimes); OpcUa_Field_Clear(Boolean, UseSimpleBounds); } } /*============================================================================ * OpcUa_ReadAtTimeDetails_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadAtTimeDetails_GetSize(OpcUa_ReadAtTimeDetails* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadAtTimeDetails_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeArray(DateTime, ReqTimes); OpcUa_Field_GetSize(Boolean, UseSimpleBounds); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadAtTimeDetails_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadAtTimeDetails_Encode(OpcUa_ReadAtTimeDetails* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadAtTimeDetails_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteArray(DateTime, ReqTimes); OpcUa_Field_Write(Boolean, UseSimpleBounds); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadAtTimeDetails_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadAtTimeDetails_Decode(OpcUa_ReadAtTimeDetails* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadAtTimeDetails_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ReadAtTimeDetails_Initialize(a_pValue); OpcUa_Field_ReadArray(DateTime, ReqTimes); OpcUa_Field_Read(Boolean, UseSimpleBounds); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ReadAtTimeDetails_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadAtTimeDetails_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ReadAtTimeDetails_EncodeableType = { "ReadAtTimeDetails", OpcUaId_ReadAtTimeDetails, OpcUaId_ReadAtTimeDetails_Encoding_DefaultBinary, OpcUaId_ReadAtTimeDetails_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ReadAtTimeDetails), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ReadAtTimeDetails_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ReadAtTimeDetails_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ReadAtTimeDetails_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ReadAtTimeDetails_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ReadAtTimeDetails_Decode }; #endif #ifndef OPCUA_EXCLUDE_ReadAnnotationDataDetails /*============================================================================ * OpcUa_ReadAnnotationDataDetails_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ReadAnnotationDataDetails_Initialize(OpcUa_ReadAnnotationDataDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeArray(DateTime, ReqTimes); } } /*============================================================================ * OpcUa_ReadAnnotationDataDetails_Clear *===========================================================================*/ OpcUa_Void OpcUa_ReadAnnotationDataDetails_Clear(OpcUa_ReadAnnotationDataDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearArray(DateTime, ReqTimes); } } /*============================================================================ * OpcUa_ReadAnnotationDataDetails_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadAnnotationDataDetails_GetSize(OpcUa_ReadAnnotationDataDetails* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadAnnotationDataDetails_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeArray(DateTime, ReqTimes); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadAnnotationDataDetails_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadAnnotationDataDetails_Encode(OpcUa_ReadAnnotationDataDetails* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadAnnotationDataDetails_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteArray(DateTime, ReqTimes); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadAnnotationDataDetails_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ReadAnnotationDataDetails_Decode(OpcUa_ReadAnnotationDataDetails* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ReadAnnotationDataDetails_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ReadAnnotationDataDetails_Initialize(a_pValue); OpcUa_Field_ReadArray(DateTime, ReqTimes); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ReadAnnotationDataDetails_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ReadAnnotationDataDetails_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ReadAnnotationDataDetails_EncodeableType = { "ReadAnnotationDataDetails", OpcUaId_ReadAnnotationDataDetails, OpcUaId_ReadAnnotationDataDetails_Encoding_DefaultBinary, OpcUaId_ReadAnnotationDataDetails_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ReadAnnotationDataDetails), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ReadAnnotationDataDetails_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ReadAnnotationDataDetails_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ReadAnnotationDataDetails_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ReadAnnotationDataDetails_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ReadAnnotationDataDetails_Decode }; #endif #ifndef OPCUA_EXCLUDE_HistoryData /*============================================================================ * OpcUa_HistoryData_Initialize *===========================================================================*/ OpcUa_Void OpcUa_HistoryData_Initialize(OpcUa_HistoryData* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeArray(DataValue, DataValues); } } /*============================================================================ * OpcUa_HistoryData_Clear *===========================================================================*/ OpcUa_Void OpcUa_HistoryData_Clear(OpcUa_HistoryData* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearArray(DataValue, DataValues); } } /*============================================================================ * OpcUa_HistoryData_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryData_GetSize(OpcUa_HistoryData* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryData_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeArray(DataValue, DataValues); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryData_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryData_Encode(OpcUa_HistoryData* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryData_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteArray(DataValue, DataValues); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryData_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryData_Decode(OpcUa_HistoryData* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryData_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_HistoryData_Initialize(a_pValue); OpcUa_Field_ReadArray(DataValue, DataValues); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_HistoryData_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryData_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_HistoryData_EncodeableType = { "HistoryData", OpcUaId_HistoryData, OpcUaId_HistoryData_Encoding_DefaultBinary, OpcUaId_HistoryData_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_HistoryData), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_HistoryData_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_HistoryData_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_HistoryData_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_HistoryData_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_HistoryData_Decode }; #endif #ifndef OPCUA_EXCLUDE_ModificationInfo /*============================================================================ * OpcUa_ModificationInfo_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ModificationInfo_Initialize(OpcUa_ModificationInfo* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(DateTime, ModificationTime); OpcUa_Field_InitializeEnumerated(OpcUa_HistoryUpdateType, UpdateType); OpcUa_Field_Initialize(String, UserName); } } /*============================================================================ * OpcUa_ModificationInfo_Clear *===========================================================================*/ OpcUa_Void OpcUa_ModificationInfo_Clear(OpcUa_ModificationInfo* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(DateTime, ModificationTime); OpcUa_Field_ClearEnumerated(OpcUa_HistoryUpdateType, UpdateType); OpcUa_Field_Clear(String, UserName); } } /*============================================================================ * OpcUa_ModificationInfo_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ModificationInfo_GetSize(OpcUa_ModificationInfo* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ModificationInfo_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(DateTime, ModificationTime); OpcUa_Field_GetSizeEnumerated(OpcUa_HistoryUpdateType, UpdateType); OpcUa_Field_GetSize(String, UserName); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ModificationInfo_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ModificationInfo_Encode(OpcUa_ModificationInfo* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ModificationInfo_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(DateTime, ModificationTime); OpcUa_Field_WriteEnumerated(OpcUa_HistoryUpdateType, UpdateType); OpcUa_Field_Write(String, UserName); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ModificationInfo_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ModificationInfo_Decode(OpcUa_ModificationInfo* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ModificationInfo_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ModificationInfo_Initialize(a_pValue); OpcUa_Field_Read(DateTime, ModificationTime); OpcUa_Field_ReadEnumerated(OpcUa_HistoryUpdateType, UpdateType); OpcUa_Field_Read(String, UserName); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ModificationInfo_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ModificationInfo_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ModificationInfo_EncodeableType = { "ModificationInfo", OpcUaId_ModificationInfo, OpcUaId_ModificationInfo_Encoding_DefaultBinary, OpcUaId_ModificationInfo_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ModificationInfo), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ModificationInfo_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ModificationInfo_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ModificationInfo_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ModificationInfo_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ModificationInfo_Decode }; #endif #ifndef OPCUA_EXCLUDE_HistoryModifiedData /*============================================================================ * OpcUa_HistoryModifiedData_Initialize *===========================================================================*/ OpcUa_Void OpcUa_HistoryModifiedData_Initialize(OpcUa_HistoryModifiedData* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeArray(DataValue, DataValues); OpcUa_Field_InitializeEncodeableArray(OpcUa_ModificationInfo, ModificationInfos); } } /*============================================================================ * OpcUa_HistoryModifiedData_Clear *===========================================================================*/ OpcUa_Void OpcUa_HistoryModifiedData_Clear(OpcUa_HistoryModifiedData* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearArray(DataValue, DataValues); OpcUa_Field_ClearEncodeableArray(OpcUa_ModificationInfo, ModificationInfos); } } /*============================================================================ * OpcUa_HistoryModifiedData_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryModifiedData_GetSize(OpcUa_HistoryModifiedData* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryModifiedData_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeArray(DataValue, DataValues); OpcUa_Field_GetSizeEncodeableArray(OpcUa_ModificationInfo, ModificationInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryModifiedData_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryModifiedData_Encode(OpcUa_HistoryModifiedData* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryModifiedData_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteArray(DataValue, DataValues); OpcUa_Field_WriteEncodeableArray(OpcUa_ModificationInfo, ModificationInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryModifiedData_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryModifiedData_Decode(OpcUa_HistoryModifiedData* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryModifiedData_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_HistoryModifiedData_Initialize(a_pValue); OpcUa_Field_ReadArray(DataValue, DataValues); OpcUa_Field_ReadEncodeableArray(OpcUa_ModificationInfo, ModificationInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_HistoryModifiedData_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryModifiedData_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_HistoryModifiedData_EncodeableType = { "HistoryModifiedData", OpcUaId_HistoryModifiedData, OpcUaId_HistoryModifiedData_Encoding_DefaultBinary, OpcUaId_HistoryModifiedData_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_HistoryModifiedData), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_HistoryModifiedData_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_HistoryModifiedData_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_HistoryModifiedData_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_HistoryModifiedData_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_HistoryModifiedData_Decode }; #endif #ifndef OPCUA_EXCLUDE_HistoryEvent /*============================================================================ * OpcUa_HistoryEvent_Initialize *===========================================================================*/ OpcUa_Void OpcUa_HistoryEvent_Initialize(OpcUa_HistoryEvent* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeableArray(OpcUa_HistoryEventFieldList, Events); } } /*============================================================================ * OpcUa_HistoryEvent_Clear *===========================================================================*/ OpcUa_Void OpcUa_HistoryEvent_Clear(OpcUa_HistoryEvent* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeableArray(OpcUa_HistoryEventFieldList, Events); } } /*============================================================================ * OpcUa_HistoryEvent_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryEvent_GetSize(OpcUa_HistoryEvent* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryEvent_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeableArray(OpcUa_HistoryEventFieldList, Events); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryEvent_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryEvent_Encode(OpcUa_HistoryEvent* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryEvent_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeableArray(OpcUa_HistoryEventFieldList, Events); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryEvent_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryEvent_Decode(OpcUa_HistoryEvent* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryEvent_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_HistoryEvent_Initialize(a_pValue); OpcUa_Field_ReadEncodeableArray(OpcUa_HistoryEventFieldList, Events); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_HistoryEvent_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryEvent_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_HistoryEvent_EncodeableType = { "HistoryEvent", OpcUaId_HistoryEvent, OpcUaId_HistoryEvent_Encoding_DefaultBinary, OpcUaId_HistoryEvent_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_HistoryEvent), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_HistoryEvent_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_HistoryEvent_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_HistoryEvent_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_HistoryEvent_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_HistoryEvent_Decode }; #endif #ifndef OPCUA_EXCLUDE_HistoryRead #ifndef OPCUA_EXCLUDE_HistoryReadRequest /*============================================================================ * OpcUa_HistoryReadRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_HistoryReadRequest_Initialize(OpcUa_HistoryReadRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(ExtensionObject, HistoryReadDetails); OpcUa_Field_InitializeEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_Initialize(Boolean, ReleaseContinuationPoints); OpcUa_Field_InitializeEncodeableArray(OpcUa_HistoryReadValueId, NodesToRead); } } /*============================================================================ * OpcUa_HistoryReadRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_HistoryReadRequest_Clear(OpcUa_HistoryReadRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(ExtensionObject, HistoryReadDetails); OpcUa_Field_ClearEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_Clear(Boolean, ReleaseContinuationPoints); OpcUa_Field_ClearEncodeableArray(OpcUa_HistoryReadValueId, NodesToRead); } } /*============================================================================ * OpcUa_HistoryReadRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryReadRequest_GetSize(OpcUa_HistoryReadRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryReadRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(ExtensionObject, HistoryReadDetails); OpcUa_Field_GetSizeEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_GetSize(Boolean, ReleaseContinuationPoints); OpcUa_Field_GetSizeEncodeableArray(OpcUa_HistoryReadValueId, NodesToRead); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryReadRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryReadRequest_Encode(OpcUa_HistoryReadRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryReadRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(ExtensionObject, HistoryReadDetails); OpcUa_Field_WriteEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_Write(Boolean, ReleaseContinuationPoints); OpcUa_Field_WriteEncodeableArray(OpcUa_HistoryReadValueId, NodesToRead); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryReadRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryReadRequest_Decode(OpcUa_HistoryReadRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryReadRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_HistoryReadRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(ExtensionObject, HistoryReadDetails); OpcUa_Field_ReadEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_Read(Boolean, ReleaseContinuationPoints); OpcUa_Field_ReadEncodeableArray(OpcUa_HistoryReadValueId, NodesToRead); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_HistoryReadRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryReadRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_HistoryReadRequest_EncodeableType = { "HistoryReadRequest", OpcUaId_HistoryReadRequest, OpcUaId_HistoryReadRequest_Encoding_DefaultBinary, OpcUaId_HistoryReadRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_HistoryReadRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_HistoryReadRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_HistoryReadRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_HistoryReadRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_HistoryReadRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_HistoryReadRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_HistoryReadResponse /*============================================================================ * OpcUa_HistoryReadResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_HistoryReadResponse_Initialize(OpcUa_HistoryReadResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_HistoryReadResult, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_HistoryReadResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_HistoryReadResponse_Clear(OpcUa_HistoryReadResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_HistoryReadResult, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_HistoryReadResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryReadResponse_GetSize(OpcUa_HistoryReadResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryReadResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_HistoryReadResult, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryReadResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryReadResponse_Encode(OpcUa_HistoryReadResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryReadResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_HistoryReadResult, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryReadResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryReadResponse_Decode(OpcUa_HistoryReadResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryReadResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_HistoryReadResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_HistoryReadResult, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_HistoryReadResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryReadResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_HistoryReadResponse_EncodeableType = { "HistoryReadResponse", OpcUaId_HistoryReadResponse, OpcUaId_HistoryReadResponse_Encoding_DefaultBinary, OpcUaId_HistoryReadResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_HistoryReadResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_HistoryReadResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_HistoryReadResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_HistoryReadResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_HistoryReadResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_HistoryReadResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_WriteValue /*============================================================================ * OpcUa_WriteValue_Initialize *===========================================================================*/ OpcUa_Void OpcUa_WriteValue_Initialize(OpcUa_WriteValue* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_Initialize(UInt32, AttributeId); OpcUa_Field_Initialize(String, IndexRange); OpcUa_Field_Initialize(DataValue, Value); } } /*============================================================================ * OpcUa_WriteValue_Clear *===========================================================================*/ OpcUa_Void OpcUa_WriteValue_Clear(OpcUa_WriteValue* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_Clear(UInt32, AttributeId); OpcUa_Field_Clear(String, IndexRange); OpcUa_Field_Clear(DataValue, Value); } } /*============================================================================ * OpcUa_WriteValue_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_WriteValue_GetSize(OpcUa_WriteValue* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "WriteValue_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSize(UInt32, AttributeId); OpcUa_Field_GetSize(String, IndexRange); OpcUa_Field_GetSize(DataValue, Value); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_WriteValue_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_WriteValue_Encode(OpcUa_WriteValue* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "WriteValue_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_Write(UInt32, AttributeId); OpcUa_Field_Write(String, IndexRange); OpcUa_Field_Write(DataValue, Value); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_WriteValue_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_WriteValue_Decode(OpcUa_WriteValue* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "WriteValue_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_WriteValue_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_Read(UInt32, AttributeId); OpcUa_Field_Read(String, IndexRange); OpcUa_Field_Read(DataValue, Value); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_WriteValue_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_WriteValue_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_WriteValue_EncodeableType = { "WriteValue", OpcUaId_WriteValue, OpcUaId_WriteValue_Encoding_DefaultBinary, OpcUaId_WriteValue_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_WriteValue), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_WriteValue_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_WriteValue_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_WriteValue_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_WriteValue_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_WriteValue_Decode }; #endif #ifndef OPCUA_EXCLUDE_Write #ifndef OPCUA_EXCLUDE_WriteRequest /*============================================================================ * OpcUa_WriteRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_WriteRequest_Initialize(OpcUa_WriteRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_WriteValue, NodesToWrite); } } /*============================================================================ * OpcUa_WriteRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_WriteRequest_Clear(OpcUa_WriteRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_WriteValue, NodesToWrite); } } /*============================================================================ * OpcUa_WriteRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_WriteRequest_GetSize(OpcUa_WriteRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "WriteRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_WriteValue, NodesToWrite); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_WriteRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_WriteRequest_Encode(OpcUa_WriteRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "WriteRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_WriteValue, NodesToWrite); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_WriteRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_WriteRequest_Decode(OpcUa_WriteRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "WriteRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_WriteRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_WriteValue, NodesToWrite); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_WriteRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_WriteRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_WriteRequest_EncodeableType = { "WriteRequest", OpcUaId_WriteRequest, OpcUaId_WriteRequest_Encoding_DefaultBinary, OpcUaId_WriteRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_WriteRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_WriteRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_WriteRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_WriteRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_WriteRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_WriteRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_WriteResponse /*============================================================================ * OpcUa_WriteResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_WriteResponse_Initialize(OpcUa_WriteResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeArray(StatusCode, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_WriteResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_WriteResponse_Clear(OpcUa_WriteResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearArray(StatusCode, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_WriteResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_WriteResponse_GetSize(OpcUa_WriteResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "WriteResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeArray(StatusCode, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_WriteResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_WriteResponse_Encode(OpcUa_WriteResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "WriteResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteArray(StatusCode, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_WriteResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_WriteResponse_Decode(OpcUa_WriteResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "WriteResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_WriteResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadArray(StatusCode, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_WriteResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_WriteResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_WriteResponse_EncodeableType = { "WriteResponse", OpcUaId_WriteResponse, OpcUaId_WriteResponse_Encoding_DefaultBinary, OpcUaId_WriteResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_WriteResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_WriteResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_WriteResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_WriteResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_WriteResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_WriteResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_HistoryUpdateDetails /*============================================================================ * OpcUa_HistoryUpdateDetails_Initialize *===========================================================================*/ OpcUa_Void OpcUa_HistoryUpdateDetails_Initialize(OpcUa_HistoryUpdateDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); } } /*============================================================================ * OpcUa_HistoryUpdateDetails_Clear *===========================================================================*/ OpcUa_Void OpcUa_HistoryUpdateDetails_Clear(OpcUa_HistoryUpdateDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); } } /*============================================================================ * OpcUa_HistoryUpdateDetails_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryUpdateDetails_GetSize(OpcUa_HistoryUpdateDetails* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryUpdateDetails_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryUpdateDetails_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryUpdateDetails_Encode(OpcUa_HistoryUpdateDetails* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryUpdateDetails_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryUpdateDetails_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryUpdateDetails_Decode(OpcUa_HistoryUpdateDetails* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryUpdateDetails_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_HistoryUpdateDetails_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_HistoryUpdateDetails_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryUpdateDetails_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_HistoryUpdateDetails_EncodeableType = { "HistoryUpdateDetails", OpcUaId_HistoryUpdateDetails, OpcUaId_HistoryUpdateDetails_Encoding_DefaultBinary, OpcUaId_HistoryUpdateDetails_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_HistoryUpdateDetails), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_HistoryUpdateDetails_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_HistoryUpdateDetails_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_HistoryUpdateDetails_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_HistoryUpdateDetails_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_HistoryUpdateDetails_Decode }; #endif #ifndef OPCUA_EXCLUDE_HistoryUpdateType /*============================================================================ * OpcUa_HistoryUpdateType_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_HistoryUpdateType_EnumeratedValues[] = { { "Insert", 1 }, { "Replace", 2 }, { "Update", 3 }, { "Delete", 4 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_HistoryUpdateType_EnumeratedType = { "HistoryUpdateType", g_OpcUa_HistoryUpdateType_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_PerformUpdateType /*============================================================================ * OpcUa_PerformUpdateType_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_PerformUpdateType_EnumeratedValues[] = { { "Insert", 1 }, { "Replace", 2 }, { "Update", 3 }, { "Remove", 4 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_PerformUpdateType_EnumeratedType = { "PerformUpdateType", g_OpcUa_PerformUpdateType_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_UpdateDataDetails /*============================================================================ * OpcUa_UpdateDataDetails_Initialize *===========================================================================*/ OpcUa_Void OpcUa_UpdateDataDetails_Initialize(OpcUa_UpdateDataDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_InitializeEnumerated(OpcUa_PerformUpdateType, PerformInsertReplace); OpcUa_Field_InitializeArray(DataValue, UpdateValues); } } /*============================================================================ * OpcUa_UpdateDataDetails_Clear *===========================================================================*/ OpcUa_Void OpcUa_UpdateDataDetails_Clear(OpcUa_UpdateDataDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_ClearEnumerated(OpcUa_PerformUpdateType, PerformInsertReplace); OpcUa_Field_ClearArray(DataValue, UpdateValues); } } /*============================================================================ * OpcUa_UpdateDataDetails_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_UpdateDataDetails_GetSize(OpcUa_UpdateDataDetails* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UpdateDataDetails_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSizeEnumerated(OpcUa_PerformUpdateType, PerformInsertReplace); OpcUa_Field_GetSizeArray(DataValue, UpdateValues); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UpdateDataDetails_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_UpdateDataDetails_Encode(OpcUa_UpdateDataDetails* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UpdateDataDetails_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_WriteEnumerated(OpcUa_PerformUpdateType, PerformInsertReplace); OpcUa_Field_WriteArray(DataValue, UpdateValues); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UpdateDataDetails_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_UpdateDataDetails_Decode(OpcUa_UpdateDataDetails* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UpdateDataDetails_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_UpdateDataDetails_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_ReadEnumerated(OpcUa_PerformUpdateType, PerformInsertReplace); OpcUa_Field_ReadArray(DataValue, UpdateValues); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_UpdateDataDetails_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UpdateDataDetails_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_UpdateDataDetails_EncodeableType = { "UpdateDataDetails", OpcUaId_UpdateDataDetails, OpcUaId_UpdateDataDetails_Encoding_DefaultBinary, OpcUaId_UpdateDataDetails_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_UpdateDataDetails), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_UpdateDataDetails_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_UpdateDataDetails_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_UpdateDataDetails_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_UpdateDataDetails_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_UpdateDataDetails_Decode }; #endif #ifndef OPCUA_EXCLUDE_UpdateStructureDataDetails /*============================================================================ * OpcUa_UpdateStructureDataDetails_Initialize *===========================================================================*/ OpcUa_Void OpcUa_UpdateStructureDataDetails_Initialize(OpcUa_UpdateStructureDataDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_InitializeEnumerated(OpcUa_PerformUpdateType, PerformInsertReplace); OpcUa_Field_InitializeArray(DataValue, UpdateValues); } } /*============================================================================ * OpcUa_UpdateStructureDataDetails_Clear *===========================================================================*/ OpcUa_Void OpcUa_UpdateStructureDataDetails_Clear(OpcUa_UpdateStructureDataDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_ClearEnumerated(OpcUa_PerformUpdateType, PerformInsertReplace); OpcUa_Field_ClearArray(DataValue, UpdateValues); } } /*============================================================================ * OpcUa_UpdateStructureDataDetails_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_UpdateStructureDataDetails_GetSize(OpcUa_UpdateStructureDataDetails* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UpdateStructureDataDetails_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSizeEnumerated(OpcUa_PerformUpdateType, PerformInsertReplace); OpcUa_Field_GetSizeArray(DataValue, UpdateValues); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UpdateStructureDataDetails_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_UpdateStructureDataDetails_Encode(OpcUa_UpdateStructureDataDetails* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UpdateStructureDataDetails_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_WriteEnumerated(OpcUa_PerformUpdateType, PerformInsertReplace); OpcUa_Field_WriteArray(DataValue, UpdateValues); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UpdateStructureDataDetails_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_UpdateStructureDataDetails_Decode(OpcUa_UpdateStructureDataDetails* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UpdateStructureDataDetails_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_UpdateStructureDataDetails_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_ReadEnumerated(OpcUa_PerformUpdateType, PerformInsertReplace); OpcUa_Field_ReadArray(DataValue, UpdateValues); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_UpdateStructureDataDetails_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UpdateStructureDataDetails_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_UpdateStructureDataDetails_EncodeableType = { "UpdateStructureDataDetails", OpcUaId_UpdateStructureDataDetails, OpcUaId_UpdateStructureDataDetails_Encoding_DefaultBinary, OpcUaId_UpdateStructureDataDetails_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_UpdateStructureDataDetails), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_UpdateStructureDataDetails_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_UpdateStructureDataDetails_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_UpdateStructureDataDetails_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_UpdateStructureDataDetails_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_UpdateStructureDataDetails_Decode }; #endif #ifndef OPCUA_EXCLUDE_UpdateEventDetails /*============================================================================ * OpcUa_UpdateEventDetails_Initialize *===========================================================================*/ OpcUa_Void OpcUa_UpdateEventDetails_Initialize(OpcUa_UpdateEventDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_InitializeEnumerated(OpcUa_PerformUpdateType, PerformInsertReplace); OpcUa_Field_InitializeEncodeable(OpcUa_EventFilter, Filter); OpcUa_Field_InitializeEncodeableArray(OpcUa_HistoryEventFieldList, EventData); } } /*============================================================================ * OpcUa_UpdateEventDetails_Clear *===========================================================================*/ OpcUa_Void OpcUa_UpdateEventDetails_Clear(OpcUa_UpdateEventDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_ClearEnumerated(OpcUa_PerformUpdateType, PerformInsertReplace); OpcUa_Field_ClearEncodeable(OpcUa_EventFilter, Filter); OpcUa_Field_ClearEncodeableArray(OpcUa_HistoryEventFieldList, EventData); } } /*============================================================================ * OpcUa_UpdateEventDetails_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_UpdateEventDetails_GetSize(OpcUa_UpdateEventDetails* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UpdateEventDetails_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSizeEnumerated(OpcUa_PerformUpdateType, PerformInsertReplace); OpcUa_Field_GetSizeEncodeable(OpcUa_EventFilter, Filter); OpcUa_Field_GetSizeEncodeableArray(OpcUa_HistoryEventFieldList, EventData); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UpdateEventDetails_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_UpdateEventDetails_Encode(OpcUa_UpdateEventDetails* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UpdateEventDetails_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_WriteEnumerated(OpcUa_PerformUpdateType, PerformInsertReplace); OpcUa_Field_WriteEncodeable(OpcUa_EventFilter, Filter); OpcUa_Field_WriteEncodeableArray(OpcUa_HistoryEventFieldList, EventData); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UpdateEventDetails_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_UpdateEventDetails_Decode(OpcUa_UpdateEventDetails* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "UpdateEventDetails_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_UpdateEventDetails_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_ReadEnumerated(OpcUa_PerformUpdateType, PerformInsertReplace); OpcUa_Field_ReadEncodeable(OpcUa_EventFilter, Filter); OpcUa_Field_ReadEncodeableArray(OpcUa_HistoryEventFieldList, EventData); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_UpdateEventDetails_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_UpdateEventDetails_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_UpdateEventDetails_EncodeableType = { "UpdateEventDetails", OpcUaId_UpdateEventDetails, OpcUaId_UpdateEventDetails_Encoding_DefaultBinary, OpcUaId_UpdateEventDetails_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_UpdateEventDetails), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_UpdateEventDetails_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_UpdateEventDetails_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_UpdateEventDetails_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_UpdateEventDetails_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_UpdateEventDetails_Decode }; #endif #ifndef OPCUA_EXCLUDE_DeleteRawModifiedDetails /*============================================================================ * OpcUa_DeleteRawModifiedDetails_Initialize *===========================================================================*/ OpcUa_Void OpcUa_DeleteRawModifiedDetails_Initialize(OpcUa_DeleteRawModifiedDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_Initialize(Boolean, IsDeleteModified); OpcUa_Field_Initialize(DateTime, StartTime); OpcUa_Field_Initialize(DateTime, EndTime); } } /*============================================================================ * OpcUa_DeleteRawModifiedDetails_Clear *===========================================================================*/ OpcUa_Void OpcUa_DeleteRawModifiedDetails_Clear(OpcUa_DeleteRawModifiedDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_Clear(Boolean, IsDeleteModified); OpcUa_Field_Clear(DateTime, StartTime); OpcUa_Field_Clear(DateTime, EndTime); } } /*============================================================================ * OpcUa_DeleteRawModifiedDetails_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteRawModifiedDetails_GetSize(OpcUa_DeleteRawModifiedDetails* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteRawModifiedDetails_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSize(Boolean, IsDeleteModified); OpcUa_Field_GetSize(DateTime, StartTime); OpcUa_Field_GetSize(DateTime, EndTime); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteRawModifiedDetails_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteRawModifiedDetails_Encode(OpcUa_DeleteRawModifiedDetails* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteRawModifiedDetails_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_Write(Boolean, IsDeleteModified); OpcUa_Field_Write(DateTime, StartTime); OpcUa_Field_Write(DateTime, EndTime); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteRawModifiedDetails_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteRawModifiedDetails_Decode(OpcUa_DeleteRawModifiedDetails* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteRawModifiedDetails_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_DeleteRawModifiedDetails_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_Read(Boolean, IsDeleteModified); OpcUa_Field_Read(DateTime, StartTime); OpcUa_Field_Read(DateTime, EndTime); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_DeleteRawModifiedDetails_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteRawModifiedDetails_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_DeleteRawModifiedDetails_EncodeableType = { "DeleteRawModifiedDetails", OpcUaId_DeleteRawModifiedDetails, OpcUaId_DeleteRawModifiedDetails_Encoding_DefaultBinary, OpcUaId_DeleteRawModifiedDetails_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_DeleteRawModifiedDetails), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_DeleteRawModifiedDetails_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_DeleteRawModifiedDetails_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_DeleteRawModifiedDetails_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_DeleteRawModifiedDetails_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_DeleteRawModifiedDetails_Decode }; #endif #ifndef OPCUA_EXCLUDE_DeleteAtTimeDetails /*============================================================================ * OpcUa_DeleteAtTimeDetails_Initialize *===========================================================================*/ OpcUa_Void OpcUa_DeleteAtTimeDetails_Initialize(OpcUa_DeleteAtTimeDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_InitializeArray(DateTime, ReqTimes); } } /*============================================================================ * OpcUa_DeleteAtTimeDetails_Clear *===========================================================================*/ OpcUa_Void OpcUa_DeleteAtTimeDetails_Clear(OpcUa_DeleteAtTimeDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_ClearArray(DateTime, ReqTimes); } } /*============================================================================ * OpcUa_DeleteAtTimeDetails_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteAtTimeDetails_GetSize(OpcUa_DeleteAtTimeDetails* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteAtTimeDetails_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSizeArray(DateTime, ReqTimes); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteAtTimeDetails_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteAtTimeDetails_Encode(OpcUa_DeleteAtTimeDetails* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteAtTimeDetails_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_WriteArray(DateTime, ReqTimes); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteAtTimeDetails_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteAtTimeDetails_Decode(OpcUa_DeleteAtTimeDetails* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteAtTimeDetails_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_DeleteAtTimeDetails_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_ReadArray(DateTime, ReqTimes); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_DeleteAtTimeDetails_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteAtTimeDetails_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_DeleteAtTimeDetails_EncodeableType = { "DeleteAtTimeDetails", OpcUaId_DeleteAtTimeDetails, OpcUaId_DeleteAtTimeDetails_Encoding_DefaultBinary, OpcUaId_DeleteAtTimeDetails_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_DeleteAtTimeDetails), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_DeleteAtTimeDetails_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_DeleteAtTimeDetails_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_DeleteAtTimeDetails_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_DeleteAtTimeDetails_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_DeleteAtTimeDetails_Decode }; #endif #ifndef OPCUA_EXCLUDE_DeleteEventDetails /*============================================================================ * OpcUa_DeleteEventDetails_Initialize *===========================================================================*/ OpcUa_Void OpcUa_DeleteEventDetails_Initialize(OpcUa_DeleteEventDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, NodeId); OpcUa_Field_InitializeArray(ByteString, EventIds); } } /*============================================================================ * OpcUa_DeleteEventDetails_Clear *===========================================================================*/ OpcUa_Void OpcUa_DeleteEventDetails_Clear(OpcUa_DeleteEventDetails* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, NodeId); OpcUa_Field_ClearArray(ByteString, EventIds); } } /*============================================================================ * OpcUa_DeleteEventDetails_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteEventDetails_GetSize(OpcUa_DeleteEventDetails* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteEventDetails_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, NodeId); OpcUa_Field_GetSizeArray(ByteString, EventIds); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteEventDetails_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteEventDetails_Encode(OpcUa_DeleteEventDetails* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteEventDetails_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, NodeId); OpcUa_Field_WriteArray(ByteString, EventIds); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteEventDetails_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteEventDetails_Decode(OpcUa_DeleteEventDetails* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteEventDetails_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_DeleteEventDetails_Initialize(a_pValue); OpcUa_Field_Read(NodeId, NodeId); OpcUa_Field_ReadArray(ByteString, EventIds); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_DeleteEventDetails_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteEventDetails_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_DeleteEventDetails_EncodeableType = { "DeleteEventDetails", OpcUaId_DeleteEventDetails, OpcUaId_DeleteEventDetails_Encoding_DefaultBinary, OpcUaId_DeleteEventDetails_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_DeleteEventDetails), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_DeleteEventDetails_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_DeleteEventDetails_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_DeleteEventDetails_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_DeleteEventDetails_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_DeleteEventDetails_Decode }; #endif #ifndef OPCUA_EXCLUDE_HistoryUpdateResult /*============================================================================ * OpcUa_HistoryUpdateResult_Initialize *===========================================================================*/ OpcUa_Void OpcUa_HistoryUpdateResult_Initialize(OpcUa_HistoryUpdateResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(StatusCode, StatusCode); OpcUa_Field_InitializeArray(StatusCode, OperationResults); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_HistoryUpdateResult_Clear *===========================================================================*/ OpcUa_Void OpcUa_HistoryUpdateResult_Clear(OpcUa_HistoryUpdateResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(StatusCode, StatusCode); OpcUa_Field_ClearArray(StatusCode, OperationResults); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_HistoryUpdateResult_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryUpdateResult_GetSize(OpcUa_HistoryUpdateResult* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryUpdateResult_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(StatusCode, StatusCode); OpcUa_Field_GetSizeArray(StatusCode, OperationResults); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryUpdateResult_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryUpdateResult_Encode(OpcUa_HistoryUpdateResult* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryUpdateResult_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(StatusCode, StatusCode); OpcUa_Field_WriteArray(StatusCode, OperationResults); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryUpdateResult_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryUpdateResult_Decode(OpcUa_HistoryUpdateResult* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryUpdateResult_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_HistoryUpdateResult_Initialize(a_pValue); OpcUa_Field_Read(StatusCode, StatusCode); OpcUa_Field_ReadArray(StatusCode, OperationResults); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_HistoryUpdateResult_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryUpdateResult_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_HistoryUpdateResult_EncodeableType = { "HistoryUpdateResult", OpcUaId_HistoryUpdateResult, OpcUaId_HistoryUpdateResult_Encoding_DefaultBinary, OpcUaId_HistoryUpdateResult_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_HistoryUpdateResult), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_HistoryUpdateResult_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_HistoryUpdateResult_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_HistoryUpdateResult_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_HistoryUpdateResult_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_HistoryUpdateResult_Decode }; #endif #ifndef OPCUA_EXCLUDE_HistoryUpdate #ifndef OPCUA_EXCLUDE_HistoryUpdateRequest /*============================================================================ * OpcUa_HistoryUpdateRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_HistoryUpdateRequest_Initialize(OpcUa_HistoryUpdateRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeArray(ExtensionObject, HistoryUpdateDetails); } } /*============================================================================ * OpcUa_HistoryUpdateRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_HistoryUpdateRequest_Clear(OpcUa_HistoryUpdateRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearArray(ExtensionObject, HistoryUpdateDetails); } } /*============================================================================ * OpcUa_HistoryUpdateRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryUpdateRequest_GetSize(OpcUa_HistoryUpdateRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryUpdateRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeArray(ExtensionObject, HistoryUpdateDetails); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryUpdateRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryUpdateRequest_Encode(OpcUa_HistoryUpdateRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryUpdateRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteArray(ExtensionObject, HistoryUpdateDetails); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryUpdateRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryUpdateRequest_Decode(OpcUa_HistoryUpdateRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryUpdateRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_HistoryUpdateRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadArray(ExtensionObject, HistoryUpdateDetails); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_HistoryUpdateRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryUpdateRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_HistoryUpdateRequest_EncodeableType = { "HistoryUpdateRequest", OpcUaId_HistoryUpdateRequest, OpcUaId_HistoryUpdateRequest_Encoding_DefaultBinary, OpcUaId_HistoryUpdateRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_HistoryUpdateRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_HistoryUpdateRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_HistoryUpdateRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_HistoryUpdateRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_HistoryUpdateRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_HistoryUpdateRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_HistoryUpdateResponse /*============================================================================ * OpcUa_HistoryUpdateResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_HistoryUpdateResponse_Initialize(OpcUa_HistoryUpdateResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_HistoryUpdateResult, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_HistoryUpdateResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_HistoryUpdateResponse_Clear(OpcUa_HistoryUpdateResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_HistoryUpdateResult, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_HistoryUpdateResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryUpdateResponse_GetSize(OpcUa_HistoryUpdateResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryUpdateResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_HistoryUpdateResult, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryUpdateResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryUpdateResponse_Encode(OpcUa_HistoryUpdateResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryUpdateResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_HistoryUpdateResult, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryUpdateResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryUpdateResponse_Decode(OpcUa_HistoryUpdateResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryUpdateResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_HistoryUpdateResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_HistoryUpdateResult, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_HistoryUpdateResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryUpdateResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_HistoryUpdateResponse_EncodeableType = { "HistoryUpdateResponse", OpcUaId_HistoryUpdateResponse, OpcUaId_HistoryUpdateResponse_Encoding_DefaultBinary, OpcUaId_HistoryUpdateResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_HistoryUpdateResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_HistoryUpdateResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_HistoryUpdateResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_HistoryUpdateResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_HistoryUpdateResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_HistoryUpdateResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_CallMethodRequest /*============================================================================ * OpcUa_CallMethodRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_CallMethodRequest_Initialize(OpcUa_CallMethodRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, ObjectId); OpcUa_Field_Initialize(NodeId, MethodId); OpcUa_Field_InitializeArray(Variant, InputArguments); } } /*============================================================================ * OpcUa_CallMethodRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_CallMethodRequest_Clear(OpcUa_CallMethodRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, ObjectId); OpcUa_Field_Clear(NodeId, MethodId); OpcUa_Field_ClearArray(Variant, InputArguments); } } /*============================================================================ * OpcUa_CallMethodRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_CallMethodRequest_GetSize(OpcUa_CallMethodRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CallMethodRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, ObjectId); OpcUa_Field_GetSize(NodeId, MethodId); OpcUa_Field_GetSizeArray(Variant, InputArguments); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CallMethodRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_CallMethodRequest_Encode(OpcUa_CallMethodRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CallMethodRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, ObjectId); OpcUa_Field_Write(NodeId, MethodId); OpcUa_Field_WriteArray(Variant, InputArguments); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CallMethodRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_CallMethodRequest_Decode(OpcUa_CallMethodRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CallMethodRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_CallMethodRequest_Initialize(a_pValue); OpcUa_Field_Read(NodeId, ObjectId); OpcUa_Field_Read(NodeId, MethodId); OpcUa_Field_ReadArray(Variant, InputArguments); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_CallMethodRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CallMethodRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_CallMethodRequest_EncodeableType = { "CallMethodRequest", OpcUaId_CallMethodRequest, OpcUaId_CallMethodRequest_Encoding_DefaultBinary, OpcUaId_CallMethodRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_CallMethodRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_CallMethodRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_CallMethodRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_CallMethodRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_CallMethodRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_CallMethodRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_CallMethodResult /*============================================================================ * OpcUa_CallMethodResult_Initialize *===========================================================================*/ OpcUa_Void OpcUa_CallMethodResult_Initialize(OpcUa_CallMethodResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(StatusCode, StatusCode); OpcUa_Field_InitializeArray(StatusCode, InputArgumentResults); OpcUa_Field_InitializeArray(DiagnosticInfo, InputArgumentDiagnosticInfos); OpcUa_Field_InitializeArray(Variant, OutputArguments); } } /*============================================================================ * OpcUa_CallMethodResult_Clear *===========================================================================*/ OpcUa_Void OpcUa_CallMethodResult_Clear(OpcUa_CallMethodResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(StatusCode, StatusCode); OpcUa_Field_ClearArray(StatusCode, InputArgumentResults); OpcUa_Field_ClearArray(DiagnosticInfo, InputArgumentDiagnosticInfos); OpcUa_Field_ClearArray(Variant, OutputArguments); } } /*============================================================================ * OpcUa_CallMethodResult_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_CallMethodResult_GetSize(OpcUa_CallMethodResult* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CallMethodResult_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(StatusCode, StatusCode); OpcUa_Field_GetSizeArray(StatusCode, InputArgumentResults); OpcUa_Field_GetSizeArray(DiagnosticInfo, InputArgumentDiagnosticInfos); OpcUa_Field_GetSizeArray(Variant, OutputArguments); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CallMethodResult_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_CallMethodResult_Encode(OpcUa_CallMethodResult* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CallMethodResult_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(StatusCode, StatusCode); OpcUa_Field_WriteArray(StatusCode, InputArgumentResults); OpcUa_Field_WriteArray(DiagnosticInfo, InputArgumentDiagnosticInfos); OpcUa_Field_WriteArray(Variant, OutputArguments); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CallMethodResult_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_CallMethodResult_Decode(OpcUa_CallMethodResult* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CallMethodResult_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_CallMethodResult_Initialize(a_pValue); OpcUa_Field_Read(StatusCode, StatusCode); OpcUa_Field_ReadArray(StatusCode, InputArgumentResults); OpcUa_Field_ReadArray(DiagnosticInfo, InputArgumentDiagnosticInfos); OpcUa_Field_ReadArray(Variant, OutputArguments); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_CallMethodResult_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CallMethodResult_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_CallMethodResult_EncodeableType = { "CallMethodResult", OpcUaId_CallMethodResult, OpcUaId_CallMethodResult_Encoding_DefaultBinary, OpcUaId_CallMethodResult_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_CallMethodResult), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_CallMethodResult_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_CallMethodResult_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_CallMethodResult_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_CallMethodResult_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_CallMethodResult_Decode }; #endif #ifndef OPCUA_EXCLUDE_Call #ifndef OPCUA_EXCLUDE_CallRequest /*============================================================================ * OpcUa_CallRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_CallRequest_Initialize(OpcUa_CallRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_CallMethodRequest, MethodsToCall); } } /*============================================================================ * OpcUa_CallRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_CallRequest_Clear(OpcUa_CallRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_CallMethodRequest, MethodsToCall); } } /*============================================================================ * OpcUa_CallRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_CallRequest_GetSize(OpcUa_CallRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CallRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_CallMethodRequest, MethodsToCall); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CallRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_CallRequest_Encode(OpcUa_CallRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CallRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_CallMethodRequest, MethodsToCall); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CallRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_CallRequest_Decode(OpcUa_CallRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CallRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_CallRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_CallMethodRequest, MethodsToCall); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_CallRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CallRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_CallRequest_EncodeableType = { "CallRequest", OpcUaId_CallRequest, OpcUaId_CallRequest_Encoding_DefaultBinary, OpcUaId_CallRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_CallRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_CallRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_CallRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_CallRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_CallRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_CallRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_CallResponse /*============================================================================ * OpcUa_CallResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_CallResponse_Initialize(OpcUa_CallResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_CallMethodResult, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_CallResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_CallResponse_Clear(OpcUa_CallResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_CallMethodResult, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_CallResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_CallResponse_GetSize(OpcUa_CallResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CallResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_CallMethodResult, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CallResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_CallResponse_Encode(OpcUa_CallResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CallResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_CallMethodResult, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CallResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_CallResponse_Decode(OpcUa_CallResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CallResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_CallResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_CallMethodResult, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_CallResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CallResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_CallResponse_EncodeableType = { "CallResponse", OpcUaId_CallResponse, OpcUaId_CallResponse_Encoding_DefaultBinary, OpcUaId_CallResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_CallResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_CallResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_CallResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_CallResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_CallResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_CallResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_MonitoringMode /*============================================================================ * OpcUa_MonitoringMode_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_MonitoringMode_EnumeratedValues[] = { { "Disabled", 0 }, { "Sampling", 1 }, { "Reporting", 2 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_MonitoringMode_EnumeratedType = { "MonitoringMode", g_OpcUa_MonitoringMode_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_DataChangeTrigger /*============================================================================ * OpcUa_DataChangeTrigger_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_DataChangeTrigger_EnumeratedValues[] = { { "Status", 0 }, { "StatusValue", 1 }, { "StatusValueTimestamp", 2 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_DataChangeTrigger_EnumeratedType = { "DataChangeTrigger", g_OpcUa_DataChangeTrigger_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_DeadbandType /*============================================================================ * OpcUa_DeadbandType_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_DeadbandType_EnumeratedValues[] = { { "None", 0 }, { "Absolute", 1 }, { "Percent", 2 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_DeadbandType_EnumeratedType = { "DeadbandType", g_OpcUa_DeadbandType_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_DataChangeFilter /*============================================================================ * OpcUa_DataChangeFilter_Initialize *===========================================================================*/ OpcUa_Void OpcUa_DataChangeFilter_Initialize(OpcUa_DataChangeFilter* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEnumerated(OpcUa_DataChangeTrigger, Trigger); OpcUa_Field_Initialize(UInt32, DeadbandType); OpcUa_Field_Initialize(Double, DeadbandValue); } } /*============================================================================ * OpcUa_DataChangeFilter_Clear *===========================================================================*/ OpcUa_Void OpcUa_DataChangeFilter_Clear(OpcUa_DataChangeFilter* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEnumerated(OpcUa_DataChangeTrigger, Trigger); OpcUa_Field_Clear(UInt32, DeadbandType); OpcUa_Field_Clear(Double, DeadbandValue); } } /*============================================================================ * OpcUa_DataChangeFilter_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_DataChangeFilter_GetSize(OpcUa_DataChangeFilter* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DataChangeFilter_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEnumerated(OpcUa_DataChangeTrigger, Trigger); OpcUa_Field_GetSize(UInt32, DeadbandType); OpcUa_Field_GetSize(Double, DeadbandValue); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DataChangeFilter_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_DataChangeFilter_Encode(OpcUa_DataChangeFilter* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DataChangeFilter_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEnumerated(OpcUa_DataChangeTrigger, Trigger); OpcUa_Field_Write(UInt32, DeadbandType); OpcUa_Field_Write(Double, DeadbandValue); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DataChangeFilter_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_DataChangeFilter_Decode(OpcUa_DataChangeFilter* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DataChangeFilter_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_DataChangeFilter_Initialize(a_pValue); OpcUa_Field_ReadEnumerated(OpcUa_DataChangeTrigger, Trigger); OpcUa_Field_Read(UInt32, DeadbandType); OpcUa_Field_Read(Double, DeadbandValue); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_DataChangeFilter_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DataChangeFilter_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_DataChangeFilter_EncodeableType = { "DataChangeFilter", OpcUaId_DataChangeFilter, OpcUaId_DataChangeFilter_Encoding_DefaultBinary, OpcUaId_DataChangeFilter_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_DataChangeFilter), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_DataChangeFilter_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_DataChangeFilter_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_DataChangeFilter_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_DataChangeFilter_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_DataChangeFilter_Decode }; #endif #ifndef OPCUA_EXCLUDE_EventFilter /*============================================================================ * OpcUa_EventFilter_Initialize *===========================================================================*/ OpcUa_Void OpcUa_EventFilter_Initialize(OpcUa_EventFilter* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeableArray(OpcUa_SimpleAttributeOperand, SelectClauses); OpcUa_Field_InitializeEncodeable(OpcUa_ContentFilter, WhereClause); } } /*============================================================================ * OpcUa_EventFilter_Clear *===========================================================================*/ OpcUa_Void OpcUa_EventFilter_Clear(OpcUa_EventFilter* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeableArray(OpcUa_SimpleAttributeOperand, SelectClauses); OpcUa_Field_ClearEncodeable(OpcUa_ContentFilter, WhereClause); } } /*============================================================================ * OpcUa_EventFilter_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_EventFilter_GetSize(OpcUa_EventFilter* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EventFilter_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeableArray(OpcUa_SimpleAttributeOperand, SelectClauses); OpcUa_Field_GetSizeEncodeable(OpcUa_ContentFilter, WhereClause); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EventFilter_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_EventFilter_Encode(OpcUa_EventFilter* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EventFilter_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeableArray(OpcUa_SimpleAttributeOperand, SelectClauses); OpcUa_Field_WriteEncodeable(OpcUa_ContentFilter, WhereClause); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EventFilter_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_EventFilter_Decode(OpcUa_EventFilter* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EventFilter_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_EventFilter_Initialize(a_pValue); OpcUa_Field_ReadEncodeableArray(OpcUa_SimpleAttributeOperand, SelectClauses); OpcUa_Field_ReadEncodeable(OpcUa_ContentFilter, WhereClause); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_EventFilter_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EventFilter_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_EventFilter_EncodeableType = { "EventFilter", OpcUaId_EventFilter, OpcUaId_EventFilter_Encoding_DefaultBinary, OpcUaId_EventFilter_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_EventFilter), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_EventFilter_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_EventFilter_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_EventFilter_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_EventFilter_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_EventFilter_Decode }; #endif #ifndef OPCUA_EXCLUDE_AggregateConfiguration /*============================================================================ * OpcUa_AggregateConfiguration_Initialize *===========================================================================*/ OpcUa_Void OpcUa_AggregateConfiguration_Initialize(OpcUa_AggregateConfiguration* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(Boolean, UseServerCapabilitiesDefaults); OpcUa_Field_Initialize(Boolean, TreatUncertainAsBad); OpcUa_Field_Initialize(Byte, PercentDataBad); OpcUa_Field_Initialize(Byte, PercentDataGood); OpcUa_Field_Initialize(Boolean, UseSlopedExtrapolation); } } /*============================================================================ * OpcUa_AggregateConfiguration_Clear *===========================================================================*/ OpcUa_Void OpcUa_AggregateConfiguration_Clear(OpcUa_AggregateConfiguration* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(Boolean, UseServerCapabilitiesDefaults); OpcUa_Field_Clear(Boolean, TreatUncertainAsBad); OpcUa_Field_Clear(Byte, PercentDataBad); OpcUa_Field_Clear(Byte, PercentDataGood); OpcUa_Field_Clear(Boolean, UseSlopedExtrapolation); } } /*============================================================================ * OpcUa_AggregateConfiguration_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_AggregateConfiguration_GetSize(OpcUa_AggregateConfiguration* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AggregateConfiguration_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(Boolean, UseServerCapabilitiesDefaults); OpcUa_Field_GetSize(Boolean, TreatUncertainAsBad); OpcUa_Field_GetSize(Byte, PercentDataBad); OpcUa_Field_GetSize(Byte, PercentDataGood); OpcUa_Field_GetSize(Boolean, UseSlopedExtrapolation); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AggregateConfiguration_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_AggregateConfiguration_Encode(OpcUa_AggregateConfiguration* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AggregateConfiguration_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(Boolean, UseServerCapabilitiesDefaults); OpcUa_Field_Write(Boolean, TreatUncertainAsBad); OpcUa_Field_Write(Byte, PercentDataBad); OpcUa_Field_Write(Byte, PercentDataGood); OpcUa_Field_Write(Boolean, UseSlopedExtrapolation); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AggregateConfiguration_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_AggregateConfiguration_Decode(OpcUa_AggregateConfiguration* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AggregateConfiguration_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_AggregateConfiguration_Initialize(a_pValue); OpcUa_Field_Read(Boolean, UseServerCapabilitiesDefaults); OpcUa_Field_Read(Boolean, TreatUncertainAsBad); OpcUa_Field_Read(Byte, PercentDataBad); OpcUa_Field_Read(Byte, PercentDataGood); OpcUa_Field_Read(Boolean, UseSlopedExtrapolation); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_AggregateConfiguration_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AggregateConfiguration_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_AggregateConfiguration_EncodeableType = { "AggregateConfiguration", OpcUaId_AggregateConfiguration, OpcUaId_AggregateConfiguration_Encoding_DefaultBinary, OpcUaId_AggregateConfiguration_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_AggregateConfiguration), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_AggregateConfiguration_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_AggregateConfiguration_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_AggregateConfiguration_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_AggregateConfiguration_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_AggregateConfiguration_Decode }; #endif #ifndef OPCUA_EXCLUDE_AggregateFilter /*============================================================================ * OpcUa_AggregateFilter_Initialize *===========================================================================*/ OpcUa_Void OpcUa_AggregateFilter_Initialize(OpcUa_AggregateFilter* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(DateTime, StartTime); OpcUa_Field_Initialize(NodeId, AggregateType); OpcUa_Field_Initialize(Double, ProcessingInterval); OpcUa_Field_InitializeEncodeable(OpcUa_AggregateConfiguration, AggregateConfiguration); } } /*============================================================================ * OpcUa_AggregateFilter_Clear *===========================================================================*/ OpcUa_Void OpcUa_AggregateFilter_Clear(OpcUa_AggregateFilter* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(DateTime, StartTime); OpcUa_Field_Clear(NodeId, AggregateType); OpcUa_Field_Clear(Double, ProcessingInterval); OpcUa_Field_ClearEncodeable(OpcUa_AggregateConfiguration, AggregateConfiguration); } } /*============================================================================ * OpcUa_AggregateFilter_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_AggregateFilter_GetSize(OpcUa_AggregateFilter* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AggregateFilter_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(DateTime, StartTime); OpcUa_Field_GetSize(NodeId, AggregateType); OpcUa_Field_GetSize(Double, ProcessingInterval); OpcUa_Field_GetSizeEncodeable(OpcUa_AggregateConfiguration, AggregateConfiguration); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AggregateFilter_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_AggregateFilter_Encode(OpcUa_AggregateFilter* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AggregateFilter_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(DateTime, StartTime); OpcUa_Field_Write(NodeId, AggregateType); OpcUa_Field_Write(Double, ProcessingInterval); OpcUa_Field_WriteEncodeable(OpcUa_AggregateConfiguration, AggregateConfiguration); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AggregateFilter_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_AggregateFilter_Decode(OpcUa_AggregateFilter* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AggregateFilter_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_AggregateFilter_Initialize(a_pValue); OpcUa_Field_Read(DateTime, StartTime); OpcUa_Field_Read(NodeId, AggregateType); OpcUa_Field_Read(Double, ProcessingInterval); OpcUa_Field_ReadEncodeable(OpcUa_AggregateConfiguration, AggregateConfiguration); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_AggregateFilter_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AggregateFilter_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_AggregateFilter_EncodeableType = { "AggregateFilter", OpcUaId_AggregateFilter, OpcUaId_AggregateFilter_Encoding_DefaultBinary, OpcUaId_AggregateFilter_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_AggregateFilter), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_AggregateFilter_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_AggregateFilter_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_AggregateFilter_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_AggregateFilter_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_AggregateFilter_Decode }; #endif #ifndef OPCUA_EXCLUDE_EventFilterResult /*============================================================================ * OpcUa_EventFilterResult_Initialize *===========================================================================*/ OpcUa_Void OpcUa_EventFilterResult_Initialize(OpcUa_EventFilterResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeArray(StatusCode, SelectClauseResults); OpcUa_Field_InitializeArray(DiagnosticInfo, SelectClauseDiagnosticInfos); OpcUa_Field_InitializeEncodeable(OpcUa_ContentFilterResult, WhereClauseResult); } } /*============================================================================ * OpcUa_EventFilterResult_Clear *===========================================================================*/ OpcUa_Void OpcUa_EventFilterResult_Clear(OpcUa_EventFilterResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearArray(StatusCode, SelectClauseResults); OpcUa_Field_ClearArray(DiagnosticInfo, SelectClauseDiagnosticInfos); OpcUa_Field_ClearEncodeable(OpcUa_ContentFilterResult, WhereClauseResult); } } /*============================================================================ * OpcUa_EventFilterResult_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_EventFilterResult_GetSize(OpcUa_EventFilterResult* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EventFilterResult_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeArray(StatusCode, SelectClauseResults); OpcUa_Field_GetSizeArray(DiagnosticInfo, SelectClauseDiagnosticInfos); OpcUa_Field_GetSizeEncodeable(OpcUa_ContentFilterResult, WhereClauseResult); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EventFilterResult_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_EventFilterResult_Encode(OpcUa_EventFilterResult* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EventFilterResult_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteArray(StatusCode, SelectClauseResults); OpcUa_Field_WriteArray(DiagnosticInfo, SelectClauseDiagnosticInfos); OpcUa_Field_WriteEncodeable(OpcUa_ContentFilterResult, WhereClauseResult); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EventFilterResult_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_EventFilterResult_Decode(OpcUa_EventFilterResult* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EventFilterResult_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_EventFilterResult_Initialize(a_pValue); OpcUa_Field_ReadArray(StatusCode, SelectClauseResults); OpcUa_Field_ReadArray(DiagnosticInfo, SelectClauseDiagnosticInfos); OpcUa_Field_ReadEncodeable(OpcUa_ContentFilterResult, WhereClauseResult); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_EventFilterResult_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EventFilterResult_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_EventFilterResult_EncodeableType = { "EventFilterResult", OpcUaId_EventFilterResult, OpcUaId_EventFilterResult_Encoding_DefaultBinary, OpcUaId_EventFilterResult_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_EventFilterResult), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_EventFilterResult_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_EventFilterResult_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_EventFilterResult_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_EventFilterResult_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_EventFilterResult_Decode }; #endif #ifndef OPCUA_EXCLUDE_AggregateFilterResult /*============================================================================ * OpcUa_AggregateFilterResult_Initialize *===========================================================================*/ OpcUa_Void OpcUa_AggregateFilterResult_Initialize(OpcUa_AggregateFilterResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(DateTime, RevisedStartTime); OpcUa_Field_Initialize(Double, RevisedProcessingInterval); OpcUa_Field_InitializeEncodeable(OpcUa_AggregateConfiguration, RevisedAggregateConfiguration); } } /*============================================================================ * OpcUa_AggregateFilterResult_Clear *===========================================================================*/ OpcUa_Void OpcUa_AggregateFilterResult_Clear(OpcUa_AggregateFilterResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(DateTime, RevisedStartTime); OpcUa_Field_Clear(Double, RevisedProcessingInterval); OpcUa_Field_ClearEncodeable(OpcUa_AggregateConfiguration, RevisedAggregateConfiguration); } } /*============================================================================ * OpcUa_AggregateFilterResult_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_AggregateFilterResult_GetSize(OpcUa_AggregateFilterResult* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AggregateFilterResult_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(DateTime, RevisedStartTime); OpcUa_Field_GetSize(Double, RevisedProcessingInterval); OpcUa_Field_GetSizeEncodeable(OpcUa_AggregateConfiguration, RevisedAggregateConfiguration); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AggregateFilterResult_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_AggregateFilterResult_Encode(OpcUa_AggregateFilterResult* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AggregateFilterResult_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(DateTime, RevisedStartTime); OpcUa_Field_Write(Double, RevisedProcessingInterval); OpcUa_Field_WriteEncodeable(OpcUa_AggregateConfiguration, RevisedAggregateConfiguration); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AggregateFilterResult_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_AggregateFilterResult_Decode(OpcUa_AggregateFilterResult* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AggregateFilterResult_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_AggregateFilterResult_Initialize(a_pValue); OpcUa_Field_Read(DateTime, RevisedStartTime); OpcUa_Field_Read(Double, RevisedProcessingInterval); OpcUa_Field_ReadEncodeable(OpcUa_AggregateConfiguration, RevisedAggregateConfiguration); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_AggregateFilterResult_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AggregateFilterResult_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_AggregateFilterResult_EncodeableType = { "AggregateFilterResult", OpcUaId_AggregateFilterResult, OpcUaId_AggregateFilterResult_Encoding_DefaultBinary, OpcUaId_AggregateFilterResult_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_AggregateFilterResult), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_AggregateFilterResult_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_AggregateFilterResult_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_AggregateFilterResult_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_AggregateFilterResult_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_AggregateFilterResult_Decode }; #endif #ifndef OPCUA_EXCLUDE_MonitoringParameters /*============================================================================ * OpcUa_MonitoringParameters_Initialize *===========================================================================*/ OpcUa_Void OpcUa_MonitoringParameters_Initialize(OpcUa_MonitoringParameters* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, ClientHandle); OpcUa_Field_Initialize(Double, SamplingInterval); OpcUa_Field_Initialize(ExtensionObject, Filter); OpcUa_Field_Initialize(UInt32, QueueSize); OpcUa_Field_Initialize(Boolean, DiscardOldest); } } /*============================================================================ * OpcUa_MonitoringParameters_Clear *===========================================================================*/ OpcUa_Void OpcUa_MonitoringParameters_Clear(OpcUa_MonitoringParameters* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, ClientHandle); OpcUa_Field_Clear(Double, SamplingInterval); OpcUa_Field_Clear(ExtensionObject, Filter); OpcUa_Field_Clear(UInt32, QueueSize); OpcUa_Field_Clear(Boolean, DiscardOldest); } } /*============================================================================ * OpcUa_MonitoringParameters_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_MonitoringParameters_GetSize(OpcUa_MonitoringParameters* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MonitoringParameters_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, ClientHandle); OpcUa_Field_GetSize(Double, SamplingInterval); OpcUa_Field_GetSize(ExtensionObject, Filter); OpcUa_Field_GetSize(UInt32, QueueSize); OpcUa_Field_GetSize(Boolean, DiscardOldest); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MonitoringParameters_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_MonitoringParameters_Encode(OpcUa_MonitoringParameters* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MonitoringParameters_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, ClientHandle); OpcUa_Field_Write(Double, SamplingInterval); OpcUa_Field_Write(ExtensionObject, Filter); OpcUa_Field_Write(UInt32, QueueSize); OpcUa_Field_Write(Boolean, DiscardOldest); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MonitoringParameters_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_MonitoringParameters_Decode(OpcUa_MonitoringParameters* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MonitoringParameters_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_MonitoringParameters_Initialize(a_pValue); OpcUa_Field_Read(UInt32, ClientHandle); OpcUa_Field_Read(Double, SamplingInterval); OpcUa_Field_Read(ExtensionObject, Filter); OpcUa_Field_Read(UInt32, QueueSize); OpcUa_Field_Read(Boolean, DiscardOldest); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_MonitoringParameters_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MonitoringParameters_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_MonitoringParameters_EncodeableType = { "MonitoringParameters", OpcUaId_MonitoringParameters, OpcUaId_MonitoringParameters_Encoding_DefaultBinary, OpcUaId_MonitoringParameters_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_MonitoringParameters), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_MonitoringParameters_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_MonitoringParameters_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_MonitoringParameters_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_MonitoringParameters_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_MonitoringParameters_Decode }; #endif #ifndef OPCUA_EXCLUDE_MonitoredItemCreateRequest /*============================================================================ * OpcUa_MonitoredItemCreateRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_MonitoredItemCreateRequest_Initialize(OpcUa_MonitoredItemCreateRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ReadValueId, ItemToMonitor); OpcUa_Field_InitializeEnumerated(OpcUa_MonitoringMode, MonitoringMode); OpcUa_Field_InitializeEncodeable(OpcUa_MonitoringParameters, RequestedParameters); } } /*============================================================================ * OpcUa_MonitoredItemCreateRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_MonitoredItemCreateRequest_Clear(OpcUa_MonitoredItemCreateRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ReadValueId, ItemToMonitor); OpcUa_Field_ClearEnumerated(OpcUa_MonitoringMode, MonitoringMode); OpcUa_Field_ClearEncodeable(OpcUa_MonitoringParameters, RequestedParameters); } } /*============================================================================ * OpcUa_MonitoredItemCreateRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_MonitoredItemCreateRequest_GetSize(OpcUa_MonitoredItemCreateRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MonitoredItemCreateRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ReadValueId, ItemToMonitor); OpcUa_Field_GetSizeEnumerated(OpcUa_MonitoringMode, MonitoringMode); OpcUa_Field_GetSizeEncodeable(OpcUa_MonitoringParameters, RequestedParameters); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MonitoredItemCreateRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_MonitoredItemCreateRequest_Encode(OpcUa_MonitoredItemCreateRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MonitoredItemCreateRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ReadValueId, ItemToMonitor); OpcUa_Field_WriteEnumerated(OpcUa_MonitoringMode, MonitoringMode); OpcUa_Field_WriteEncodeable(OpcUa_MonitoringParameters, RequestedParameters); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MonitoredItemCreateRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_MonitoredItemCreateRequest_Decode(OpcUa_MonitoredItemCreateRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MonitoredItemCreateRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_MonitoredItemCreateRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ReadValueId, ItemToMonitor); OpcUa_Field_ReadEnumerated(OpcUa_MonitoringMode, MonitoringMode); OpcUa_Field_ReadEncodeable(OpcUa_MonitoringParameters, RequestedParameters); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_MonitoredItemCreateRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MonitoredItemCreateRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_MonitoredItemCreateRequest_EncodeableType = { "MonitoredItemCreateRequest", OpcUaId_MonitoredItemCreateRequest, OpcUaId_MonitoredItemCreateRequest_Encoding_DefaultBinary, OpcUaId_MonitoredItemCreateRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_MonitoredItemCreateRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_MonitoredItemCreateRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_MonitoredItemCreateRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_MonitoredItemCreateRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_MonitoredItemCreateRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_MonitoredItemCreateRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_MonitoredItemCreateResult /*============================================================================ * OpcUa_MonitoredItemCreateResult_Initialize *===========================================================================*/ OpcUa_Void OpcUa_MonitoredItemCreateResult_Initialize(OpcUa_MonitoredItemCreateResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(StatusCode, StatusCode); OpcUa_Field_Initialize(UInt32, MonitoredItemId); OpcUa_Field_Initialize(Double, RevisedSamplingInterval); OpcUa_Field_Initialize(UInt32, RevisedQueueSize); OpcUa_Field_Initialize(ExtensionObject, FilterResult); } } /*============================================================================ * OpcUa_MonitoredItemCreateResult_Clear *===========================================================================*/ OpcUa_Void OpcUa_MonitoredItemCreateResult_Clear(OpcUa_MonitoredItemCreateResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(StatusCode, StatusCode); OpcUa_Field_Clear(UInt32, MonitoredItemId); OpcUa_Field_Clear(Double, RevisedSamplingInterval); OpcUa_Field_Clear(UInt32, RevisedQueueSize); OpcUa_Field_Clear(ExtensionObject, FilterResult); } } /*============================================================================ * OpcUa_MonitoredItemCreateResult_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_MonitoredItemCreateResult_GetSize(OpcUa_MonitoredItemCreateResult* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MonitoredItemCreateResult_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(StatusCode, StatusCode); OpcUa_Field_GetSize(UInt32, MonitoredItemId); OpcUa_Field_GetSize(Double, RevisedSamplingInterval); OpcUa_Field_GetSize(UInt32, RevisedQueueSize); OpcUa_Field_GetSize(ExtensionObject, FilterResult); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MonitoredItemCreateResult_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_MonitoredItemCreateResult_Encode(OpcUa_MonitoredItemCreateResult* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MonitoredItemCreateResult_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(StatusCode, StatusCode); OpcUa_Field_Write(UInt32, MonitoredItemId); OpcUa_Field_Write(Double, RevisedSamplingInterval); OpcUa_Field_Write(UInt32, RevisedQueueSize); OpcUa_Field_Write(ExtensionObject, FilterResult); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MonitoredItemCreateResult_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_MonitoredItemCreateResult_Decode(OpcUa_MonitoredItemCreateResult* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MonitoredItemCreateResult_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_MonitoredItemCreateResult_Initialize(a_pValue); OpcUa_Field_Read(StatusCode, StatusCode); OpcUa_Field_Read(UInt32, MonitoredItemId); OpcUa_Field_Read(Double, RevisedSamplingInterval); OpcUa_Field_Read(UInt32, RevisedQueueSize); OpcUa_Field_Read(ExtensionObject, FilterResult); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_MonitoredItemCreateResult_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MonitoredItemCreateResult_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_MonitoredItemCreateResult_EncodeableType = { "MonitoredItemCreateResult", OpcUaId_MonitoredItemCreateResult, OpcUaId_MonitoredItemCreateResult_Encoding_DefaultBinary, OpcUaId_MonitoredItemCreateResult_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_MonitoredItemCreateResult), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_MonitoredItemCreateResult_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_MonitoredItemCreateResult_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_MonitoredItemCreateResult_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_MonitoredItemCreateResult_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_MonitoredItemCreateResult_Decode }; #endif #ifndef OPCUA_EXCLUDE_CreateMonitoredItems #ifndef OPCUA_EXCLUDE_CreateMonitoredItemsRequest /*============================================================================ * OpcUa_CreateMonitoredItemsRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_CreateMonitoredItemsRequest_Initialize(OpcUa_CreateMonitoredItemsRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(UInt32, SubscriptionId); OpcUa_Field_InitializeEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_InitializeEncodeableArray(OpcUa_MonitoredItemCreateRequest, ItemsToCreate); } } /*============================================================================ * OpcUa_CreateMonitoredItemsRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_CreateMonitoredItemsRequest_Clear(OpcUa_CreateMonitoredItemsRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(UInt32, SubscriptionId); OpcUa_Field_ClearEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_ClearEncodeableArray(OpcUa_MonitoredItemCreateRequest, ItemsToCreate); } } /*============================================================================ * OpcUa_CreateMonitoredItemsRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_CreateMonitoredItemsRequest_GetSize(OpcUa_CreateMonitoredItemsRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CreateMonitoredItemsRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(UInt32, SubscriptionId); OpcUa_Field_GetSizeEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_GetSizeEncodeableArray(OpcUa_MonitoredItemCreateRequest, ItemsToCreate); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CreateMonitoredItemsRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_CreateMonitoredItemsRequest_Encode(OpcUa_CreateMonitoredItemsRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CreateMonitoredItemsRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(UInt32, SubscriptionId); OpcUa_Field_WriteEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_WriteEncodeableArray(OpcUa_MonitoredItemCreateRequest, ItemsToCreate); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CreateMonitoredItemsRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_CreateMonitoredItemsRequest_Decode(OpcUa_CreateMonitoredItemsRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CreateMonitoredItemsRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_CreateMonitoredItemsRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(UInt32, SubscriptionId); OpcUa_Field_ReadEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_ReadEncodeableArray(OpcUa_MonitoredItemCreateRequest, ItemsToCreate); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_CreateMonitoredItemsRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CreateMonitoredItemsRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_CreateMonitoredItemsRequest_EncodeableType = { "CreateMonitoredItemsRequest", OpcUaId_CreateMonitoredItemsRequest, OpcUaId_CreateMonitoredItemsRequest_Encoding_DefaultBinary, OpcUaId_CreateMonitoredItemsRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_CreateMonitoredItemsRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_CreateMonitoredItemsRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_CreateMonitoredItemsRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_CreateMonitoredItemsRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_CreateMonitoredItemsRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_CreateMonitoredItemsRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_CreateMonitoredItemsResponse /*============================================================================ * OpcUa_CreateMonitoredItemsResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_CreateMonitoredItemsResponse_Initialize(OpcUa_CreateMonitoredItemsResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_MonitoredItemCreateResult, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_CreateMonitoredItemsResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_CreateMonitoredItemsResponse_Clear(OpcUa_CreateMonitoredItemsResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_MonitoredItemCreateResult, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_CreateMonitoredItemsResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_CreateMonitoredItemsResponse_GetSize(OpcUa_CreateMonitoredItemsResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CreateMonitoredItemsResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_MonitoredItemCreateResult, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CreateMonitoredItemsResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_CreateMonitoredItemsResponse_Encode(OpcUa_CreateMonitoredItemsResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CreateMonitoredItemsResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_MonitoredItemCreateResult, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CreateMonitoredItemsResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_CreateMonitoredItemsResponse_Decode(OpcUa_CreateMonitoredItemsResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CreateMonitoredItemsResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_CreateMonitoredItemsResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_MonitoredItemCreateResult, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_CreateMonitoredItemsResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CreateMonitoredItemsResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_CreateMonitoredItemsResponse_EncodeableType = { "CreateMonitoredItemsResponse", OpcUaId_CreateMonitoredItemsResponse, OpcUaId_CreateMonitoredItemsResponse_Encoding_DefaultBinary, OpcUaId_CreateMonitoredItemsResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_CreateMonitoredItemsResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_CreateMonitoredItemsResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_CreateMonitoredItemsResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_CreateMonitoredItemsResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_CreateMonitoredItemsResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_CreateMonitoredItemsResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_MonitoredItemModifyRequest /*============================================================================ * OpcUa_MonitoredItemModifyRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_MonitoredItemModifyRequest_Initialize(OpcUa_MonitoredItemModifyRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, MonitoredItemId); OpcUa_Field_InitializeEncodeable(OpcUa_MonitoringParameters, RequestedParameters); } } /*============================================================================ * OpcUa_MonitoredItemModifyRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_MonitoredItemModifyRequest_Clear(OpcUa_MonitoredItemModifyRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, MonitoredItemId); OpcUa_Field_ClearEncodeable(OpcUa_MonitoringParameters, RequestedParameters); } } /*============================================================================ * OpcUa_MonitoredItemModifyRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_MonitoredItemModifyRequest_GetSize(OpcUa_MonitoredItemModifyRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MonitoredItemModifyRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, MonitoredItemId); OpcUa_Field_GetSizeEncodeable(OpcUa_MonitoringParameters, RequestedParameters); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MonitoredItemModifyRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_MonitoredItemModifyRequest_Encode(OpcUa_MonitoredItemModifyRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MonitoredItemModifyRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, MonitoredItemId); OpcUa_Field_WriteEncodeable(OpcUa_MonitoringParameters, RequestedParameters); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MonitoredItemModifyRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_MonitoredItemModifyRequest_Decode(OpcUa_MonitoredItemModifyRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MonitoredItemModifyRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_MonitoredItemModifyRequest_Initialize(a_pValue); OpcUa_Field_Read(UInt32, MonitoredItemId); OpcUa_Field_ReadEncodeable(OpcUa_MonitoringParameters, RequestedParameters); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_MonitoredItemModifyRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MonitoredItemModifyRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_MonitoredItemModifyRequest_EncodeableType = { "MonitoredItemModifyRequest", OpcUaId_MonitoredItemModifyRequest, OpcUaId_MonitoredItemModifyRequest_Encoding_DefaultBinary, OpcUaId_MonitoredItemModifyRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_MonitoredItemModifyRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_MonitoredItemModifyRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_MonitoredItemModifyRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_MonitoredItemModifyRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_MonitoredItemModifyRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_MonitoredItemModifyRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_MonitoredItemModifyResult /*============================================================================ * OpcUa_MonitoredItemModifyResult_Initialize *===========================================================================*/ OpcUa_Void OpcUa_MonitoredItemModifyResult_Initialize(OpcUa_MonitoredItemModifyResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(StatusCode, StatusCode); OpcUa_Field_Initialize(Double, RevisedSamplingInterval); OpcUa_Field_Initialize(UInt32, RevisedQueueSize); OpcUa_Field_Initialize(ExtensionObject, FilterResult); } } /*============================================================================ * OpcUa_MonitoredItemModifyResult_Clear *===========================================================================*/ OpcUa_Void OpcUa_MonitoredItemModifyResult_Clear(OpcUa_MonitoredItemModifyResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(StatusCode, StatusCode); OpcUa_Field_Clear(Double, RevisedSamplingInterval); OpcUa_Field_Clear(UInt32, RevisedQueueSize); OpcUa_Field_Clear(ExtensionObject, FilterResult); } } /*============================================================================ * OpcUa_MonitoredItemModifyResult_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_MonitoredItemModifyResult_GetSize(OpcUa_MonitoredItemModifyResult* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MonitoredItemModifyResult_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(StatusCode, StatusCode); OpcUa_Field_GetSize(Double, RevisedSamplingInterval); OpcUa_Field_GetSize(UInt32, RevisedQueueSize); OpcUa_Field_GetSize(ExtensionObject, FilterResult); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MonitoredItemModifyResult_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_MonitoredItemModifyResult_Encode(OpcUa_MonitoredItemModifyResult* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MonitoredItemModifyResult_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(StatusCode, StatusCode); OpcUa_Field_Write(Double, RevisedSamplingInterval); OpcUa_Field_Write(UInt32, RevisedQueueSize); OpcUa_Field_Write(ExtensionObject, FilterResult); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MonitoredItemModifyResult_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_MonitoredItemModifyResult_Decode(OpcUa_MonitoredItemModifyResult* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MonitoredItemModifyResult_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_MonitoredItemModifyResult_Initialize(a_pValue); OpcUa_Field_Read(StatusCode, StatusCode); OpcUa_Field_Read(Double, RevisedSamplingInterval); OpcUa_Field_Read(UInt32, RevisedQueueSize); OpcUa_Field_Read(ExtensionObject, FilterResult); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_MonitoredItemModifyResult_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MonitoredItemModifyResult_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_MonitoredItemModifyResult_EncodeableType = { "MonitoredItemModifyResult", OpcUaId_MonitoredItemModifyResult, OpcUaId_MonitoredItemModifyResult_Encoding_DefaultBinary, OpcUaId_MonitoredItemModifyResult_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_MonitoredItemModifyResult), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_MonitoredItemModifyResult_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_MonitoredItemModifyResult_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_MonitoredItemModifyResult_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_MonitoredItemModifyResult_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_MonitoredItemModifyResult_Decode }; #endif #ifndef OPCUA_EXCLUDE_ModifyMonitoredItems #ifndef OPCUA_EXCLUDE_ModifyMonitoredItemsRequest /*============================================================================ * OpcUa_ModifyMonitoredItemsRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ModifyMonitoredItemsRequest_Initialize(OpcUa_ModifyMonitoredItemsRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(UInt32, SubscriptionId); OpcUa_Field_InitializeEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_InitializeEncodeableArray(OpcUa_MonitoredItemModifyRequest, ItemsToModify); } } /*============================================================================ * OpcUa_ModifyMonitoredItemsRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_ModifyMonitoredItemsRequest_Clear(OpcUa_ModifyMonitoredItemsRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(UInt32, SubscriptionId); OpcUa_Field_ClearEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_ClearEncodeableArray(OpcUa_MonitoredItemModifyRequest, ItemsToModify); } } /*============================================================================ * OpcUa_ModifyMonitoredItemsRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ModifyMonitoredItemsRequest_GetSize(OpcUa_ModifyMonitoredItemsRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ModifyMonitoredItemsRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(UInt32, SubscriptionId); OpcUa_Field_GetSizeEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_GetSizeEncodeableArray(OpcUa_MonitoredItemModifyRequest, ItemsToModify); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ModifyMonitoredItemsRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ModifyMonitoredItemsRequest_Encode(OpcUa_ModifyMonitoredItemsRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ModifyMonitoredItemsRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(UInt32, SubscriptionId); OpcUa_Field_WriteEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_WriteEncodeableArray(OpcUa_MonitoredItemModifyRequest, ItemsToModify); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ModifyMonitoredItemsRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ModifyMonitoredItemsRequest_Decode(OpcUa_ModifyMonitoredItemsRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ModifyMonitoredItemsRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ModifyMonitoredItemsRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(UInt32, SubscriptionId); OpcUa_Field_ReadEnumerated(OpcUa_TimestampsToReturn, TimestampsToReturn); OpcUa_Field_ReadEncodeableArray(OpcUa_MonitoredItemModifyRequest, ItemsToModify); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ModifyMonitoredItemsRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ModifyMonitoredItemsRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ModifyMonitoredItemsRequest_EncodeableType = { "ModifyMonitoredItemsRequest", OpcUaId_ModifyMonitoredItemsRequest, OpcUaId_ModifyMonitoredItemsRequest_Encoding_DefaultBinary, OpcUaId_ModifyMonitoredItemsRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ModifyMonitoredItemsRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ModifyMonitoredItemsRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ModifyMonitoredItemsRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ModifyMonitoredItemsRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ModifyMonitoredItemsRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ModifyMonitoredItemsRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_ModifyMonitoredItemsResponse /*============================================================================ * OpcUa_ModifyMonitoredItemsResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ModifyMonitoredItemsResponse_Initialize(OpcUa_ModifyMonitoredItemsResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_MonitoredItemModifyResult, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_ModifyMonitoredItemsResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_ModifyMonitoredItemsResponse_Clear(OpcUa_ModifyMonitoredItemsResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_MonitoredItemModifyResult, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_ModifyMonitoredItemsResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ModifyMonitoredItemsResponse_GetSize(OpcUa_ModifyMonitoredItemsResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ModifyMonitoredItemsResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_MonitoredItemModifyResult, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ModifyMonitoredItemsResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ModifyMonitoredItemsResponse_Encode(OpcUa_ModifyMonitoredItemsResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ModifyMonitoredItemsResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_MonitoredItemModifyResult, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ModifyMonitoredItemsResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ModifyMonitoredItemsResponse_Decode(OpcUa_ModifyMonitoredItemsResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ModifyMonitoredItemsResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ModifyMonitoredItemsResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_MonitoredItemModifyResult, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ModifyMonitoredItemsResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ModifyMonitoredItemsResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ModifyMonitoredItemsResponse_EncodeableType = { "ModifyMonitoredItemsResponse", OpcUaId_ModifyMonitoredItemsResponse, OpcUaId_ModifyMonitoredItemsResponse_Encoding_DefaultBinary, OpcUaId_ModifyMonitoredItemsResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ModifyMonitoredItemsResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ModifyMonitoredItemsResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ModifyMonitoredItemsResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ModifyMonitoredItemsResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ModifyMonitoredItemsResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ModifyMonitoredItemsResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_SetMonitoringMode #ifndef OPCUA_EXCLUDE_SetMonitoringModeRequest /*============================================================================ * OpcUa_SetMonitoringModeRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_SetMonitoringModeRequest_Initialize(OpcUa_SetMonitoringModeRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(UInt32, SubscriptionId); OpcUa_Field_InitializeEnumerated(OpcUa_MonitoringMode, MonitoringMode); OpcUa_Field_InitializeArray(UInt32, MonitoredItemIds); } } /*============================================================================ * OpcUa_SetMonitoringModeRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_SetMonitoringModeRequest_Clear(OpcUa_SetMonitoringModeRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(UInt32, SubscriptionId); OpcUa_Field_ClearEnumerated(OpcUa_MonitoringMode, MonitoringMode); OpcUa_Field_ClearArray(UInt32, MonitoredItemIds); } } /*============================================================================ * OpcUa_SetMonitoringModeRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_SetMonitoringModeRequest_GetSize(OpcUa_SetMonitoringModeRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SetMonitoringModeRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(UInt32, SubscriptionId); OpcUa_Field_GetSizeEnumerated(OpcUa_MonitoringMode, MonitoringMode); OpcUa_Field_GetSizeArray(UInt32, MonitoredItemIds); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SetMonitoringModeRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_SetMonitoringModeRequest_Encode(OpcUa_SetMonitoringModeRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SetMonitoringModeRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(UInt32, SubscriptionId); OpcUa_Field_WriteEnumerated(OpcUa_MonitoringMode, MonitoringMode); OpcUa_Field_WriteArray(UInt32, MonitoredItemIds); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SetMonitoringModeRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_SetMonitoringModeRequest_Decode(OpcUa_SetMonitoringModeRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SetMonitoringModeRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_SetMonitoringModeRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(UInt32, SubscriptionId); OpcUa_Field_ReadEnumerated(OpcUa_MonitoringMode, MonitoringMode); OpcUa_Field_ReadArray(UInt32, MonitoredItemIds); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_SetMonitoringModeRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SetMonitoringModeRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_SetMonitoringModeRequest_EncodeableType = { "SetMonitoringModeRequest", OpcUaId_SetMonitoringModeRequest, OpcUaId_SetMonitoringModeRequest_Encoding_DefaultBinary, OpcUaId_SetMonitoringModeRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_SetMonitoringModeRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_SetMonitoringModeRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_SetMonitoringModeRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_SetMonitoringModeRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_SetMonitoringModeRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_SetMonitoringModeRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_SetMonitoringModeResponse /*============================================================================ * OpcUa_SetMonitoringModeResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_SetMonitoringModeResponse_Initialize(OpcUa_SetMonitoringModeResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeArray(StatusCode, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_SetMonitoringModeResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_SetMonitoringModeResponse_Clear(OpcUa_SetMonitoringModeResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearArray(StatusCode, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_SetMonitoringModeResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_SetMonitoringModeResponse_GetSize(OpcUa_SetMonitoringModeResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SetMonitoringModeResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeArray(StatusCode, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SetMonitoringModeResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_SetMonitoringModeResponse_Encode(OpcUa_SetMonitoringModeResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SetMonitoringModeResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteArray(StatusCode, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SetMonitoringModeResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_SetMonitoringModeResponse_Decode(OpcUa_SetMonitoringModeResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SetMonitoringModeResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_SetMonitoringModeResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadArray(StatusCode, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_SetMonitoringModeResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SetMonitoringModeResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_SetMonitoringModeResponse_EncodeableType = { "SetMonitoringModeResponse", OpcUaId_SetMonitoringModeResponse, OpcUaId_SetMonitoringModeResponse_Encoding_DefaultBinary, OpcUaId_SetMonitoringModeResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_SetMonitoringModeResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_SetMonitoringModeResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_SetMonitoringModeResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_SetMonitoringModeResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_SetMonitoringModeResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_SetMonitoringModeResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_SetTriggering #ifndef OPCUA_EXCLUDE_SetTriggeringRequest /*============================================================================ * OpcUa_SetTriggeringRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_SetTriggeringRequest_Initialize(OpcUa_SetTriggeringRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(UInt32, SubscriptionId); OpcUa_Field_Initialize(UInt32, TriggeringItemId); OpcUa_Field_InitializeArray(UInt32, LinksToAdd); OpcUa_Field_InitializeArray(UInt32, LinksToRemove); } } /*============================================================================ * OpcUa_SetTriggeringRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_SetTriggeringRequest_Clear(OpcUa_SetTriggeringRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(UInt32, SubscriptionId); OpcUa_Field_Clear(UInt32, TriggeringItemId); OpcUa_Field_ClearArray(UInt32, LinksToAdd); OpcUa_Field_ClearArray(UInt32, LinksToRemove); } } /*============================================================================ * OpcUa_SetTriggeringRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_SetTriggeringRequest_GetSize(OpcUa_SetTriggeringRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SetTriggeringRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(UInt32, SubscriptionId); OpcUa_Field_GetSize(UInt32, TriggeringItemId); OpcUa_Field_GetSizeArray(UInt32, LinksToAdd); OpcUa_Field_GetSizeArray(UInt32, LinksToRemove); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SetTriggeringRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_SetTriggeringRequest_Encode(OpcUa_SetTriggeringRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SetTriggeringRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(UInt32, SubscriptionId); OpcUa_Field_Write(UInt32, TriggeringItemId); OpcUa_Field_WriteArray(UInt32, LinksToAdd); OpcUa_Field_WriteArray(UInt32, LinksToRemove); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SetTriggeringRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_SetTriggeringRequest_Decode(OpcUa_SetTriggeringRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SetTriggeringRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_SetTriggeringRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(UInt32, SubscriptionId); OpcUa_Field_Read(UInt32, TriggeringItemId); OpcUa_Field_ReadArray(UInt32, LinksToAdd); OpcUa_Field_ReadArray(UInt32, LinksToRemove); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_SetTriggeringRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SetTriggeringRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_SetTriggeringRequest_EncodeableType = { "SetTriggeringRequest", OpcUaId_SetTriggeringRequest, OpcUaId_SetTriggeringRequest_Encoding_DefaultBinary, OpcUaId_SetTriggeringRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_SetTriggeringRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_SetTriggeringRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_SetTriggeringRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_SetTriggeringRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_SetTriggeringRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_SetTriggeringRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_SetTriggeringResponse /*============================================================================ * OpcUa_SetTriggeringResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_SetTriggeringResponse_Initialize(OpcUa_SetTriggeringResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeArray(StatusCode, AddResults); OpcUa_Field_InitializeArray(DiagnosticInfo, AddDiagnosticInfos); OpcUa_Field_InitializeArray(StatusCode, RemoveResults); OpcUa_Field_InitializeArray(DiagnosticInfo, RemoveDiagnosticInfos); } } /*============================================================================ * OpcUa_SetTriggeringResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_SetTriggeringResponse_Clear(OpcUa_SetTriggeringResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearArray(StatusCode, AddResults); OpcUa_Field_ClearArray(DiagnosticInfo, AddDiagnosticInfos); OpcUa_Field_ClearArray(StatusCode, RemoveResults); OpcUa_Field_ClearArray(DiagnosticInfo, RemoveDiagnosticInfos); } } /*============================================================================ * OpcUa_SetTriggeringResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_SetTriggeringResponse_GetSize(OpcUa_SetTriggeringResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SetTriggeringResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeArray(StatusCode, AddResults); OpcUa_Field_GetSizeArray(DiagnosticInfo, AddDiagnosticInfos); OpcUa_Field_GetSizeArray(StatusCode, RemoveResults); OpcUa_Field_GetSizeArray(DiagnosticInfo, RemoveDiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SetTriggeringResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_SetTriggeringResponse_Encode(OpcUa_SetTriggeringResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SetTriggeringResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteArray(StatusCode, AddResults); OpcUa_Field_WriteArray(DiagnosticInfo, AddDiagnosticInfos); OpcUa_Field_WriteArray(StatusCode, RemoveResults); OpcUa_Field_WriteArray(DiagnosticInfo, RemoveDiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SetTriggeringResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_SetTriggeringResponse_Decode(OpcUa_SetTriggeringResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SetTriggeringResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_SetTriggeringResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadArray(StatusCode, AddResults); OpcUa_Field_ReadArray(DiagnosticInfo, AddDiagnosticInfos); OpcUa_Field_ReadArray(StatusCode, RemoveResults); OpcUa_Field_ReadArray(DiagnosticInfo, RemoveDiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_SetTriggeringResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SetTriggeringResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_SetTriggeringResponse_EncodeableType = { "SetTriggeringResponse", OpcUaId_SetTriggeringResponse, OpcUaId_SetTriggeringResponse_Encoding_DefaultBinary, OpcUaId_SetTriggeringResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_SetTriggeringResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_SetTriggeringResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_SetTriggeringResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_SetTriggeringResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_SetTriggeringResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_SetTriggeringResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_DeleteMonitoredItems #ifndef OPCUA_EXCLUDE_DeleteMonitoredItemsRequest /*============================================================================ * OpcUa_DeleteMonitoredItemsRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_DeleteMonitoredItemsRequest_Initialize(OpcUa_DeleteMonitoredItemsRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(UInt32, SubscriptionId); OpcUa_Field_InitializeArray(UInt32, MonitoredItemIds); } } /*============================================================================ * OpcUa_DeleteMonitoredItemsRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_DeleteMonitoredItemsRequest_Clear(OpcUa_DeleteMonitoredItemsRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(UInt32, SubscriptionId); OpcUa_Field_ClearArray(UInt32, MonitoredItemIds); } } /*============================================================================ * OpcUa_DeleteMonitoredItemsRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteMonitoredItemsRequest_GetSize(OpcUa_DeleteMonitoredItemsRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteMonitoredItemsRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(UInt32, SubscriptionId); OpcUa_Field_GetSizeArray(UInt32, MonitoredItemIds); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteMonitoredItemsRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteMonitoredItemsRequest_Encode(OpcUa_DeleteMonitoredItemsRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteMonitoredItemsRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(UInt32, SubscriptionId); OpcUa_Field_WriteArray(UInt32, MonitoredItemIds); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteMonitoredItemsRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteMonitoredItemsRequest_Decode(OpcUa_DeleteMonitoredItemsRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteMonitoredItemsRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_DeleteMonitoredItemsRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(UInt32, SubscriptionId); OpcUa_Field_ReadArray(UInt32, MonitoredItemIds); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_DeleteMonitoredItemsRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteMonitoredItemsRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_DeleteMonitoredItemsRequest_EncodeableType = { "DeleteMonitoredItemsRequest", OpcUaId_DeleteMonitoredItemsRequest, OpcUaId_DeleteMonitoredItemsRequest_Encoding_DefaultBinary, OpcUaId_DeleteMonitoredItemsRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_DeleteMonitoredItemsRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_DeleteMonitoredItemsRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_DeleteMonitoredItemsRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_DeleteMonitoredItemsRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_DeleteMonitoredItemsRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_DeleteMonitoredItemsRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_DeleteMonitoredItemsResponse /*============================================================================ * OpcUa_DeleteMonitoredItemsResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_DeleteMonitoredItemsResponse_Initialize(OpcUa_DeleteMonitoredItemsResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeArray(StatusCode, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_DeleteMonitoredItemsResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_DeleteMonitoredItemsResponse_Clear(OpcUa_DeleteMonitoredItemsResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearArray(StatusCode, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_DeleteMonitoredItemsResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteMonitoredItemsResponse_GetSize(OpcUa_DeleteMonitoredItemsResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteMonitoredItemsResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeArray(StatusCode, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteMonitoredItemsResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteMonitoredItemsResponse_Encode(OpcUa_DeleteMonitoredItemsResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteMonitoredItemsResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteArray(StatusCode, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteMonitoredItemsResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteMonitoredItemsResponse_Decode(OpcUa_DeleteMonitoredItemsResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteMonitoredItemsResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_DeleteMonitoredItemsResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadArray(StatusCode, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_DeleteMonitoredItemsResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteMonitoredItemsResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_DeleteMonitoredItemsResponse_EncodeableType = { "DeleteMonitoredItemsResponse", OpcUaId_DeleteMonitoredItemsResponse, OpcUaId_DeleteMonitoredItemsResponse_Encoding_DefaultBinary, OpcUaId_DeleteMonitoredItemsResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_DeleteMonitoredItemsResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_DeleteMonitoredItemsResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_DeleteMonitoredItemsResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_DeleteMonitoredItemsResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_DeleteMonitoredItemsResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_DeleteMonitoredItemsResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_CreateSubscription #ifndef OPCUA_EXCLUDE_CreateSubscriptionRequest /*============================================================================ * OpcUa_CreateSubscriptionRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_CreateSubscriptionRequest_Initialize(OpcUa_CreateSubscriptionRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(Double, RequestedPublishingInterval); OpcUa_Field_Initialize(UInt32, RequestedLifetimeCount); OpcUa_Field_Initialize(UInt32, RequestedMaxKeepAliveCount); OpcUa_Field_Initialize(UInt32, MaxNotificationsPerPublish); OpcUa_Field_Initialize(Boolean, PublishingEnabled); OpcUa_Field_Initialize(Byte, Priority); } } /*============================================================================ * OpcUa_CreateSubscriptionRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_CreateSubscriptionRequest_Clear(OpcUa_CreateSubscriptionRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(Double, RequestedPublishingInterval); OpcUa_Field_Clear(UInt32, RequestedLifetimeCount); OpcUa_Field_Clear(UInt32, RequestedMaxKeepAliveCount); OpcUa_Field_Clear(UInt32, MaxNotificationsPerPublish); OpcUa_Field_Clear(Boolean, PublishingEnabled); OpcUa_Field_Clear(Byte, Priority); } } /*============================================================================ * OpcUa_CreateSubscriptionRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_CreateSubscriptionRequest_GetSize(OpcUa_CreateSubscriptionRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CreateSubscriptionRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(Double, RequestedPublishingInterval); OpcUa_Field_GetSize(UInt32, RequestedLifetimeCount); OpcUa_Field_GetSize(UInt32, RequestedMaxKeepAliveCount); OpcUa_Field_GetSize(UInt32, MaxNotificationsPerPublish); OpcUa_Field_GetSize(Boolean, PublishingEnabled); OpcUa_Field_GetSize(Byte, Priority); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CreateSubscriptionRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_CreateSubscriptionRequest_Encode(OpcUa_CreateSubscriptionRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CreateSubscriptionRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(Double, RequestedPublishingInterval); OpcUa_Field_Write(UInt32, RequestedLifetimeCount); OpcUa_Field_Write(UInt32, RequestedMaxKeepAliveCount); OpcUa_Field_Write(UInt32, MaxNotificationsPerPublish); OpcUa_Field_Write(Boolean, PublishingEnabled); OpcUa_Field_Write(Byte, Priority); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CreateSubscriptionRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_CreateSubscriptionRequest_Decode(OpcUa_CreateSubscriptionRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CreateSubscriptionRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_CreateSubscriptionRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(Double, RequestedPublishingInterval); OpcUa_Field_Read(UInt32, RequestedLifetimeCount); OpcUa_Field_Read(UInt32, RequestedMaxKeepAliveCount); OpcUa_Field_Read(UInt32, MaxNotificationsPerPublish); OpcUa_Field_Read(Boolean, PublishingEnabled); OpcUa_Field_Read(Byte, Priority); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_CreateSubscriptionRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CreateSubscriptionRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_CreateSubscriptionRequest_EncodeableType = { "CreateSubscriptionRequest", OpcUaId_CreateSubscriptionRequest, OpcUaId_CreateSubscriptionRequest_Encoding_DefaultBinary, OpcUaId_CreateSubscriptionRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_CreateSubscriptionRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_CreateSubscriptionRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_CreateSubscriptionRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_CreateSubscriptionRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_CreateSubscriptionRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_CreateSubscriptionRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_CreateSubscriptionResponse /*============================================================================ * OpcUa_CreateSubscriptionResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_CreateSubscriptionResponse_Initialize(OpcUa_CreateSubscriptionResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Initialize(UInt32, SubscriptionId); OpcUa_Field_Initialize(Double, RevisedPublishingInterval); OpcUa_Field_Initialize(UInt32, RevisedLifetimeCount); OpcUa_Field_Initialize(UInt32, RevisedMaxKeepAliveCount); } } /*============================================================================ * OpcUa_CreateSubscriptionResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_CreateSubscriptionResponse_Clear(OpcUa_CreateSubscriptionResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Clear(UInt32, SubscriptionId); OpcUa_Field_Clear(Double, RevisedPublishingInterval); OpcUa_Field_Clear(UInt32, RevisedLifetimeCount); OpcUa_Field_Clear(UInt32, RevisedMaxKeepAliveCount); } } /*============================================================================ * OpcUa_CreateSubscriptionResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_CreateSubscriptionResponse_GetSize(OpcUa_CreateSubscriptionResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CreateSubscriptionResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSize(UInt32, SubscriptionId); OpcUa_Field_GetSize(Double, RevisedPublishingInterval); OpcUa_Field_GetSize(UInt32, RevisedLifetimeCount); OpcUa_Field_GetSize(UInt32, RevisedMaxKeepAliveCount); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CreateSubscriptionResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_CreateSubscriptionResponse_Encode(OpcUa_CreateSubscriptionResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CreateSubscriptionResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Write(UInt32, SubscriptionId); OpcUa_Field_Write(Double, RevisedPublishingInterval); OpcUa_Field_Write(UInt32, RevisedLifetimeCount); OpcUa_Field_Write(UInt32, RevisedMaxKeepAliveCount); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CreateSubscriptionResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_CreateSubscriptionResponse_Decode(OpcUa_CreateSubscriptionResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "CreateSubscriptionResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_CreateSubscriptionResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Read(UInt32, SubscriptionId); OpcUa_Field_Read(Double, RevisedPublishingInterval); OpcUa_Field_Read(UInt32, RevisedLifetimeCount); OpcUa_Field_Read(UInt32, RevisedMaxKeepAliveCount); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_CreateSubscriptionResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_CreateSubscriptionResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_CreateSubscriptionResponse_EncodeableType = { "CreateSubscriptionResponse", OpcUaId_CreateSubscriptionResponse, OpcUaId_CreateSubscriptionResponse_Encoding_DefaultBinary, OpcUaId_CreateSubscriptionResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_CreateSubscriptionResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_CreateSubscriptionResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_CreateSubscriptionResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_CreateSubscriptionResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_CreateSubscriptionResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_CreateSubscriptionResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_ModifySubscription #ifndef OPCUA_EXCLUDE_ModifySubscriptionRequest /*============================================================================ * OpcUa_ModifySubscriptionRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ModifySubscriptionRequest_Initialize(OpcUa_ModifySubscriptionRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(UInt32, SubscriptionId); OpcUa_Field_Initialize(Double, RequestedPublishingInterval); OpcUa_Field_Initialize(UInt32, RequestedLifetimeCount); OpcUa_Field_Initialize(UInt32, RequestedMaxKeepAliveCount); OpcUa_Field_Initialize(UInt32, MaxNotificationsPerPublish); OpcUa_Field_Initialize(Byte, Priority); } } /*============================================================================ * OpcUa_ModifySubscriptionRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_ModifySubscriptionRequest_Clear(OpcUa_ModifySubscriptionRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(UInt32, SubscriptionId); OpcUa_Field_Clear(Double, RequestedPublishingInterval); OpcUa_Field_Clear(UInt32, RequestedLifetimeCount); OpcUa_Field_Clear(UInt32, RequestedMaxKeepAliveCount); OpcUa_Field_Clear(UInt32, MaxNotificationsPerPublish); OpcUa_Field_Clear(Byte, Priority); } } /*============================================================================ * OpcUa_ModifySubscriptionRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ModifySubscriptionRequest_GetSize(OpcUa_ModifySubscriptionRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ModifySubscriptionRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(UInt32, SubscriptionId); OpcUa_Field_GetSize(Double, RequestedPublishingInterval); OpcUa_Field_GetSize(UInt32, RequestedLifetimeCount); OpcUa_Field_GetSize(UInt32, RequestedMaxKeepAliveCount); OpcUa_Field_GetSize(UInt32, MaxNotificationsPerPublish); OpcUa_Field_GetSize(Byte, Priority); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ModifySubscriptionRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ModifySubscriptionRequest_Encode(OpcUa_ModifySubscriptionRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ModifySubscriptionRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(UInt32, SubscriptionId); OpcUa_Field_Write(Double, RequestedPublishingInterval); OpcUa_Field_Write(UInt32, RequestedLifetimeCount); OpcUa_Field_Write(UInt32, RequestedMaxKeepAliveCount); OpcUa_Field_Write(UInt32, MaxNotificationsPerPublish); OpcUa_Field_Write(Byte, Priority); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ModifySubscriptionRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ModifySubscriptionRequest_Decode(OpcUa_ModifySubscriptionRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ModifySubscriptionRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ModifySubscriptionRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(UInt32, SubscriptionId); OpcUa_Field_Read(Double, RequestedPublishingInterval); OpcUa_Field_Read(UInt32, RequestedLifetimeCount); OpcUa_Field_Read(UInt32, RequestedMaxKeepAliveCount); OpcUa_Field_Read(UInt32, MaxNotificationsPerPublish); OpcUa_Field_Read(Byte, Priority); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ModifySubscriptionRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ModifySubscriptionRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ModifySubscriptionRequest_EncodeableType = { "ModifySubscriptionRequest", OpcUaId_ModifySubscriptionRequest, OpcUaId_ModifySubscriptionRequest_Encoding_DefaultBinary, OpcUaId_ModifySubscriptionRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ModifySubscriptionRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ModifySubscriptionRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ModifySubscriptionRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ModifySubscriptionRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ModifySubscriptionRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ModifySubscriptionRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_ModifySubscriptionResponse /*============================================================================ * OpcUa_ModifySubscriptionResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ModifySubscriptionResponse_Initialize(OpcUa_ModifySubscriptionResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Initialize(Double, RevisedPublishingInterval); OpcUa_Field_Initialize(UInt32, RevisedLifetimeCount); OpcUa_Field_Initialize(UInt32, RevisedMaxKeepAliveCount); } } /*============================================================================ * OpcUa_ModifySubscriptionResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_ModifySubscriptionResponse_Clear(OpcUa_ModifySubscriptionResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Clear(Double, RevisedPublishingInterval); OpcUa_Field_Clear(UInt32, RevisedLifetimeCount); OpcUa_Field_Clear(UInt32, RevisedMaxKeepAliveCount); } } /*============================================================================ * OpcUa_ModifySubscriptionResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ModifySubscriptionResponse_GetSize(OpcUa_ModifySubscriptionResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ModifySubscriptionResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSize(Double, RevisedPublishingInterval); OpcUa_Field_GetSize(UInt32, RevisedLifetimeCount); OpcUa_Field_GetSize(UInt32, RevisedMaxKeepAliveCount); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ModifySubscriptionResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ModifySubscriptionResponse_Encode(OpcUa_ModifySubscriptionResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ModifySubscriptionResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Write(Double, RevisedPublishingInterval); OpcUa_Field_Write(UInt32, RevisedLifetimeCount); OpcUa_Field_Write(UInt32, RevisedMaxKeepAliveCount); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ModifySubscriptionResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ModifySubscriptionResponse_Decode(OpcUa_ModifySubscriptionResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ModifySubscriptionResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ModifySubscriptionResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Read(Double, RevisedPublishingInterval); OpcUa_Field_Read(UInt32, RevisedLifetimeCount); OpcUa_Field_Read(UInt32, RevisedMaxKeepAliveCount); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ModifySubscriptionResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ModifySubscriptionResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ModifySubscriptionResponse_EncodeableType = { "ModifySubscriptionResponse", OpcUaId_ModifySubscriptionResponse, OpcUaId_ModifySubscriptionResponse_Encoding_DefaultBinary, OpcUaId_ModifySubscriptionResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ModifySubscriptionResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ModifySubscriptionResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ModifySubscriptionResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ModifySubscriptionResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ModifySubscriptionResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ModifySubscriptionResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_SetPublishingMode #ifndef OPCUA_EXCLUDE_SetPublishingModeRequest /*============================================================================ * OpcUa_SetPublishingModeRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_SetPublishingModeRequest_Initialize(OpcUa_SetPublishingModeRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(Boolean, PublishingEnabled); OpcUa_Field_InitializeArray(UInt32, SubscriptionIds); } } /*============================================================================ * OpcUa_SetPublishingModeRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_SetPublishingModeRequest_Clear(OpcUa_SetPublishingModeRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(Boolean, PublishingEnabled); OpcUa_Field_ClearArray(UInt32, SubscriptionIds); } } /*============================================================================ * OpcUa_SetPublishingModeRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_SetPublishingModeRequest_GetSize(OpcUa_SetPublishingModeRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SetPublishingModeRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(Boolean, PublishingEnabled); OpcUa_Field_GetSizeArray(UInt32, SubscriptionIds); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SetPublishingModeRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_SetPublishingModeRequest_Encode(OpcUa_SetPublishingModeRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SetPublishingModeRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(Boolean, PublishingEnabled); OpcUa_Field_WriteArray(UInt32, SubscriptionIds); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SetPublishingModeRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_SetPublishingModeRequest_Decode(OpcUa_SetPublishingModeRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SetPublishingModeRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_SetPublishingModeRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(Boolean, PublishingEnabled); OpcUa_Field_ReadArray(UInt32, SubscriptionIds); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_SetPublishingModeRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SetPublishingModeRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_SetPublishingModeRequest_EncodeableType = { "SetPublishingModeRequest", OpcUaId_SetPublishingModeRequest, OpcUaId_SetPublishingModeRequest_Encoding_DefaultBinary, OpcUaId_SetPublishingModeRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_SetPublishingModeRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_SetPublishingModeRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_SetPublishingModeRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_SetPublishingModeRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_SetPublishingModeRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_SetPublishingModeRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_SetPublishingModeResponse /*============================================================================ * OpcUa_SetPublishingModeResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_SetPublishingModeResponse_Initialize(OpcUa_SetPublishingModeResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeArray(StatusCode, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_SetPublishingModeResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_SetPublishingModeResponse_Clear(OpcUa_SetPublishingModeResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearArray(StatusCode, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_SetPublishingModeResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_SetPublishingModeResponse_GetSize(OpcUa_SetPublishingModeResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SetPublishingModeResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeArray(StatusCode, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SetPublishingModeResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_SetPublishingModeResponse_Encode(OpcUa_SetPublishingModeResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SetPublishingModeResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteArray(StatusCode, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SetPublishingModeResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_SetPublishingModeResponse_Decode(OpcUa_SetPublishingModeResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SetPublishingModeResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_SetPublishingModeResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadArray(StatusCode, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_SetPublishingModeResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SetPublishingModeResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_SetPublishingModeResponse_EncodeableType = { "SetPublishingModeResponse", OpcUaId_SetPublishingModeResponse, OpcUaId_SetPublishingModeResponse_Encoding_DefaultBinary, OpcUaId_SetPublishingModeResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_SetPublishingModeResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_SetPublishingModeResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_SetPublishingModeResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_SetPublishingModeResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_SetPublishingModeResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_SetPublishingModeResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_NotificationMessage /*============================================================================ * OpcUa_NotificationMessage_Initialize *===========================================================================*/ OpcUa_Void OpcUa_NotificationMessage_Initialize(OpcUa_NotificationMessage* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, SequenceNumber); OpcUa_Field_Initialize(DateTime, PublishTime); OpcUa_Field_InitializeArray(ExtensionObject, NotificationData); } } /*============================================================================ * OpcUa_NotificationMessage_Clear *===========================================================================*/ OpcUa_Void OpcUa_NotificationMessage_Clear(OpcUa_NotificationMessage* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, SequenceNumber); OpcUa_Field_Clear(DateTime, PublishTime); OpcUa_Field_ClearArray(ExtensionObject, NotificationData); } } /*============================================================================ * OpcUa_NotificationMessage_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_NotificationMessage_GetSize(OpcUa_NotificationMessage* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "NotificationMessage_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, SequenceNumber); OpcUa_Field_GetSize(DateTime, PublishTime); OpcUa_Field_GetSizeArray(ExtensionObject, NotificationData); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_NotificationMessage_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_NotificationMessage_Encode(OpcUa_NotificationMessage* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "NotificationMessage_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, SequenceNumber); OpcUa_Field_Write(DateTime, PublishTime); OpcUa_Field_WriteArray(ExtensionObject, NotificationData); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_NotificationMessage_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_NotificationMessage_Decode(OpcUa_NotificationMessage* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "NotificationMessage_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_NotificationMessage_Initialize(a_pValue); OpcUa_Field_Read(UInt32, SequenceNumber); OpcUa_Field_Read(DateTime, PublishTime); OpcUa_Field_ReadArray(ExtensionObject, NotificationData); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_NotificationMessage_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_NotificationMessage_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_NotificationMessage_EncodeableType = { "NotificationMessage", OpcUaId_NotificationMessage, OpcUaId_NotificationMessage_Encoding_DefaultBinary, OpcUaId_NotificationMessage_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_NotificationMessage), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_NotificationMessage_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_NotificationMessage_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_NotificationMessage_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_NotificationMessage_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_NotificationMessage_Decode }; #endif #ifndef OPCUA_EXCLUDE_DataChangeNotification /*============================================================================ * OpcUa_DataChangeNotification_Initialize *===========================================================================*/ OpcUa_Void OpcUa_DataChangeNotification_Initialize(OpcUa_DataChangeNotification* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeableArray(OpcUa_MonitoredItemNotification, MonitoredItems); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_DataChangeNotification_Clear *===========================================================================*/ OpcUa_Void OpcUa_DataChangeNotification_Clear(OpcUa_DataChangeNotification* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeableArray(OpcUa_MonitoredItemNotification, MonitoredItems); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_DataChangeNotification_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_DataChangeNotification_GetSize(OpcUa_DataChangeNotification* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DataChangeNotification_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeableArray(OpcUa_MonitoredItemNotification, MonitoredItems); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DataChangeNotification_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_DataChangeNotification_Encode(OpcUa_DataChangeNotification* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DataChangeNotification_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeableArray(OpcUa_MonitoredItemNotification, MonitoredItems); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DataChangeNotification_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_DataChangeNotification_Decode(OpcUa_DataChangeNotification* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DataChangeNotification_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_DataChangeNotification_Initialize(a_pValue); OpcUa_Field_ReadEncodeableArray(OpcUa_MonitoredItemNotification, MonitoredItems); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_DataChangeNotification_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DataChangeNotification_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_DataChangeNotification_EncodeableType = { "DataChangeNotification", OpcUaId_DataChangeNotification, OpcUaId_DataChangeNotification_Encoding_DefaultBinary, OpcUaId_DataChangeNotification_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_DataChangeNotification), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_DataChangeNotification_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_DataChangeNotification_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_DataChangeNotification_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_DataChangeNotification_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_DataChangeNotification_Decode }; #endif #ifndef OPCUA_EXCLUDE_MonitoredItemNotification /*============================================================================ * OpcUa_MonitoredItemNotification_Initialize *===========================================================================*/ OpcUa_Void OpcUa_MonitoredItemNotification_Initialize(OpcUa_MonitoredItemNotification* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, ClientHandle); OpcUa_Field_Initialize(DataValue, Value); } } /*============================================================================ * OpcUa_MonitoredItemNotification_Clear *===========================================================================*/ OpcUa_Void OpcUa_MonitoredItemNotification_Clear(OpcUa_MonitoredItemNotification* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, ClientHandle); OpcUa_Field_Clear(DataValue, Value); } } /*============================================================================ * OpcUa_MonitoredItemNotification_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_MonitoredItemNotification_GetSize(OpcUa_MonitoredItemNotification* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MonitoredItemNotification_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, ClientHandle); OpcUa_Field_GetSize(DataValue, Value); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MonitoredItemNotification_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_MonitoredItemNotification_Encode(OpcUa_MonitoredItemNotification* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MonitoredItemNotification_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, ClientHandle); OpcUa_Field_Write(DataValue, Value); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MonitoredItemNotification_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_MonitoredItemNotification_Decode(OpcUa_MonitoredItemNotification* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "MonitoredItemNotification_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_MonitoredItemNotification_Initialize(a_pValue); OpcUa_Field_Read(UInt32, ClientHandle); OpcUa_Field_Read(DataValue, Value); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_MonitoredItemNotification_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_MonitoredItemNotification_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_MonitoredItemNotification_EncodeableType = { "MonitoredItemNotification", OpcUaId_MonitoredItemNotification, OpcUaId_MonitoredItemNotification_Encoding_DefaultBinary, OpcUaId_MonitoredItemNotification_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_MonitoredItemNotification), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_MonitoredItemNotification_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_MonitoredItemNotification_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_MonitoredItemNotification_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_MonitoredItemNotification_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_MonitoredItemNotification_Decode }; #endif #ifndef OPCUA_EXCLUDE_EventNotificationList /*============================================================================ * OpcUa_EventNotificationList_Initialize *===========================================================================*/ OpcUa_Void OpcUa_EventNotificationList_Initialize(OpcUa_EventNotificationList* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeableArray(OpcUa_EventFieldList, Events); } } /*============================================================================ * OpcUa_EventNotificationList_Clear *===========================================================================*/ OpcUa_Void OpcUa_EventNotificationList_Clear(OpcUa_EventNotificationList* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeableArray(OpcUa_EventFieldList, Events); } } /*============================================================================ * OpcUa_EventNotificationList_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_EventNotificationList_GetSize(OpcUa_EventNotificationList* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EventNotificationList_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeableArray(OpcUa_EventFieldList, Events); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EventNotificationList_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_EventNotificationList_Encode(OpcUa_EventNotificationList* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EventNotificationList_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeableArray(OpcUa_EventFieldList, Events); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EventNotificationList_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_EventNotificationList_Decode(OpcUa_EventNotificationList* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EventNotificationList_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_EventNotificationList_Initialize(a_pValue); OpcUa_Field_ReadEncodeableArray(OpcUa_EventFieldList, Events); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_EventNotificationList_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EventNotificationList_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_EventNotificationList_EncodeableType = { "EventNotificationList", OpcUaId_EventNotificationList, OpcUaId_EventNotificationList_Encoding_DefaultBinary, OpcUaId_EventNotificationList_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_EventNotificationList), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_EventNotificationList_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_EventNotificationList_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_EventNotificationList_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_EventNotificationList_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_EventNotificationList_Decode }; #endif #ifndef OPCUA_EXCLUDE_EventFieldList /*============================================================================ * OpcUa_EventFieldList_Initialize *===========================================================================*/ OpcUa_Void OpcUa_EventFieldList_Initialize(OpcUa_EventFieldList* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, ClientHandle); OpcUa_Field_InitializeArray(Variant, EventFields); } } /*============================================================================ * OpcUa_EventFieldList_Clear *===========================================================================*/ OpcUa_Void OpcUa_EventFieldList_Clear(OpcUa_EventFieldList* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, ClientHandle); OpcUa_Field_ClearArray(Variant, EventFields); } } /*============================================================================ * OpcUa_EventFieldList_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_EventFieldList_GetSize(OpcUa_EventFieldList* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EventFieldList_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, ClientHandle); OpcUa_Field_GetSizeArray(Variant, EventFields); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EventFieldList_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_EventFieldList_Encode(OpcUa_EventFieldList* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EventFieldList_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, ClientHandle); OpcUa_Field_WriteArray(Variant, EventFields); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EventFieldList_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_EventFieldList_Decode(OpcUa_EventFieldList* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EventFieldList_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_EventFieldList_Initialize(a_pValue); OpcUa_Field_Read(UInt32, ClientHandle); OpcUa_Field_ReadArray(Variant, EventFields); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_EventFieldList_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EventFieldList_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_EventFieldList_EncodeableType = { "EventFieldList", OpcUaId_EventFieldList, OpcUaId_EventFieldList_Encoding_DefaultBinary, OpcUaId_EventFieldList_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_EventFieldList), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_EventFieldList_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_EventFieldList_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_EventFieldList_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_EventFieldList_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_EventFieldList_Decode }; #endif #ifndef OPCUA_EXCLUDE_HistoryEventFieldList /*============================================================================ * OpcUa_HistoryEventFieldList_Initialize *===========================================================================*/ OpcUa_Void OpcUa_HistoryEventFieldList_Initialize(OpcUa_HistoryEventFieldList* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeArray(Variant, EventFields); } } /*============================================================================ * OpcUa_HistoryEventFieldList_Clear *===========================================================================*/ OpcUa_Void OpcUa_HistoryEventFieldList_Clear(OpcUa_HistoryEventFieldList* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearArray(Variant, EventFields); } } /*============================================================================ * OpcUa_HistoryEventFieldList_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryEventFieldList_GetSize(OpcUa_HistoryEventFieldList* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryEventFieldList_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeArray(Variant, EventFields); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryEventFieldList_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryEventFieldList_Encode(OpcUa_HistoryEventFieldList* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryEventFieldList_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteArray(Variant, EventFields); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryEventFieldList_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_HistoryEventFieldList_Decode(OpcUa_HistoryEventFieldList* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "HistoryEventFieldList_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_HistoryEventFieldList_Initialize(a_pValue); OpcUa_Field_ReadArray(Variant, EventFields); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_HistoryEventFieldList_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_HistoryEventFieldList_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_HistoryEventFieldList_EncodeableType = { "HistoryEventFieldList", OpcUaId_HistoryEventFieldList, OpcUaId_HistoryEventFieldList_Encoding_DefaultBinary, OpcUaId_HistoryEventFieldList_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_HistoryEventFieldList), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_HistoryEventFieldList_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_HistoryEventFieldList_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_HistoryEventFieldList_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_HistoryEventFieldList_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_HistoryEventFieldList_Decode }; #endif #ifndef OPCUA_EXCLUDE_StatusChangeNotification /*============================================================================ * OpcUa_StatusChangeNotification_Initialize *===========================================================================*/ OpcUa_Void OpcUa_StatusChangeNotification_Initialize(OpcUa_StatusChangeNotification* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(StatusCode, Status); OpcUa_Field_Initialize(DiagnosticInfo, DiagnosticInfo); } } /*============================================================================ * OpcUa_StatusChangeNotification_Clear *===========================================================================*/ OpcUa_Void OpcUa_StatusChangeNotification_Clear(OpcUa_StatusChangeNotification* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(StatusCode, Status); OpcUa_Field_Clear(DiagnosticInfo, DiagnosticInfo); } } /*============================================================================ * OpcUa_StatusChangeNotification_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_StatusChangeNotification_GetSize(OpcUa_StatusChangeNotification* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "StatusChangeNotification_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(StatusCode, Status); OpcUa_Field_GetSize(DiagnosticInfo, DiagnosticInfo); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_StatusChangeNotification_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_StatusChangeNotification_Encode(OpcUa_StatusChangeNotification* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "StatusChangeNotification_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(StatusCode, Status); OpcUa_Field_Write(DiagnosticInfo, DiagnosticInfo); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_StatusChangeNotification_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_StatusChangeNotification_Decode(OpcUa_StatusChangeNotification* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "StatusChangeNotification_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_StatusChangeNotification_Initialize(a_pValue); OpcUa_Field_Read(StatusCode, Status); OpcUa_Field_Read(DiagnosticInfo, DiagnosticInfo); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_StatusChangeNotification_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_StatusChangeNotification_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_StatusChangeNotification_EncodeableType = { "StatusChangeNotification", OpcUaId_StatusChangeNotification, OpcUaId_StatusChangeNotification_Encoding_DefaultBinary, OpcUaId_StatusChangeNotification_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_StatusChangeNotification), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_StatusChangeNotification_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_StatusChangeNotification_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_StatusChangeNotification_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_StatusChangeNotification_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_StatusChangeNotification_Decode }; #endif #ifndef OPCUA_EXCLUDE_SubscriptionAcknowledgement /*============================================================================ * OpcUa_SubscriptionAcknowledgement_Initialize *===========================================================================*/ OpcUa_Void OpcUa_SubscriptionAcknowledgement_Initialize(OpcUa_SubscriptionAcknowledgement* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, SubscriptionId); OpcUa_Field_Initialize(UInt32, SequenceNumber); } } /*============================================================================ * OpcUa_SubscriptionAcknowledgement_Clear *===========================================================================*/ OpcUa_Void OpcUa_SubscriptionAcknowledgement_Clear(OpcUa_SubscriptionAcknowledgement* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, SubscriptionId); OpcUa_Field_Clear(UInt32, SequenceNumber); } } /*============================================================================ * OpcUa_SubscriptionAcknowledgement_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_SubscriptionAcknowledgement_GetSize(OpcUa_SubscriptionAcknowledgement* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SubscriptionAcknowledgement_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, SubscriptionId); OpcUa_Field_GetSize(UInt32, SequenceNumber); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SubscriptionAcknowledgement_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_SubscriptionAcknowledgement_Encode(OpcUa_SubscriptionAcknowledgement* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SubscriptionAcknowledgement_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, SubscriptionId); OpcUa_Field_Write(UInt32, SequenceNumber); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SubscriptionAcknowledgement_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_SubscriptionAcknowledgement_Decode(OpcUa_SubscriptionAcknowledgement* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SubscriptionAcknowledgement_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_SubscriptionAcknowledgement_Initialize(a_pValue); OpcUa_Field_Read(UInt32, SubscriptionId); OpcUa_Field_Read(UInt32, SequenceNumber); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_SubscriptionAcknowledgement_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SubscriptionAcknowledgement_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_SubscriptionAcknowledgement_EncodeableType = { "SubscriptionAcknowledgement", OpcUaId_SubscriptionAcknowledgement, OpcUaId_SubscriptionAcknowledgement_Encoding_DefaultBinary, OpcUaId_SubscriptionAcknowledgement_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_SubscriptionAcknowledgement), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_SubscriptionAcknowledgement_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_SubscriptionAcknowledgement_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_SubscriptionAcknowledgement_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_SubscriptionAcknowledgement_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_SubscriptionAcknowledgement_Decode }; #endif #ifndef OPCUA_EXCLUDE_Publish #ifndef OPCUA_EXCLUDE_PublishRequest /*============================================================================ * OpcUa_PublishRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_PublishRequest_Initialize(OpcUa_PublishRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_SubscriptionAcknowledgement, SubscriptionAcknowledgements); } } /*============================================================================ * OpcUa_PublishRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_PublishRequest_Clear(OpcUa_PublishRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_SubscriptionAcknowledgement, SubscriptionAcknowledgements); } } /*============================================================================ * OpcUa_PublishRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_PublishRequest_GetSize(OpcUa_PublishRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "PublishRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_SubscriptionAcknowledgement, SubscriptionAcknowledgements); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_PublishRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_PublishRequest_Encode(OpcUa_PublishRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "PublishRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_SubscriptionAcknowledgement, SubscriptionAcknowledgements); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_PublishRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_PublishRequest_Decode(OpcUa_PublishRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "PublishRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_PublishRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_SubscriptionAcknowledgement, SubscriptionAcknowledgements); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_PublishRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_PublishRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_PublishRequest_EncodeableType = { "PublishRequest", OpcUaId_PublishRequest, OpcUaId_PublishRequest_Encoding_DefaultBinary, OpcUaId_PublishRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_PublishRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_PublishRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_PublishRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_PublishRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_PublishRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_PublishRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_PublishResponse /*============================================================================ * OpcUa_PublishResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_PublishResponse_Initialize(OpcUa_PublishResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Initialize(UInt32, SubscriptionId); OpcUa_Field_InitializeArray(UInt32, AvailableSequenceNumbers); OpcUa_Field_Initialize(Boolean, MoreNotifications); OpcUa_Field_InitializeEncodeable(OpcUa_NotificationMessage, NotificationMessage); OpcUa_Field_InitializeArray(StatusCode, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_PublishResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_PublishResponse_Clear(OpcUa_PublishResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Clear(UInt32, SubscriptionId); OpcUa_Field_ClearArray(UInt32, AvailableSequenceNumbers); OpcUa_Field_Clear(Boolean, MoreNotifications); OpcUa_Field_ClearEncodeable(OpcUa_NotificationMessage, NotificationMessage); OpcUa_Field_ClearArray(StatusCode, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_PublishResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_PublishResponse_GetSize(OpcUa_PublishResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "PublishResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSize(UInt32, SubscriptionId); OpcUa_Field_GetSizeArray(UInt32, AvailableSequenceNumbers); OpcUa_Field_GetSize(Boolean, MoreNotifications); OpcUa_Field_GetSizeEncodeable(OpcUa_NotificationMessage, NotificationMessage); OpcUa_Field_GetSizeArray(StatusCode, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_PublishResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_PublishResponse_Encode(OpcUa_PublishResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "PublishResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Write(UInt32, SubscriptionId); OpcUa_Field_WriteArray(UInt32, AvailableSequenceNumbers); OpcUa_Field_Write(Boolean, MoreNotifications); OpcUa_Field_WriteEncodeable(OpcUa_NotificationMessage, NotificationMessage); OpcUa_Field_WriteArray(StatusCode, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_PublishResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_PublishResponse_Decode(OpcUa_PublishResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "PublishResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_PublishResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_Read(UInt32, SubscriptionId); OpcUa_Field_ReadArray(UInt32, AvailableSequenceNumbers); OpcUa_Field_Read(Boolean, MoreNotifications); OpcUa_Field_ReadEncodeable(OpcUa_NotificationMessage, NotificationMessage); OpcUa_Field_ReadArray(StatusCode, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_PublishResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_PublishResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_PublishResponse_EncodeableType = { "PublishResponse", OpcUaId_PublishResponse, OpcUaId_PublishResponse_Encoding_DefaultBinary, OpcUaId_PublishResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_PublishResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_PublishResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_PublishResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_PublishResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_PublishResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_PublishResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_Republish #ifndef OPCUA_EXCLUDE_RepublishRequest /*============================================================================ * OpcUa_RepublishRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_RepublishRequest_Initialize(OpcUa_RepublishRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Initialize(UInt32, SubscriptionId); OpcUa_Field_Initialize(UInt32, RetransmitSequenceNumber); } } /*============================================================================ * OpcUa_RepublishRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_RepublishRequest_Clear(OpcUa_RepublishRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Clear(UInt32, SubscriptionId); OpcUa_Field_Clear(UInt32, RetransmitSequenceNumber); } } /*============================================================================ * OpcUa_RepublishRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_RepublishRequest_GetSize(OpcUa_RepublishRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RepublishRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSize(UInt32, SubscriptionId); OpcUa_Field_GetSize(UInt32, RetransmitSequenceNumber); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RepublishRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_RepublishRequest_Encode(OpcUa_RepublishRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RepublishRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Write(UInt32, SubscriptionId); OpcUa_Field_Write(UInt32, RetransmitSequenceNumber); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RepublishRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_RepublishRequest_Decode(OpcUa_RepublishRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RepublishRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_RepublishRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_Read(UInt32, SubscriptionId); OpcUa_Field_Read(UInt32, RetransmitSequenceNumber); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_RepublishRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RepublishRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_RepublishRequest_EncodeableType = { "RepublishRequest", OpcUaId_RepublishRequest, OpcUaId_RepublishRequest_Encoding_DefaultBinary, OpcUaId_RepublishRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_RepublishRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_RepublishRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_RepublishRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_RepublishRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_RepublishRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_RepublishRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_RepublishResponse /*============================================================================ * OpcUa_RepublishResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_RepublishResponse_Initialize(OpcUa_RepublishResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeEncodeable(OpcUa_NotificationMessage, NotificationMessage); } } /*============================================================================ * OpcUa_RepublishResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_RepublishResponse_Clear(OpcUa_RepublishResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearEncodeable(OpcUa_NotificationMessage, NotificationMessage); } } /*============================================================================ * OpcUa_RepublishResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_RepublishResponse_GetSize(OpcUa_RepublishResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RepublishResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeEncodeable(OpcUa_NotificationMessage, NotificationMessage); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RepublishResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_RepublishResponse_Encode(OpcUa_RepublishResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RepublishResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteEncodeable(OpcUa_NotificationMessage, NotificationMessage); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RepublishResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_RepublishResponse_Decode(OpcUa_RepublishResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RepublishResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_RepublishResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadEncodeable(OpcUa_NotificationMessage, NotificationMessage); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_RepublishResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RepublishResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_RepublishResponse_EncodeableType = { "RepublishResponse", OpcUaId_RepublishResponse, OpcUaId_RepublishResponse_Encoding_DefaultBinary, OpcUaId_RepublishResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_RepublishResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_RepublishResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_RepublishResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_RepublishResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_RepublishResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_RepublishResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_TransferResult /*============================================================================ * OpcUa_TransferResult_Initialize *===========================================================================*/ OpcUa_Void OpcUa_TransferResult_Initialize(OpcUa_TransferResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(StatusCode, StatusCode); OpcUa_Field_InitializeArray(UInt32, AvailableSequenceNumbers); } } /*============================================================================ * OpcUa_TransferResult_Clear *===========================================================================*/ OpcUa_Void OpcUa_TransferResult_Clear(OpcUa_TransferResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(StatusCode, StatusCode); OpcUa_Field_ClearArray(UInt32, AvailableSequenceNumbers); } } /*============================================================================ * OpcUa_TransferResult_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_TransferResult_GetSize(OpcUa_TransferResult* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TransferResult_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(StatusCode, StatusCode); OpcUa_Field_GetSizeArray(UInt32, AvailableSequenceNumbers); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TransferResult_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_TransferResult_Encode(OpcUa_TransferResult* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TransferResult_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(StatusCode, StatusCode); OpcUa_Field_WriteArray(UInt32, AvailableSequenceNumbers); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TransferResult_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_TransferResult_Decode(OpcUa_TransferResult* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TransferResult_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_TransferResult_Initialize(a_pValue); OpcUa_Field_Read(StatusCode, StatusCode); OpcUa_Field_ReadArray(UInt32, AvailableSequenceNumbers); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_TransferResult_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TransferResult_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_TransferResult_EncodeableType = { "TransferResult", OpcUaId_TransferResult, OpcUaId_TransferResult_Encoding_DefaultBinary, OpcUaId_TransferResult_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_TransferResult), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_TransferResult_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_TransferResult_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_TransferResult_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_TransferResult_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_TransferResult_Decode }; #endif #ifndef OPCUA_EXCLUDE_TransferSubscriptions #ifndef OPCUA_EXCLUDE_TransferSubscriptionsRequest /*============================================================================ * OpcUa_TransferSubscriptionsRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_TransferSubscriptionsRequest_Initialize(OpcUa_TransferSubscriptionsRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeArray(UInt32, SubscriptionIds); OpcUa_Field_Initialize(Boolean, SendInitialValues); } } /*============================================================================ * OpcUa_TransferSubscriptionsRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_TransferSubscriptionsRequest_Clear(OpcUa_TransferSubscriptionsRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearArray(UInt32, SubscriptionIds); OpcUa_Field_Clear(Boolean, SendInitialValues); } } /*============================================================================ * OpcUa_TransferSubscriptionsRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_TransferSubscriptionsRequest_GetSize(OpcUa_TransferSubscriptionsRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TransferSubscriptionsRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeArray(UInt32, SubscriptionIds); OpcUa_Field_GetSize(Boolean, SendInitialValues); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TransferSubscriptionsRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_TransferSubscriptionsRequest_Encode(OpcUa_TransferSubscriptionsRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TransferSubscriptionsRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteArray(UInt32, SubscriptionIds); OpcUa_Field_Write(Boolean, SendInitialValues); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TransferSubscriptionsRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_TransferSubscriptionsRequest_Decode(OpcUa_TransferSubscriptionsRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TransferSubscriptionsRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_TransferSubscriptionsRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadArray(UInt32, SubscriptionIds); OpcUa_Field_Read(Boolean, SendInitialValues); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_TransferSubscriptionsRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TransferSubscriptionsRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_TransferSubscriptionsRequest_EncodeableType = { "TransferSubscriptionsRequest", OpcUaId_TransferSubscriptionsRequest, OpcUaId_TransferSubscriptionsRequest_Encoding_DefaultBinary, OpcUaId_TransferSubscriptionsRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_TransferSubscriptionsRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_TransferSubscriptionsRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_TransferSubscriptionsRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_TransferSubscriptionsRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_TransferSubscriptionsRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_TransferSubscriptionsRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_TransferSubscriptionsResponse /*============================================================================ * OpcUa_TransferSubscriptionsResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_TransferSubscriptionsResponse_Initialize(OpcUa_TransferSubscriptionsResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeEncodeableArray(OpcUa_TransferResult, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_TransferSubscriptionsResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_TransferSubscriptionsResponse_Clear(OpcUa_TransferSubscriptionsResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearEncodeableArray(OpcUa_TransferResult, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_TransferSubscriptionsResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_TransferSubscriptionsResponse_GetSize(OpcUa_TransferSubscriptionsResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TransferSubscriptionsResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeEncodeableArray(OpcUa_TransferResult, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TransferSubscriptionsResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_TransferSubscriptionsResponse_Encode(OpcUa_TransferSubscriptionsResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TransferSubscriptionsResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteEncodeableArray(OpcUa_TransferResult, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TransferSubscriptionsResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_TransferSubscriptionsResponse_Decode(OpcUa_TransferSubscriptionsResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "TransferSubscriptionsResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_TransferSubscriptionsResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadEncodeableArray(OpcUa_TransferResult, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_TransferSubscriptionsResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_TransferSubscriptionsResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_TransferSubscriptionsResponse_EncodeableType = { "TransferSubscriptionsResponse", OpcUaId_TransferSubscriptionsResponse, OpcUaId_TransferSubscriptionsResponse_Encoding_DefaultBinary, OpcUaId_TransferSubscriptionsResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_TransferSubscriptionsResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_TransferSubscriptionsResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_TransferSubscriptionsResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_TransferSubscriptionsResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_TransferSubscriptionsResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_TransferSubscriptionsResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_DeleteSubscriptions #ifndef OPCUA_EXCLUDE_DeleteSubscriptionsRequest /*============================================================================ * OpcUa_DeleteSubscriptionsRequest_Initialize *===========================================================================*/ OpcUa_Void OpcUa_DeleteSubscriptionsRequest_Initialize(OpcUa_DeleteSubscriptionsRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_InitializeArray(UInt32, SubscriptionIds); } } /*============================================================================ * OpcUa_DeleteSubscriptionsRequest_Clear *===========================================================================*/ OpcUa_Void OpcUa_DeleteSubscriptionsRequest_Clear(OpcUa_DeleteSubscriptionsRequest* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ClearArray(UInt32, SubscriptionIds); } } /*============================================================================ * OpcUa_DeleteSubscriptionsRequest_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteSubscriptionsRequest_GetSize(OpcUa_DeleteSubscriptionsRequest* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteSubscriptionsRequest_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_GetSizeArray(UInt32, SubscriptionIds); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteSubscriptionsRequest_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteSubscriptionsRequest_Encode(OpcUa_DeleteSubscriptionsRequest* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteSubscriptionsRequest_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_WriteArray(UInt32, SubscriptionIds); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteSubscriptionsRequest_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteSubscriptionsRequest_Decode(OpcUa_DeleteSubscriptionsRequest* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteSubscriptionsRequest_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_DeleteSubscriptionsRequest_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_RequestHeader, RequestHeader); OpcUa_Field_ReadArray(UInt32, SubscriptionIds); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_DeleteSubscriptionsRequest_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteSubscriptionsRequest_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_DeleteSubscriptionsRequest_EncodeableType = { "DeleteSubscriptionsRequest", OpcUaId_DeleteSubscriptionsRequest, OpcUaId_DeleteSubscriptionsRequest_Encoding_DefaultBinary, OpcUaId_DeleteSubscriptionsRequest_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_DeleteSubscriptionsRequest), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_DeleteSubscriptionsRequest_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_DeleteSubscriptionsRequest_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_DeleteSubscriptionsRequest_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_DeleteSubscriptionsRequest_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_DeleteSubscriptionsRequest_Decode }; #endif #ifndef OPCUA_EXCLUDE_DeleteSubscriptionsResponse /*============================================================================ * OpcUa_DeleteSubscriptionsResponse_Initialize *===========================================================================*/ OpcUa_Void OpcUa_DeleteSubscriptionsResponse_Initialize(OpcUa_DeleteSubscriptionsResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_InitializeArray(StatusCode, Results); OpcUa_Field_InitializeArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_DeleteSubscriptionsResponse_Clear *===========================================================================*/ OpcUa_Void OpcUa_DeleteSubscriptionsResponse_Clear(OpcUa_DeleteSubscriptionsResponse* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ClearArray(StatusCode, Results); OpcUa_Field_ClearArray(DiagnosticInfo, DiagnosticInfos); } } /*============================================================================ * OpcUa_DeleteSubscriptionsResponse_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteSubscriptionsResponse_GetSize(OpcUa_DeleteSubscriptionsResponse* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteSubscriptionsResponse_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_GetSizeArray(StatusCode, Results); OpcUa_Field_GetSizeArray(DiagnosticInfo, DiagnosticInfos); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteSubscriptionsResponse_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteSubscriptionsResponse_Encode(OpcUa_DeleteSubscriptionsResponse* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteSubscriptionsResponse_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_WriteArray(StatusCode, Results); OpcUa_Field_WriteArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteSubscriptionsResponse_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_DeleteSubscriptionsResponse_Decode(OpcUa_DeleteSubscriptionsResponse* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DeleteSubscriptionsResponse_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_DeleteSubscriptionsResponse_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_ResponseHeader, ResponseHeader); OpcUa_Field_ReadArray(StatusCode, Results); OpcUa_Field_ReadArray(DiagnosticInfo, DiagnosticInfos); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_DeleteSubscriptionsResponse_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DeleteSubscriptionsResponse_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_DeleteSubscriptionsResponse_EncodeableType = { "DeleteSubscriptionsResponse", OpcUaId_DeleteSubscriptionsResponse, OpcUaId_DeleteSubscriptionsResponse_Encoding_DefaultBinary, OpcUaId_DeleteSubscriptionsResponse_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_DeleteSubscriptionsResponse), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_DeleteSubscriptionsResponse_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_DeleteSubscriptionsResponse_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_DeleteSubscriptionsResponse_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_DeleteSubscriptionsResponse_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_DeleteSubscriptionsResponse_Decode }; #endif #endif #ifndef OPCUA_EXCLUDE_BuildInfo /*============================================================================ * OpcUa_BuildInfo_Initialize *===========================================================================*/ OpcUa_Void OpcUa_BuildInfo_Initialize(OpcUa_BuildInfo* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(String, ProductUri); OpcUa_Field_Initialize(String, ManufacturerName); OpcUa_Field_Initialize(String, ProductName); OpcUa_Field_Initialize(String, SoftwareVersion); OpcUa_Field_Initialize(String, BuildNumber); OpcUa_Field_Initialize(DateTime, BuildDate); } } /*============================================================================ * OpcUa_BuildInfo_Clear *===========================================================================*/ OpcUa_Void OpcUa_BuildInfo_Clear(OpcUa_BuildInfo* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(String, ProductUri); OpcUa_Field_Clear(String, ManufacturerName); OpcUa_Field_Clear(String, ProductName); OpcUa_Field_Clear(String, SoftwareVersion); OpcUa_Field_Clear(String, BuildNumber); OpcUa_Field_Clear(DateTime, BuildDate); } } /*============================================================================ * OpcUa_BuildInfo_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_BuildInfo_GetSize(OpcUa_BuildInfo* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BuildInfo_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(String, ProductUri); OpcUa_Field_GetSize(String, ManufacturerName); OpcUa_Field_GetSize(String, ProductName); OpcUa_Field_GetSize(String, SoftwareVersion); OpcUa_Field_GetSize(String, BuildNumber); OpcUa_Field_GetSize(DateTime, BuildDate); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BuildInfo_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_BuildInfo_Encode(OpcUa_BuildInfo* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BuildInfo_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(String, ProductUri); OpcUa_Field_Write(String, ManufacturerName); OpcUa_Field_Write(String, ProductName); OpcUa_Field_Write(String, SoftwareVersion); OpcUa_Field_Write(String, BuildNumber); OpcUa_Field_Write(DateTime, BuildDate); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BuildInfo_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_BuildInfo_Decode(OpcUa_BuildInfo* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "BuildInfo_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_BuildInfo_Initialize(a_pValue); OpcUa_Field_Read(String, ProductUri); OpcUa_Field_Read(String, ManufacturerName); OpcUa_Field_Read(String, ProductName); OpcUa_Field_Read(String, SoftwareVersion); OpcUa_Field_Read(String, BuildNumber); OpcUa_Field_Read(DateTime, BuildDate); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_BuildInfo_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_BuildInfo_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_BuildInfo_EncodeableType = { "BuildInfo", OpcUaId_BuildInfo, OpcUaId_BuildInfo_Encoding_DefaultBinary, OpcUaId_BuildInfo_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_BuildInfo), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_BuildInfo_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_BuildInfo_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_BuildInfo_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_BuildInfo_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_BuildInfo_Decode }; #endif #ifndef OPCUA_EXCLUDE_RedundancySupport /*============================================================================ * OpcUa_RedundancySupport_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_RedundancySupport_EnumeratedValues[] = { { "None", 0 }, { "Cold", 1 }, { "Warm", 2 }, { "Hot", 3 }, { "Transparent", 4 }, { "HotAndMirrored", 5 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_RedundancySupport_EnumeratedType = { "RedundancySupport", g_OpcUa_RedundancySupport_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_ServerState /*============================================================================ * OpcUa_ServerState_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_ServerState_EnumeratedValues[] = { { "Running", 0 }, { "Failed", 1 }, { "NoConfiguration", 2 }, { "Suspended", 3 }, { "Shutdown", 4 }, { "Test", 5 }, { "CommunicationFault", 6 }, { "Unknown", 7 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_ServerState_EnumeratedType = { "ServerState", g_OpcUa_ServerState_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_RedundantServerDataType /*============================================================================ * OpcUa_RedundantServerDataType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_RedundantServerDataType_Initialize(OpcUa_RedundantServerDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(String, ServerId); OpcUa_Field_Initialize(Byte, ServiceLevel); OpcUa_Field_InitializeEnumerated(OpcUa_ServerState, ServerState); } } /*============================================================================ * OpcUa_RedundantServerDataType_Clear *===========================================================================*/ OpcUa_Void OpcUa_RedundantServerDataType_Clear(OpcUa_RedundantServerDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(String, ServerId); OpcUa_Field_Clear(Byte, ServiceLevel); OpcUa_Field_ClearEnumerated(OpcUa_ServerState, ServerState); } } /*============================================================================ * OpcUa_RedundantServerDataType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_RedundantServerDataType_GetSize(OpcUa_RedundantServerDataType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RedundantServerDataType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(String, ServerId); OpcUa_Field_GetSize(Byte, ServiceLevel); OpcUa_Field_GetSizeEnumerated(OpcUa_ServerState, ServerState); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RedundantServerDataType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_RedundantServerDataType_Encode(OpcUa_RedundantServerDataType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RedundantServerDataType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(String, ServerId); OpcUa_Field_Write(Byte, ServiceLevel); OpcUa_Field_WriteEnumerated(OpcUa_ServerState, ServerState); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RedundantServerDataType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_RedundantServerDataType_Decode(OpcUa_RedundantServerDataType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "RedundantServerDataType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_RedundantServerDataType_Initialize(a_pValue); OpcUa_Field_Read(String, ServerId); OpcUa_Field_Read(Byte, ServiceLevel); OpcUa_Field_ReadEnumerated(OpcUa_ServerState, ServerState); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_RedundantServerDataType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_RedundantServerDataType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_RedundantServerDataType_EncodeableType = { "RedundantServerDataType", OpcUaId_RedundantServerDataType, OpcUaId_RedundantServerDataType_Encoding_DefaultBinary, OpcUaId_RedundantServerDataType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_RedundantServerDataType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_RedundantServerDataType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_RedundantServerDataType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_RedundantServerDataType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_RedundantServerDataType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_RedundantServerDataType_Decode }; #endif #ifndef OPCUA_EXCLUDE_EndpointUrlListDataType /*============================================================================ * OpcUa_EndpointUrlListDataType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_EndpointUrlListDataType_Initialize(OpcUa_EndpointUrlListDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeArray(String, EndpointUrlList); } } /*============================================================================ * OpcUa_EndpointUrlListDataType_Clear *===========================================================================*/ OpcUa_Void OpcUa_EndpointUrlListDataType_Clear(OpcUa_EndpointUrlListDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearArray(String, EndpointUrlList); } } /*============================================================================ * OpcUa_EndpointUrlListDataType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_EndpointUrlListDataType_GetSize(OpcUa_EndpointUrlListDataType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EndpointUrlListDataType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeArray(String, EndpointUrlList); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EndpointUrlListDataType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_EndpointUrlListDataType_Encode(OpcUa_EndpointUrlListDataType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EndpointUrlListDataType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteArray(String, EndpointUrlList); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EndpointUrlListDataType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_EndpointUrlListDataType_Decode(OpcUa_EndpointUrlListDataType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EndpointUrlListDataType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_EndpointUrlListDataType_Initialize(a_pValue); OpcUa_Field_ReadArray(String, EndpointUrlList); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_EndpointUrlListDataType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EndpointUrlListDataType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_EndpointUrlListDataType_EncodeableType = { "EndpointUrlListDataType", OpcUaId_EndpointUrlListDataType, OpcUaId_EndpointUrlListDataType_Encoding_DefaultBinary, OpcUaId_EndpointUrlListDataType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_EndpointUrlListDataType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_EndpointUrlListDataType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_EndpointUrlListDataType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_EndpointUrlListDataType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_EndpointUrlListDataType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_EndpointUrlListDataType_Decode }; #endif #ifndef OPCUA_EXCLUDE_NetworkGroupDataType /*============================================================================ * OpcUa_NetworkGroupDataType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_NetworkGroupDataType_Initialize(OpcUa_NetworkGroupDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(String, ServerUri); OpcUa_Field_InitializeEncodeableArray(OpcUa_EndpointUrlListDataType, NetworkPaths); } } /*============================================================================ * OpcUa_NetworkGroupDataType_Clear *===========================================================================*/ OpcUa_Void OpcUa_NetworkGroupDataType_Clear(OpcUa_NetworkGroupDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(String, ServerUri); OpcUa_Field_ClearEncodeableArray(OpcUa_EndpointUrlListDataType, NetworkPaths); } } /*============================================================================ * OpcUa_NetworkGroupDataType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_NetworkGroupDataType_GetSize(OpcUa_NetworkGroupDataType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "NetworkGroupDataType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(String, ServerUri); OpcUa_Field_GetSizeEncodeableArray(OpcUa_EndpointUrlListDataType, NetworkPaths); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_NetworkGroupDataType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_NetworkGroupDataType_Encode(OpcUa_NetworkGroupDataType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "NetworkGroupDataType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(String, ServerUri); OpcUa_Field_WriteEncodeableArray(OpcUa_EndpointUrlListDataType, NetworkPaths); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_NetworkGroupDataType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_NetworkGroupDataType_Decode(OpcUa_NetworkGroupDataType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "NetworkGroupDataType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_NetworkGroupDataType_Initialize(a_pValue); OpcUa_Field_Read(String, ServerUri); OpcUa_Field_ReadEncodeableArray(OpcUa_EndpointUrlListDataType, NetworkPaths); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_NetworkGroupDataType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_NetworkGroupDataType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_NetworkGroupDataType_EncodeableType = { "NetworkGroupDataType", OpcUaId_NetworkGroupDataType, OpcUaId_NetworkGroupDataType_Encoding_DefaultBinary, OpcUaId_NetworkGroupDataType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_NetworkGroupDataType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_NetworkGroupDataType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_NetworkGroupDataType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_NetworkGroupDataType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_NetworkGroupDataType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_NetworkGroupDataType_Decode }; #endif #ifndef OPCUA_EXCLUDE_SamplingIntervalDiagnosticsDataType /*============================================================================ * OpcUa_SamplingIntervalDiagnosticsDataType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_SamplingIntervalDiagnosticsDataType_Initialize(OpcUa_SamplingIntervalDiagnosticsDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(Double, SamplingInterval); OpcUa_Field_Initialize(UInt32, MonitoredItemCount); OpcUa_Field_Initialize(UInt32, MaxMonitoredItemCount); OpcUa_Field_Initialize(UInt32, DisabledMonitoredItemCount); } } /*============================================================================ * OpcUa_SamplingIntervalDiagnosticsDataType_Clear *===========================================================================*/ OpcUa_Void OpcUa_SamplingIntervalDiagnosticsDataType_Clear(OpcUa_SamplingIntervalDiagnosticsDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(Double, SamplingInterval); OpcUa_Field_Clear(UInt32, MonitoredItemCount); OpcUa_Field_Clear(UInt32, MaxMonitoredItemCount); OpcUa_Field_Clear(UInt32, DisabledMonitoredItemCount); } } /*============================================================================ * OpcUa_SamplingIntervalDiagnosticsDataType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_SamplingIntervalDiagnosticsDataType_GetSize(OpcUa_SamplingIntervalDiagnosticsDataType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SamplingIntervalDiagnosticsDataType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(Double, SamplingInterval); OpcUa_Field_GetSize(UInt32, MonitoredItemCount); OpcUa_Field_GetSize(UInt32, MaxMonitoredItemCount); OpcUa_Field_GetSize(UInt32, DisabledMonitoredItemCount); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SamplingIntervalDiagnosticsDataType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_SamplingIntervalDiagnosticsDataType_Encode(OpcUa_SamplingIntervalDiagnosticsDataType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SamplingIntervalDiagnosticsDataType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(Double, SamplingInterval); OpcUa_Field_Write(UInt32, MonitoredItemCount); OpcUa_Field_Write(UInt32, MaxMonitoredItemCount); OpcUa_Field_Write(UInt32, DisabledMonitoredItemCount); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SamplingIntervalDiagnosticsDataType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_SamplingIntervalDiagnosticsDataType_Decode(OpcUa_SamplingIntervalDiagnosticsDataType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SamplingIntervalDiagnosticsDataType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_SamplingIntervalDiagnosticsDataType_Initialize(a_pValue); OpcUa_Field_Read(Double, SamplingInterval); OpcUa_Field_Read(UInt32, MonitoredItemCount); OpcUa_Field_Read(UInt32, MaxMonitoredItemCount); OpcUa_Field_Read(UInt32, DisabledMonitoredItemCount); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_SamplingIntervalDiagnosticsDataType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SamplingIntervalDiagnosticsDataType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_SamplingIntervalDiagnosticsDataType_EncodeableType = { "SamplingIntervalDiagnosticsDataType", OpcUaId_SamplingIntervalDiagnosticsDataType, OpcUaId_SamplingIntervalDiagnosticsDataType_Encoding_DefaultBinary, OpcUaId_SamplingIntervalDiagnosticsDataType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_SamplingIntervalDiagnosticsDataType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_SamplingIntervalDiagnosticsDataType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_SamplingIntervalDiagnosticsDataType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_SamplingIntervalDiagnosticsDataType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_SamplingIntervalDiagnosticsDataType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_SamplingIntervalDiagnosticsDataType_Decode }; #endif #ifndef OPCUA_EXCLUDE_ServerDiagnosticsSummaryDataType /*============================================================================ * OpcUa_ServerDiagnosticsSummaryDataType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ServerDiagnosticsSummaryDataType_Initialize(OpcUa_ServerDiagnosticsSummaryDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, ServerViewCount); OpcUa_Field_Initialize(UInt32, CurrentSessionCount); OpcUa_Field_Initialize(UInt32, CumulatedSessionCount); OpcUa_Field_Initialize(UInt32, SecurityRejectedSessionCount); OpcUa_Field_Initialize(UInt32, RejectedSessionCount); OpcUa_Field_Initialize(UInt32, SessionTimeoutCount); OpcUa_Field_Initialize(UInt32, SessionAbortCount); OpcUa_Field_Initialize(UInt32, CurrentSubscriptionCount); OpcUa_Field_Initialize(UInt32, CumulatedSubscriptionCount); OpcUa_Field_Initialize(UInt32, PublishingIntervalCount); OpcUa_Field_Initialize(UInt32, SecurityRejectedRequestsCount); OpcUa_Field_Initialize(UInt32, RejectedRequestsCount); } } /*============================================================================ * OpcUa_ServerDiagnosticsSummaryDataType_Clear *===========================================================================*/ OpcUa_Void OpcUa_ServerDiagnosticsSummaryDataType_Clear(OpcUa_ServerDiagnosticsSummaryDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, ServerViewCount); OpcUa_Field_Clear(UInt32, CurrentSessionCount); OpcUa_Field_Clear(UInt32, CumulatedSessionCount); OpcUa_Field_Clear(UInt32, SecurityRejectedSessionCount); OpcUa_Field_Clear(UInt32, RejectedSessionCount); OpcUa_Field_Clear(UInt32, SessionTimeoutCount); OpcUa_Field_Clear(UInt32, SessionAbortCount); OpcUa_Field_Clear(UInt32, CurrentSubscriptionCount); OpcUa_Field_Clear(UInt32, CumulatedSubscriptionCount); OpcUa_Field_Clear(UInt32, PublishingIntervalCount); OpcUa_Field_Clear(UInt32, SecurityRejectedRequestsCount); OpcUa_Field_Clear(UInt32, RejectedRequestsCount); } } /*============================================================================ * OpcUa_ServerDiagnosticsSummaryDataType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ServerDiagnosticsSummaryDataType_GetSize(OpcUa_ServerDiagnosticsSummaryDataType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ServerDiagnosticsSummaryDataType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, ServerViewCount); OpcUa_Field_GetSize(UInt32, CurrentSessionCount); OpcUa_Field_GetSize(UInt32, CumulatedSessionCount); OpcUa_Field_GetSize(UInt32, SecurityRejectedSessionCount); OpcUa_Field_GetSize(UInt32, RejectedSessionCount); OpcUa_Field_GetSize(UInt32, SessionTimeoutCount); OpcUa_Field_GetSize(UInt32, SessionAbortCount); OpcUa_Field_GetSize(UInt32, CurrentSubscriptionCount); OpcUa_Field_GetSize(UInt32, CumulatedSubscriptionCount); OpcUa_Field_GetSize(UInt32, PublishingIntervalCount); OpcUa_Field_GetSize(UInt32, SecurityRejectedRequestsCount); OpcUa_Field_GetSize(UInt32, RejectedRequestsCount); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ServerDiagnosticsSummaryDataType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ServerDiagnosticsSummaryDataType_Encode(OpcUa_ServerDiagnosticsSummaryDataType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ServerDiagnosticsSummaryDataType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, ServerViewCount); OpcUa_Field_Write(UInt32, CurrentSessionCount); OpcUa_Field_Write(UInt32, CumulatedSessionCount); OpcUa_Field_Write(UInt32, SecurityRejectedSessionCount); OpcUa_Field_Write(UInt32, RejectedSessionCount); OpcUa_Field_Write(UInt32, SessionTimeoutCount); OpcUa_Field_Write(UInt32, SessionAbortCount); OpcUa_Field_Write(UInt32, CurrentSubscriptionCount); OpcUa_Field_Write(UInt32, CumulatedSubscriptionCount); OpcUa_Field_Write(UInt32, PublishingIntervalCount); OpcUa_Field_Write(UInt32, SecurityRejectedRequestsCount); OpcUa_Field_Write(UInt32, RejectedRequestsCount); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ServerDiagnosticsSummaryDataType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ServerDiagnosticsSummaryDataType_Decode(OpcUa_ServerDiagnosticsSummaryDataType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ServerDiagnosticsSummaryDataType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ServerDiagnosticsSummaryDataType_Initialize(a_pValue); OpcUa_Field_Read(UInt32, ServerViewCount); OpcUa_Field_Read(UInt32, CurrentSessionCount); OpcUa_Field_Read(UInt32, CumulatedSessionCount); OpcUa_Field_Read(UInt32, SecurityRejectedSessionCount); OpcUa_Field_Read(UInt32, RejectedSessionCount); OpcUa_Field_Read(UInt32, SessionTimeoutCount); OpcUa_Field_Read(UInt32, SessionAbortCount); OpcUa_Field_Read(UInt32, CurrentSubscriptionCount); OpcUa_Field_Read(UInt32, CumulatedSubscriptionCount); OpcUa_Field_Read(UInt32, PublishingIntervalCount); OpcUa_Field_Read(UInt32, SecurityRejectedRequestsCount); OpcUa_Field_Read(UInt32, RejectedRequestsCount); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ServerDiagnosticsSummaryDataType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ServerDiagnosticsSummaryDataType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ServerDiagnosticsSummaryDataType_EncodeableType = { "ServerDiagnosticsSummaryDataType", OpcUaId_ServerDiagnosticsSummaryDataType, OpcUaId_ServerDiagnosticsSummaryDataType_Encoding_DefaultBinary, OpcUaId_ServerDiagnosticsSummaryDataType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ServerDiagnosticsSummaryDataType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ServerDiagnosticsSummaryDataType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ServerDiagnosticsSummaryDataType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ServerDiagnosticsSummaryDataType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ServerDiagnosticsSummaryDataType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ServerDiagnosticsSummaryDataType_Decode }; #endif #ifndef OPCUA_EXCLUDE_ServerStatusDataType /*============================================================================ * OpcUa_ServerStatusDataType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ServerStatusDataType_Initialize(OpcUa_ServerStatusDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(DateTime, StartTime); OpcUa_Field_Initialize(DateTime, CurrentTime); OpcUa_Field_InitializeEnumerated(OpcUa_ServerState, State); OpcUa_Field_InitializeEncodeable(OpcUa_BuildInfo, BuildInfo); OpcUa_Field_Initialize(UInt32, SecondsTillShutdown); OpcUa_Field_Initialize(LocalizedText, ShutdownReason); } } /*============================================================================ * OpcUa_ServerStatusDataType_Clear *===========================================================================*/ OpcUa_Void OpcUa_ServerStatusDataType_Clear(OpcUa_ServerStatusDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(DateTime, StartTime); OpcUa_Field_Clear(DateTime, CurrentTime); OpcUa_Field_ClearEnumerated(OpcUa_ServerState, State); OpcUa_Field_ClearEncodeable(OpcUa_BuildInfo, BuildInfo); OpcUa_Field_Clear(UInt32, SecondsTillShutdown); OpcUa_Field_Clear(LocalizedText, ShutdownReason); } } /*============================================================================ * OpcUa_ServerStatusDataType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ServerStatusDataType_GetSize(OpcUa_ServerStatusDataType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ServerStatusDataType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(DateTime, StartTime); OpcUa_Field_GetSize(DateTime, CurrentTime); OpcUa_Field_GetSizeEnumerated(OpcUa_ServerState, State); OpcUa_Field_GetSizeEncodeable(OpcUa_BuildInfo, BuildInfo); OpcUa_Field_GetSize(UInt32, SecondsTillShutdown); OpcUa_Field_GetSize(LocalizedText, ShutdownReason); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ServerStatusDataType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ServerStatusDataType_Encode(OpcUa_ServerStatusDataType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ServerStatusDataType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(DateTime, StartTime); OpcUa_Field_Write(DateTime, CurrentTime); OpcUa_Field_WriteEnumerated(OpcUa_ServerState, State); OpcUa_Field_WriteEncodeable(OpcUa_BuildInfo, BuildInfo); OpcUa_Field_Write(UInt32, SecondsTillShutdown); OpcUa_Field_Write(LocalizedText, ShutdownReason); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ServerStatusDataType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ServerStatusDataType_Decode(OpcUa_ServerStatusDataType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ServerStatusDataType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ServerStatusDataType_Initialize(a_pValue); OpcUa_Field_Read(DateTime, StartTime); OpcUa_Field_Read(DateTime, CurrentTime); OpcUa_Field_ReadEnumerated(OpcUa_ServerState, State); OpcUa_Field_ReadEncodeable(OpcUa_BuildInfo, BuildInfo); OpcUa_Field_Read(UInt32, SecondsTillShutdown); OpcUa_Field_Read(LocalizedText, ShutdownReason); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ServerStatusDataType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ServerStatusDataType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ServerStatusDataType_EncodeableType = { "ServerStatusDataType", OpcUaId_ServerStatusDataType, OpcUaId_ServerStatusDataType_Encoding_DefaultBinary, OpcUaId_ServerStatusDataType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ServerStatusDataType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ServerStatusDataType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ServerStatusDataType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ServerStatusDataType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ServerStatusDataType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ServerStatusDataType_Decode }; #endif #ifndef OPCUA_EXCLUDE_SessionDiagnosticsDataType /*============================================================================ * OpcUa_SessionDiagnosticsDataType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_SessionDiagnosticsDataType_Initialize(OpcUa_SessionDiagnosticsDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, SessionId); OpcUa_Field_Initialize(String, SessionName); OpcUa_Field_InitializeEncodeable(OpcUa_ApplicationDescription, ClientDescription); OpcUa_Field_Initialize(String, ServerUri); OpcUa_Field_Initialize(String, EndpointUrl); OpcUa_Field_InitializeArray(String, LocaleIds); OpcUa_Field_Initialize(Double, ActualSessionTimeout); OpcUa_Field_Initialize(UInt32, MaxResponseMessageSize); OpcUa_Field_Initialize(DateTime, ClientConnectionTime); OpcUa_Field_Initialize(DateTime, ClientLastContactTime); OpcUa_Field_Initialize(UInt32, CurrentSubscriptionsCount); OpcUa_Field_Initialize(UInt32, CurrentMonitoredItemsCount); OpcUa_Field_Initialize(UInt32, CurrentPublishRequestsInQueue); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, TotalRequestCount); OpcUa_Field_Initialize(UInt32, UnauthorizedRequestCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, ReadCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, HistoryReadCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, WriteCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, HistoryUpdateCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, CallCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, CreateMonitoredItemsCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, ModifyMonitoredItemsCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, SetMonitoringModeCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, SetTriggeringCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, DeleteMonitoredItemsCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, CreateSubscriptionCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, ModifySubscriptionCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, SetPublishingModeCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, PublishCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, RepublishCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, TransferSubscriptionsCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, DeleteSubscriptionsCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, AddNodesCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, AddReferencesCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, DeleteNodesCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, DeleteReferencesCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, BrowseCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, BrowseNextCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, TranslateBrowsePathsToNodeIdsCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, QueryFirstCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, QueryNextCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, RegisterNodesCount); OpcUa_Field_InitializeEncodeable(OpcUa_ServiceCounterDataType, UnregisterNodesCount); } } /*============================================================================ * OpcUa_SessionDiagnosticsDataType_Clear *===========================================================================*/ OpcUa_Void OpcUa_SessionDiagnosticsDataType_Clear(OpcUa_SessionDiagnosticsDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, SessionId); OpcUa_Field_Clear(String, SessionName); OpcUa_Field_ClearEncodeable(OpcUa_ApplicationDescription, ClientDescription); OpcUa_Field_Clear(String, ServerUri); OpcUa_Field_Clear(String, EndpointUrl); OpcUa_Field_ClearArray(String, LocaleIds); OpcUa_Field_Clear(Double, ActualSessionTimeout); OpcUa_Field_Clear(UInt32, MaxResponseMessageSize); OpcUa_Field_Clear(DateTime, ClientConnectionTime); OpcUa_Field_Clear(DateTime, ClientLastContactTime); OpcUa_Field_Clear(UInt32, CurrentSubscriptionsCount); OpcUa_Field_Clear(UInt32, CurrentMonitoredItemsCount); OpcUa_Field_Clear(UInt32, CurrentPublishRequestsInQueue); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, TotalRequestCount); OpcUa_Field_Clear(UInt32, UnauthorizedRequestCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, ReadCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, HistoryReadCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, WriteCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, HistoryUpdateCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, CallCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, CreateMonitoredItemsCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, ModifyMonitoredItemsCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, SetMonitoringModeCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, SetTriggeringCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, DeleteMonitoredItemsCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, CreateSubscriptionCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, ModifySubscriptionCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, SetPublishingModeCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, PublishCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, RepublishCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, TransferSubscriptionsCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, DeleteSubscriptionsCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, AddNodesCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, AddReferencesCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, DeleteNodesCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, DeleteReferencesCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, BrowseCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, BrowseNextCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, TranslateBrowsePathsToNodeIdsCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, QueryFirstCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, QueryNextCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, RegisterNodesCount); OpcUa_Field_ClearEncodeable(OpcUa_ServiceCounterDataType, UnregisterNodesCount); } } /*============================================================================ * OpcUa_SessionDiagnosticsDataType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_SessionDiagnosticsDataType_GetSize(OpcUa_SessionDiagnosticsDataType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SessionDiagnosticsDataType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, SessionId); OpcUa_Field_GetSize(String, SessionName); OpcUa_Field_GetSizeEncodeable(OpcUa_ApplicationDescription, ClientDescription); OpcUa_Field_GetSize(String, ServerUri); OpcUa_Field_GetSize(String, EndpointUrl); OpcUa_Field_GetSizeArray(String, LocaleIds); OpcUa_Field_GetSize(Double, ActualSessionTimeout); OpcUa_Field_GetSize(UInt32, MaxResponseMessageSize); OpcUa_Field_GetSize(DateTime, ClientConnectionTime); OpcUa_Field_GetSize(DateTime, ClientLastContactTime); OpcUa_Field_GetSize(UInt32, CurrentSubscriptionsCount); OpcUa_Field_GetSize(UInt32, CurrentMonitoredItemsCount); OpcUa_Field_GetSize(UInt32, CurrentPublishRequestsInQueue); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, TotalRequestCount); OpcUa_Field_GetSize(UInt32, UnauthorizedRequestCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, ReadCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, HistoryReadCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, WriteCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, HistoryUpdateCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, CallCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, CreateMonitoredItemsCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, ModifyMonitoredItemsCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, SetMonitoringModeCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, SetTriggeringCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, DeleteMonitoredItemsCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, CreateSubscriptionCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, ModifySubscriptionCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, SetPublishingModeCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, PublishCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, RepublishCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, TransferSubscriptionsCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, DeleteSubscriptionsCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, AddNodesCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, AddReferencesCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, DeleteNodesCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, DeleteReferencesCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, BrowseCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, BrowseNextCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, TranslateBrowsePathsToNodeIdsCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, QueryFirstCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, QueryNextCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, RegisterNodesCount); OpcUa_Field_GetSizeEncodeable(OpcUa_ServiceCounterDataType, UnregisterNodesCount); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SessionDiagnosticsDataType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_SessionDiagnosticsDataType_Encode(OpcUa_SessionDiagnosticsDataType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SessionDiagnosticsDataType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, SessionId); OpcUa_Field_Write(String, SessionName); OpcUa_Field_WriteEncodeable(OpcUa_ApplicationDescription, ClientDescription); OpcUa_Field_Write(String, ServerUri); OpcUa_Field_Write(String, EndpointUrl); OpcUa_Field_WriteArray(String, LocaleIds); OpcUa_Field_Write(Double, ActualSessionTimeout); OpcUa_Field_Write(UInt32, MaxResponseMessageSize); OpcUa_Field_Write(DateTime, ClientConnectionTime); OpcUa_Field_Write(DateTime, ClientLastContactTime); OpcUa_Field_Write(UInt32, CurrentSubscriptionsCount); OpcUa_Field_Write(UInt32, CurrentMonitoredItemsCount); OpcUa_Field_Write(UInt32, CurrentPublishRequestsInQueue); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, TotalRequestCount); OpcUa_Field_Write(UInt32, UnauthorizedRequestCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, ReadCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, HistoryReadCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, WriteCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, HistoryUpdateCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, CallCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, CreateMonitoredItemsCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, ModifyMonitoredItemsCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, SetMonitoringModeCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, SetTriggeringCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, DeleteMonitoredItemsCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, CreateSubscriptionCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, ModifySubscriptionCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, SetPublishingModeCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, PublishCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, RepublishCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, TransferSubscriptionsCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, DeleteSubscriptionsCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, AddNodesCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, AddReferencesCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, DeleteNodesCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, DeleteReferencesCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, BrowseCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, BrowseNextCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, TranslateBrowsePathsToNodeIdsCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, QueryFirstCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, QueryNextCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, RegisterNodesCount); OpcUa_Field_WriteEncodeable(OpcUa_ServiceCounterDataType, UnregisterNodesCount); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SessionDiagnosticsDataType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_SessionDiagnosticsDataType_Decode(OpcUa_SessionDiagnosticsDataType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SessionDiagnosticsDataType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_SessionDiagnosticsDataType_Initialize(a_pValue); OpcUa_Field_Read(NodeId, SessionId); OpcUa_Field_Read(String, SessionName); OpcUa_Field_ReadEncodeable(OpcUa_ApplicationDescription, ClientDescription); OpcUa_Field_Read(String, ServerUri); OpcUa_Field_Read(String, EndpointUrl); OpcUa_Field_ReadArray(String, LocaleIds); OpcUa_Field_Read(Double, ActualSessionTimeout); OpcUa_Field_Read(UInt32, MaxResponseMessageSize); OpcUa_Field_Read(DateTime, ClientConnectionTime); OpcUa_Field_Read(DateTime, ClientLastContactTime); OpcUa_Field_Read(UInt32, CurrentSubscriptionsCount); OpcUa_Field_Read(UInt32, CurrentMonitoredItemsCount); OpcUa_Field_Read(UInt32, CurrentPublishRequestsInQueue); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, TotalRequestCount); OpcUa_Field_Read(UInt32, UnauthorizedRequestCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, ReadCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, HistoryReadCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, WriteCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, HistoryUpdateCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, CallCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, CreateMonitoredItemsCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, ModifyMonitoredItemsCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, SetMonitoringModeCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, SetTriggeringCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, DeleteMonitoredItemsCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, CreateSubscriptionCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, ModifySubscriptionCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, SetPublishingModeCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, PublishCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, RepublishCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, TransferSubscriptionsCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, DeleteSubscriptionsCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, AddNodesCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, AddReferencesCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, DeleteNodesCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, DeleteReferencesCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, BrowseCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, BrowseNextCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, TranslateBrowsePathsToNodeIdsCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, QueryFirstCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, QueryNextCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, RegisterNodesCount); OpcUa_Field_ReadEncodeable(OpcUa_ServiceCounterDataType, UnregisterNodesCount); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_SessionDiagnosticsDataType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SessionDiagnosticsDataType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_SessionDiagnosticsDataType_EncodeableType = { "SessionDiagnosticsDataType", OpcUaId_SessionDiagnosticsDataType, OpcUaId_SessionDiagnosticsDataType_Encoding_DefaultBinary, OpcUaId_SessionDiagnosticsDataType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_SessionDiagnosticsDataType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_SessionDiagnosticsDataType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_SessionDiagnosticsDataType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_SessionDiagnosticsDataType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_SessionDiagnosticsDataType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_SessionDiagnosticsDataType_Decode }; #endif #ifndef OPCUA_EXCLUDE_SessionSecurityDiagnosticsDataType /*============================================================================ * OpcUa_SessionSecurityDiagnosticsDataType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_SessionSecurityDiagnosticsDataType_Initialize(OpcUa_SessionSecurityDiagnosticsDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, SessionId); OpcUa_Field_Initialize(String, ClientUserIdOfSession); OpcUa_Field_InitializeArray(String, ClientUserIdHistory); OpcUa_Field_Initialize(String, AuthenticationMechanism); OpcUa_Field_Initialize(String, Encoding); OpcUa_Field_Initialize(String, TransportProtocol); OpcUa_Field_InitializeEnumerated(OpcUa_MessageSecurityMode, SecurityMode); OpcUa_Field_Initialize(String, SecurityPolicyUri); OpcUa_Field_Initialize(ByteString, ClientCertificate); } } /*============================================================================ * OpcUa_SessionSecurityDiagnosticsDataType_Clear *===========================================================================*/ OpcUa_Void OpcUa_SessionSecurityDiagnosticsDataType_Clear(OpcUa_SessionSecurityDiagnosticsDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, SessionId); OpcUa_Field_Clear(String, ClientUserIdOfSession); OpcUa_Field_ClearArray(String, ClientUserIdHistory); OpcUa_Field_Clear(String, AuthenticationMechanism); OpcUa_Field_Clear(String, Encoding); OpcUa_Field_Clear(String, TransportProtocol); OpcUa_Field_ClearEnumerated(OpcUa_MessageSecurityMode, SecurityMode); OpcUa_Field_Clear(String, SecurityPolicyUri); OpcUa_Field_Clear(ByteString, ClientCertificate); } } /*============================================================================ * OpcUa_SessionSecurityDiagnosticsDataType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_SessionSecurityDiagnosticsDataType_GetSize(OpcUa_SessionSecurityDiagnosticsDataType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SessionSecurityDiagnosticsDataType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, SessionId); OpcUa_Field_GetSize(String, ClientUserIdOfSession); OpcUa_Field_GetSizeArray(String, ClientUserIdHistory); OpcUa_Field_GetSize(String, AuthenticationMechanism); OpcUa_Field_GetSize(String, Encoding); OpcUa_Field_GetSize(String, TransportProtocol); OpcUa_Field_GetSizeEnumerated(OpcUa_MessageSecurityMode, SecurityMode); OpcUa_Field_GetSize(String, SecurityPolicyUri); OpcUa_Field_GetSize(ByteString, ClientCertificate); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SessionSecurityDiagnosticsDataType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_SessionSecurityDiagnosticsDataType_Encode(OpcUa_SessionSecurityDiagnosticsDataType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SessionSecurityDiagnosticsDataType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, SessionId); OpcUa_Field_Write(String, ClientUserIdOfSession); OpcUa_Field_WriteArray(String, ClientUserIdHistory); OpcUa_Field_Write(String, AuthenticationMechanism); OpcUa_Field_Write(String, Encoding); OpcUa_Field_Write(String, TransportProtocol); OpcUa_Field_WriteEnumerated(OpcUa_MessageSecurityMode, SecurityMode); OpcUa_Field_Write(String, SecurityPolicyUri); OpcUa_Field_Write(ByteString, ClientCertificate); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SessionSecurityDiagnosticsDataType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_SessionSecurityDiagnosticsDataType_Decode(OpcUa_SessionSecurityDiagnosticsDataType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SessionSecurityDiagnosticsDataType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_SessionSecurityDiagnosticsDataType_Initialize(a_pValue); OpcUa_Field_Read(NodeId, SessionId); OpcUa_Field_Read(String, ClientUserIdOfSession); OpcUa_Field_ReadArray(String, ClientUserIdHistory); OpcUa_Field_Read(String, AuthenticationMechanism); OpcUa_Field_Read(String, Encoding); OpcUa_Field_Read(String, TransportProtocol); OpcUa_Field_ReadEnumerated(OpcUa_MessageSecurityMode, SecurityMode); OpcUa_Field_Read(String, SecurityPolicyUri); OpcUa_Field_Read(ByteString, ClientCertificate); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_SessionSecurityDiagnosticsDataType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SessionSecurityDiagnosticsDataType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_SessionSecurityDiagnosticsDataType_EncodeableType = { "SessionSecurityDiagnosticsDataType", OpcUaId_SessionSecurityDiagnosticsDataType, OpcUaId_SessionSecurityDiagnosticsDataType_Encoding_DefaultBinary, OpcUaId_SessionSecurityDiagnosticsDataType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_SessionSecurityDiagnosticsDataType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_SessionSecurityDiagnosticsDataType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_SessionSecurityDiagnosticsDataType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_SessionSecurityDiagnosticsDataType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_SessionSecurityDiagnosticsDataType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_SessionSecurityDiagnosticsDataType_Decode }; #endif #ifndef OPCUA_EXCLUDE_ServiceCounterDataType /*============================================================================ * OpcUa_ServiceCounterDataType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ServiceCounterDataType_Initialize(OpcUa_ServiceCounterDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(UInt32, TotalCount); OpcUa_Field_Initialize(UInt32, ErrorCount); } } /*============================================================================ * OpcUa_ServiceCounterDataType_Clear *===========================================================================*/ OpcUa_Void OpcUa_ServiceCounterDataType_Clear(OpcUa_ServiceCounterDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(UInt32, TotalCount); OpcUa_Field_Clear(UInt32, ErrorCount); } } /*============================================================================ * OpcUa_ServiceCounterDataType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ServiceCounterDataType_GetSize(OpcUa_ServiceCounterDataType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ServiceCounterDataType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(UInt32, TotalCount); OpcUa_Field_GetSize(UInt32, ErrorCount); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ServiceCounterDataType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ServiceCounterDataType_Encode(OpcUa_ServiceCounterDataType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ServiceCounterDataType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(UInt32, TotalCount); OpcUa_Field_Write(UInt32, ErrorCount); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ServiceCounterDataType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ServiceCounterDataType_Decode(OpcUa_ServiceCounterDataType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ServiceCounterDataType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ServiceCounterDataType_Initialize(a_pValue); OpcUa_Field_Read(UInt32, TotalCount); OpcUa_Field_Read(UInt32, ErrorCount); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ServiceCounterDataType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ServiceCounterDataType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ServiceCounterDataType_EncodeableType = { "ServiceCounterDataType", OpcUaId_ServiceCounterDataType, OpcUaId_ServiceCounterDataType_Encoding_DefaultBinary, OpcUaId_ServiceCounterDataType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ServiceCounterDataType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ServiceCounterDataType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ServiceCounterDataType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ServiceCounterDataType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ServiceCounterDataType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ServiceCounterDataType_Decode }; #endif #ifndef OPCUA_EXCLUDE_StatusResult /*============================================================================ * OpcUa_StatusResult_Initialize *===========================================================================*/ OpcUa_Void OpcUa_StatusResult_Initialize(OpcUa_StatusResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(StatusCode, StatusCode); OpcUa_Field_Initialize(DiagnosticInfo, DiagnosticInfo); } } /*============================================================================ * OpcUa_StatusResult_Clear *===========================================================================*/ OpcUa_Void OpcUa_StatusResult_Clear(OpcUa_StatusResult* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(StatusCode, StatusCode); OpcUa_Field_Clear(DiagnosticInfo, DiagnosticInfo); } } /*============================================================================ * OpcUa_StatusResult_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_StatusResult_GetSize(OpcUa_StatusResult* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "StatusResult_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(StatusCode, StatusCode); OpcUa_Field_GetSize(DiagnosticInfo, DiagnosticInfo); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_StatusResult_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_StatusResult_Encode(OpcUa_StatusResult* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "StatusResult_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(StatusCode, StatusCode); OpcUa_Field_Write(DiagnosticInfo, DiagnosticInfo); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_StatusResult_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_StatusResult_Decode(OpcUa_StatusResult* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "StatusResult_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_StatusResult_Initialize(a_pValue); OpcUa_Field_Read(StatusCode, StatusCode); OpcUa_Field_Read(DiagnosticInfo, DiagnosticInfo); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_StatusResult_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_StatusResult_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_StatusResult_EncodeableType = { "StatusResult", OpcUaId_StatusResult, OpcUaId_StatusResult_Encoding_DefaultBinary, OpcUaId_StatusResult_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_StatusResult), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_StatusResult_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_StatusResult_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_StatusResult_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_StatusResult_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_StatusResult_Decode }; #endif #ifndef OPCUA_EXCLUDE_SubscriptionDiagnosticsDataType /*============================================================================ * OpcUa_SubscriptionDiagnosticsDataType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_SubscriptionDiagnosticsDataType_Initialize(OpcUa_SubscriptionDiagnosticsDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, SessionId); OpcUa_Field_Initialize(UInt32, SubscriptionId); OpcUa_Field_Initialize(Byte, Priority); OpcUa_Field_Initialize(Double, PublishingInterval); OpcUa_Field_Initialize(UInt32, MaxKeepAliveCount); OpcUa_Field_Initialize(UInt32, MaxLifetimeCount); OpcUa_Field_Initialize(UInt32, MaxNotificationsPerPublish); OpcUa_Field_Initialize(Boolean, PublishingEnabled); OpcUa_Field_Initialize(UInt32, ModifyCount); OpcUa_Field_Initialize(UInt32, EnableCount); OpcUa_Field_Initialize(UInt32, DisableCount); OpcUa_Field_Initialize(UInt32, RepublishRequestCount); OpcUa_Field_Initialize(UInt32, RepublishMessageRequestCount); OpcUa_Field_Initialize(UInt32, RepublishMessageCount); OpcUa_Field_Initialize(UInt32, TransferRequestCount); OpcUa_Field_Initialize(UInt32, TransferredToAltClientCount); OpcUa_Field_Initialize(UInt32, TransferredToSameClientCount); OpcUa_Field_Initialize(UInt32, PublishRequestCount); OpcUa_Field_Initialize(UInt32, DataChangeNotificationsCount); OpcUa_Field_Initialize(UInt32, EventNotificationsCount); OpcUa_Field_Initialize(UInt32, NotificationsCount); OpcUa_Field_Initialize(UInt32, LatePublishRequestCount); OpcUa_Field_Initialize(UInt32, CurrentKeepAliveCount); OpcUa_Field_Initialize(UInt32, CurrentLifetimeCount); OpcUa_Field_Initialize(UInt32, UnacknowledgedMessageCount); OpcUa_Field_Initialize(UInt32, DiscardedMessageCount); OpcUa_Field_Initialize(UInt32, MonitoredItemCount); OpcUa_Field_Initialize(UInt32, DisabledMonitoredItemCount); OpcUa_Field_Initialize(UInt32, MonitoringQueueOverflowCount); OpcUa_Field_Initialize(UInt32, NextSequenceNumber); OpcUa_Field_Initialize(UInt32, EventQueueOverFlowCount); } } /*============================================================================ * OpcUa_SubscriptionDiagnosticsDataType_Clear *===========================================================================*/ OpcUa_Void OpcUa_SubscriptionDiagnosticsDataType_Clear(OpcUa_SubscriptionDiagnosticsDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, SessionId); OpcUa_Field_Clear(UInt32, SubscriptionId); OpcUa_Field_Clear(Byte, Priority); OpcUa_Field_Clear(Double, PublishingInterval); OpcUa_Field_Clear(UInt32, MaxKeepAliveCount); OpcUa_Field_Clear(UInt32, MaxLifetimeCount); OpcUa_Field_Clear(UInt32, MaxNotificationsPerPublish); OpcUa_Field_Clear(Boolean, PublishingEnabled); OpcUa_Field_Clear(UInt32, ModifyCount); OpcUa_Field_Clear(UInt32, EnableCount); OpcUa_Field_Clear(UInt32, DisableCount); OpcUa_Field_Clear(UInt32, RepublishRequestCount); OpcUa_Field_Clear(UInt32, RepublishMessageRequestCount); OpcUa_Field_Clear(UInt32, RepublishMessageCount); OpcUa_Field_Clear(UInt32, TransferRequestCount); OpcUa_Field_Clear(UInt32, TransferredToAltClientCount); OpcUa_Field_Clear(UInt32, TransferredToSameClientCount); OpcUa_Field_Clear(UInt32, PublishRequestCount); OpcUa_Field_Clear(UInt32, DataChangeNotificationsCount); OpcUa_Field_Clear(UInt32, EventNotificationsCount); OpcUa_Field_Clear(UInt32, NotificationsCount); OpcUa_Field_Clear(UInt32, LatePublishRequestCount); OpcUa_Field_Clear(UInt32, CurrentKeepAliveCount); OpcUa_Field_Clear(UInt32, CurrentLifetimeCount); OpcUa_Field_Clear(UInt32, UnacknowledgedMessageCount); OpcUa_Field_Clear(UInt32, DiscardedMessageCount); OpcUa_Field_Clear(UInt32, MonitoredItemCount); OpcUa_Field_Clear(UInt32, DisabledMonitoredItemCount); OpcUa_Field_Clear(UInt32, MonitoringQueueOverflowCount); OpcUa_Field_Clear(UInt32, NextSequenceNumber); OpcUa_Field_Clear(UInt32, EventQueueOverFlowCount); } } /*============================================================================ * OpcUa_SubscriptionDiagnosticsDataType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_SubscriptionDiagnosticsDataType_GetSize(OpcUa_SubscriptionDiagnosticsDataType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SubscriptionDiagnosticsDataType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, SessionId); OpcUa_Field_GetSize(UInt32, SubscriptionId); OpcUa_Field_GetSize(Byte, Priority); OpcUa_Field_GetSize(Double, PublishingInterval); OpcUa_Field_GetSize(UInt32, MaxKeepAliveCount); OpcUa_Field_GetSize(UInt32, MaxLifetimeCount); OpcUa_Field_GetSize(UInt32, MaxNotificationsPerPublish); OpcUa_Field_GetSize(Boolean, PublishingEnabled); OpcUa_Field_GetSize(UInt32, ModifyCount); OpcUa_Field_GetSize(UInt32, EnableCount); OpcUa_Field_GetSize(UInt32, DisableCount); OpcUa_Field_GetSize(UInt32, RepublishRequestCount); OpcUa_Field_GetSize(UInt32, RepublishMessageRequestCount); OpcUa_Field_GetSize(UInt32, RepublishMessageCount); OpcUa_Field_GetSize(UInt32, TransferRequestCount); OpcUa_Field_GetSize(UInt32, TransferredToAltClientCount); OpcUa_Field_GetSize(UInt32, TransferredToSameClientCount); OpcUa_Field_GetSize(UInt32, PublishRequestCount); OpcUa_Field_GetSize(UInt32, DataChangeNotificationsCount); OpcUa_Field_GetSize(UInt32, EventNotificationsCount); OpcUa_Field_GetSize(UInt32, NotificationsCount); OpcUa_Field_GetSize(UInt32, LatePublishRequestCount); OpcUa_Field_GetSize(UInt32, CurrentKeepAliveCount); OpcUa_Field_GetSize(UInt32, CurrentLifetimeCount); OpcUa_Field_GetSize(UInt32, UnacknowledgedMessageCount); OpcUa_Field_GetSize(UInt32, DiscardedMessageCount); OpcUa_Field_GetSize(UInt32, MonitoredItemCount); OpcUa_Field_GetSize(UInt32, DisabledMonitoredItemCount); OpcUa_Field_GetSize(UInt32, MonitoringQueueOverflowCount); OpcUa_Field_GetSize(UInt32, NextSequenceNumber); OpcUa_Field_GetSize(UInt32, EventQueueOverFlowCount); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SubscriptionDiagnosticsDataType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_SubscriptionDiagnosticsDataType_Encode(OpcUa_SubscriptionDiagnosticsDataType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SubscriptionDiagnosticsDataType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, SessionId); OpcUa_Field_Write(UInt32, SubscriptionId); OpcUa_Field_Write(Byte, Priority); OpcUa_Field_Write(Double, PublishingInterval); OpcUa_Field_Write(UInt32, MaxKeepAliveCount); OpcUa_Field_Write(UInt32, MaxLifetimeCount); OpcUa_Field_Write(UInt32, MaxNotificationsPerPublish); OpcUa_Field_Write(Boolean, PublishingEnabled); OpcUa_Field_Write(UInt32, ModifyCount); OpcUa_Field_Write(UInt32, EnableCount); OpcUa_Field_Write(UInt32, DisableCount); OpcUa_Field_Write(UInt32, RepublishRequestCount); OpcUa_Field_Write(UInt32, RepublishMessageRequestCount); OpcUa_Field_Write(UInt32, RepublishMessageCount); OpcUa_Field_Write(UInt32, TransferRequestCount); OpcUa_Field_Write(UInt32, TransferredToAltClientCount); OpcUa_Field_Write(UInt32, TransferredToSameClientCount); OpcUa_Field_Write(UInt32, PublishRequestCount); OpcUa_Field_Write(UInt32, DataChangeNotificationsCount); OpcUa_Field_Write(UInt32, EventNotificationsCount); OpcUa_Field_Write(UInt32, NotificationsCount); OpcUa_Field_Write(UInt32, LatePublishRequestCount); OpcUa_Field_Write(UInt32, CurrentKeepAliveCount); OpcUa_Field_Write(UInt32, CurrentLifetimeCount); OpcUa_Field_Write(UInt32, UnacknowledgedMessageCount); OpcUa_Field_Write(UInt32, DiscardedMessageCount); OpcUa_Field_Write(UInt32, MonitoredItemCount); OpcUa_Field_Write(UInt32, DisabledMonitoredItemCount); OpcUa_Field_Write(UInt32, MonitoringQueueOverflowCount); OpcUa_Field_Write(UInt32, NextSequenceNumber); OpcUa_Field_Write(UInt32, EventQueueOverFlowCount); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SubscriptionDiagnosticsDataType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_SubscriptionDiagnosticsDataType_Decode(OpcUa_SubscriptionDiagnosticsDataType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SubscriptionDiagnosticsDataType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_SubscriptionDiagnosticsDataType_Initialize(a_pValue); OpcUa_Field_Read(NodeId, SessionId); OpcUa_Field_Read(UInt32, SubscriptionId); OpcUa_Field_Read(Byte, Priority); OpcUa_Field_Read(Double, PublishingInterval); OpcUa_Field_Read(UInt32, MaxKeepAliveCount); OpcUa_Field_Read(UInt32, MaxLifetimeCount); OpcUa_Field_Read(UInt32, MaxNotificationsPerPublish); OpcUa_Field_Read(Boolean, PublishingEnabled); OpcUa_Field_Read(UInt32, ModifyCount); OpcUa_Field_Read(UInt32, EnableCount); OpcUa_Field_Read(UInt32, DisableCount); OpcUa_Field_Read(UInt32, RepublishRequestCount); OpcUa_Field_Read(UInt32, RepublishMessageRequestCount); OpcUa_Field_Read(UInt32, RepublishMessageCount); OpcUa_Field_Read(UInt32, TransferRequestCount); OpcUa_Field_Read(UInt32, TransferredToAltClientCount); OpcUa_Field_Read(UInt32, TransferredToSameClientCount); OpcUa_Field_Read(UInt32, PublishRequestCount); OpcUa_Field_Read(UInt32, DataChangeNotificationsCount); OpcUa_Field_Read(UInt32, EventNotificationsCount); OpcUa_Field_Read(UInt32, NotificationsCount); OpcUa_Field_Read(UInt32, LatePublishRequestCount); OpcUa_Field_Read(UInt32, CurrentKeepAliveCount); OpcUa_Field_Read(UInt32, CurrentLifetimeCount); OpcUa_Field_Read(UInt32, UnacknowledgedMessageCount); OpcUa_Field_Read(UInt32, DiscardedMessageCount); OpcUa_Field_Read(UInt32, MonitoredItemCount); OpcUa_Field_Read(UInt32, DisabledMonitoredItemCount); OpcUa_Field_Read(UInt32, MonitoringQueueOverflowCount); OpcUa_Field_Read(UInt32, NextSequenceNumber); OpcUa_Field_Read(UInt32, EventQueueOverFlowCount); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_SubscriptionDiagnosticsDataType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SubscriptionDiagnosticsDataType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_SubscriptionDiagnosticsDataType_EncodeableType = { "SubscriptionDiagnosticsDataType", OpcUaId_SubscriptionDiagnosticsDataType, OpcUaId_SubscriptionDiagnosticsDataType_Encoding_DefaultBinary, OpcUaId_SubscriptionDiagnosticsDataType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_SubscriptionDiagnosticsDataType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_SubscriptionDiagnosticsDataType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_SubscriptionDiagnosticsDataType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_SubscriptionDiagnosticsDataType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_SubscriptionDiagnosticsDataType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_SubscriptionDiagnosticsDataType_Decode }; #endif #ifndef OPCUA_EXCLUDE_ModelChangeStructureVerbMask /*============================================================================ * OpcUa_ModelChangeStructureVerbMask_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_ModelChangeStructureVerbMask_EnumeratedValues[] = { { "NodeAdded", 1 }, { "NodeDeleted", 2 }, { "ReferenceAdded", 4 }, { "ReferenceDeleted", 8 }, { "DataTypeChanged", 16 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_ModelChangeStructureVerbMask_EnumeratedType = { "ModelChangeStructureVerbMask", g_OpcUa_ModelChangeStructureVerbMask_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_ModelChangeStructureDataType /*============================================================================ * OpcUa_ModelChangeStructureDataType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ModelChangeStructureDataType_Initialize(OpcUa_ModelChangeStructureDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, Affected); OpcUa_Field_Initialize(NodeId, AffectedType); OpcUa_Field_Initialize(Byte, Verb); } } /*============================================================================ * OpcUa_ModelChangeStructureDataType_Clear *===========================================================================*/ OpcUa_Void OpcUa_ModelChangeStructureDataType_Clear(OpcUa_ModelChangeStructureDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, Affected); OpcUa_Field_Clear(NodeId, AffectedType); OpcUa_Field_Clear(Byte, Verb); } } /*============================================================================ * OpcUa_ModelChangeStructureDataType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ModelChangeStructureDataType_GetSize(OpcUa_ModelChangeStructureDataType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ModelChangeStructureDataType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, Affected); OpcUa_Field_GetSize(NodeId, AffectedType); OpcUa_Field_GetSize(Byte, Verb); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ModelChangeStructureDataType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ModelChangeStructureDataType_Encode(OpcUa_ModelChangeStructureDataType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ModelChangeStructureDataType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, Affected); OpcUa_Field_Write(NodeId, AffectedType); OpcUa_Field_Write(Byte, Verb); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ModelChangeStructureDataType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ModelChangeStructureDataType_Decode(OpcUa_ModelChangeStructureDataType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ModelChangeStructureDataType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ModelChangeStructureDataType_Initialize(a_pValue); OpcUa_Field_Read(NodeId, Affected); OpcUa_Field_Read(NodeId, AffectedType); OpcUa_Field_Read(Byte, Verb); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ModelChangeStructureDataType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ModelChangeStructureDataType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ModelChangeStructureDataType_EncodeableType = { "ModelChangeStructureDataType", OpcUaId_ModelChangeStructureDataType, OpcUaId_ModelChangeStructureDataType_Encoding_DefaultBinary, OpcUaId_ModelChangeStructureDataType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ModelChangeStructureDataType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ModelChangeStructureDataType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ModelChangeStructureDataType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ModelChangeStructureDataType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ModelChangeStructureDataType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ModelChangeStructureDataType_Decode }; #endif #ifndef OPCUA_EXCLUDE_SemanticChangeStructureDataType /*============================================================================ * OpcUa_SemanticChangeStructureDataType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_SemanticChangeStructureDataType_Initialize(OpcUa_SemanticChangeStructureDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, Affected); OpcUa_Field_Initialize(NodeId, AffectedType); } } /*============================================================================ * OpcUa_SemanticChangeStructureDataType_Clear *===========================================================================*/ OpcUa_Void OpcUa_SemanticChangeStructureDataType_Clear(OpcUa_SemanticChangeStructureDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, Affected); OpcUa_Field_Clear(NodeId, AffectedType); } } /*============================================================================ * OpcUa_SemanticChangeStructureDataType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_SemanticChangeStructureDataType_GetSize(OpcUa_SemanticChangeStructureDataType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SemanticChangeStructureDataType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, Affected); OpcUa_Field_GetSize(NodeId, AffectedType); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SemanticChangeStructureDataType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_SemanticChangeStructureDataType_Encode(OpcUa_SemanticChangeStructureDataType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SemanticChangeStructureDataType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, Affected); OpcUa_Field_Write(NodeId, AffectedType); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SemanticChangeStructureDataType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_SemanticChangeStructureDataType_Decode(OpcUa_SemanticChangeStructureDataType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "SemanticChangeStructureDataType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_SemanticChangeStructureDataType_Initialize(a_pValue); OpcUa_Field_Read(NodeId, Affected); OpcUa_Field_Read(NodeId, AffectedType); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_SemanticChangeStructureDataType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_SemanticChangeStructureDataType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_SemanticChangeStructureDataType_EncodeableType = { "SemanticChangeStructureDataType", OpcUaId_SemanticChangeStructureDataType, OpcUaId_SemanticChangeStructureDataType_Encoding_DefaultBinary, OpcUaId_SemanticChangeStructureDataType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_SemanticChangeStructureDataType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_SemanticChangeStructureDataType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_SemanticChangeStructureDataType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_SemanticChangeStructureDataType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_SemanticChangeStructureDataType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_SemanticChangeStructureDataType_Decode }; #endif #ifndef OPCUA_EXCLUDE_Range /*============================================================================ * OpcUa_Range_Initialize *===========================================================================*/ OpcUa_Void OpcUa_Range_Initialize(OpcUa_Range* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(Double, Low); OpcUa_Field_Initialize(Double, High); } } /*============================================================================ * OpcUa_Range_Clear *===========================================================================*/ OpcUa_Void OpcUa_Range_Clear(OpcUa_Range* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(Double, Low); OpcUa_Field_Clear(Double, High); } } /*============================================================================ * OpcUa_Range_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_Range_GetSize(OpcUa_Range* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "Range_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(Double, Low); OpcUa_Field_GetSize(Double, High); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_Range_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_Range_Encode(OpcUa_Range* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "Range_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(Double, Low); OpcUa_Field_Write(Double, High); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_Range_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_Range_Decode(OpcUa_Range* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "Range_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_Range_Initialize(a_pValue); OpcUa_Field_Read(Double, Low); OpcUa_Field_Read(Double, High); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_Range_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_Range_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_Range_EncodeableType = { "Range", OpcUaId_Range, OpcUaId_Range_Encoding_DefaultBinary, OpcUaId_Range_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_Range), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_Range_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_Range_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_Range_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_Range_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_Range_Decode }; #endif #ifndef OPCUA_EXCLUDE_EUInformation /*============================================================================ * OpcUa_EUInformation_Initialize *===========================================================================*/ OpcUa_Void OpcUa_EUInformation_Initialize(OpcUa_EUInformation* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(String, NamespaceUri); OpcUa_Field_Initialize(Int32, UnitId); OpcUa_Field_Initialize(LocalizedText, DisplayName); OpcUa_Field_Initialize(LocalizedText, Description); } } /*============================================================================ * OpcUa_EUInformation_Clear *===========================================================================*/ OpcUa_Void OpcUa_EUInformation_Clear(OpcUa_EUInformation* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(String, NamespaceUri); OpcUa_Field_Clear(Int32, UnitId); OpcUa_Field_Clear(LocalizedText, DisplayName); OpcUa_Field_Clear(LocalizedText, Description); } } /*============================================================================ * OpcUa_EUInformation_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_EUInformation_GetSize(OpcUa_EUInformation* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EUInformation_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(String, NamespaceUri); OpcUa_Field_GetSize(Int32, UnitId); OpcUa_Field_GetSize(LocalizedText, DisplayName); OpcUa_Field_GetSize(LocalizedText, Description); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EUInformation_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_EUInformation_Encode(OpcUa_EUInformation* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EUInformation_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(String, NamespaceUri); OpcUa_Field_Write(Int32, UnitId); OpcUa_Field_Write(LocalizedText, DisplayName); OpcUa_Field_Write(LocalizedText, Description); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EUInformation_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_EUInformation_Decode(OpcUa_EUInformation* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "EUInformation_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_EUInformation_Initialize(a_pValue); OpcUa_Field_Read(String, NamespaceUri); OpcUa_Field_Read(Int32, UnitId); OpcUa_Field_Read(LocalizedText, DisplayName); OpcUa_Field_Read(LocalizedText, Description); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_EUInformation_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_EUInformation_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_EUInformation_EncodeableType = { "EUInformation", OpcUaId_EUInformation, OpcUaId_EUInformation_Encoding_DefaultBinary, OpcUaId_EUInformation_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_EUInformation), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_EUInformation_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_EUInformation_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_EUInformation_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_EUInformation_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_EUInformation_Decode }; #endif #ifndef OPCUA_EXCLUDE_AxisScaleEnumeration /*============================================================================ * OpcUa_AxisScaleEnumeration_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_AxisScaleEnumeration_EnumeratedValues[] = { { "Linear", 0 }, { "Log", 1 }, { "Ln", 2 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_AxisScaleEnumeration_EnumeratedType = { "AxisScaleEnumeration", g_OpcUa_AxisScaleEnumeration_EnumeratedValues }; #endif #ifndef OPCUA_EXCLUDE_ComplexNumberType /*============================================================================ * OpcUa_ComplexNumberType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ComplexNumberType_Initialize(OpcUa_ComplexNumberType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(Float, Real); OpcUa_Field_Initialize(Float, Imaginary); } } /*============================================================================ * OpcUa_ComplexNumberType_Clear *===========================================================================*/ OpcUa_Void OpcUa_ComplexNumberType_Clear(OpcUa_ComplexNumberType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(Float, Real); OpcUa_Field_Clear(Float, Imaginary); } } /*============================================================================ * OpcUa_ComplexNumberType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ComplexNumberType_GetSize(OpcUa_ComplexNumberType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ComplexNumberType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(Float, Real); OpcUa_Field_GetSize(Float, Imaginary); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ComplexNumberType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ComplexNumberType_Encode(OpcUa_ComplexNumberType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ComplexNumberType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(Float, Real); OpcUa_Field_Write(Float, Imaginary); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ComplexNumberType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ComplexNumberType_Decode(OpcUa_ComplexNumberType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ComplexNumberType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ComplexNumberType_Initialize(a_pValue); OpcUa_Field_Read(Float, Real); OpcUa_Field_Read(Float, Imaginary); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ComplexNumberType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ComplexNumberType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ComplexNumberType_EncodeableType = { "ComplexNumberType", OpcUaId_ComplexNumberType, OpcUaId_ComplexNumberType_Encoding_DefaultBinary, OpcUaId_ComplexNumberType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ComplexNumberType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ComplexNumberType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ComplexNumberType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ComplexNumberType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ComplexNumberType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ComplexNumberType_Decode }; #endif #ifndef OPCUA_EXCLUDE_DoubleComplexNumberType /*============================================================================ * OpcUa_DoubleComplexNumberType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_DoubleComplexNumberType_Initialize(OpcUa_DoubleComplexNumberType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(Double, Real); OpcUa_Field_Initialize(Double, Imaginary); } } /*============================================================================ * OpcUa_DoubleComplexNumberType_Clear *===========================================================================*/ OpcUa_Void OpcUa_DoubleComplexNumberType_Clear(OpcUa_DoubleComplexNumberType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(Double, Real); OpcUa_Field_Clear(Double, Imaginary); } } /*============================================================================ * OpcUa_DoubleComplexNumberType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_DoubleComplexNumberType_GetSize(OpcUa_DoubleComplexNumberType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DoubleComplexNumberType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(Double, Real); OpcUa_Field_GetSize(Double, Imaginary); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DoubleComplexNumberType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_DoubleComplexNumberType_Encode(OpcUa_DoubleComplexNumberType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DoubleComplexNumberType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(Double, Real); OpcUa_Field_Write(Double, Imaginary); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DoubleComplexNumberType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_DoubleComplexNumberType_Decode(OpcUa_DoubleComplexNumberType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "DoubleComplexNumberType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_DoubleComplexNumberType_Initialize(a_pValue); OpcUa_Field_Read(Double, Real); OpcUa_Field_Read(Double, Imaginary); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_DoubleComplexNumberType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_DoubleComplexNumberType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_DoubleComplexNumberType_EncodeableType = { "DoubleComplexNumberType", OpcUaId_DoubleComplexNumberType, OpcUaId_DoubleComplexNumberType_Encoding_DefaultBinary, OpcUaId_DoubleComplexNumberType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_DoubleComplexNumberType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_DoubleComplexNumberType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_DoubleComplexNumberType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_DoubleComplexNumberType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_DoubleComplexNumberType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_DoubleComplexNumberType_Decode }; #endif #ifndef OPCUA_EXCLUDE_AxisInformation /*============================================================================ * OpcUa_AxisInformation_Initialize *===========================================================================*/ OpcUa_Void OpcUa_AxisInformation_Initialize(OpcUa_AxisInformation* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_InitializeEncodeable(OpcUa_EUInformation, EngineeringUnits); OpcUa_Field_InitializeEncodeable(OpcUa_Range, EURange); OpcUa_Field_Initialize(LocalizedText, Title); OpcUa_Field_InitializeEnumerated(OpcUa_AxisScaleEnumeration, AxisScaleType); OpcUa_Field_InitializeArray(Double, AxisSteps); } } /*============================================================================ * OpcUa_AxisInformation_Clear *===========================================================================*/ OpcUa_Void OpcUa_AxisInformation_Clear(OpcUa_AxisInformation* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_ClearEncodeable(OpcUa_EUInformation, EngineeringUnits); OpcUa_Field_ClearEncodeable(OpcUa_Range, EURange); OpcUa_Field_Clear(LocalizedText, Title); OpcUa_Field_ClearEnumerated(OpcUa_AxisScaleEnumeration, AxisScaleType); OpcUa_Field_ClearArray(Double, AxisSteps); } } /*============================================================================ * OpcUa_AxisInformation_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_AxisInformation_GetSize(OpcUa_AxisInformation* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AxisInformation_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSizeEncodeable(OpcUa_EUInformation, EngineeringUnits); OpcUa_Field_GetSizeEncodeable(OpcUa_Range, EURange); OpcUa_Field_GetSize(LocalizedText, Title); OpcUa_Field_GetSizeEnumerated(OpcUa_AxisScaleEnumeration, AxisScaleType); OpcUa_Field_GetSizeArray(Double, AxisSteps); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AxisInformation_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_AxisInformation_Encode(OpcUa_AxisInformation* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AxisInformation_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_WriteEncodeable(OpcUa_EUInformation, EngineeringUnits); OpcUa_Field_WriteEncodeable(OpcUa_Range, EURange); OpcUa_Field_Write(LocalizedText, Title); OpcUa_Field_WriteEnumerated(OpcUa_AxisScaleEnumeration, AxisScaleType); OpcUa_Field_WriteArray(Double, AxisSteps); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AxisInformation_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_AxisInformation_Decode(OpcUa_AxisInformation* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "AxisInformation_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_AxisInformation_Initialize(a_pValue); OpcUa_Field_ReadEncodeable(OpcUa_EUInformation, EngineeringUnits); OpcUa_Field_ReadEncodeable(OpcUa_Range, EURange); OpcUa_Field_Read(LocalizedText, Title); OpcUa_Field_ReadEnumerated(OpcUa_AxisScaleEnumeration, AxisScaleType); OpcUa_Field_ReadArray(Double, AxisSteps); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_AxisInformation_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_AxisInformation_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_AxisInformation_EncodeableType = { "AxisInformation", OpcUaId_AxisInformation, OpcUaId_AxisInformation_Encoding_DefaultBinary, OpcUaId_AxisInformation_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_AxisInformation), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_AxisInformation_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_AxisInformation_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_AxisInformation_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_AxisInformation_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_AxisInformation_Decode }; #endif #ifndef OPCUA_EXCLUDE_XVType /*============================================================================ * OpcUa_XVType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_XVType_Initialize(OpcUa_XVType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(Double, X); OpcUa_Field_Initialize(Float, Value); } } /*============================================================================ * OpcUa_XVType_Clear *===========================================================================*/ OpcUa_Void OpcUa_XVType_Clear(OpcUa_XVType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(Double, X); OpcUa_Field_Clear(Float, Value); } } /*============================================================================ * OpcUa_XVType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_XVType_GetSize(OpcUa_XVType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "XVType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(Double, X); OpcUa_Field_GetSize(Float, Value); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_XVType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_XVType_Encode(OpcUa_XVType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "XVType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(Double, X); OpcUa_Field_Write(Float, Value); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_XVType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_XVType_Decode(OpcUa_XVType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "XVType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_XVType_Initialize(a_pValue); OpcUa_Field_Read(Double, X); OpcUa_Field_Read(Float, Value); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_XVType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_XVType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_XVType_EncodeableType = { "XVType", OpcUaId_XVType, OpcUaId_XVType_Encoding_DefaultBinary, OpcUaId_XVType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_XVType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_XVType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_XVType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_XVType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_XVType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_XVType_Decode }; #endif #ifndef OPCUA_EXCLUDE_ProgramDiagnosticDataType /*============================================================================ * OpcUa_ProgramDiagnosticDataType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ProgramDiagnosticDataType_Initialize(OpcUa_ProgramDiagnosticDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, CreateSessionId); OpcUa_Field_Initialize(String, CreateClientName); OpcUa_Field_Initialize(DateTime, InvocationCreationTime); OpcUa_Field_Initialize(DateTime, LastTransitionTime); OpcUa_Field_Initialize(String, LastMethodCall); OpcUa_Field_Initialize(NodeId, LastMethodSessionId); OpcUa_Field_InitializeEncodeableArray(OpcUa_Argument, LastMethodInputArguments); OpcUa_Field_InitializeEncodeableArray(OpcUa_Argument, LastMethodOutputArguments); OpcUa_Field_Initialize(DateTime, LastMethodCallTime); OpcUa_Field_InitializeEncodeable(OpcUa_StatusResult, LastMethodReturnStatus); } } /*============================================================================ * OpcUa_ProgramDiagnosticDataType_Clear *===========================================================================*/ OpcUa_Void OpcUa_ProgramDiagnosticDataType_Clear(OpcUa_ProgramDiagnosticDataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, CreateSessionId); OpcUa_Field_Clear(String, CreateClientName); OpcUa_Field_Clear(DateTime, InvocationCreationTime); OpcUa_Field_Clear(DateTime, LastTransitionTime); OpcUa_Field_Clear(String, LastMethodCall); OpcUa_Field_Clear(NodeId, LastMethodSessionId); OpcUa_Field_ClearEncodeableArray(OpcUa_Argument, LastMethodInputArguments); OpcUa_Field_ClearEncodeableArray(OpcUa_Argument, LastMethodOutputArguments); OpcUa_Field_Clear(DateTime, LastMethodCallTime); OpcUa_Field_ClearEncodeable(OpcUa_StatusResult, LastMethodReturnStatus); } } /*============================================================================ * OpcUa_ProgramDiagnosticDataType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ProgramDiagnosticDataType_GetSize(OpcUa_ProgramDiagnosticDataType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ProgramDiagnosticDataType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, CreateSessionId); OpcUa_Field_GetSize(String, CreateClientName); OpcUa_Field_GetSize(DateTime, InvocationCreationTime); OpcUa_Field_GetSize(DateTime, LastTransitionTime); OpcUa_Field_GetSize(String, LastMethodCall); OpcUa_Field_GetSize(NodeId, LastMethodSessionId); OpcUa_Field_GetSizeEncodeableArray(OpcUa_Argument, LastMethodInputArguments); OpcUa_Field_GetSizeEncodeableArray(OpcUa_Argument, LastMethodOutputArguments); OpcUa_Field_GetSize(DateTime, LastMethodCallTime); OpcUa_Field_GetSizeEncodeable(OpcUa_StatusResult, LastMethodReturnStatus); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ProgramDiagnosticDataType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ProgramDiagnosticDataType_Encode(OpcUa_ProgramDiagnosticDataType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ProgramDiagnosticDataType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, CreateSessionId); OpcUa_Field_Write(String, CreateClientName); OpcUa_Field_Write(DateTime, InvocationCreationTime); OpcUa_Field_Write(DateTime, LastTransitionTime); OpcUa_Field_Write(String, LastMethodCall); OpcUa_Field_Write(NodeId, LastMethodSessionId); OpcUa_Field_WriteEncodeableArray(OpcUa_Argument, LastMethodInputArguments); OpcUa_Field_WriteEncodeableArray(OpcUa_Argument, LastMethodOutputArguments); OpcUa_Field_Write(DateTime, LastMethodCallTime); OpcUa_Field_WriteEncodeable(OpcUa_StatusResult, LastMethodReturnStatus); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ProgramDiagnosticDataType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ProgramDiagnosticDataType_Decode(OpcUa_ProgramDiagnosticDataType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ProgramDiagnosticDataType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ProgramDiagnosticDataType_Initialize(a_pValue); OpcUa_Field_Read(NodeId, CreateSessionId); OpcUa_Field_Read(String, CreateClientName); OpcUa_Field_Read(DateTime, InvocationCreationTime); OpcUa_Field_Read(DateTime, LastTransitionTime); OpcUa_Field_Read(String, LastMethodCall); OpcUa_Field_Read(NodeId, LastMethodSessionId); OpcUa_Field_ReadEncodeableArray(OpcUa_Argument, LastMethodInputArguments); OpcUa_Field_ReadEncodeableArray(OpcUa_Argument, LastMethodOutputArguments); OpcUa_Field_Read(DateTime, LastMethodCallTime); OpcUa_Field_ReadEncodeable(OpcUa_StatusResult, LastMethodReturnStatus); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ProgramDiagnosticDataType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ProgramDiagnosticDataType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ProgramDiagnosticDataType_EncodeableType = { "ProgramDiagnosticDataType", OpcUaId_ProgramDiagnosticDataType, OpcUaId_ProgramDiagnosticDataType_Encoding_DefaultBinary, OpcUaId_ProgramDiagnosticDataType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ProgramDiagnosticDataType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ProgramDiagnosticDataType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ProgramDiagnosticDataType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ProgramDiagnosticDataType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ProgramDiagnosticDataType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ProgramDiagnosticDataType_Decode }; #endif #ifndef OPCUA_EXCLUDE_ProgramDiagnostic2DataType /*============================================================================ * OpcUa_ProgramDiagnostic2DataType_Initialize *===========================================================================*/ OpcUa_Void OpcUa_ProgramDiagnostic2DataType_Initialize(OpcUa_ProgramDiagnostic2DataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(NodeId, CreateSessionId); OpcUa_Field_Initialize(String, CreateClientName); OpcUa_Field_Initialize(DateTime, InvocationCreationTime); OpcUa_Field_Initialize(DateTime, LastTransitionTime); OpcUa_Field_Initialize(String, LastMethodCall); OpcUa_Field_Initialize(NodeId, LastMethodSessionId); OpcUa_Field_InitializeEncodeableArray(OpcUa_Argument, LastMethodInputArguments); OpcUa_Field_InitializeEncodeableArray(OpcUa_Argument, LastMethodOutputArguments); OpcUa_Field_InitializeArray(Variant, LastMethodInputValues); OpcUa_Field_InitializeArray(Variant, LastMethodOutputValues); OpcUa_Field_Initialize(DateTime, LastMethodCallTime); OpcUa_Field_Initialize(StatusCode, LastMethodReturnStatus); } } /*============================================================================ * OpcUa_ProgramDiagnostic2DataType_Clear *===========================================================================*/ OpcUa_Void OpcUa_ProgramDiagnostic2DataType_Clear(OpcUa_ProgramDiagnostic2DataType* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(NodeId, CreateSessionId); OpcUa_Field_Clear(String, CreateClientName); OpcUa_Field_Clear(DateTime, InvocationCreationTime); OpcUa_Field_Clear(DateTime, LastTransitionTime); OpcUa_Field_Clear(String, LastMethodCall); OpcUa_Field_Clear(NodeId, LastMethodSessionId); OpcUa_Field_ClearEncodeableArray(OpcUa_Argument, LastMethodInputArguments); OpcUa_Field_ClearEncodeableArray(OpcUa_Argument, LastMethodOutputArguments); OpcUa_Field_ClearArray(Variant, LastMethodInputValues); OpcUa_Field_ClearArray(Variant, LastMethodOutputValues); OpcUa_Field_Clear(DateTime, LastMethodCallTime); OpcUa_Field_Clear(StatusCode, LastMethodReturnStatus); } } /*============================================================================ * OpcUa_ProgramDiagnostic2DataType_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_ProgramDiagnostic2DataType_GetSize(OpcUa_ProgramDiagnostic2DataType* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ProgramDiagnostic2DataType_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(NodeId, CreateSessionId); OpcUa_Field_GetSize(String, CreateClientName); OpcUa_Field_GetSize(DateTime, InvocationCreationTime); OpcUa_Field_GetSize(DateTime, LastTransitionTime); OpcUa_Field_GetSize(String, LastMethodCall); OpcUa_Field_GetSize(NodeId, LastMethodSessionId); OpcUa_Field_GetSizeEncodeableArray(OpcUa_Argument, LastMethodInputArguments); OpcUa_Field_GetSizeEncodeableArray(OpcUa_Argument, LastMethodOutputArguments); OpcUa_Field_GetSizeArray(Variant, LastMethodInputValues); OpcUa_Field_GetSizeArray(Variant, LastMethodOutputValues); OpcUa_Field_GetSize(DateTime, LastMethodCallTime); OpcUa_Field_GetSize(StatusCode, LastMethodReturnStatus); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ProgramDiagnostic2DataType_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_ProgramDiagnostic2DataType_Encode(OpcUa_ProgramDiagnostic2DataType* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ProgramDiagnostic2DataType_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(NodeId, CreateSessionId); OpcUa_Field_Write(String, CreateClientName); OpcUa_Field_Write(DateTime, InvocationCreationTime); OpcUa_Field_Write(DateTime, LastTransitionTime); OpcUa_Field_Write(String, LastMethodCall); OpcUa_Field_Write(NodeId, LastMethodSessionId); OpcUa_Field_WriteEncodeableArray(OpcUa_Argument, LastMethodInputArguments); OpcUa_Field_WriteEncodeableArray(OpcUa_Argument, LastMethodOutputArguments); OpcUa_Field_WriteArray(Variant, LastMethodInputValues); OpcUa_Field_WriteArray(Variant, LastMethodOutputValues); OpcUa_Field_Write(DateTime, LastMethodCallTime); OpcUa_Field_Write(StatusCode, LastMethodReturnStatus); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ProgramDiagnostic2DataType_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_ProgramDiagnostic2DataType_Decode(OpcUa_ProgramDiagnostic2DataType* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "ProgramDiagnostic2DataType_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_ProgramDiagnostic2DataType_Initialize(a_pValue); OpcUa_Field_Read(NodeId, CreateSessionId); OpcUa_Field_Read(String, CreateClientName); OpcUa_Field_Read(DateTime, InvocationCreationTime); OpcUa_Field_Read(DateTime, LastTransitionTime); OpcUa_Field_Read(String, LastMethodCall); OpcUa_Field_Read(NodeId, LastMethodSessionId); OpcUa_Field_ReadEncodeableArray(OpcUa_Argument, LastMethodInputArguments); OpcUa_Field_ReadEncodeableArray(OpcUa_Argument, LastMethodOutputArguments); OpcUa_Field_ReadArray(Variant, LastMethodInputValues); OpcUa_Field_ReadArray(Variant, LastMethodOutputValues); OpcUa_Field_Read(DateTime, LastMethodCallTime); OpcUa_Field_Read(StatusCode, LastMethodReturnStatus); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_ProgramDiagnostic2DataType_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_ProgramDiagnostic2DataType_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_ProgramDiagnostic2DataType_EncodeableType = { "ProgramDiagnostic2DataType", OpcUaId_ProgramDiagnostic2DataType, OpcUaId_ProgramDiagnostic2DataType_Encoding_DefaultBinary, OpcUaId_ProgramDiagnostic2DataType_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_ProgramDiagnostic2DataType), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_ProgramDiagnostic2DataType_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_ProgramDiagnostic2DataType_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_ProgramDiagnostic2DataType_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_ProgramDiagnostic2DataType_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_ProgramDiagnostic2DataType_Decode }; #endif #ifndef OPCUA_EXCLUDE_Annotation /*============================================================================ * OpcUa_Annotation_Initialize *===========================================================================*/ OpcUa_Void OpcUa_Annotation_Initialize(OpcUa_Annotation* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Initialize(String, Message); OpcUa_Field_Initialize(String, UserName); OpcUa_Field_Initialize(DateTime, AnnotationTime); } } /*============================================================================ * OpcUa_Annotation_Clear *===========================================================================*/ OpcUa_Void OpcUa_Annotation_Clear(OpcUa_Annotation* a_pValue) { if (a_pValue != OpcUa_Null) { OpcUa_Field_Clear(String, Message); OpcUa_Field_Clear(String, UserName); OpcUa_Field_Clear(DateTime, AnnotationTime); } } /*============================================================================ * OpcUa_Annotation_GetSize *===========================================================================*/ OpcUa_StatusCode OpcUa_Annotation_GetSize(OpcUa_Annotation* a_pValue, OpcUa_Encoder* a_pEncoder, OpcUa_Int32* a_pSize) { OpcUa_Int32 iSize = 0; OpcUa_InitializeStatus(OpcUa_Module_Serializer, "Annotation_GetSize"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_ReturnErrorIfArgumentNull(a_pSize); *a_pSize = -1; OpcUa_Field_GetSize(String, Message); OpcUa_Field_GetSize(String, UserName); OpcUa_Field_GetSize(DateTime, AnnotationTime); *a_pSize = iSize; OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; *a_pSize = -1; OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_Annotation_Encode *===========================================================================*/ OpcUa_StatusCode OpcUa_Annotation_Encode(OpcUa_Annotation* a_pValue, OpcUa_Encoder* a_pEncoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "Annotation_Encode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pEncoder); OpcUa_Field_Write(String, Message); OpcUa_Field_Write(String, UserName); OpcUa_Field_Write(DateTime, AnnotationTime); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; /* nothing to do */ OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_Annotation_Decode *===========================================================================*/ OpcUa_StatusCode OpcUa_Annotation_Decode(OpcUa_Annotation* a_pValue, OpcUa_Decoder* a_pDecoder) { OpcUa_InitializeStatus(OpcUa_Module_Serializer, "Annotation_Decode"); OpcUa_ReturnErrorIfArgumentNull(a_pValue); OpcUa_ReturnErrorIfArgumentNull(a_pDecoder); OpcUa_Annotation_Initialize(a_pValue); OpcUa_Field_Read(String, Message); OpcUa_Field_Read(String, UserName); OpcUa_Field_Read(DateTime, AnnotationTime); OpcUa_ReturnStatusCode; OpcUa_BeginErrorHandling; OpcUa_Annotation_Clear(a_pValue); OpcUa_FinishErrorHandling; } /*============================================================================ * OpcUa_Annotation_EncodeableType *===========================================================================*/ struct _OpcUa_EncodeableType OpcUa_Annotation_EncodeableType = { "Annotation", OpcUaId_Annotation, OpcUaId_Annotation_Encoding_DefaultBinary, OpcUaId_Annotation_Encoding_DefaultXml, OpcUa_Null, sizeof(OpcUa_Annotation), (OpcUa_EncodeableObject_PfnInitialize*)OpcUa_Annotation_Initialize, (OpcUa_EncodeableObject_PfnClear*)OpcUa_Annotation_Clear, (OpcUa_EncodeableObject_PfnGetSize*)OpcUa_Annotation_GetSize, (OpcUa_EncodeableObject_PfnEncode*)OpcUa_Annotation_Encode, (OpcUa_EncodeableObject_PfnDecode*)OpcUa_Annotation_Decode }; #endif #ifndef OPCUA_EXCLUDE_ExceptionDeviationFormat /*============================================================================ * OpcUa_ExceptionDeviationFormat_EnumeratedType *===========================================================================*/ static struct _OpcUa_EnumeratedValue g_OpcUa_ExceptionDeviationFormat_EnumeratedValues[] = { { "AbsoluteValue", 0 }, { "PercentOfValue", 1 }, { "PercentOfRange", 2 }, { "PercentOfEURange", 3 }, { "Unknown", 4 }, { OpcUa_Null, 0 } }; struct _OpcUa_EnumeratedType OpcUa_ExceptionDeviationFormat_EnumeratedType = { "ExceptionDeviationFormat", g_OpcUa_ExceptionDeviationFormat_EnumeratedValues }; #endif /*============================================================================ * Table of known types. *===========================================================================*/ static OpcUa_EncodeableType* g_OpcUa_KnownEncodeableTypes[] = { #ifndef OPCUA_EXCLUDE_RolePermissionType &OpcUa_RolePermissionType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_StructureField &OpcUa_StructureField_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_StructureDefinition &OpcUa_StructureDefinition_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_EnumDefinition &OpcUa_EnumDefinition_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_Node &OpcUa_Node_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_InstanceNode &OpcUa_InstanceNode_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_TypeNode &OpcUa_TypeNode_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ObjectNode &OpcUa_ObjectNode_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ObjectTypeNode &OpcUa_ObjectTypeNode_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_VariableNode &OpcUa_VariableNode_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_VariableTypeNode &OpcUa_VariableTypeNode_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ReferenceTypeNode &OpcUa_ReferenceTypeNode_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_MethodNode &OpcUa_MethodNode_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ViewNode &OpcUa_ViewNode_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_DataTypeNode &OpcUa_DataTypeNode_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ReferenceNode &OpcUa_ReferenceNode_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_Argument &OpcUa_Argument_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_EnumValueType &OpcUa_EnumValueType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_EnumField &OpcUa_EnumField_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_OptionSet &OpcUa_OptionSet_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_TimeZoneDataType &OpcUa_TimeZoneDataType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ApplicationDescription &OpcUa_ApplicationDescription_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_RequestHeader &OpcUa_RequestHeader_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ResponseHeader &OpcUa_ResponseHeader_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ServiceFault &OpcUa_ServiceFault_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_SessionlessInvokeRequestType &OpcUa_SessionlessInvokeRequestType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_SessionlessInvokeResponseType &OpcUa_SessionlessInvokeResponseType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_FindServers &OpcUa_FindServersRequest_EncodeableType, &OpcUa_FindServersResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ServerOnNetwork &OpcUa_ServerOnNetwork_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_FindServersOnNetwork &OpcUa_FindServersOnNetworkRequest_EncodeableType, &OpcUa_FindServersOnNetworkResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_UserTokenPolicy &OpcUa_UserTokenPolicy_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_EndpointDescription &OpcUa_EndpointDescription_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_GetEndpoints &OpcUa_GetEndpointsRequest_EncodeableType, &OpcUa_GetEndpointsResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_RegisteredServer &OpcUa_RegisteredServer_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_RegisterServer &OpcUa_RegisterServerRequest_EncodeableType, &OpcUa_RegisterServerResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_MdnsDiscoveryConfiguration &OpcUa_MdnsDiscoveryConfiguration_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_RegisterServer2 &OpcUa_RegisterServer2Request_EncodeableType, &OpcUa_RegisterServer2Response_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ChannelSecurityToken &OpcUa_ChannelSecurityToken_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_OpenSecureChannel &OpcUa_OpenSecureChannelRequest_EncodeableType, &OpcUa_OpenSecureChannelResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_CloseSecureChannel &OpcUa_CloseSecureChannelRequest_EncodeableType, &OpcUa_CloseSecureChannelResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_SignedSoftwareCertificate &OpcUa_SignedSoftwareCertificate_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_SignatureData &OpcUa_SignatureData_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_CreateSession &OpcUa_CreateSessionRequest_EncodeableType, &OpcUa_CreateSessionResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_UserIdentityToken &OpcUa_UserIdentityToken_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_AnonymousIdentityToken &OpcUa_AnonymousIdentityToken_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_UserNameIdentityToken &OpcUa_UserNameIdentityToken_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_X509IdentityToken &OpcUa_X509IdentityToken_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_IssuedIdentityToken &OpcUa_IssuedIdentityToken_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ActivateSession &OpcUa_ActivateSessionRequest_EncodeableType, &OpcUa_ActivateSessionResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_CloseSession &OpcUa_CloseSessionRequest_EncodeableType, &OpcUa_CloseSessionResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_Cancel &OpcUa_CancelRequest_EncodeableType, &OpcUa_CancelResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_NodeAttributes &OpcUa_NodeAttributes_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ObjectAttributes &OpcUa_ObjectAttributes_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_VariableAttributes &OpcUa_VariableAttributes_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_MethodAttributes &OpcUa_MethodAttributes_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ObjectTypeAttributes &OpcUa_ObjectTypeAttributes_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_VariableTypeAttributes &OpcUa_VariableTypeAttributes_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ReferenceTypeAttributes &OpcUa_ReferenceTypeAttributes_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_DataTypeAttributes &OpcUa_DataTypeAttributes_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ViewAttributes &OpcUa_ViewAttributes_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_GenericAttributeValue &OpcUa_GenericAttributeValue_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_GenericAttributes &OpcUa_GenericAttributes_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_AddNodesItem &OpcUa_AddNodesItem_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_AddNodesResult &OpcUa_AddNodesResult_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_AddNodes &OpcUa_AddNodesRequest_EncodeableType, &OpcUa_AddNodesResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_AddReferencesItem &OpcUa_AddReferencesItem_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_AddReferences &OpcUa_AddReferencesRequest_EncodeableType, &OpcUa_AddReferencesResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_DeleteNodesItem &OpcUa_DeleteNodesItem_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_DeleteNodes &OpcUa_DeleteNodesRequest_EncodeableType, &OpcUa_DeleteNodesResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_DeleteReferencesItem &OpcUa_DeleteReferencesItem_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_DeleteReferences &OpcUa_DeleteReferencesRequest_EncodeableType, &OpcUa_DeleteReferencesResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ViewDescription &OpcUa_ViewDescription_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_BrowseDescription &OpcUa_BrowseDescription_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ReferenceDescription &OpcUa_ReferenceDescription_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_BrowseResult &OpcUa_BrowseResult_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_Browse &OpcUa_BrowseRequest_EncodeableType, &OpcUa_BrowseResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_BrowseNext &OpcUa_BrowseNextRequest_EncodeableType, &OpcUa_BrowseNextResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_RelativePathElement &OpcUa_RelativePathElement_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_RelativePath &OpcUa_RelativePath_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_BrowsePath &OpcUa_BrowsePath_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_BrowsePathTarget &OpcUa_BrowsePathTarget_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_BrowsePathResult &OpcUa_BrowsePathResult_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_TranslateBrowsePathsToNodeIds &OpcUa_TranslateBrowsePathsToNodeIdsRequest_EncodeableType, &OpcUa_TranslateBrowsePathsToNodeIdsResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_RegisterNodes &OpcUa_RegisterNodesRequest_EncodeableType, &OpcUa_RegisterNodesResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_UnregisterNodes &OpcUa_UnregisterNodesRequest_EncodeableType, &OpcUa_UnregisterNodesResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_EndpointConfiguration &OpcUa_EndpointConfiguration_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_QueryDataDescription &OpcUa_QueryDataDescription_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_NodeTypeDescription &OpcUa_NodeTypeDescription_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_QueryDataSet &OpcUa_QueryDataSet_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_NodeReference &OpcUa_NodeReference_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ContentFilterElement &OpcUa_ContentFilterElement_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ContentFilter &OpcUa_ContentFilter_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ElementOperand &OpcUa_ElementOperand_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_LiteralOperand &OpcUa_LiteralOperand_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_AttributeOperand &OpcUa_AttributeOperand_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_SimpleAttributeOperand &OpcUa_SimpleAttributeOperand_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ContentFilterElementResult &OpcUa_ContentFilterElementResult_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ContentFilterResult &OpcUa_ContentFilterResult_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ParsingResult &OpcUa_ParsingResult_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_QueryFirst &OpcUa_QueryFirstRequest_EncodeableType, &OpcUa_QueryFirstResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_QueryNext &OpcUa_QueryNextRequest_EncodeableType, &OpcUa_QueryNextResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ReadValueId &OpcUa_ReadValueId_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_Read &OpcUa_ReadRequest_EncodeableType, &OpcUa_ReadResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_HistoryReadValueId &OpcUa_HistoryReadValueId_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_HistoryReadResult &OpcUa_HistoryReadResult_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ReadEventDetails &OpcUa_ReadEventDetails_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ReadRawModifiedDetails &OpcUa_ReadRawModifiedDetails_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ReadProcessedDetails &OpcUa_ReadProcessedDetails_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ReadAtTimeDetails &OpcUa_ReadAtTimeDetails_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ReadAnnotationDataDetails &OpcUa_ReadAnnotationDataDetails_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_HistoryData &OpcUa_HistoryData_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ModificationInfo &OpcUa_ModificationInfo_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_HistoryModifiedData &OpcUa_HistoryModifiedData_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_HistoryEvent &OpcUa_HistoryEvent_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_HistoryRead &OpcUa_HistoryReadRequest_EncodeableType, &OpcUa_HistoryReadResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_WriteValue &OpcUa_WriteValue_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_Write &OpcUa_WriteRequest_EncodeableType, &OpcUa_WriteResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_HistoryUpdateDetails &OpcUa_HistoryUpdateDetails_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_UpdateDataDetails &OpcUa_UpdateDataDetails_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_UpdateStructureDataDetails &OpcUa_UpdateStructureDataDetails_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_UpdateEventDetails &OpcUa_UpdateEventDetails_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_DeleteRawModifiedDetails &OpcUa_DeleteRawModifiedDetails_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_DeleteAtTimeDetails &OpcUa_DeleteAtTimeDetails_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_DeleteEventDetails &OpcUa_DeleteEventDetails_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_HistoryUpdateResult &OpcUa_HistoryUpdateResult_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_HistoryUpdate &OpcUa_HistoryUpdateRequest_EncodeableType, &OpcUa_HistoryUpdateResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_CallMethodRequest &OpcUa_CallMethodRequest_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_CallMethodResult &OpcUa_CallMethodResult_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_Call &OpcUa_CallRequest_EncodeableType, &OpcUa_CallResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_DataChangeFilter &OpcUa_DataChangeFilter_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_EventFilter &OpcUa_EventFilter_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_AggregateConfiguration &OpcUa_AggregateConfiguration_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_AggregateFilter &OpcUa_AggregateFilter_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_EventFilterResult &OpcUa_EventFilterResult_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_AggregateFilterResult &OpcUa_AggregateFilterResult_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_MonitoringParameters &OpcUa_MonitoringParameters_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_MonitoredItemCreateRequest &OpcUa_MonitoredItemCreateRequest_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_MonitoredItemCreateResult &OpcUa_MonitoredItemCreateResult_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_CreateMonitoredItems &OpcUa_CreateMonitoredItemsRequest_EncodeableType, &OpcUa_CreateMonitoredItemsResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_MonitoredItemModifyRequest &OpcUa_MonitoredItemModifyRequest_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_MonitoredItemModifyResult &OpcUa_MonitoredItemModifyResult_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ModifyMonitoredItems &OpcUa_ModifyMonitoredItemsRequest_EncodeableType, &OpcUa_ModifyMonitoredItemsResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_SetMonitoringMode &OpcUa_SetMonitoringModeRequest_EncodeableType, &OpcUa_SetMonitoringModeResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_SetTriggering &OpcUa_SetTriggeringRequest_EncodeableType, &OpcUa_SetTriggeringResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_DeleteMonitoredItems &OpcUa_DeleteMonitoredItemsRequest_EncodeableType, &OpcUa_DeleteMonitoredItemsResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_CreateSubscription &OpcUa_CreateSubscriptionRequest_EncodeableType, &OpcUa_CreateSubscriptionResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ModifySubscription &OpcUa_ModifySubscriptionRequest_EncodeableType, &OpcUa_ModifySubscriptionResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_SetPublishingMode &OpcUa_SetPublishingModeRequest_EncodeableType, &OpcUa_SetPublishingModeResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_NotificationMessage &OpcUa_NotificationMessage_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_DataChangeNotification &OpcUa_DataChangeNotification_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_MonitoredItemNotification &OpcUa_MonitoredItemNotification_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_EventNotificationList &OpcUa_EventNotificationList_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_EventFieldList &OpcUa_EventFieldList_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_HistoryEventFieldList &OpcUa_HistoryEventFieldList_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_StatusChangeNotification &OpcUa_StatusChangeNotification_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_SubscriptionAcknowledgement &OpcUa_SubscriptionAcknowledgement_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_Publish &OpcUa_PublishRequest_EncodeableType, &OpcUa_PublishResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_Republish &OpcUa_RepublishRequest_EncodeableType, &OpcUa_RepublishResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_TransferResult &OpcUa_TransferResult_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_TransferSubscriptions &OpcUa_TransferSubscriptionsRequest_EncodeableType, &OpcUa_TransferSubscriptionsResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_DeleteSubscriptions &OpcUa_DeleteSubscriptionsRequest_EncodeableType, &OpcUa_DeleteSubscriptionsResponse_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_BuildInfo &OpcUa_BuildInfo_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_RedundantServerDataType &OpcUa_RedundantServerDataType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_EndpointUrlListDataType &OpcUa_EndpointUrlListDataType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_NetworkGroupDataType &OpcUa_NetworkGroupDataType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_SamplingIntervalDiagnosticsDataType &OpcUa_SamplingIntervalDiagnosticsDataType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ServerDiagnosticsSummaryDataType &OpcUa_ServerDiagnosticsSummaryDataType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ServerStatusDataType &OpcUa_ServerStatusDataType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_SessionDiagnosticsDataType &OpcUa_SessionDiagnosticsDataType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_SessionSecurityDiagnosticsDataType &OpcUa_SessionSecurityDiagnosticsDataType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ServiceCounterDataType &OpcUa_ServiceCounterDataType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_StatusResult &OpcUa_StatusResult_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_SubscriptionDiagnosticsDataType &OpcUa_SubscriptionDiagnosticsDataType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ModelChangeStructureDataType &OpcUa_ModelChangeStructureDataType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_SemanticChangeStructureDataType &OpcUa_SemanticChangeStructureDataType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_Range &OpcUa_Range_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_EUInformation &OpcUa_EUInformation_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ComplexNumberType &OpcUa_ComplexNumberType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_DoubleComplexNumberType &OpcUa_DoubleComplexNumberType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_AxisInformation &OpcUa_AxisInformation_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_XVType &OpcUa_XVType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ProgramDiagnosticDataType &OpcUa_ProgramDiagnosticDataType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_ProgramDiagnostic2DataType &OpcUa_ProgramDiagnostic2DataType_EncodeableType, #endif #ifndef OPCUA_EXCLUDE_Annotation &OpcUa_Annotation_EncodeableType, #endif OpcUa_Null }; OpcUa_EncodeableType** OpcUa_KnownEncodeableTypes = g_OpcUa_KnownEncodeableTypes; /* This is the last line of an autogenerated file. */