opcua_binaryEncDec.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. /*
  2. * opcua_binaryEncDec.c
  3. *
  4. * Created on: Dec 18, 2013
  5. * Author: opcua
  6. */
  7. #include "opcua_binaryEncDec.h"
  8. #include "opcua_types.h"
  9. const char *TEST_PASSED = "PASSED";
  10. /*
  11. * convert byte array to Byte
  12. */
  13. Byte convertToByte(char* buf, int pos)
  14. {
  15. return (Byte)buf[pos];
  16. }
  17. /*
  18. * convert byte array to UInt16
  19. */
  20. UInt16 convertToUInt16(char* buf, int pos)
  21. {
  22. Byte t1 = buf[pos];
  23. Int32 t2 = (UInt16)(buf[pos+1] << 8);
  24. return t1 + t2;
  25. }
  26. /*
  27. * convert byte array to Int32
  28. */
  29. Int32 convertToInt32(char* buf, int pos)
  30. {
  31. SByte t1 = buf[pos];
  32. Int32 t2 = (UInt32)(buf[pos+1] << 8);
  33. Int32 t3 = (UInt32)(buf[pos+2] << 16);
  34. Int32 t4 = (UInt32)(buf[pos+3] << 24);
  35. return t1 + t2 + t3 + t4;
  36. }
  37. /*
  38. * convert byte array to UInt32
  39. */
  40. UInt32 convertToUInt32(char* buf, int pos)
  41. {
  42. Byte t1 = buf[pos];
  43. UInt32 t2 = (UInt32)(buf[pos+1] << 8);
  44. UInt32 t3 = (UInt32)(buf[pos+2] << 16);
  45. UInt32 t4 = (UInt32)(buf[pos+3] << 24);
  46. return t1 + t2 + t3 + t4;
  47. }
  48. void convertUInt32ToByteArray(UInt32 value,char *buf,int pos)
  49. {
  50. buf[pos] = (char)(value && 0xFF);
  51. buf[pos + 1] = (char)((value >> 8) && 0xFF);
  52. buf[pos + 2] = (char)((value >> 16) && 0xFF);
  53. buf[pos + 3] = (char)((value >> 24) && 0xFF);
  54. }
  55. /*
  56. * convert byte array to Int64
  57. */
  58. Int64 convertToInt64(char* buf, int pos)
  59. {
  60. SByte t1 = buf[pos];
  61. UInt64 t2 = (UInt64)(buf[pos+1] << 8);
  62. UInt64 t3 = (UInt64)(buf[pos+2] << 16);
  63. UInt64 t4 = (UInt64)(buf[pos+3] << 24);
  64. UInt64 t5 = (UInt64)(buf[pos+4] << 32);
  65. UInt64 t6 = (UInt64)(buf[pos+5] << 40);
  66. UInt64 t7 = (UInt64)(buf[pos+6] << 48);
  67. UInt64 t8 = (UInt64)(buf[pos+7] << 56);
  68. return t1 + t2 + t3 + t4 + t5 + t6 + t7 + t8;
  69. }
  70. Int64 convertToInt64_test(char* buf, int pos)
  71. {
  72. printf("");
  73. }
  74. convertToUAString(char* buf, int pos,UA_String *dstUAString)
  75. {
  76. dstUAString->Length = convertToInt32(buf,pos);
  77. if(dstUAString->Length > 0)
  78. {
  79. dstUAString->Data = &(buf[sizeof(UInt32)]);
  80. }
  81. else
  82. {
  83. dstUAString->Length = 0;
  84. dstUAString->Data = NULL;
  85. }
  86. }
  87. convertToUAGuid(char* buf, int pos,UA_Guid* dstGUID)
  88. {
  89. int counter = 0;
  90. UInt32 i = 0;
  91. for(i = 1; i <= 4; i++)
  92. {
  93. dstGUID->Data1[i] = convertToUInt32(*buf, pos+counter);
  94. counter += sizeof(UInt32);
  95. }
  96. for(i = 1; i <= 2; i++)
  97. {
  98. dstGUID->Data2[i] = convertToUInt16(*buf, pos+counter);
  99. counter += sizeof(UInt16);
  100. }
  101. for(i = 1; i <= 2; i++)
  102. {
  103. dstGUID->Data3[i] = convertToUInt16(*buf, pos+counter);
  104. counter += sizeof(UInt16);
  105. }
  106. for(i = 1; i <= 8; i++)
  107. {
  108. dstGUID->Data4[i] = convertToByte(*buf, pos+counter);
  109. counter += sizeof(Byte);
  110. }
  111. }
  112. UA_ByteString convertToUAByteString(char* buf, int pos){
  113. UA_ByteString tmpUAByteString;
  114. int counter = sizeof(Int32);
  115. int i = 0;
  116. tmpUAByteString.Length = convertToInt32(buf, pos);
  117. Byte byteStringData[tmpUAByteString.Length];
  118. if(tmpUAByteString.Length == -1){
  119. return tmpUAByteString;
  120. }else{
  121. for(i = 0; i < tmpUAByteString.Length; i++)
  122. {
  123. byteStringData[i] = convertToByte(buf, pos+counter);
  124. counter += sizeof(Byte);
  125. }
  126. }
  127. tmpUAByteString.Data = byteStringData;
  128. return tmpUAByteString;
  129. }
  130. UA_DateTime convertToUADateTime(char* buf, int pos){
  131. UA_DateTime tmpUADateTime;
  132. tmpUADateTime = convertToInt64(buf, pos);
  133. return tmpUADateTime;
  134. }
  135. UA_StatusCode convertToUAStatusCode(char* buf, int pos){
  136. return convertToUInt32(buf, pos);
  137. }
  138. void convertToUANodeId(char* buf, int pos, UA_NodeId* dstNodeId){
  139. dstNodeId->EncodingByte = convertToInt32(buf, 0);
  140. int counter = sizeof(UInt32);
  141. UA_NodeIdEncodingValuesType encodingType = dstNodeId->EncodingByte;
  142. switch(encodingType)
  143. {
  144. case NIEVT_TWO_BYTE:
  145. {
  146. dstNodeId->Identifier.Numeric = convertToInt32(buf, counter);
  147. counter += sizeof(UInt16);
  148. break;
  149. }
  150. case NIEVT_FOUR_BYTE:
  151. {
  152. dstNodeId->Identifier.Numeric = convertToInt32(buf, counter);
  153. counter += sizeof(Int64);
  154. break;
  155. }
  156. case NIEVT_NUMERIC:
  157. {
  158. dstNodeId->Identifier.Numeric = convertToInt32(buf, counter);
  159. counter += sizeof(UInt32);
  160. break;
  161. }
  162. case NIEVT_STRING:
  163. {
  164. convertToUAString(buf, counter,&dstNodeId->Identifier.String);
  165. counter += sizeof(sizeof(UInt32) + dstNodeId->Identifier.String.Length);
  166. break;
  167. }
  168. case NIEVT_GUID:
  169. {
  170. convertToUAGuid(buf, counter,&dstNodeId->Identifier.Guid);
  171. counter += sizeof(UA_Guid);
  172. break;
  173. }
  174. case NIEVT_BYTESTRING:
  175. {
  176. dstNodeId->Identifier.OPAQUE = convertToUAByteString(buf, counter);
  177. //If Length == -1 then the ByteString is null
  178. if(dstNodeId->Identifier.OPAQUE.Length == -1)
  179. {
  180. counter += sizeof(Int32);
  181. }else{
  182. counter += sizeof(Int32)+sizeof(Byte)*dstNodeId->Identifier.OPAQUE.Length;
  183. }
  184. break;
  185. }
  186. default:
  187. break;
  188. }
  189. }