list.hpp 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351
  1. /*
  2. * Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
  3. * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #ifndef __PJPP_LIST_HPP__
  20. #define __PJPP_LIST_HPP__
  21. #include <pj/list.h>
  22. #include <pj++/pool.hpp>
  23. //
  24. // Linked-list.
  25. //
  26. // Note:
  27. // List_Node must have public member next and prev. Normally
  28. // it will be declared like:
  29. //
  30. // struct my_node
  31. // {
  32. // PJ_DECL_LIST_MEMBER(struct my_node);
  33. // ..
  34. // };
  35. //
  36. //
  37. template <class List_Node>
  38. class Pj_List : public Pj_Object
  39. {
  40. public:
  41. //
  42. // List const_iterator.
  43. //
  44. class const_iterator
  45. {
  46. public:
  47. const_iterator()
  48. : node_(NULL)
  49. {}
  50. const_iterator(const List_Node *nd)
  51. : node_((List_Node*)nd)
  52. {}
  53. const List_Node * operator *()
  54. {
  55. return node_;
  56. }
  57. const List_Node * operator -> ()
  58. {
  59. return node_;
  60. }
  61. const_iterator operator++()
  62. {
  63. return const_iterator((const List_Node *)node_->next);
  64. }
  65. bool operator==(const const_iterator &rhs)
  66. {
  67. return node_ == rhs.node_;
  68. }
  69. bool operator!=(const const_iterator &rhs)
  70. {
  71. return node_ != rhs.node_;
  72. }
  73. protected:
  74. List_Node *node_;
  75. };
  76. //
  77. // List iterator.
  78. //
  79. class iterator : public const_iterator
  80. {
  81. public:
  82. iterator()
  83. {}
  84. iterator(List_Node *nd)
  85. : const_iterator(nd)
  86. {}
  87. List_Node * operator *()
  88. {
  89. return node_;
  90. }
  91. List_Node * operator -> ()
  92. {
  93. return node_;
  94. }
  95. iterator operator++()
  96. {
  97. return iterator((List_Node*)node_->next);
  98. }
  99. bool operator==(const iterator &rhs)
  100. {
  101. return node_ == rhs.node_;
  102. }
  103. bool operator!=(const iterator &rhs)
  104. {
  105. return node_ != rhs.node_;
  106. }
  107. };
  108. //
  109. // Default constructor.
  110. //
  111. Pj_List()
  112. {
  113. pj_list_init(&root_);
  114. if (0) compiletest();
  115. }
  116. //
  117. // You can cast Pj_List to pj_list
  118. //
  119. operator pj_list&()
  120. {
  121. return (pj_list&)root_;
  122. }
  123. operator const pj_list&()
  124. {
  125. return (const pj_list&)root_;
  126. }
  127. //
  128. // You can cast Pj_List to pj_list* too
  129. //
  130. operator pj_list*()
  131. {
  132. return (pj_list*)&root_;
  133. }
  134. operator const pj_list*()
  135. {
  136. return (const pj_list*)&root_;
  137. }
  138. //
  139. // Check if list is empty.
  140. //
  141. bool empty() const
  142. {
  143. return pj_list_empty(&root_);
  144. }
  145. //
  146. // Get first element.
  147. //
  148. iterator begin()
  149. {
  150. return iterator(root_.next);
  151. }
  152. //
  153. // Get first element.
  154. //
  155. const_iterator begin() const
  156. {
  157. return const_iterator(root_.next);
  158. }
  159. //
  160. // Get end-of-element
  161. //
  162. const_iterator end() const
  163. {
  164. return const_iterator((List_Node*)&root_);
  165. }
  166. //
  167. // Get end-of-element
  168. //
  169. iterator end()
  170. {
  171. return iterator((List_Node*)&root_);
  172. }
  173. //
  174. // Insert node.
  175. //
  176. void insert_before (iterator &pos, List_Node *node)
  177. {
  178. pj_list_insert_before( *pos, node );
  179. }
  180. //
  181. // Insert node.
  182. //
  183. void insert_after(iterator &pos, List_Node *node)
  184. {
  185. pj_list_insert_after(*pos, node);
  186. }
  187. //
  188. // Merge list.
  189. //
  190. void merge_first(List_Node *list2)
  191. {
  192. pj_list_merge_first(&root_, list2);
  193. }
  194. //
  195. // Merge list.
  196. //
  197. void merge_last(Pj_List *list)
  198. {
  199. pj_list_merge_last(&root_, &list->root_);
  200. }
  201. //
  202. // Insert list.
  203. //
  204. void insert_nodes_before(iterator &pos, Pj_List *list2)
  205. {
  206. pj_list_insert_nodes_before(*pos, &list2->root_);
  207. }
  208. //
  209. // Insert list.
  210. //
  211. void insert_nodes_after(iterator &pos, Pj_List *list2)
  212. {
  213. pj_list_insert_nodes_after(*pos, &list2->root_);
  214. }
  215. //
  216. // Erase an element.
  217. //
  218. void erase(iterator &it)
  219. {
  220. pj_list_erase(*it);
  221. }
  222. //
  223. // Get first element.
  224. //
  225. List_Node *front()
  226. {
  227. return root_.next;
  228. }
  229. //
  230. // Get first element.
  231. //
  232. const List_Node *front() const
  233. {
  234. return root_.next;
  235. }
  236. //
  237. // Remove first element.
  238. //
  239. void pop_front()
  240. {
  241. pj_list_erase(root_.next);
  242. }
  243. //
  244. // Get last element.
  245. //
  246. List_Node *back()
  247. {
  248. return root_.prev;
  249. }
  250. //
  251. // Get last element.
  252. //
  253. const List_Node *back() const
  254. {
  255. return root_.prev;
  256. }
  257. //
  258. // Remove last element.
  259. //
  260. void pop_back()
  261. {
  262. pj_list_erase(root_.prev);
  263. }
  264. //
  265. // Find a node.
  266. //
  267. iterator find(List_Node *node)
  268. {
  269. List_Node *n = pj_list_find_node(&root_, node);
  270. return n ? iterator(n) : end();
  271. }
  272. //
  273. // Find a node.
  274. //
  275. const_iterator find(List_Node *node) const
  276. {
  277. List_Node *n = pj_list_find_node(&root_, node);
  278. return n ? const_iterator(n) : end();
  279. }
  280. //
  281. // Insert a node in the back.
  282. //
  283. void push_back(List_Node *node)
  284. {
  285. pj_list_insert_after(root_.prev, node);
  286. }
  287. //
  288. // Insert a node in the front.
  289. //
  290. void push_front(List_Node *node)
  291. {
  292. pj_list_insert_before(root_.next, node);
  293. }
  294. //
  295. // Remove all elements.
  296. //
  297. void clear()
  298. {
  299. root_.next = &root_;
  300. root_.prev = &root_;
  301. }
  302. private:
  303. struct RootNode
  304. {
  305. PJ_DECL_LIST_MEMBER(List_Node);
  306. } root_;
  307. void compiletest()
  308. {
  309. // If you see error in this line,
  310. // it's because List_Node is not derived from Pj_List_Node.
  311. List_Node *n = (List_Node*)0;
  312. n = (List_Node *)n->next; n = (List_Node *)n->prev;
  313. }
  314. };
  315. #endif /* __PJPP_LIST_HPP__ */