CPLNetworks.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  1. <chapter id='CPLNetworks'>
  2. <title>
  3. Class CPLNetworks
  4. </title>
  5. <section id="CPLNetworks-class">
  6. <title>
  7. Introduction
  8. </title>
  9. <para>
  10. This class represents the powerline networks detected on a given host Ethernet interface. It is implemented as a collection of <link linkend='CPLNetwork'>CPLNetwork</link> objects each of which is a collection of <link linkend='CPLStation'>CPLStation</link> objects. It defines the complete powerline network topology for the interface in one object instance.
  11. </para>
  12. <para>
  13. This class is declared in <ulink url='CPLNetworks.hpp.html'>CPLNetworks.hpp</ulink> and defined in <ulink url='CPLNetworks.cpp.html'>CPLNetworks.cpp</ulink>.
  14. </para>
  15. <section id="CPLNetworks-inheritance">
  16. <title>
  17. Inheritance
  18. </title>
  19. <para>
  20. None.
  21. </para>
  22. </section>
  23. <section id="CPLNetworks-dependence">
  24. <title>
  25. Dependence
  26. </title>
  27. <para>
  28. This class uses class <link linkend='CPLChannel'>CPLChannel</link> to identifiy the host interface, detected connected bridges and exchange messgaes with those bridges.
  29. </para>
  30. <para>
  31. This class uses class <link linkend='CPLNetwork'>CPLNetwork</link> to represent detected powerline networks.
  32. </para>
  33. </section>
  34. </section>
  35. <section id="CPLNetworks-properties">
  36. <title>
  37. Properties
  38. </title>
  39. <para>
  40. </para>
  41. <section id="CPLNetworks-Count">
  42. <title>
  43. CPLNetworks::Count
  44. </title>
  45. <funcsynopsis>
  46. <funcprototype>
  47. <funcdef>unsigned <function>Count</function></funcdef>
  48. <paramdef>void</paramdef>
  49. </funcprototype>
  50. </funcsynopsis>
  51. <para>
  52. Return the number of detected networks detected on the host interface. This property does not change over the instance lifetime and is the upper bound when iterating through networks.
  53. </para>
  54. </section>
  55. <section id="CPLNetworks-Empty">
  56. <title>
  57. CPLNetworks::Empty
  58. </title>
  59. <funcsynopsis>
  60. <funcprototype>
  61. <funcdef>bool <function>Empty</function></funcdef>
  62. <paramdef>void</paramdef>
  63. </funcprototype>
  64. </funcsynopsis>
  65. <para>
  66. 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>.
  67. </para>
  68. </section>
  69. <section id="CPLNetworks-End">
  70. <title>
  71. CPLNetworks::End
  72. </title>
  73. <funcsynopsis>
  74. <funcprototype>
  75. <funcdef>bool <function>End</function></funcdef>
  76. <paramdef>void</paramdef>
  77. </funcprototype>
  78. </funcsynopsis>
  79. <para>
  80. Return logical <constant>true</constant> if the collection is exhausted. The collection is exhausted if the <link linkend='CPLNetworks-Index'>Index</link> property equals or exceeds the <link linkend='CPLNetworks-Count'>Count</link> property.
  81. </para>
  82. </section>
  83. <section id="CPLNetworks-Index">
  84. <title>
  85. CPLNetworks::Index
  86. </title>
  87. <funcsynopsis>
  88. <funcprototype>
  89. <funcdef>unsigned <function>Index</function></funcdef>
  90. <paramdef>void</paramdef>
  91. </funcprototype>
  92. </funcsynopsis>
  93. <para>
  94. Return the index of the selected interface. The index ranges from <constant>0</constant> up to (but excluding) the value the <link linkend='CPLNetworks-Count'>Count</link> property. Class <link linkend='CPLNetworks-methods'>methods</link> and <link linkend='CPLNetworks-operators'>operators</link> may be used to alter the value of this property.
  95. </para>
  96. </section>
  97. <section id="CPLNetworks-Network">
  98. <title>
  99. CPLNetworks::Network
  100. </title>
  101. <funcsynopsis>
  102. <funcprototype>
  103. <funcdef>CPLNetwork &amp; <function>Network</function></funcdef>
  104. <paramdef>void</paramdef>
  105. </funcprototype>
  106. </funcsynopsis>
  107. <para>
  108. Return the selected <link linkend='CPLNetwork'>CPLNetwork</link> object instance. This property is the same as the <link linkend='CPLNetworks-Selected'>Selected</link> property.
  109. </para>
  110. </section>
  111. <section id="CPLNetworks-Selected">
  112. <title>
  113. CPLNetworks::Selected
  114. </title>
  115. <funcsynopsis>
  116. <funcprototype>
  117. <funcdef>CPLNetwork &amp; <function>Selected</function></funcdef>
  118. <paramdef>void</paramdef>
  119. </funcprototype>
  120. </funcsynopsis>
  121. <para>
  122. Return the selected <link linkend='CPLNetwork'>CPLNetwork</link> object instance. The selected instance is determined by the <link linkend='CPLNetworks-Index'>Index</link> property. All <link linkend='CPLNetwork'>CPLNetwork</link> class constants, properties, methods and operators are available to the application through this instance.
  123. </para>
  124. </section>
  125. </section>
  126. <section id="CPLNetworks-methods">
  127. <title>
  128. Methods
  129. </title>
  130. <para>
  131. </para>
  132. <section id="CPLNetworks-Enumerate">
  133. <title>
  134. CPLNetworks::Enumerate
  135. </title>
  136. <funcsynopsis>
  137. <funcprototype>
  138. <funcdef>CPLNetworks &amp; <function>Enumerate</function></funcdef>
  139. <paramdef>void</paramdef>
  140. </funcprototype>
  141. </funcsynopsis>
  142. <para>
  143. Enumerate detected networks on <varname>stdout</varname>. This is equivalent to calling the <link linkend='CPLStation-Preface'>Preface</link> method then calling the <link linkend='CPLNetwork-Enumerate'>Enumerate</link> method for each network in the collection.
  144. </para>
  145. </section>
  146. <section id="CPLNetworks-Select">
  147. <title>
  148. CPLNetworks::Select
  149. </title>
  150. <funcsynopsis>
  151. <funcprototype>
  152. <funcdef>CPLNetworks &amp; <function>Select</function></funcdef>
  153. <paramdef>unsigned <parameter>index</parameter></paramdef>
  154. </funcprototype>
  155. </funcsynopsis>
  156. <para>
  157. Select a station by <varname>index</varname>. This sets the <link linkend='CPLNetworks-Index'>Index</link> property and determines the station that will be returned by the <link linkend='CPLNetworks-Selected'>Selected</link> and <link linkend='CPLNetworks-Network'>Network</link> properties.
  158. </para>
  159. </section>
  160. <section id="CPLNetworks-SelectFirst">
  161. <title>
  162. CPLNetworks::SelectFirst
  163. </title>
  164. <funcsynopsis>
  165. <funcprototype>
  166. <funcdef>CPLNetworks &amp; <function>SelectFirst</function></funcdef>
  167. <paramdef>void</paramdef>
  168. </funcprototype>
  169. </funcsynopsis>
  170. <para>
  171. Set the <link linkend='CPLNetworks-Index'>Index</link> property to <constant>0</constant>. </para>
  172. </section>
  173. <section id="CPLNetworks-SelectFinal">
  174. <title>
  175. CPLNetworks::SelectFinal
  176. </title>
  177. <funcsynopsis>
  178. <funcprototype>
  179. <funcdef>CPLNetworks &amp; <function>SelectFinal</function></funcdef>
  180. <paramdef>void</paramdef>
  181. </funcprototype>
  182. </funcsynopsis>
  183. <para>
  184. Set the <link linkend='CPLNetworks-Index'>Index</link> property to one less than the <link linkend='CPLNetworks-Count'>Count</link> property.
  185. </para>
  186. </section>
  187. <section id="CPLNetworks-SelectNext">
  188. <title>
  189. CPLNetworks::SelectNext
  190. </title>
  191. <funcsynopsis>
  192. <funcprototype>
  193. <funcdef>CPLNetworks &amp; <function>SelectNext</function></funcdef>
  194. <paramdef>void</paramdef>
  195. </funcprototype>
  196. </funcsynopsis>
  197. <para>
  198. Increment the <link linkend='CPLNetworks-Index'>Index</link> property if it is less than the <link linkend='CPLNetworks-Count'>Count</link> property.
  199. </para>
  200. </section>
  201. <section id="CPLNetworks-SelectPrev">
  202. <title>
  203. CPLNetworks::SelectPrev
  204. </title>
  205. <funcsynopsis>
  206. <funcprototype>
  207. <funcdef>CPLNetworks &amp; <function>SelectPrev</function></funcdef>
  208. <paramdef>void</paramdef>
  209. </funcprototype>
  210. </funcsynopsis>
  211. <para>
  212. Decrement the <link linkend='CPLNetworks-Index'>Index</link> property if it is greater than <constant>0</constant>.
  213. </para>
  214. </section>
  215. </section>
  216. <section id="CPLNetworks-operators">
  217. <title>
  218. Operators
  219. </title>
  220. <section id="CPLNetworks-member">
  221. <title>
  222. CPLNetworks::operator []
  223. </title>
  224. <funcsynopsis>
  225. <funcprototype>
  226. <funcdef>CPLNetwork &amp; <function>operator []</function></funcdef>
  227. <paramdef>unsigned <parameter>index</parameter></paramdef>
  228. </funcprototype>
  229. </funcsynopsis>
  230. <para>
  231. Select a network station and return an instance of it. This operator has the same effect as calling the <link linkend='CPLNetworks-Select'>Select</link> method with <varname>index</varname> then reading either the <link linkend='CPLNetworks-Selected'>Selected</link> or the <link linkend='CPLNetworks-Network'>Network</link> property.
  232. </para>
  233. </section>
  234. <section id="CPLNetworks-assign">
  235. <title>
  236. CPLNetworks::operator =
  237. </title>
  238. <funcsynopsis>
  239. <funcprototype>
  240. <funcdef>CPLNetworks &amp; <function>operator =</function></funcdef>
  241. <paramdef>unsigned <parameter>index</parameter></paramdef>
  242. </funcprototype>
  243. </funcsynopsis>
  244. <para>
  245. Select a network station by network index. This operator has the same effect as the <link linkend='CPLNetworks-Select'>Select</link> method with <varname>index</varname>.
  246. </para>
  247. </section>
  248. </section>
  249. <section id="CPLNetworks-constructors">
  250. <title>
  251. Constructors
  252. </title>
  253. <para>
  254. </para>
  255. <funcsynopsis>
  256. <funcprototype>
  257. <funcdef><function>CPLNetworks</function></funcdef>
  258. <paramdef>char const * <parameter>ifname</parameter></paramdef>
  259. </funcprototype>
  260. </funcsynopsis>
  261. <para>
  262. Instantiate a collection of powerline networks on the named host interface. The interface name, <varname>ifname</varname>, can be obtained from any <link linkend='ointerface'>ointerface</link> object or from any operating system function designed for that purpose.
  263. </para>
  264. </section>
  265. <section id="CPLNetworks-examples">
  266. <title>
  267. Examples
  268. </title>
  269. <para>
  270. The following example enumerates all stations on all networks on all host interfaces.
  271. </para>
  272. <example>
  273. <title>
  274. Enumerate All Powerline Networks on all Interface
  275. </title>
  276. <programlisting>
  277. ointerfaces <varname>interfaces</varname>;
  278. while (!<varname>interfaces</varname>.<function>End</function> ())
  279. {
  280. CPLNetworks * <varname>networks</varname> = new CPLNetworks (<varname>interfaces</varname>.<function>Interface</function> ().<function>Name</function> ());
  281. <varname>networks</varname>-><function>Enumerate</function> ();
  282. while (!<varname>networks</varname>-><function>End</function> ())
  283. {
  284. <varname>networks</varname>-><function>Selected</function> ().<function>Enumerate</function> ();
  285. <varname>networks</varname>-><function>SelectNext</function> ();
  286. }
  287. delete <varname>networks</varname>;
  288. <varname>interfaces</varname>.<function>SelectNext</function> ();
  289. }
  290. </programlisting>
  291. <para>
  292. Each interface name is used to instantiate a new <varname>networks</varname> which is enumerated in two ways. The networks <link linkend='CPLNetworks-Enumerate'>Enumerate</link> methods is used first then each network is enumerated individually.
  293. </para>
  294. </example>
  295. </section>
  296. </chapter>