CPLStation.cpp 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384
  1. /*====================================================================*
  2. *
  3. * Copyright (c) 2013 Qualcomm Atheros, Inc.
  4. *
  5. * All rights reserved.
  6. *
  7. *====================================================================*/
  8. /*====================================================================*
  9. *
  10. * CPLStation.cpp - CPLStation class implementation;
  11. *
  12. * Contributor(s):
  13. * Charles Maier <charles.maier@intellon.com>
  14. *
  15. *--------------------------------------------------------------------*/
  16. #ifndef CPLSTATION_SOURCE
  17. #define CPLSTATION_SOURCE
  18. /*====================================================================*
  19. * system header files;
  20. *--------------------------------------------------------------------*/
  21. #include <cstring>
  22. #include <iostream>
  23. /*====================================================================*
  24. * custom header files;
  25. *--------------------------------------------------------------------*/
  26. #include "../classes/CPLStation.hpp"
  27. #include "../classes/omemory.hpp"
  28. #include "../tools/types.h"
  29. /*====================================================================*
  30. * class variables;
  31. *--------------------------------------------------------------------*/
  32. char const * CPLStation::PrefaceString = "P/L NET TEI ------ MAC ------ ------ BDA ------ TX RX CHIPSET FIRMWARE";
  33. char const * CPLStation::link [] =
  34. {
  35. "LOC",
  36. "REM"
  37. };
  38. char const * CPLStation::role [] =
  39. {
  40. "STA",
  41. "CCO"
  42. };
  43. char const * CPLStation::chipset [] =
  44. {
  45. "unknown",
  46. "INT6000",
  47. "INT6300",
  48. "INT6400",
  49. " AR7400",
  50. " AR6405"
  51. " AR7420"
  52. };
  53. /*====================================================================*
  54. *
  55. * bool IsBridge (void) const;
  56. *
  57. * return logical true if the station is a local powerline device;
  58. *
  59. *--------------------------------------------------------------------*/
  60. bool CPLStation::IsBridge (void) const
  61. {
  62. return (this->mlink == CPLSTATION_BRIDGE);
  63. }
  64. /*====================================================================*
  65. *
  66. * unsigned LinkType (void) const;
  67. *
  68. * return the station link type as an unsigned integer;
  69. *
  70. *--------------------------------------------------------------------*/
  71. unsigned CPLStation::LinkType (void) const
  72. {
  73. return (this->mlink);
  74. }
  75. /*====================================================================*
  76. *
  77. * char const * LinkName (void) const;
  78. *
  79. *--------------------------------------------------------------------*/
  80. char const * CPLStation::LinkName (void) const
  81. {
  82. return (CPLStation::link [this->mlink]);
  83. }
  84. /*====================================================================*
  85. *
  86. * byte StationID (void) const;
  87. *
  88. * return the network station identifier as an unsigned integer;
  89. * the station identifier is the same as the TEI;
  90. *
  91. *--------------------------------------------------------------------*/
  92. unsigned CPLStation::StationID (void) const
  93. {
  94. return (this->mstation);
  95. }
  96. /*====================================================================*
  97. *
  98. * unsigned RoleType (void) const;
  99. *
  100. *--------------------------------------------------------------------*/
  101. unsigned CPLStation::RoleType (void) const
  102. {
  103. return (this->mrole);
  104. }
  105. /*====================================================================*
  106. *
  107. * unsigned RoleName (void) const;
  108. *
  109. *--------------------------------------------------------------------*/
  110. char const * CPLStation::RoleName (void) const
  111. {
  112. return (CPLStation::role [this->mrole]);
  113. }
  114. /*====================================================================*
  115. *
  116. * byte const * HostAddress (void) const;
  117. *
  118. *--------------------------------------------------------------------*/
  119. byte const * CPLStation::NodeAddress (void) const
  120. {
  121. return (this->mnodeaddr);
  122. }
  123. /*====================================================================*
  124. *
  125. * byte const * NodeAddress (void) const;
  126. *
  127. *--------------------------------------------------------------------*/
  128. char const * CPLStation::NodeAddressString (void) const
  129. {
  130. static char address [ETHER_ADDR_LEN * 3];
  131. omemory::hexstring (address, sizeof (address), this->mnodeaddr, sizeof (this->mnodeaddr));
  132. return (address);
  133. }
  134. /*====================================================================*
  135. *
  136. * byte const * HostAddress (void) const;
  137. *
  138. *--------------------------------------------------------------------*/
  139. byte const * CPLStation::HostAddress (void) const
  140. {
  141. return (this->mhostaddr);
  142. }
  143. /*====================================================================*
  144. *
  145. * char const * HostAddressString (void) const;
  146. *
  147. *--------------------------------------------------------------------*/
  148. char const * CPLStation::HostAddressString (void) const
  149. {
  150. static char address [ETHER_ADDR_LEN * 3];
  151. omemory::hexstring (address, sizeof (address), this->mhostaddr, sizeof (this->mhostaddr));
  152. return (address);
  153. }
  154. /*====================================================================*
  155. *
  156. * unsigned TxRate (void) const;
  157. *
  158. *--------------------------------------------------------------------*/
  159. unsigned CPLStation::TxRate (void) const
  160. {
  161. return (this->mtxrate);
  162. }
  163. /*====================================================================*
  164. *
  165. * unsigned RxRate (void) const;
  166. *
  167. *--------------------------------------------------------------------*/
  168. unsigned CPLStation::RxRate (void) const
  169. {
  170. return (this->mrxrate);
  171. }
  172. /*====================================================================*
  173. *
  174. * unsigned HardwareType (void) const;
  175. *
  176. * return the hardware platform code (chipset ID) ensuring that it
  177. * does not fall outside the bounds of array CPLStation::chipset;
  178. *
  179. *--------------------------------------------------------------------*/
  180. unsigned CPLStation::HardwareType (void) const
  181. {
  182. if (this->mhardware < (sizeof (CPLStation::chipset) / sizeof (const char *)))
  183. {
  184. return (this->mhardware);
  185. }
  186. return (0);
  187. }
  188. /*====================================================================*
  189. *
  190. * cons char * HardwareName (void) const;
  191. *
  192. *--------------------------------------------------------------------*/
  193. char const * CPLStation::HardwareName (void) const
  194. {
  195. return (CPLStation::chipset [this->HardwareType ()]);
  196. }
  197. /*====================================================================*
  198. *
  199. * char const * FirmwareName (void) const;
  200. *
  201. *--------------------------------------------------------------------*/
  202. char const * CPLStation::FirmwareName (void) const
  203. {
  204. return (this->mfirmware);
  205. }
  206. /*====================================================================*
  207. *
  208. * CPLStation & Revision (CPLChannel * channel)
  209. *
  210. * update the mhardware and mfirmware members using a VS_SW_VER
  211. * management message;
  212. *
  213. *--------------------------------------------------------------------*/
  214. CPLStation & CPLStation::Revision (CPLChannel * channel)
  215. {
  216. ointellon intellon;
  217. byte message [ETHER_MAX_LEN];
  218. #ifndef __GNUC__
  219. #pragma pack (push,1)
  220. #endif
  221. struct __packed version
  222. {
  223. uint8_t MSTATUS;
  224. uint8_t MDEVICEID;
  225. uint8_t MVERSIONLENGTH;
  226. uint8_t MVERSION [128];
  227. }
  228. * version;
  229. #ifndef __GNUC__
  230. #pragma pack (pop)
  231. #endif
  232. std::memset (message, 0, sizeof (message));
  233. intellon.ImportPeerAddress (this->mnodeaddr);
  234. intellon.ImportHostAddress (channel->HostAddress ());
  235. version = (struct version *)(intellon.ExportHeader (message));
  236. if (channel->SendMessage (message, ETHER_MIN_LEN) > 0)
  237. {
  238. while (channel->ReadMessage (message, sizeof (message)) > 0)
  239. {
  240. this->mhardware = version->MDEVICEID;
  241. std::memcpy (this->mfirmware, version->MVERSION, version->MVERSIONLENGTH);
  242. }
  243. }
  244. return (*this);
  245. }
  246. /*====================================================================*
  247. *
  248. * CPLStation & Preface ();
  249. *
  250. *--------------------------------------------------------------------*/
  251. CPLStation & CPLStation::Preface ()
  252. {
  253. std::cout << CPLStation::PrefaceString << std::endl;
  254. return (*this);
  255. }
  256. /*====================================================================*
  257. *
  258. * CPLStation & Print ();
  259. *
  260. *--------------------------------------------------------------------*/
  261. CPLStation & CPLStation::Print ()
  262. {
  263. char buffer [10];
  264. std::cout << this->LinkName () << " ";
  265. std::cout << this->RoleName () << " ";
  266. std::cout << omemory::serial (buffer, 3, this->StationID (), 10, 0) << " ";
  267. std::cout << this->NodeAddressString () << " ";
  268. std::cout << this->HostAddressString () << " ";
  269. std::cout << omemory::serial (buffer, 3, this->TxRate (), 10, 0) << " ";
  270. std::cout << omemory::serial (buffer, 3, this->RxRate (), 10, 0) << " ";
  271. std::cout << this->HardwareName () << " ";
  272. std::cout << this->FirmwareName () << "\n";
  273. return (*this);
  274. }
  275. /*====================================================================*
  276. *
  277. * CPLStation (void);
  278. *
  279. *--------------------------------------------------------------------*/
  280. CPLStation::CPLStation (void)
  281. {
  282. this->mlink = 0;
  283. this->mrole = 0;
  284. this->mstation = 0;
  285. std::memset (this->mnodeaddr, 0x00, sizeof (this->mnodeaddr));
  286. std::memset (this->mhostaddr, 0x00, sizeof (this->mhostaddr));
  287. std::memset (this->mfirmware, 0, sizeof (this->mfirmware));
  288. omemory::memtext ("unknown", this->mfirmware, sizeof (this->mfirmware));
  289. this->mhardware = 0;
  290. return;
  291. }
  292. /*====================================================================*
  293. *
  294. * ~ CPLStation (void);
  295. *
  296. *--------------------------------------------------------------------*/
  297. CPLStation::~CPLStation (void)
  298. {
  299. return;
  300. }
  301. /*====================================================================*
  302. * end implementation;
  303. *--------------------------------------------------------------------*/
  304. #endif