class.recordset.php 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. <?php
  2. # ***** BEGIN LICENSE BLOCK *****
  3. # This file is part of DotClear.
  4. # Copyright (c) 2004 Olivier Meunier and contributors. All rights
  5. # reserved.
  6. #
  7. # DotClear is free software; you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation; either version 2 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # DotClear is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with DotClear; if not, write to the Free Software
  19. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. #
  21. # ***** END LICENSE BLOCK *****
  22. /**
  23. @class recordset
  24. Cette classe permet de manipuler des données entrées dans un tableaux multilignes
  25. et multicolonnes. La classe ''connection'' renvoie des recordsets comme résultat
  26. de requêtes.
  27. @param array arry_data Tableau contenant les données
  28. @param integer int_index Emplacement du curseur
  29. @param integer int_row_count Nombre d'enregistrements
  30. @param integer int_col_count Nombre de colonnes
  31. @param integer fetch_index Indice de déplacement utilisé localement
  32. */
  33. class recordset
  34. {
  35. var $arry_data;
  36. var $int_index;
  37. var $int_row_count;
  38. var $int_col_count;
  39. var $fetch_index;
  40. /** @doc
  41. === Méthodes === */
  42. /**
  43. @function recordset
  44. '''Constructeur'''. Cette méthode initialise le recordset. $data est un
  45. tableau de plusieurs lignes et colones.
  46. Par exemple :
  47. {{{
  48. #!php
  49. <?php
  50. $d = array(
  51. array('f1' => 'v01', 'f2' => 'v02'),
  52. array('f1' => 'v11', 'f2' => 'v12'),
  53. array('f1' => 'v21', 'f2' => 'v22')
  54. );
  55. $rs = new recordset($d);
  56. while ($rs->fetch()) {
  57. echo $rs->f('f1').' - '.$rs->f('f2').'<br />';
  58. }
  59. ?>
  60. }}}
  61. @param array data Tableau contenant les données
  62. */
  63. function recordset($data)
  64. {
  65. $this->int_index = 0;
  66. $this->fetch_index = NULL;
  67. if(is_array($data))
  68. {
  69. $this->arry_data = $data;
  70. $this->int_row_count = count($this->arry_data);
  71. if ($this->int_row_count == 0)
  72. {
  73. $this->int_col_count = 0;
  74. }
  75. else
  76. {
  77. $this->int_col_count = count($this->arry_data[0]);
  78. }
  79. }
  80. }
  81. /**
  82. @function field
  83. Renvoie la valeur d'un champ donné, pour la ligne courante.
  84. @param mixed c Nom ou numéro du champ
  85. @return string
  86. */
  87. function field($c)
  88. {
  89. if(!empty($this->arry_data))
  90. {
  91. if(is_integer($c))
  92. {
  93. $T = array_values($this->arry_data[$this->int_index]);
  94. return (isset($T[($c)])) ? $T[($c)] : false;
  95. }
  96. else
  97. {
  98. $c = strtolower($c);
  99. if(isset($this->arry_data[$this->int_index][$c]))
  100. {
  101. if (!is_array($this->arry_data[$this->int_index][$c])) {
  102. return trim($this->arry_data[$this->int_index][$c]);
  103. } else {
  104. return $this->arry_data[$this->int_index][$c];
  105. }
  106. }
  107. else
  108. {
  109. return false;
  110. }
  111. }
  112. }
  113. }
  114. /**
  115. @function f
  116. Alias de la méthode ''field''.
  117. @param mixed c Nom ou numéro du champ
  118. @return string
  119. */
  120. function f($c)
  121. {
  122. return $this->field($c);
  123. }
  124. /**
  125. @function setField
  126. Change la valeur d'un champ donné à la ligne courante.
  127. @param string c Nom du champ
  128. @param string v Valeur du champ
  129. */
  130. function setField($c,$v)
  131. {
  132. $c = strtolower($c);
  133. $this->arry_data[$this->int_index][$c] = $v;
  134. }
  135. /**
  136. @function moveStart
  137. Remet le curseur à la première ligne des données et renvoie vrai.
  138. @return boolean
  139. */
  140. function moveStart()
  141. {
  142. $this->int_index = 0;
  143. return true;
  144. }
  145. /**
  146. @function moveEnd
  147. Positionne le curseur à la dernière ligne des données et renvoie vrai.
  148. @return boolean
  149. */
  150. function moveEnd()
  151. {
  152. $this->int_index = ($this->int_row_count-1);
  153. return true;
  154. }
  155. /**
  156. @function moveNext
  157. Déplace le curseur d'un cran si possible et renvoie vrai. Si le curseur
  158. est à la fin du tableau, renvoie false.
  159. @return boolean
  160. */
  161. function moveNext()
  162. {
  163. if (!empty($this->arry_data) && !$this->EOF()) {
  164. $this->int_index++;
  165. return true;
  166. } else {
  167. return false;
  168. }
  169. }
  170. /**
  171. @function movePrev
  172. Déplace le curseur d'un cran dans le sens inverse si possible et renvoie
  173. vrai. Si le curseur est au début du tableau, renvoie false.
  174. @return boolean
  175. */
  176. function movePrev()
  177. {
  178. if (!empty($this->arry_data) && $this->int_index > 0) {
  179. $this->int_index--;
  180. return true;
  181. } else {
  182. return false;
  183. }
  184. }
  185. /**
  186. @function move
  187. Positionne le curseur à l'indice donné par $index. Si l'indice n'existe
  188. pas, renvoie false.
  189. @param integer index Indice
  190. @return boolean
  191. */
  192. function move($index)
  193. {
  194. if (!empty($this->arry_data) && $this->int_index >= 0 && $index < $this->int_row_count) {
  195. $this->int_index = $index;
  196. return true;
  197. } else {
  198. return false;
  199. }
  200. }
  201. /**
  202. @function fetch
  203. Déplace le cuseur d'un cran et renvoie vrai tant que celui ci n'est pas
  204. positionné à la fin du tableau. La fonction démarre toujours du premier
  205. élément du tableau. Elle a pour vocation à être utilisée dans une boucle
  206. de type while (voir le premier exemple).
  207. @return boolean
  208. */
  209. function fetch()
  210. {
  211. if ($this->fetch_index === NULL) {
  212. $this->fetch_index = 0;
  213. $this->int_index = -1;
  214. }
  215. if ($this->fetch_index+1 > $this->int_row_count) {
  216. $this->fetch_index = NULL;
  217. $this->int_index = 0;
  218. return false;
  219. }
  220. $this->fetch_index++;
  221. $this->int_index++;
  222. return true;
  223. }
  224. /**
  225. @function BOF
  226. Indique si le curseur est au début du tableau.
  227. @return boolean
  228. */
  229. function BOF()
  230. {
  231. return ($this->int_index == -1 || $this->int_row_count == 0);
  232. }
  233. /**
  234. @function EOF
  235. Indique si le curseur est à la fin du tableau.
  236. @return boolean
  237. */
  238. function EOF()
  239. {
  240. return ($this->int_index == $this->int_row_count);
  241. }
  242. /**
  243. @function isEmpty
  244. Indique si le tableau de données est vide.
  245. @return boolean
  246. */
  247. function isEmpty()
  248. {
  249. return ($this->int_row_count == 0);
  250. }
  251. /**
  252. @function getData
  253. Renvoie le tableau de données.
  254. @return array
  255. */
  256. function getData()
  257. {
  258. return $this->arry_data;
  259. }
  260. /**
  261. @function nbRow
  262. Renvoie le nombre de lignes du tableau.
  263. @return integer
  264. */
  265. function nbRow()
  266. {
  267. return $this->int_row_count;
  268. }
  269. }
  270. ?>