cowdata.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485
  1. /**************************************************************************/
  2. /* cowdata.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  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 COWDATA_H
  31. #define COWDATA_H
  32. #include "core/error/error_macros.h"
  33. #include "core/os/memory.h"
  34. #include "core/templates/safe_refcount.h"
  35. #include <string.h>
  36. #include <type_traits>
  37. template <typename T>
  38. class Vector;
  39. class String;
  40. class Char16String;
  41. class CharString;
  42. template <typename T, typename V>
  43. class VMap;
  44. static_assert(std::is_trivially_destructible_v<std::atomic<uint64_t>>);
  45. // Silence a false positive warning (see GH-52119).
  46. #if defined(__GNUC__) && !defined(__clang__)
  47. #pragma GCC diagnostic push
  48. #pragma GCC diagnostic ignored "-Wplacement-new"
  49. #endif
  50. template <typename T>
  51. class CowData {
  52. template <typename TV>
  53. friend class Vector;
  54. friend class String;
  55. friend class Char16String;
  56. friend class CharString;
  57. template <typename TV, typename VV>
  58. friend class VMap;
  59. public:
  60. typedef int64_t Size;
  61. typedef uint64_t USize;
  62. static constexpr USize MAX_INT = INT64_MAX;
  63. private:
  64. // Function to find the next power of 2 to an integer.
  65. static _FORCE_INLINE_ USize next_po2(USize x) {
  66. if (x == 0) {
  67. return 0;
  68. }
  69. --x;
  70. x |= x >> 1;
  71. x |= x >> 2;
  72. x |= x >> 4;
  73. x |= x >> 8;
  74. x |= x >> 16;
  75. if (sizeof(USize) == 8) {
  76. x |= x >> 32;
  77. }
  78. return ++x;
  79. }
  80. // Alignment: ↓ max_align_t ↓ USize ↓ max_align_t
  81. // ┌────────────────────┬──┬─────────────┬──┬───────────...
  82. // │ SafeNumeric<USize> │░░│ USize │░░│ T[]
  83. // │ ref. count │░░│ data size │░░│ data
  84. // └────────────────────┴──┴─────────────┴──┴───────────...
  85. // Offset: ↑ REF_COUNT_OFFSET ↑ SIZE_OFFSET ↑ DATA_OFFSET
  86. static constexpr size_t REF_COUNT_OFFSET = 0;
  87. static constexpr size_t SIZE_OFFSET = ((REF_COUNT_OFFSET + sizeof(SafeNumeric<USize>)) % alignof(USize) == 0) ? (REF_COUNT_OFFSET + sizeof(SafeNumeric<USize>)) : ((REF_COUNT_OFFSET + sizeof(SafeNumeric<USize>)) + alignof(USize) - ((REF_COUNT_OFFSET + sizeof(SafeNumeric<USize>)) % alignof(USize)));
  88. static constexpr size_t DATA_OFFSET = ((SIZE_OFFSET + sizeof(USize)) % alignof(max_align_t) == 0) ? (SIZE_OFFSET + sizeof(USize)) : ((SIZE_OFFSET + sizeof(USize)) + alignof(max_align_t) - ((SIZE_OFFSET + sizeof(USize)) % alignof(max_align_t)));
  89. mutable T *_ptr = nullptr;
  90. // internal helpers
  91. static _FORCE_INLINE_ SafeNumeric<USize> *_get_refcount_ptr(uint8_t *p_ptr) {
  92. return (SafeNumeric<USize> *)(p_ptr + REF_COUNT_OFFSET);
  93. }
  94. static _FORCE_INLINE_ USize *_get_size_ptr(uint8_t *p_ptr) {
  95. return (USize *)(p_ptr + SIZE_OFFSET);
  96. }
  97. static _FORCE_INLINE_ T *_get_data_ptr(uint8_t *p_ptr) {
  98. return (T *)(p_ptr + DATA_OFFSET);
  99. }
  100. _FORCE_INLINE_ SafeNumeric<USize> *_get_refcount() const {
  101. if (!_ptr) {
  102. return nullptr;
  103. }
  104. return (SafeNumeric<USize> *)((uint8_t *)_ptr - DATA_OFFSET + REF_COUNT_OFFSET);
  105. }
  106. _FORCE_INLINE_ USize *_get_size() const {
  107. if (!_ptr) {
  108. return nullptr;
  109. }
  110. return (USize *)((uint8_t *)_ptr - DATA_OFFSET + SIZE_OFFSET);
  111. }
  112. _FORCE_INLINE_ USize _get_alloc_size(USize p_elements) const {
  113. return next_po2(p_elements * sizeof(T));
  114. }
  115. _FORCE_INLINE_ bool _get_alloc_size_checked(USize p_elements, USize *out) const {
  116. if (unlikely(p_elements == 0)) {
  117. *out = 0;
  118. return true;
  119. }
  120. #if defined(__GNUC__) && defined(IS_32_BIT)
  121. USize o;
  122. USize p;
  123. if (__builtin_mul_overflow(p_elements, sizeof(T), &o)) {
  124. *out = 0;
  125. return false;
  126. }
  127. *out = next_po2(o);
  128. if (__builtin_add_overflow(o, static_cast<USize>(32), &p)) {
  129. return false; // No longer allocated here.
  130. }
  131. #else
  132. // Speed is more important than correctness here, do the operations unchecked
  133. // and hope for the best.
  134. *out = _get_alloc_size(p_elements);
  135. #endif
  136. return *out;
  137. }
  138. void _unref(void *p_data);
  139. void _ref(const CowData *p_from);
  140. void _ref(const CowData &p_from);
  141. USize _copy_on_write();
  142. public:
  143. void operator=(const CowData<T> &p_from) { _ref(p_from); }
  144. _FORCE_INLINE_ T *ptrw() {
  145. _copy_on_write();
  146. return _ptr;
  147. }
  148. _FORCE_INLINE_ const T *ptr() const {
  149. return _ptr;
  150. }
  151. _FORCE_INLINE_ Size size() const {
  152. USize *size = (USize *)_get_size();
  153. if (size) {
  154. return *size;
  155. } else {
  156. return 0;
  157. }
  158. }
  159. _FORCE_INLINE_ void clear() { resize(0); }
  160. _FORCE_INLINE_ bool is_empty() const { return _ptr == nullptr; }
  161. _FORCE_INLINE_ void set(Size p_index, const T &p_elem) {
  162. ERR_FAIL_INDEX(p_index, size());
  163. _copy_on_write();
  164. _ptr[p_index] = p_elem;
  165. }
  166. _FORCE_INLINE_ T &get_m(Size p_index) {
  167. CRASH_BAD_INDEX(p_index, size());
  168. _copy_on_write();
  169. return _ptr[p_index];
  170. }
  171. _FORCE_INLINE_ const T &get(Size p_index) const {
  172. CRASH_BAD_INDEX(p_index, size());
  173. return _ptr[p_index];
  174. }
  175. template <bool p_ensure_zero = false>
  176. Error resize(Size p_size);
  177. _FORCE_INLINE_ void remove_at(Size p_index) {
  178. ERR_FAIL_INDEX(p_index, size());
  179. T *p = ptrw();
  180. Size len = size();
  181. for (Size i = p_index; i < len - 1; i++) {
  182. p[i] = p[i + 1];
  183. }
  184. resize(len - 1);
  185. }
  186. Error insert(Size p_pos, const T &p_val) {
  187. ERR_FAIL_INDEX_V(p_pos, size() + 1, ERR_INVALID_PARAMETER);
  188. resize(size() + 1);
  189. for (Size i = (size() - 1); i > p_pos; i--) {
  190. set(i, get(i - 1));
  191. }
  192. set(p_pos, p_val);
  193. return OK;
  194. }
  195. Size find(const T &p_val, Size p_from = 0) const;
  196. Size rfind(const T &p_val, Size p_from = -1) const;
  197. Size count(const T &p_val) const;
  198. _FORCE_INLINE_ CowData() {}
  199. _FORCE_INLINE_ ~CowData();
  200. _FORCE_INLINE_ CowData(CowData<T> &p_from) { _ref(p_from); };
  201. };
  202. template <typename T>
  203. void CowData<T>::_unref(void *p_data) {
  204. if (!p_data) {
  205. return;
  206. }
  207. SafeNumeric<USize> *refc = _get_refcount();
  208. if (refc->decrement() > 0) {
  209. return; // still in use
  210. }
  211. // clean up
  212. if constexpr (!std::is_trivially_destructible_v<T>) {
  213. USize *count = _get_size();
  214. T *data = (T *)(count + 1);
  215. for (USize i = 0; i < *count; ++i) {
  216. // call destructors
  217. data[i].~T();
  218. }
  219. }
  220. // free mem
  221. Memory::free_static(((uint8_t *)p_data) - DATA_OFFSET, false);
  222. }
  223. template <typename T>
  224. typename CowData<T>::USize CowData<T>::_copy_on_write() {
  225. if (!_ptr) {
  226. return 0;
  227. }
  228. SafeNumeric<USize> *refc = _get_refcount();
  229. USize rc = refc->get();
  230. if (unlikely(rc > 1)) {
  231. /* in use by more than me */
  232. USize current_size = *_get_size();
  233. uint8_t *mem_new = (uint8_t *)Memory::alloc_static(_get_alloc_size(current_size) + DATA_OFFSET, false);
  234. ERR_FAIL_NULL_V(mem_new, 0);
  235. SafeNumeric<USize> *_refc_ptr = _get_refcount_ptr(mem_new);
  236. USize *_size_ptr = _get_size_ptr(mem_new);
  237. T *_data_ptr = _get_data_ptr(mem_new);
  238. new (_refc_ptr) SafeNumeric<USize>(1); //refcount
  239. *(_size_ptr) = current_size; //size
  240. // initialize new elements
  241. if constexpr (std::is_trivially_copyable_v<T>) {
  242. memcpy((uint8_t *)_data_ptr, _ptr, current_size * sizeof(T));
  243. } else {
  244. for (USize i = 0; i < current_size; i++) {
  245. memnew_placement(&_data_ptr[i], T(_ptr[i]));
  246. }
  247. }
  248. _unref(_ptr);
  249. _ptr = _data_ptr;
  250. rc = 1;
  251. }
  252. return rc;
  253. }
  254. template <typename T>
  255. template <bool p_ensure_zero>
  256. Error CowData<T>::resize(Size p_size) {
  257. ERR_FAIL_COND_V(p_size < 0, ERR_INVALID_PARAMETER);
  258. Size current_size = size();
  259. if (p_size == current_size) {
  260. return OK;
  261. }
  262. if (p_size == 0) {
  263. // wants to clean up
  264. _unref(_ptr);
  265. _ptr = nullptr;
  266. return OK;
  267. }
  268. // possibly changing size, copy on write
  269. USize rc = _copy_on_write();
  270. USize current_alloc_size = _get_alloc_size(current_size);
  271. USize alloc_size;
  272. ERR_FAIL_COND_V(!_get_alloc_size_checked(p_size, &alloc_size), ERR_OUT_OF_MEMORY);
  273. if (p_size > current_size) {
  274. if (alloc_size != current_alloc_size) {
  275. if (current_size == 0) {
  276. // alloc from scratch
  277. uint8_t *mem_new = (uint8_t *)Memory::alloc_static(alloc_size + DATA_OFFSET, false);
  278. ERR_FAIL_NULL_V(mem_new, ERR_OUT_OF_MEMORY);
  279. SafeNumeric<USize> *_refc_ptr = _get_refcount_ptr(mem_new);
  280. USize *_size_ptr = _get_size_ptr(mem_new);
  281. T *_data_ptr = _get_data_ptr(mem_new);
  282. new (_refc_ptr) SafeNumeric<USize>(1); //refcount
  283. *(_size_ptr) = 0; //size, currently none
  284. _ptr = _data_ptr;
  285. } else {
  286. uint8_t *mem_new = (uint8_t *)Memory::realloc_static(((uint8_t *)_ptr) - DATA_OFFSET, alloc_size + DATA_OFFSET, false);
  287. ERR_FAIL_NULL_V(mem_new, ERR_OUT_OF_MEMORY);
  288. SafeNumeric<USize> *_refc_ptr = _get_refcount_ptr(mem_new);
  289. T *_data_ptr = _get_data_ptr(mem_new);
  290. new (_refc_ptr) SafeNumeric<USize>(rc); //refcount
  291. _ptr = _data_ptr;
  292. }
  293. }
  294. // construct the newly created elements
  295. if constexpr (!std::is_trivially_constructible_v<T>) {
  296. for (Size i = *_get_size(); i < p_size; i++) {
  297. memnew_placement(&_ptr[i], T);
  298. }
  299. } else if (p_ensure_zero) {
  300. memset((void *)(_ptr + current_size), 0, (p_size - current_size) * sizeof(T));
  301. }
  302. *_get_size() = p_size;
  303. } else if (p_size < current_size) {
  304. if constexpr (!std::is_trivially_destructible_v<T>) {
  305. // deinitialize no longer needed elements
  306. for (USize i = p_size; i < *_get_size(); i++) {
  307. T *t = &_ptr[i];
  308. t->~T();
  309. }
  310. }
  311. if (alloc_size != current_alloc_size) {
  312. uint8_t *mem_new = (uint8_t *)Memory::realloc_static(((uint8_t *)_ptr) - DATA_OFFSET, alloc_size + DATA_OFFSET, false);
  313. ERR_FAIL_NULL_V(mem_new, ERR_OUT_OF_MEMORY);
  314. SafeNumeric<USize> *_refc_ptr = _get_refcount_ptr(mem_new);
  315. T *_data_ptr = _get_data_ptr(mem_new);
  316. new (_refc_ptr) SafeNumeric<USize>(rc); //refcount
  317. _ptr = _data_ptr;
  318. }
  319. *_get_size() = p_size;
  320. }
  321. return OK;
  322. }
  323. template <typename T>
  324. typename CowData<T>::Size CowData<T>::find(const T &p_val, Size p_from) const {
  325. Size ret = -1;
  326. if (p_from < 0 || size() == 0) {
  327. return ret;
  328. }
  329. for (Size i = p_from; i < size(); i++) {
  330. if (get(i) == p_val) {
  331. ret = i;
  332. break;
  333. }
  334. }
  335. return ret;
  336. }
  337. template <typename T>
  338. typename CowData<T>::Size CowData<T>::rfind(const T &p_val, Size p_from) const {
  339. const Size s = size();
  340. if (p_from < 0) {
  341. p_from = s + p_from;
  342. }
  343. if (p_from < 0 || p_from >= s) {
  344. p_from = s - 1;
  345. }
  346. for (Size i = p_from; i >= 0; i--) {
  347. if (get(i) == p_val) {
  348. return i;
  349. }
  350. }
  351. return -1;
  352. }
  353. template <typename T>
  354. typename CowData<T>::Size CowData<T>::count(const T &p_val) const {
  355. Size amount = 0;
  356. for (Size i = 0; i < size(); i++) {
  357. if (get(i) == p_val) {
  358. amount++;
  359. }
  360. }
  361. return amount;
  362. }
  363. template <typename T>
  364. void CowData<T>::_ref(const CowData *p_from) {
  365. _ref(*p_from);
  366. }
  367. template <typename T>
  368. void CowData<T>::_ref(const CowData &p_from) {
  369. if (_ptr == p_from._ptr) {
  370. return; // self assign, do nothing.
  371. }
  372. _unref(_ptr);
  373. _ptr = nullptr;
  374. if (!p_from._ptr) {
  375. return; //nothing to do
  376. }
  377. if (p_from._get_refcount()->conditional_increment() > 0) { // could reference
  378. _ptr = p_from._ptr;
  379. }
  380. }
  381. template <typename T>
  382. CowData<T>::~CowData() {
  383. _unref(_ptr);
  384. }
  385. #if defined(__GNUC__) && !defined(__clang__)
  386. #pragma GCC diagnostic pop
  387. #endif
  388. #endif // COWDATA_H