readmessage.c 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * ssize_t readmessage (struct channel const * channel, struct message * message, 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 packet length on success,
  17. * 0 on timeout or -1 on error;
  18. *
  19. * see sendmessage 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. *
  27. *--------------------------------------------------------------------*/
  28. #ifndef READMESSAGE_SOURCE
  29. #define READMESSAGE_SOURCE
  30. #include <sys/time.h>
  31. #include <memory.h>
  32. #include <errno.h>
  33. #include "../tools/error.h"
  34. #include "../tools/timer.h"
  35. #include "../plc/plc.h"
  36. ssize_t readmessage (struct channel const * channel, struct message * message, uint8_t MMV, uint16_t MMTYPE)
  37. {
  38. struct timeval ts;
  39. struct timeval tc;
  40. ssize_t length;
  41. if (gettimeofday (& ts, NULL) == - 1)
  42. {
  43. error (1, errno, CANT_START_TIMER);
  44. }
  45. while ((length = readpacket (channel, message, sizeof (* message))) >= 0)
  46. {
  47. if (! UnwantedMessage (message, length, MMV, MMTYPE))
  48. {
  49. return (length);
  50. }
  51. if (gettimeofday (& tc, NULL) == - 1)
  52. {
  53. error (1, errno, CANT_RESET_TIMER);
  54. }
  55. if (channel->timeout < 0)
  56. {
  57. continue;
  58. }
  59. if (channel->timeout > MILLISECONDS (ts, tc))
  60. {
  61. continue;
  62. }
  63. return (0);
  64. }
  65. return (- 1);
  66. }
  67. #endif