ReadMME.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * signed ReadMME (struct plc * plc, uint8_t MMV, uint16_t MMTYPE);
  11. *
  12. * plc.h
  13. *
  14. * wait for a QCA vendor specific message of given MMV and MMTYPE;
  15. * discard unwanted messages until the desired message arrives or
  16. * the channel timeout expires; return packetsize on success, 0 on
  17. * timeout or -1 on error;
  18. *
  19. * see SendMME for the send counterpart to this function;
  20. *
  21. * a well designed UnwantedMessage function is critical here;
  22. *
  23. * Contributor(s):
  24. * Charles Maier <cmaier@qca.qualcomm.com>
  25. * Nathaniel Houghton <nhoughto@qca.qualcomm.com>
  26. * Matthieu Poullet <m.poullet@avm.de>
  27. *
  28. *--------------------------------------------------------------------*/
  29. #ifndef READMME_SOURCE
  30. #define READMME_SOURCE
  31. #include <sys/time.h>
  32. #include <stdint.h>
  33. #include <memory.h>
  34. #include <errno.h>
  35. #include "../tools/error.h"
  36. #include "../tools/timer.h"
  37. #include "../plc/plc.h"
  38. #include "../mme/mme.h"
  39. signed ReadMME (struct plc * plc, uint8_t MMV, uint16_t MMTYPE)
  40. {
  41. struct channel * channel = (struct channel *) (plc->channel);
  42. struct message * message = (struct message *) (plc->message);
  43. struct timeval ts;
  44. struct timeval tc;
  45. if (gettimeofday (& ts, NULL) == -1)
  46. {
  47. error (1, errno, CANT_START_TIMER);
  48. }
  49. while ((plc->packetsize = readpacket (channel, message, sizeof (* message))) >= 0)
  50. {
  51. if (UnwantedMessage (message, plc->packetsize, MMV, MMTYPE))
  52. {
  53. if (gettimeofday (& tc, NULL) == -1)
  54. {
  55. error (1, errno, CANT_RESET_TIMER);
  56. }
  57. if (channel->timeout < 0)
  58. {
  59. continue;
  60. }
  61. if (channel->timeout > MILLISECONDS (ts, tc))
  62. {
  63. continue;
  64. }
  65. plc->packetsize = 0;
  66. }
  67. break;
  68. }
  69. return (plc->packetsize);
  70. }
  71. signed ReadMME1 (struct plc * plc, uint8_t MMV, uint16_t MMTYPE)
  72. {
  73. struct channel * channel1 = (struct channel *) (plc->channel1);
  74. struct message * message = (struct message *) (plc->message);
  75. struct timeval ts;
  76. struct timeval tc;
  77. if (gettimeofday (& ts, NULL) == -1)
  78. {
  79. error (1, errno, CANT_START_TIMER);
  80. }
  81. while ((plc->packetsize = readpacket (channel1, message, sizeof (* message))) >= 0)
  82. {
  83. if (UnwantedMessage (message, plc->packetsize, MMV, MMTYPE))
  84. {
  85. if (gettimeofday (& tc, NULL) == -1)
  86. {
  87. error (1, errno, CANT_RESET_TIMER);
  88. }
  89. if (channel1->timeout < 0)
  90. {
  91. continue;
  92. }
  93. if (channel1->timeout > MILLISECONDS (ts, tc))
  94. {
  95. continue;
  96. }
  97. plc->packetsize = 0;
  98. }
  99. break;
  100. }
  101. return (plc->packetsize);
  102. }
  103. #endif