GetProperty.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed GetProperty (struct plc * plc, struct property * property);
  11. *
  12. * plc.h
  13. *
  14. * interrogte PLC devices for a property using the VS_GET_PROPERTY
  15. * message and display the property value on stdout as a series of
  16. * binary, decimal or hexadecimal bytes or an ASCII string;
  17. *
  18. * the current implementation retrieves properties by number, not
  19. * by name;
  20. *
  21. *--------------------------------------------------------------------*/
  22. #ifndef GETPROPERTY_SOURCE
  23. #define GETPROPERTY_SOURCE
  24. #include <ctype.h>
  25. #include <stdint.h>
  26. #include <memory.h>
  27. #include "../tools/error.h"
  28. #include "../tools/memory.h"
  29. #include "../tools/number.h"
  30. #include "../tools/flags.h"
  31. #include "../plc/plc.h"
  32. signed GetProperty (struct plc * plc, struct plcproperty * plcproperty)
  33. {
  34. struct channel * channel = (struct channel *) (plc->channel);
  35. struct message * message = (struct message *) (plc->message);
  36. #ifndef __GNUC__
  37. #pragma pack (push,1)
  38. #endif
  39. struct __packed vs_get_property_request
  40. {
  41. struct ethernet_hdr ethernet;
  42. struct qualcomm_hdr qualcomm;
  43. uint32_t COOKIE;
  44. uint8_t DATA_FORMAT;
  45. uint8_t PROP_FORMAT;
  46. uint8_t RESERVED [2];
  47. uint32_t PROP_VERSION;
  48. uint32_t PROP_LENGTH;
  49. uint8_t PROP_NUMBER;
  50. }
  51. * request = (struct vs_get_property_request *) (message);
  52. struct __packed vs_get_property_confirm
  53. {
  54. struct ethernet_hdr ethernet;
  55. struct qualcomm_hdr qualcomm;
  56. uint32_t MSTATUS;
  57. uint32_t COOKIE;
  58. uint8_t DATA_FORMAT;
  59. uint8_t RESERVED [3];
  60. uint32_t DATA_LENGTH;
  61. uint32_t DATA_BUFFER [1];
  62. }
  63. * confirm = (struct vs_get_property_confirm *) (message);
  64. #ifndef __GNUC__
  65. #pragma pack (pop)
  66. #endif
  67. Request (plc, "Get Property");
  68. memset (message, 0, sizeof (* message));
  69. EthernetHeader (& request->ethernet, channel->peer, channel->host, channel->type);
  70. QualcommHeader (& request->qualcomm, 0, (VS_GET_PROPERTY | MMTYPE_REQ));
  71. request->COOKIE = HTOLE32 (plc->cookie);
  72. request->DATA_FORMAT = plcproperty->DATA_FORMAT;
  73. request->PROP_FORMAT = plcproperty->PROP_FORMAT;
  74. request->PROP_VERSION = HTOLE32 (plcproperty->PROP_VERSION);
  75. request->PROP_LENGTH = HTOLE32 (plcproperty->PROP_LENGTH);
  76. request->PROP_NUMBER = HTOLE32 (plcproperty->PROP_NUMBER);
  77. plc->packetsize = (ETHER_MIN_LEN - ETHER_CRC_LEN);
  78. if (SendMME (plc) <= 0)
  79. {
  80. error (PLC_EXIT (plc), errno, CHANNEL_CANTSEND);
  81. return (-1);
  82. }
  83. while (ReadMME (plc, 0, (VS_GET_PROPERTY | MMTYPE_CNF)) > 0)
  84. {
  85. if (confirm->MSTATUS)
  86. {
  87. Failure (plc, PLC_WONTDOIT);
  88. continue;
  89. }
  90. if (_anyset (plc->flags, PLC_ANALYSE))
  91. {
  92. unsigned bit;
  93. struct gpio { uint32_t GPIO_STATE; uint32_t GPIO_INPUT; uint32_t RESERVED; } * gpio = (struct gpio *)(confirm->DATA_BUFFER);
  94. for (bit = 0; bit < 9; ++bit)
  95. {
  96. printf("GPIO %02d %6s %d \n", bit, ((gpio->GPIO_INPUT >> bit) & 1)? "OUTPUT": "INPUT", ((gpio->GPIO_STATE >> bit) & 1));
  97. }
  98. continue;
  99. }
  100. if (plcproperty->DATA_FORMAT == PLC_FORMAT_BIN)
  101. {
  102. binout (confirm->DATA_BUFFER, confirm->DATA_LENGTH, ' ', '\n', stdout);
  103. continue;
  104. }
  105. if (plcproperty->DATA_FORMAT == PLC_FORMAT_HEX)
  106. {
  107. hexout (confirm->DATA_BUFFER, confirm->DATA_LENGTH, ' ', '\n', stdout);
  108. continue;
  109. }
  110. if (plcproperty->DATA_FORMAT == PLC_FORMAT_DEC)
  111. {
  112. decout (confirm->DATA_BUFFER, confirm->DATA_LENGTH, ' ', '\n', stdout);
  113. continue;
  114. }
  115. if (plcproperty->DATA_FORMAT == PLC_FORMAT_ASC)
  116. {
  117. chrout (confirm->DATA_BUFFER, confirm->DATA_LENGTH, '.', '\n', stdout);
  118. continue;
  119. }
  120. }
  121. return (0);
  122. }
  123. #endif