ointellon.cpp 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * ointellon.cpp - ointellon class definition;
  11. *
  12. * implement an Intellon vendor specific HomePlug AV message header
  13. * consisting of an Ethernet header, message version, message type
  14. * and vendor OUI; provide methods to encode and decode external
  15. * memory;
  16. *
  17. * Contributor(s):
  18. * Charles Maier <charles.maier@intellon.com>
  19. *
  20. *--------------------------------------------------------------------*/
  21. #ifndef oINTELLON_SOURCE
  22. #define oINTELLON_SOURCE
  23. /*====================================================================*
  24. * system header files;
  25. *--------------------------------------------------------------------*/
  26. #include <iostream>
  27. #include <cstring>
  28. /*====================================================================*
  29. * custom header files;
  30. *--------------------------------------------------------------------*/
  31. #include "../classes/ointellon.hpp"
  32. #include "../classes/omemory.hpp"
  33. #include "../tools/endian.h"
  34. /*====================================================================*
  35. * class constants;
  36. *--------------------------------------------------------------------*/
  37. byte const ointellon::LocalcastAddress [ETHER_ADDR_LEN] =
  38. {
  39. 0x00,
  40. 0xB0,
  41. 0x52,
  42. 0x00,
  43. 0x00,
  44. 0x01
  45. };
  46. /*====================================================================*
  47. *
  48. * size_t HeaderLength (void) const;
  49. *
  50. * return the length of an encoded intellon vendor specific header
  51. * in bytes;
  52. *
  53. *--------------------------------------------------------------------*/
  54. size_t ointellon::HeaderLength (void) const
  55. {
  56. return (ohomeplug::HeaderLength() + sizeof (this->moui));
  57. }
  58. /*====================================================================*
  59. *
  60. * size_t BufferLength (void) const;
  61. *
  62. * return the length of an encoded intellon vendor specific header
  63. * in bytes;
  64. *
  65. *--------------------------------------------------------------------*/
  66. size_t ointellon::BufferLength (size_t extent) const
  67. {
  68. return (ohomeplug::HeaderLength () + sizeof (this->moui) + extent);
  69. }
  70. /*====================================================================*
  71. *
  72. * void * ointellon::ExportHeader (void * memory) constant;
  73. *
  74. * encode external memory with the message version, message type
  75. * and vendor OUI; return the next unencoded memory location;
  76. *
  77. *--------------------------------------------------------------------*/
  78. void * ointellon::ExportHeader (void * memory) const
  79. {
  80. memory = ohomeplug::ExportHeader (memory);
  81. memory = omemory::encode (memory, this->moui, sizeof (this->moui));
  82. return (memory);
  83. }
  84. /*====================================================================*
  85. *
  86. * void const * ointellon::ImportHeader (void const * memory);
  87. *
  88. * decode external memory into the message version, message type
  89. * and vendor OUI; return the next undecoded memory location;
  90. *
  91. *--------------------------------------------------------------------*/
  92. void const * ointellon::ImportHeader (void const * memory)
  93. {
  94. memory = ohomeplug::ImportHeader (memory);
  95. memory = omemory::decode (memory, this->moui, sizeof (this->moui));
  96. return (memory);
  97. }
  98. /*====================================================================*
  99. *
  100. * byte const * ointellon::VendorOUI (void) const;
  101. *
  102. * return the location fo the vendor OUI; the vendor OUI must not
  103. * be change for Intellon devices;
  104. *
  105. *--------------------------------------------------------------------*/
  106. byte const * ointellon::VendorOUI (void) const
  107. {
  108. return (this->moui);
  109. }
  110. /*====================================================================*
  111. *
  112. * char const * ointellon::VendorOUIString (void) const;
  113. *
  114. *--------------------------------------------------------------------*/
  115. char const * ointellon::VendorOUIString (void) const
  116. {
  117. static char buffer [sizeof (this->moui) * 3];
  118. omemory::hexdecode (&this->moui, sizeof (this->moui), buffer, sizeof (buffer));
  119. return (buffer);
  120. }
  121. /*====================================================================*
  122. *
  123. * ointellon & Print ();
  124. *
  125. * print protocol version, vendor message type and vendor OUI on
  126. * stdout; message type and OUI are in hex format;
  127. *
  128. *--------------------------------------------------------------------*/
  129. ointellon & ointellon::Print ()
  130. {
  131. ohomeplug::Print ();
  132. std::cerr << this->VendorOUIString () << std::endl;
  133. return (*this);
  134. }
  135. /*====================================================================*
  136. *
  137. * ointellon(void);
  138. *
  139. *--------------------------------------------------------------------*/
  140. ointellon::ointellon (void)
  141. {
  142. ohomeplug::ImportPeerAddress (this->LocalcastAddress);
  143. ohomeplug::SetProtocol (oINTELLON_MTYPE);
  144. ohomeplug::SetMessageVersion (oINTELLON_MMV);
  145. ohomeplug::SetMessageType (oINTELLON_MMTYPE);
  146. ohomeplug::SetMessageFragment (oINTELLON_FMI);
  147. std::memcpy (this->moui, this->LocalcastAddress, sizeof (this->moui));
  148. return;
  149. }
  150. /*====================================================================*
  151. *
  152. * ~ointellon (void);
  153. *
  154. *--------------------------------------------------------------------*/
  155. ointellon::~ointellon (void)
  156. {
  157. return;
  158. }
  159. /*====================================================================*
  160. * end definition;
  161. *--------------------------------------------------------------------*/
  162. #endif