list.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722
  1. /*************************************************************************/
  2. /* list.h */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2020 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2020 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #ifndef GLOBALS_LIST_H
  31. #define GLOBALS_LIST_H
  32. #include "core/error_macros.h"
  33. #include "core/os/memory.h"
  34. #include "core/sort_array.h"
  35. /**
  36. * Generic Templatized Linked List Implementation.
  37. * The implementation differs from the STL one because
  38. * a compatible preallocated linked list can be written
  39. * using the same API, or features such as erasing an element
  40. * from the iterator.
  41. */
  42. template <class T, class A = DefaultAllocator>
  43. class List {
  44. struct _Data;
  45. public:
  46. class Element {
  47. private:
  48. friend class List<T, A>;
  49. T value;
  50. Element *next_ptr;
  51. Element *prev_ptr;
  52. _Data *data;
  53. public:
  54. /**
  55. * Get NEXT Element iterator, for constant lists.
  56. */
  57. _FORCE_INLINE_ const Element *next() const {
  58. return next_ptr;
  59. };
  60. /**
  61. * Get NEXT Element iterator,
  62. */
  63. _FORCE_INLINE_ Element *next() {
  64. return next_ptr;
  65. };
  66. /**
  67. * Get PREV Element iterator, for constant lists.
  68. */
  69. _FORCE_INLINE_ const Element *prev() const {
  70. return prev_ptr;
  71. };
  72. /**
  73. * Get PREV Element iterator,
  74. */
  75. _FORCE_INLINE_ Element *prev() {
  76. return prev_ptr;
  77. };
  78. /**
  79. * * operator, for using as *iterator, when iterators are defined on stack.
  80. */
  81. _FORCE_INLINE_ const T &operator*() const {
  82. return value;
  83. };
  84. /**
  85. * operator->, for using as iterator->, when iterators are defined on stack, for constant lists.
  86. */
  87. _FORCE_INLINE_ const T *operator->() const {
  88. return &value;
  89. };
  90. /**
  91. * * operator, for using as *iterator, when iterators are defined on stack,
  92. */
  93. _FORCE_INLINE_ T &operator*() {
  94. return value;
  95. };
  96. /**
  97. * operator->, for using as iterator->, when iterators are defined on stack, for constant lists.
  98. */
  99. _FORCE_INLINE_ T *operator->() {
  100. return &value;
  101. };
  102. /**
  103. * get the value stored in this element.
  104. */
  105. _FORCE_INLINE_ T &get() {
  106. return value;
  107. };
  108. /**
  109. * get the value stored in this element, for constant lists
  110. */
  111. _FORCE_INLINE_ const T &get() const {
  112. return value;
  113. };
  114. /**
  115. * set the value stored in this element.
  116. */
  117. _FORCE_INLINE_ void set(const T &p_value) {
  118. value = (T &)p_value;
  119. };
  120. void erase() {
  121. data->erase(this);
  122. }
  123. _FORCE_INLINE_ Element() {
  124. next_ptr = 0;
  125. prev_ptr = 0;
  126. data = NULL;
  127. };
  128. };
  129. private:
  130. struct _Data {
  131. Element *first;
  132. Element *last;
  133. int size_cache;
  134. bool erase(const Element *p_I) {
  135. ERR_FAIL_COND_V(!p_I, false);
  136. ERR_FAIL_COND_V(p_I->data != this, false);
  137. if (first == p_I) {
  138. first = p_I->next_ptr;
  139. };
  140. if (last == p_I)
  141. last = p_I->prev_ptr;
  142. if (p_I->prev_ptr)
  143. p_I->prev_ptr->next_ptr = p_I->next_ptr;
  144. if (p_I->next_ptr)
  145. p_I->next_ptr->prev_ptr = p_I->prev_ptr;
  146. memdelete_allocator<Element, A>(const_cast<Element *>(p_I));
  147. size_cache--;
  148. return true;
  149. }
  150. };
  151. _Data *_data;
  152. public:
  153. /**
  154. * return a const iterator to the beginning of the list.
  155. */
  156. _FORCE_INLINE_ const Element *front() const {
  157. return _data ? _data->first : 0;
  158. };
  159. /**
  160. * return an iterator to the beginning of the list.
  161. */
  162. _FORCE_INLINE_ Element *front() {
  163. return _data ? _data->first : 0;
  164. };
  165. /**
  166. * return a const iterator to the last member of the list.
  167. */
  168. _FORCE_INLINE_ const Element *back() const {
  169. return _data ? _data->last : 0;
  170. };
  171. /**
  172. * return an iterator to the last member of the list.
  173. */
  174. _FORCE_INLINE_ Element *back() {
  175. return _data ? _data->last : 0;
  176. };
  177. /**
  178. * store a new element at the end of the list
  179. */
  180. Element *push_back(const T &value) {
  181. if (!_data) {
  182. _data = memnew_allocator(_Data, A);
  183. _data->first = NULL;
  184. _data->last = NULL;
  185. _data->size_cache = 0;
  186. }
  187. Element *n = memnew_allocator(Element, A);
  188. n->value = (T &)value;
  189. n->prev_ptr = _data->last;
  190. n->next_ptr = 0;
  191. n->data = _data;
  192. if (_data->last) {
  193. _data->last->next_ptr = n;
  194. }
  195. _data->last = n;
  196. if (!_data->first)
  197. _data->first = n;
  198. _data->size_cache++;
  199. return n;
  200. };
  201. void pop_back() {
  202. if (_data && _data->last)
  203. erase(_data->last);
  204. }
  205. /**
  206. * store a new element at the beginning of the list
  207. */
  208. Element *push_front(const T &value) {
  209. if (!_data) {
  210. _data = memnew_allocator(_Data, A);
  211. _data->first = NULL;
  212. _data->last = NULL;
  213. _data->size_cache = 0;
  214. }
  215. Element *n = memnew_allocator(Element, A);
  216. n->value = (T &)value;
  217. n->prev_ptr = 0;
  218. n->next_ptr = _data->first;
  219. n->data = _data;
  220. if (_data->first) {
  221. _data->first->prev_ptr = n;
  222. }
  223. _data->first = n;
  224. if (!_data->last)
  225. _data->last = n;
  226. _data->size_cache++;
  227. return n;
  228. };
  229. void pop_front() {
  230. if (_data && _data->first)
  231. erase(_data->first);
  232. }
  233. Element *insert_after(Element *p_element, const T &p_value) {
  234. CRASH_COND(p_element && (!_data || p_element->data != _data));
  235. if (!p_element) {
  236. return push_back(p_value);
  237. }
  238. Element *n = memnew_allocator(Element, A);
  239. n->value = (T &)p_value;
  240. n->prev_ptr = p_element;
  241. n->next_ptr = p_element->next_ptr;
  242. n->data = _data;
  243. if (!p_element->next_ptr) {
  244. _data->last = n;
  245. } else {
  246. p_element->next_ptr->prev_ptr = n;
  247. }
  248. p_element->next_ptr = n;
  249. _data->size_cache++;
  250. return n;
  251. }
  252. Element *insert_before(Element *p_element, const T &p_value) {
  253. CRASH_COND(p_element && (!_data || p_element->data != _data));
  254. if (!p_element) {
  255. return push_back(p_value);
  256. }
  257. Element *n = memnew_allocator(Element, A);
  258. n->value = (T &)p_value;
  259. n->prev_ptr = p_element->prev_ptr;
  260. n->next_ptr = p_element;
  261. n->data = _data;
  262. if (!p_element->prev_ptr) {
  263. _data->first = n;
  264. } else {
  265. p_element->prev_ptr->next_ptr = n;
  266. }
  267. p_element->prev_ptr = n;
  268. _data->size_cache++;
  269. return n;
  270. }
  271. /**
  272. * find an element in the list,
  273. */
  274. template <class T_v>
  275. Element *find(const T_v &p_val) {
  276. Element *it = front();
  277. while (it) {
  278. if (it->value == p_val) return it;
  279. it = it->next();
  280. };
  281. return NULL;
  282. };
  283. /**
  284. * erase an element in the list, by iterator pointing to it. Return true if it was found/erased.
  285. */
  286. bool erase(const Element *p_I) {
  287. if (_data) {
  288. bool ret = _data->erase(p_I);
  289. if (_data->size_cache == 0) {
  290. memdelete_allocator<_Data, A>(_data);
  291. _data = NULL;
  292. }
  293. return ret;
  294. }
  295. return false;
  296. };
  297. /**
  298. * erase the first element in the list, that contains value
  299. */
  300. bool erase(const T &value) {
  301. Element *I = find(value);
  302. return erase(I);
  303. };
  304. /**
  305. * return whether the list is empty
  306. */
  307. _FORCE_INLINE_ bool empty() const {
  308. return (!_data || !_data->size_cache);
  309. }
  310. /**
  311. * clear the list
  312. */
  313. void clear() {
  314. while (front()) {
  315. erase(front());
  316. };
  317. };
  318. _FORCE_INLINE_ int size() const {
  319. return _data ? _data->size_cache : 0;
  320. }
  321. void swap(Element *p_A, Element *p_B) {
  322. ERR_FAIL_COND(!p_A || !p_B);
  323. ERR_FAIL_COND(p_A->data != _data);
  324. ERR_FAIL_COND(p_B->data != _data);
  325. Element *A_prev = p_A->prev_ptr;
  326. Element *A_next = p_A->next_ptr;
  327. p_A->next_ptr = p_B->next_ptr;
  328. p_A->prev_ptr = p_B->prev_ptr;
  329. p_B->next_ptr = A_next;
  330. p_B->prev_ptr = A_prev;
  331. if (p_A->prev_ptr)
  332. p_A->prev_ptr->next_ptr = p_A;
  333. if (p_A->next_ptr)
  334. p_A->next_ptr->prev_ptr = p_A;
  335. if (p_B->prev_ptr)
  336. p_B->prev_ptr->next_ptr = p_B;
  337. if (p_B->next_ptr)
  338. p_B->next_ptr->prev_ptr = p_B;
  339. }
  340. /**
  341. * copy the list
  342. */
  343. void operator=(const List &p_list) {
  344. clear();
  345. const Element *it = p_list.front();
  346. while (it) {
  347. push_back(it->get());
  348. it = it->next();
  349. }
  350. }
  351. T &operator[](int p_index) {
  352. CRASH_BAD_INDEX(p_index, size());
  353. Element *I = front();
  354. int c = 0;
  355. while (I) {
  356. if (c == p_index) {
  357. return I->get();
  358. }
  359. I = I->next();
  360. c++;
  361. }
  362. CRASH_NOW(); // bug!!
  363. }
  364. const T &operator[](int p_index) const {
  365. CRASH_BAD_INDEX(p_index, size());
  366. const Element *I = front();
  367. int c = 0;
  368. while (I) {
  369. if (c == p_index) {
  370. return I->get();
  371. }
  372. I = I->next();
  373. c++;
  374. }
  375. CRASH_NOW(); // bug!!
  376. }
  377. void move_to_back(Element *p_I) {
  378. ERR_FAIL_COND(p_I->data != _data);
  379. if (!p_I->next_ptr)
  380. return;
  381. if (_data->first == p_I) {
  382. _data->first = p_I->next_ptr;
  383. };
  384. if (_data->last == p_I)
  385. _data->last = p_I->prev_ptr;
  386. if (p_I->prev_ptr)
  387. p_I->prev_ptr->next_ptr = p_I->next_ptr;
  388. p_I->next_ptr->prev_ptr = p_I->prev_ptr;
  389. _data->last->next_ptr = p_I;
  390. p_I->prev_ptr = _data->last;
  391. p_I->next_ptr = NULL;
  392. _data->last = p_I;
  393. }
  394. void invert() {
  395. int s = size() / 2;
  396. Element *F = front();
  397. Element *B = back();
  398. for (int i = 0; i < s; i++) {
  399. SWAP(F->value, B->value);
  400. F = F->next();
  401. B = B->prev();
  402. }
  403. }
  404. void move_to_front(Element *p_I) {
  405. ERR_FAIL_COND(p_I->data != _data);
  406. if (!p_I->prev_ptr)
  407. return;
  408. if (_data->first == p_I) {
  409. _data->first = p_I->next_ptr;
  410. };
  411. if (_data->last == p_I)
  412. _data->last = p_I->prev_ptr;
  413. p_I->prev_ptr->next_ptr = p_I->next_ptr;
  414. if (p_I->next_ptr)
  415. p_I->next_ptr->prev_ptr = p_I->prev_ptr;
  416. _data->first->prev_ptr = p_I;
  417. p_I->next_ptr = _data->first;
  418. p_I->prev_ptr = NULL;
  419. _data->first = p_I;
  420. }
  421. void move_before(Element *value, Element *where) {
  422. if (value->prev_ptr) {
  423. value->prev_ptr->next_ptr = value->next_ptr;
  424. } else {
  425. _data->first = value->next_ptr;
  426. }
  427. if (value->next_ptr) {
  428. value->next_ptr->prev_ptr = value->prev_ptr;
  429. } else {
  430. _data->last = value->prev_ptr;
  431. }
  432. value->next_ptr = where;
  433. if (!where) {
  434. value->prev_ptr = _data->last;
  435. _data->last = value;
  436. return;
  437. };
  438. value->prev_ptr = where->prev_ptr;
  439. if (where->prev_ptr) {
  440. where->prev_ptr->next_ptr = value;
  441. } else {
  442. _data->first = value;
  443. };
  444. where->prev_ptr = value;
  445. };
  446. /**
  447. * simple insertion sort
  448. */
  449. void sort() {
  450. sort_custom<Comparator<T> >();
  451. }
  452. template <class C>
  453. void sort_custom_inplace() {
  454. if (size() < 2)
  455. return;
  456. Element *from = front();
  457. Element *current = from;
  458. Element *to = from;
  459. while (current) {
  460. Element *next = current->next_ptr;
  461. if (from != current) {
  462. current->prev_ptr = NULL;
  463. current->next_ptr = from;
  464. Element *find = from;
  465. C less;
  466. while (find && less(find->value, current->value)) {
  467. current->prev_ptr = find;
  468. current->next_ptr = find->next_ptr;
  469. find = find->next_ptr;
  470. }
  471. if (current->prev_ptr)
  472. current->prev_ptr->next_ptr = current;
  473. else
  474. from = current;
  475. if (current->next_ptr)
  476. current->next_ptr->prev_ptr = current;
  477. else
  478. to = current;
  479. } else {
  480. current->prev_ptr = NULL;
  481. current->next_ptr = NULL;
  482. }
  483. current = next;
  484. }
  485. _data->first = from;
  486. _data->last = to;
  487. }
  488. template <class C>
  489. struct AuxiliaryComparator {
  490. C compare;
  491. _FORCE_INLINE_ bool operator()(const Element *a, const Element *b) const {
  492. return compare(a->value, b->value);
  493. }
  494. };
  495. template <class C>
  496. void sort_custom() {
  497. //this version uses auxiliary memory for speed.
  498. //if you don't want to use auxiliary memory, use the in_place version
  499. int s = size();
  500. if (s < 2)
  501. return;
  502. Element **aux_buffer = memnew_arr(Element *, s);
  503. int idx = 0;
  504. for (Element *E = front(); E; E = E->next_ptr) {
  505. aux_buffer[idx] = E;
  506. idx++;
  507. }
  508. SortArray<Element *, AuxiliaryComparator<C> > sort;
  509. sort.sort(aux_buffer, s);
  510. _data->first = aux_buffer[0];
  511. aux_buffer[0]->prev_ptr = NULL;
  512. aux_buffer[0]->next_ptr = aux_buffer[1];
  513. _data->last = aux_buffer[s - 1];
  514. aux_buffer[s - 1]->prev_ptr = aux_buffer[s - 2];
  515. aux_buffer[s - 1]->next_ptr = NULL;
  516. for (int i = 1; i < s - 1; i++) {
  517. aux_buffer[i]->prev_ptr = aux_buffer[i - 1];
  518. aux_buffer[i]->next_ptr = aux_buffer[i + 1];
  519. }
  520. memdelete_arr(aux_buffer);
  521. }
  522. const void *id() const {
  523. return (void *)_data;
  524. }
  525. /**
  526. * copy constructor for the list
  527. */
  528. List(const List &p_list) {
  529. _data = NULL;
  530. const Element *it = p_list.front();
  531. while (it) {
  532. push_back(it->get());
  533. it = it->next();
  534. }
  535. }
  536. List() {
  537. _data = NULL;
  538. };
  539. ~List() {
  540. clear();
  541. if (_data) {
  542. ERR_FAIL_COND(_data->size_cache);
  543. memdelete_allocator<_Data, A>(_data);
  544. }
  545. };
  546. };
  547. #endif