CPLNetwork.xml 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350
  1. <chapter id='CPLNetwork'>
  2. <title>
  3. Class CPLNetwork
  4. </title>
  5. <section id="CPLNetwork-class">
  6. <title>
  7. Introduction
  8. </title>
  9. <para>
  10. This class implements a HomePlug AV network as a collection of powerline stations. The network is characterized by interrogating a reference station with a <varname>VS_NW_INFO</varname> message then interrogating each network neighbor with a <varname>VS_SW_VER</varname> message. Class properties, methods and operators are used to iterate through the collection and obtain copies of individual station instances. Station instances are implemented using the <link linkend='CPLStation'>CPLStation</link> class.
  11. </para>
  12. <para>
  13. The <citetitle>HomePlug AV Specification</citetitle> assigns special meaning to the term <quote>station</quote> but this class considers all powerline devices to be stations. The central coordinator and proxy coordinator is merely a special kind of station.
  14. </para>
  15. <para>
  16. The first station in the collection is always the one specified by the <link linkend='CPLChannel'>CPLChannel</link> instance used to instantiate the <link linkend='CPLNetwork-constructors'>CPLNetwork</link> instance. The remaining stations can appear in any order. Applications must iterate through the network to locate the local device or the central coordinator by examining station <link linkend='CPLStation-LinkType'>LinkType</link> and the <link linkend='CPLStation-RoleType'>RoleType</link> properties.
  17. </para>
  18. <para>
  19. This class is declared in <ulink url='CPLNetwork.hpp.html'>CPLNetwork.hpp</ulink> and defined in <ulink url='CPLNetwork.cpp.html'>CPLNetwork.cpp</ulink>.
  20. </para>
  21. <section id="CPLNetwork-inheritance">
  22. <title>
  23. Inheritance
  24. </title>
  25. <para>
  26. None.
  27. </para>
  28. </section>
  29. <section id="CPLNetwork-dependence">
  30. <title>
  31. Dependence
  32. </title>
  33. <para>
  34. This class uses class <link linkend='CPLChannel'>CPLChannel</link> to identifiy the host interface and powerline device to be interrogated.
  35. </para>
  36. <para>
  37. This class uses class <link linkend='CPLStation'>CPLStation</link> to represent individual powerline devices found on the powerline network.
  38. </para>
  39. </section>
  40. </section>
  41. <section id="CPLNetwork-properties">
  42. <title>
  43. Properties
  44. </title>
  45. <para>
  46. </para>
  47. <section id="CPLNetwork-Count">
  48. <title>
  49. CPLNetwork::Count
  50. </title>
  51. <funcsynopsis>
  52. <funcprototype>
  53. <funcdef>unsigned <function>Count</function></funcdef>
  54. <paramdef>void</paramdef>
  55. </funcprototype>
  56. </funcsynopsis>
  57. <para>
  58. Return the number of powerline stations detected on the network. This property does not change over the instance lifetime and is the upper bound when iterating through network stations.
  59. </para>
  60. </section>
  61. <section id="CPLNetwork-Empty">
  62. <title>
  63. CPLNetwork::Empty
  64. </title>
  65. <funcsynopsis>
  66. <funcprototype>
  67. <funcdef>bool <function>Empty</function></funcdef>
  68. <paramdef>void</paramdef>
  69. </funcprototype>
  70. </funcsynopsis>
  71. <para>
  72. Return logical <constant>true</constant> if the collection is empty. The collection is empty only if the <link linkend='ointerfaces-Count'>Count</link> property is <constant>0</constant>. An empty collection may indicate that the class was instantiated with an incorrect channel <link linkend='oethernet-PeerAddress'>PeerAddress</link>.
  73. </para>
  74. </section>
  75. <section id="CPLNetwork-End">
  76. <title>
  77. CPLNetwork::End
  78. </title>
  79. <funcsynopsis>
  80. <funcprototype>
  81. <funcdef>bool <function>End</function></funcdef>
  82. <paramdef>void</paramdef>
  83. </funcprototype>
  84. </funcsynopsis>
  85. <para>
  86. Return logical <constant>true</constant> if the collection is exhausted. The collection is exhausted if the <link linkend='CPLNetwork-Index'>Index</link> property equals or exceeds the <link linkend='CPLNetwork-Count'>Count</link> property.
  87. </para>
  88. </section>
  89. <section id="CPLNetwork-Index">
  90. <title>
  91. CPLNetwork::Index
  92. </title>
  93. <funcsynopsis>
  94. <funcprototype>
  95. <funcdef>unsigned <function>Index</function></funcdef>
  96. <paramdef>void</paramdef>
  97. </funcprototype>
  98. </funcsynopsis>
  99. <para>
  100. Return the index of the selected interface. The index ranges from <constant>0</constant> up to (but excluding) the value the <link linkend='CPLNetwork-Count'>Count</link> property. Class <link linkend='CPLNetwork-methods'>methods</link> and <link linkend='CPLNetwork-operators'>operators</link> may be used to alter the value of this property.
  101. </para>
  102. </section>
  103. <section id="CPLNetwork-Selected">
  104. <title>
  105. CPLNetwork::Selected
  106. </title>
  107. <funcsynopsis>
  108. <funcprototype>
  109. <funcdef>CPLStation &amp; <function>Selected</function></funcdef>
  110. <paramdef>void</paramdef>
  111. </funcprototype>
  112. </funcsynopsis>
  113. <para>
  114. Return the selected <link linkend='CPLStation'>CPLStation</link> object instance. The selected instance is determined by the <link linkend='CPLNetwork-Index'>Index</link> property. All <link linkend='CPLStation'>CPLStation</link> class constants, properties, methods and operators are available to the application through this instance.
  115. </para>
  116. </section>
  117. <section id="CPLNetwork-Station">
  118. <title>
  119. CPLNetwork::Station
  120. </title>
  121. <funcsynopsis>
  122. <funcprototype>
  123. <funcdef>CPLStation &amp; <function>Station</function></funcdef>
  124. <paramdef>void</paramdef>
  125. </funcprototype>
  126. </funcsynopsis>
  127. <para>
  128. Return the selected <link linkend='CPLStation'>CPLStation</link> object instance. This property is the same as the <link linkend='CPLNetwork-Selected'>Selected</link> property.
  129. </para>
  130. </section>
  131. </section>
  132. <section id="CPLNetwork-methods">
  133. <title>
  134. Methods
  135. </title>
  136. <para>
  137. </para>
  138. <section id="CPLNetwork-Enumerate">
  139. <title>
  140. CPLNetwork::Enumerate
  141. </title>
  142. <funcsynopsis>
  143. <funcprototype>
  144. <funcdef>CPLNetwork &amp; <function>Enumerate</function></funcdef>
  145. <paramdef>void</paramdef>
  146. </funcprototype>
  147. </funcsynopsis>
  148. <para>
  149. Enumerate network powerline stations on <varname>stdout</varname>. This is equivalent to calling the <link linkend='CPLStation-Print'>Print</link> method for each station in the collection.
  150. </para>
  151. </section>
  152. <section id="CPLNetwork-Select">
  153. <title>
  154. CPNetworkn::Select
  155. </title>
  156. <funcsynopsis>
  157. <funcprototype>
  158. <funcdef>CPLNetwork &amp; <function>Select</function></funcdef>
  159. <paramdef>unsigned <parameter>index</parameter></paramdef>
  160. </funcprototype>
  161. </funcsynopsis>
  162. <para>
  163. Select a station by <varname>index</varname>. This sets the <link linkend='CPLNetwork-Index'>Index</link> property and determines the station that will be returned by the <link linkend='CPLNetwork-Selected'>Selected</link> and <link linkend='CPLNetwork-Station'>Station</link> properties.
  164. </para>
  165. </section>
  166. <section id="CPLNetwork-SelectFirst">
  167. <title>
  168. CPLNetwork::SelectFirst
  169. </title>
  170. <funcsynopsis>
  171. <funcprototype>
  172. <funcdef>CPLNetwork &amp; <function>SelectFirst</function></funcdef>
  173. <paramdef>void</paramdef>
  174. </funcprototype>
  175. </funcsynopsis>
  176. <para>
  177. Set the <link linkend='CPLNetwork-Index'>Index</link> property to <constant>0</constant>. </para>
  178. </section>
  179. <section id="CPLNetwork-SelectFinal">
  180. <title>
  181. CPLNetwork::SelectFinal
  182. </title>
  183. <funcsynopsis>
  184. <funcprototype>
  185. <funcdef>CPLNetwork &amp; <function>SelectFinal</function></funcdef>
  186. <paramdef>void</paramdef>
  187. </funcprototype>
  188. </funcsynopsis>
  189. <para>
  190. Set the <link linkend='CPLNetwork-Index'>Index</link> property to one less than the <link linkend='CPLNetwork-Count'>Count</link> property.
  191. </para>
  192. </section>
  193. <section id="CPLNetwork-SelectNext">
  194. <title>
  195. CPLNetwork::SelectNext
  196. </title>
  197. <funcsynopsis>
  198. <funcprototype>
  199. <funcdef>CPLNetwork &amp; <function>SelectNext</function></funcdef>
  200. <paramdef>void</paramdef>
  201. </funcprototype>
  202. </funcsynopsis>
  203. <para>
  204. Increment the <link linkend='CPLNetwork-Index'>Index</link> property if it is less than the <link linkend='CPLNetwork-Count'>Count</link> property.
  205. </para>
  206. </section>
  207. <section id="CPLNetwork-SelectPrev">
  208. <title>
  209. CPLNetwork::SelectPrev
  210. </title>
  211. <funcsynopsis>
  212. <funcprototype>
  213. <funcdef>CPLNetwork &amp; <function>SelectPrev</function></funcdef>
  214. <paramdef>void</paramdef>
  215. </funcprototype>
  216. </funcsynopsis>
  217. <para>
  218. Decrement the <link linkend='CPLNetwork-Index'>Index</link> property if it is greater than <constant>0</constant>.
  219. </para>
  220. </section>
  221. </section>
  222. <section id="CPLNetwork-operators">
  223. <title>
  224. Operators
  225. </title>
  226. <section id="CPLNetwork-member">
  227. <title>
  228. CPLNetwork::operator []
  229. </title>
  230. <funcsynopsis>
  231. <funcprototype>
  232. <funcdef>CPLStation &amp; <function>operator []</function></funcdef>
  233. <paramdef>unsigned <parameter>index</parameter></paramdef>
  234. </funcprototype>
  235. </funcsynopsis>
  236. <para>
  237. Select a network station by index and return an instance of it. This operator has the same effect as calling the <link linkend='CPLNetwork-Select'>Select</link> method with <varname>index</varname> then reading either the <link linkend='CPLNetwork-Selected'>Selected</link> or the <link linkend='CPLNetwork-Station'>Station</link> property.
  238. </para>
  239. </section>
  240. <section id="CPLNetwork-assign">
  241. <title>
  242. CPLNetwork::operator =
  243. </title>
  244. <funcsynopsis>
  245. <funcprototype>
  246. <funcdef>CPLNetwork &amp; <function>operator =</function></funcdef>
  247. <paramdef>unsigned <parameter>index</parameter></paramdef>
  248. </funcprototype>
  249. </funcsynopsis>
  250. <para>
  251. Select a network station by network index. This operator has the same effect as the <link linkend='CPLNetwork-Select'>Select</link> method with <varname>index</varname>.
  252. </para>
  253. </section>
  254. </section>
  255. <section id="CPLNetwork-constructors">
  256. <title>
  257. Constructors
  258. </title>
  259. <para>
  260. </para>
  261. <funcsynopsis>
  262. <funcprototype>
  263. <funcdef><function>CPLNetwork</function></funcdef>
  264. <paramdef>CPLChannel * <parameter>channel</parameter></paramdef>
  265. </funcprototype>
  266. </funcsynopsis>
  267. <para>
  268. Instantiate a collection of powerline network stations using the specified <varname>channel</varname>. The <varname>channel</varname> <link linkend='oethernet-PeerAddress'>PeerAddress</link> property must contain the Ethernet hardware address of a powerline station that is accessible through the <varname>channel</varname> interface. The reference station is interrogated and the collection is constructed. The collection includes the reference station and all neighbor stations. Class properties and methods are used to iterate through the collection obtain copies of individual stations.
  269. </para>
  270. </section>
  271. <section id="CPLNetwork-examples">
  272. <title>
  273. Examples
  274. </title>
  275. <para>
  276. The following example instantiates the <link linkend='CPLNetwork'>CPLNetwork</link> class and prints information about powerline network stations on <varname>stdout</varname> using the <link linkend='CPLNetwork-Enumerate'>Enumerate</link> method. Several code variations are shown.
  277. </para>
  278. <example>
  279. <title>
  280. Enumerate Powerline Network Station Details
  281. </title>
  282. <programlisting>
  283. #if defined (__APPLE__)
  284. CPLChannel <varname>channel</varname> (<constant>"en0"</constant>);
  285. #elif defined (WINPCAP)
  286. CPLChannel <varname>channel</varname> (<constant>2</constant>);
  287. #else
  288. CPLChannel <varname>channel</varname> (<constant>"eth4"</constant>);
  289. #endif
  290. byte <varname>device</varname> [] = { <constant>0x00</constant>, <constant>0xB0</constant>, <constant>0x52</constant>, <constant>0xBA</constant>, <constant>0xBE</constant>, <constant>0x05</constant> }
  291. <varname>channel</varname>.<function>ImportPeerAddress</function> (<varname>device</varname>)
  292. CPLNetwork <varname>network</varname> (&amp;<varname>channel</varname>);
  293. <varname>network</varname>.<function>Enumerate</function> ();
  294. </programlisting>
  295. <para>
  296. This example <link linkend="CPLChannel-constructors">instantiates</link> a <varname>channel</varname> using interface <constant>"en0"</constant> on <productname>MAC OSX</productname> systems, interface number <constant>2</constant> on Windows or interface <constant>"eth4"</constant> on other systems. This creates a raw socket on the named interface then gathers information about the interface and the socket. Static interface assignment, such as this, is not recommended because we have no way of knowing if the named or numbered interface will be available on all systems.
  297. </para>
  298. <para>
  299. The example goes on to define an arbitrary powerline <varname>device</varname> address and assign it to the <varname>channel</varname> using method <link linkend='oethernet-ImportPeerAddress'>ImportPeerAddress</link>. This defines the default peer address for outgoing Ethernet frames. This address remains the default until it is changed. The <varname>channel</varname> <link linkend='oethernet-PeerAddress'>PeerAddress</link>, together with the <varname>channel</varname> <link linkend='oethernet-HostAddress'>HostAddress</link> and <varname>channel</varname> <link linkend='oethernet-Protocol'>Protocol</link> form a template used by other classes to format Ethernet frame headers.
  300. </para>
  301. <screen>
  302. P/L NET TEI ------ MAC ------ ------ BDA ------ TX RX CHIPSET FIRMWARE
  303. LOC CCO 001 00:B0:52:BE:EF:04 00:50:04:A5:D8:98 000 000 INT6000 INT6000-MAC-4-0-4011-01-3431-20090519-FINAL-B
  304. REM STA 002 00:B0:52:DE:AD:01 FF:FF:FF:FF:FF:FF 145 147 INT6000 INT6000-MAC-4-1-4101-00-3646-20090615-BETA1-B
  305. REM STA 003 00:0B:3B:7F:78:AA FF:FF:FF:FF:FF:FF 000 000 INT6300 INT6000-MAC-4-1-4102-00-3679-20090724-FINAL-B
  306. </screen>
  307. <para>
  308. Assuming the <varname>channel</varname> interface is available and the peer address references some powerline device on that interface, we will have a complete list of stations associated with <varname>device</varname>. Method <link linkend='CPLNetwork-Enumerate'>Enumerate</link> merely prints all <varname>network</varname> station details on <varname>stdout</varname> so we can see them.
  309. </para>
  310. <para>
  311. The <varname>network</varname> and <varname>channel</varname> will close when these objects go <quote>out-of-scope</quote>.
  312. </para>
  313. </example>
  314. <example>
  315. <title>
  316. Enumerate Powerline Network Station Details
  317. </title>
  318. <programlisting>
  319. if (<varname>network</varname>.<function>Count</function> ())
  320. {
  321. <varname>network</varname>.<function>Select</function> (<constant>0</constant>).<function>Selected</function> ().<function>Title</function> ();
  322. }
  323. for (<varname>network</varname>.<function>SelectFirst</function> (); <varname>network</varname>.<function>Index</function> () &lt; <varname>network</varname>.<function>Count</function> (); <varname>network</varname>.<function>SelectNext</function> ())
  324. {
  325. <varname>network</varname>.<function>Selected</function> ().<function>Print</function> ();
  326. }
  327. </programlisting>
  328. <para>
  329. This example produces the same output as above by iterating through the powerline <varname>network</varname> stations. The loop shown is basically the same as that used in the <link linkend='CPLNetwork-Enumerate'>Enumerate</link> method.
  330. </para>
  331. <para>
  332. First, if the <varname>network</varname> is not empty then station <constant>0</constant> is arbitratily selected and the station <link linkend='CPLStation-Preface'>Preface</link> method is called to print a heading. This method is cosmetic and optional.
  333. </para>
  334. <screen>
  335. P/L NET TEI ------ MAC ------ ------ BDA ------ TX RX CHIPSET FIRMWARE
  336. </screen>
  337. <para>
  338. The example then iterates through each <varname>network</varname> station and calls the station <link linkend='CPLStation-Print'>Print</link> method to output station details on <varname>stdout</varname>.
  339. </para>
  340. <screen>
  341. LOC CCO 001 00:B0:52:BE:EF:04 00:50:04:A5:D8:98 000 000 INT6000 INT6000-MAC-4-0-4011-01-3431-20090519-FINAL-B
  342. REM STA 002 00:B0:52:DE:AD:01 FF:FF:FF:FF:FF:FF 145 147 INT6000 INT6000-MAC-4-1-4101-00-3646-20090615-BETA1-B
  343. REM STA 003 00:0B:3B:7F:78:AA FF:FF:FF:FF:FF:FF 000 000 INT6300 INT6000-MAC-4-1-4102-00-3679-20090724-FINAL-B
  344. </screen>
  345. <para>
  346. If this output is not suitable then you can always access the station properties of interest and either use them or display them as needed.
  347. </para>
  348. </example>
  349. </section>
  350. </chapter>