CPLParameters.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <chapter id='CPLParameters'>
  2. <title>
  3. Class CPLParameters
  4. </title>
  5. <section id="CPLParameters-class">
  6. <title>
  7. Introduction
  8. </title>
  9. <para>
  10. This class implements one instance of a runtime parameter block image. Class methods permit reading and writing a parameter block image from and to powerline devices or local host files. Class properties permit direct access to the parameter block but expose only a few parameter block elements. Application that must access specific parameter block elements should inherit this class.
  11. </para>
  12. <para>
  13. This class is declared in <ulink url='CPLParameters.hpp.html'>CPLParameters.hpp</ulink> and defined in <ulink url='CPLParameters.cpp.html'>CPLParameters.cpp</ulink>.
  14. </para>
  15. <section id="CPLParameters-inheritance">
  16. <title>
  17. Inheritance
  18. </title>
  19. <para>
  20. None.
  21. </para>
  22. </section>
  23. <section id="CPLParameters-dependence">
  24. <title>
  25. Dependence
  26. </title>
  27. <para>
  28. </para>
  29. </section>
  30. </section>
  31. <section id="CPLParameters-properties">
  32. <title>
  33. Properties
  34. </title>
  35. <para>
  36. </para>
  37. <section id="CPLParameters-Data">
  38. <title>
  39. CPLParameters::Data
  40. </title>
  41. <funcsynopsis>
  42. <funcprototype>
  43. <funcdef>void * <function>Data</function></funcdef>
  44. <paramdef>void</paramdef>
  45. </funcprototype>
  46. </funcsynopsis>
  47. <para>
  48. Return the absolute address of the parameter block image.
  49. </para>
  50. </section>
  51. <section id="CPLParameters-IsValid">
  52. <title>
  53. CPLParameters::IsValid
  54. </title>
  55. <funcsynopsis>
  56. <funcprototype>
  57. <funcdef>bool <function>IsValid</function></funcdef>
  58. <paramdef>void</paramdef>
  59. </funcprototype>
  60. </funcsynopsis>
  61. <para>
  62. Return <constant>true</constant> if the current parameter block image appears valid. Validity is determined by comparing the parameter block length and checksum to the values stored in the parameter block header.
  63. </para>
  64. </section>
  65. <section id="CPLParameters-Size">
  66. <title>
  67. CPLParameters::Size
  68. </title>
  69. <funcsynopsis>
  70. <funcprototype>
  71. <funcdef>size_t <function>Size</function></funcdef>
  72. <paramdef>void</paramdef>
  73. </funcprototype>
  74. </funcsynopsis>
  75. <para>
  76. Return the size of the parameter block image last read from a powerline device or host file. This will be the sum of all bytes read and should equal the PIBLength value stored in the parameter block header. This class does not
  77. </para>
  78. </section>
  79. </section>
  80. <section id="CPLParameters-methods">
  81. <title>
  82. Methods
  83. </title>
  84. <para>
  85. </para>
  86. <section id="CPLParameters-ReadFile">
  87. <title>
  88. CPLParameters::Read
  89. </title>
  90. <funcsynopsis>
  91. <funcprototype>
  92. <funcdef>signed <function>Read</function></funcdef>
  93. <paramdef>char const * <parameter>filename</parameter></paramdef>
  94. </funcprototype>
  95. </funcsynopsis>
  96. <para>
  97. Read the parameter block image from the named host file.
  98. </para>
  99. </section>
  100. <section id="CPLParameters-ReadChannel">
  101. <title>
  102. CPLParameters::Read
  103. </title>
  104. <funcsynopsis>
  105. <funcprototype>
  106. <funcdef>signed <function>Read</function></funcdef>
  107. <paramdef>CPLChannel * <parameter>channel</parameter></paramdef>
  108. </funcprototype>
  109. </funcsynopsis>
  110. <para>
  111. Read the parameter block image from the powerline device assigned to the given <varname>channel</varname>. This method will fetch the working parameter block image if the parameter block scratch buffer on the device is empty.
  112. </para>
  113. </section>
  114. <section id="CPLParameters-WriteFile">
  115. <title>
  116. CPLParameters::Write
  117. </title>
  118. <funcsynopsis>
  119. <funcprototype>
  120. <funcdef>signed <function>Write</function></funcdef>
  121. <paramdef>char const * <parameter>filename</parameter></paramdef>
  122. </funcprototype>
  123. </funcsynopsis>
  124. <para>
  125. Write the parameter block image to the named host file.
  126. </para>
  127. </section>
  128. <section id="CPLParameters-WriteChannel">
  129. <title>
  130. CPLParameters::Write
  131. </title>
  132. <funcsynopsis>
  133. <funcprototype>
  134. <funcdef>signed <function>Write</function></funcdef>
  135. <paramdef>CPLChannel * <parameter>channel</parameter></paramdef>
  136. </funcprototype>
  137. </funcsynopsis>
  138. <para>
  139. Write the parameter block image to the powerline device assigned to the given <varname>channel</varname>. This methods fills or over-write the parameter block image buffer on the powerline device.
  140. </para>
  141. </section>
  142. </section>
  143. <section id="CPLParameters-operators">
  144. <title>
  145. Operators
  146. </title>
  147. <para>
  148. None.
  149. </para>
  150. </section>
  151. <section id="CPLParameters-constructors">
  152. <title>
  153. Constructors
  154. </title>
  155. <para>
  156. </para>
  157. <funcsynopsis>
  158. <funcprototype>
  159. <funcdef><function>CPLParameters</function></funcdef>
  160. <paramdef>CPLChannel * <parameter>channel</parameter></paramdef>
  161. </funcprototype>
  162. </funcsynopsis>
  163. <para>
  164. Initialize the instance by reading the parameter block image from the powerline device assigned by the given channel.
  165. </para>
  166. <funcsynopsis>
  167. <funcprototype>
  168. <funcdef><function>CPLParameters</function></funcdef>
  169. <paramdef>char const * <parameter>filename</parameter></paramdef>
  170. </funcprototype>
  171. </funcsynopsis>
  172. <para>
  173. Initialize the instance by reading the parameter block image from the named host file.
  174. </para>
  175. </section>
  176. <section id="CPLParameters-examples">
  177. <title>
  178. Examples
  179. </title>
  180. <para>
  181. To be written.
  182. </para>
  183. </section>
  184. </chapter>