ohomeplug.cpp 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * ohomeplug.cpp - ohomeplug class implementeation;
  11. *
  12. * implement a HomePlug AV compliant message header consisting of
  13. * Ethernet header, message version and messge type; provide methods
  14. * tod encode and decode external memory;
  15. *
  16. * Contributor(s):
  17. * Charles Maier <charles.maier@intellon.com>
  18. *
  19. *--------------------------------------------------------------------*/
  20. #ifndef oHOMEPLUG_SOURCE
  21. #define oHOMEPLUG_SOURCE
  22. /*====================================================================*
  23. * system header files;
  24. *--------------------------------------------------------------------*/
  25. #include <cstring>
  26. /*====================================================================*
  27. * custom header files;
  28. *--------------------------------------------------------------------*/
  29. #include "../classes/ohomeplug.hpp"
  30. #include "../classes/omemory.hpp"
  31. #include "../tools/endian.h"
  32. /*====================================================================*
  33. *
  34. * size_t HeaderLength () const;
  35. *
  36. * return the length of an encoded homeplug header in bytes;
  37. *
  38. *--------------------------------------------------------------------*/
  39. size_t ohomeplug::HeaderLength () const
  40. {
  41. return (oethernet::HeaderLength () + sizeof (this->mversion) + sizeof (this->mmessage));
  42. }
  43. /*====================================================================*
  44. *
  45. * void * ExportHeader (void * memory) const;
  46. *
  47. * encode external memory with the peer address, host addresse and
  48. * ethertype; return the next unencoded memory location;
  49. *
  50. *--------------------------------------------------------------------*/
  51. void * ohomeplug::ExportHeader (void * memory) const
  52. {
  53. memory = oethernet::ExportHeader (memory);
  54. memory = omemory::encode (memory, &this->mversion, sizeof (this->mversion));
  55. memory = omemory::encode (memory, &this->mmessage, sizeof (this->mmessage));
  56. if (this->mversion == 1)
  57. {
  58. memory = omemory::encode (memory, &this->mfragment, sizeof (this->mfragment));
  59. }
  60. return (memory);
  61. }
  62. /*====================================================================*
  63. *
  64. * void const * ImportHeader (void const * memory);
  65. *
  66. * decode external memory into the peer address, host addresse and
  67. * ethertype; return the next undecoded memory location;
  68. *
  69. *--------------------------------------------------------------------*/
  70. void const * ohomeplug::ImportHeader (void const * memory)
  71. {
  72. memory = oethernet::ImportHeader (memory);
  73. memory = omemory::decode (memory, &this->mversion, sizeof (this->mversion));
  74. memory = omemory::decode (memory, &this->mmessage, sizeof (this->mmessage));
  75. if (this->mversion == 1)
  76. {
  77. memory = omemory::decode (memory, &this->mfragment, sizeof (this->mfragment));
  78. }
  79. return (memory);
  80. }
  81. /*====================================================================*
  82. *
  83. * const byte ohomeplug::MessageVersion () const;
  84. *
  85. * return the message version;
  86. *
  87. * the message version is the MMV field described in the HomePlug
  88. * AV Specification and the Intellon Technical Reference Manual;
  89. *
  90. *--------------------------------------------------------------------*/
  91. byte ohomeplug::MessageVersion () const
  92. {
  93. return (this->mversion);
  94. }
  95. /*====================================================================*
  96. *
  97. * ohomeplug & ohomeplug::SetMessageVersion (byte version);
  98. *
  99. * change the message version;
  100. *
  101. * the message version is the MMV field described in the HomePlug
  102. * AV Specification and the Intellon Firmware Technical Reference
  103. * Manual;
  104. *
  105. *--------------------------------------------------------------------*/
  106. ohomeplug & ohomeplug::SetMessageVersion (byte version)
  107. {
  108. this->mversion = version;
  109. return (*this);
  110. }
  111. /*====================================================================*
  112. *
  113. * const uint16_t ohomeplug::MessageType () const;
  114. *
  115. * return the vendor specific message type in host byte order;
  116. *
  117. * vendor specific message types are restricted to 0xA000 through
  118. * 0xBFFF but we permit any 16-bit value;
  119. *
  120. * the message type is the MMTYPE field described in the HomePlug
  121. * AV Specification and the Intellon Firmware Technical Reference
  122. * Manual;
  123. *
  124. *--------------------------------------------------------------------*/
  125. uint16_t ohomeplug::MessageType () const
  126. {
  127. return (LE16TOH (this->mmessage));
  128. }
  129. /*====================================================================*
  130. *
  131. * char const * ohomeplug::MessageTypeString (void) const;
  132. *
  133. *--------------------------------------------------------------------*/
  134. char const * ohomeplug::MessageTypeString (void) const
  135. {
  136. static char buffer [sizeof (this->mmessage) * 3];
  137. omemory::hexdecode (&this->mmessage, sizeof (this->mmessage), buffer, sizeof (buffer));
  138. return (buffer);
  139. }
  140. /*====================================================================*
  141. *
  142. * ohomeplug & ohomeplug::SetMessageType (uint16_t message);
  143. *
  144. * change the vendor specific message type in little endian order;
  145. *
  146. * vendor specific message types are restricted to 0xA000 through
  147. * 0xBFFF but we permit any 16-bit value;
  148. *
  149. * the message type is the MMTYPE field described in the HomePlug
  150. * AV Specification and the Intellon Firmware Technical Reference
  151. * Manual;
  152. *
  153. *--------------------------------------------------------------------*/
  154. ohomeplug & ohomeplug::SetMessageType (uint16_t message)
  155. {
  156. this->mmessage = HTOLE16 (message);
  157. return (*this);
  158. }
  159. /*====================================================================*
  160. *
  161. * bool IsMessageType (uint16_t messagetype)
  162. *
  163. * return true if this instance contains the requested HomePlug
  164. * message type;
  165. *
  166. *--------------------------------------------------------------------*/
  167. bool ohomeplug::IsMessageType (uint8_t version, uint16_t message)
  168. {
  169. if (ohomeplug::MessageVersion () != version)
  170. {
  171. return (false);
  172. }
  173. if (ohomeplug::MessageType () != message)
  174. {
  175. return (false);
  176. }
  177. return (true);
  178. }
  179. /*====================================================================*
  180. *
  181. * const uint16_t ohomeplug::MessageFragment (void) const;
  182. *
  183. * return the vendor specific message fragment in host byte order;
  184. *
  185. * vendor specific message types are restricted to 0xA000 through
  186. * 0xBFFF but we permit any 16-bit value;
  187. *
  188. * the message type is the MMTYPE field described in the HomePlug
  189. * AV Specification and the Intellon Firmware Technical Reference
  190. * Manual;
  191. *
  192. *--------------------------------------------------------------------*/
  193. uint16_t ohomeplug::MessageFragment (void) const
  194. {
  195. return (LE16TOH (this->mfragment));
  196. }
  197. /*====================================================================*
  198. *
  199. * const char * ohomeplug::MessageFragmentString (void) const;
  200. *
  201. * return the message type as a colon-separated, hexadecimal string
  202. * shown in network byte order;
  203. *
  204. *--------------------------------------------------------------------*/
  205. char const * ohomeplug::MessageFragmentString (void) const
  206. {
  207. static char buffer [sizeof (this->mfragment) * 3];
  208. omemory::hexdecode (&this->mfragment, sizeof (this->mfragment), buffer, sizeof (buffer));
  209. return (buffer);
  210. }
  211. /*====================================================================*
  212. *
  213. * ohomeplug & ohomeplug::SetMessageFragment (uint16_t fragment);
  214. *
  215. *--------------------------------------------------------------------*/
  216. ohomeplug & ohomeplug::SetMessageFragment (uint16_t fragment)
  217. {
  218. this->mfragment = HTOLE16 (fragment);
  219. return (*this);
  220. }
  221. /*====================================================================*
  222. *
  223. * ohomeplug & SetHeader (void const * memory);
  224. *
  225. * decode external memory into the peer address, host addresse and
  226. * ethertype; return the next undecoded memory location;
  227. *
  228. *--------------------------------------------------------------------*/
  229. ohomeplug & ohomeplug::SetHeader (void const * memory)
  230. {
  231. ohomeplug::ImportHeader(memory);
  232. return (*this);
  233. }
  234. /*====================================================================*
  235. *
  236. * ohomeplug();
  237. *
  238. * clear the peer and host hardware addresses and initialize the
  239. * ethertype field to the default value in network byte order;
  240. *
  241. *--------------------------------------------------------------------*/
  242. ohomeplug::ohomeplug ()
  243. {
  244. oethernet::SetProtocol (oHOMEPLUG_MTYPE);
  245. ohomeplug::SetMessageVersion (oHOMEPLUG_MMV);
  246. ohomeplug::SetMessageType (oHOMEPLUG_MMTYPE);
  247. ohomeplug::SetMessageFragment (oHOMEPLUG_FMI);
  248. return;
  249. }
  250. /*====================================================================*
  251. *
  252. * ~ohomeplug();
  253. *
  254. *--------------------------------------------------------------------*/
  255. ohomeplug::~ohomeplug ()
  256. {
  257. return;
  258. }
  259. /*====================================================================*
  260. * end definition;
  261. *--------------------------------------------------------------------*/
  262. #endif