cowdata.h 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381
  1. /*************************************************************************/
  2. /* cowdata.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 COWDATA_H_
  31. #define COWDATA_H_
  32. #include <string.h>
  33. #include <type_traits>
  34. #include "core/error_macros.h"
  35. #include "core/os/memory.h"
  36. #include "core/safe_refcount.h"
  37. template <class T>
  38. class Vector;
  39. class String;
  40. class CharString;
  41. template <class T, class V>
  42. class VMap;
  43. template <class T>
  44. class CowData {
  45. template <class TV>
  46. friend class Vector;
  47. friend class String;
  48. friend class CharString;
  49. template <class TV, class VV>
  50. friend class VMap;
  51. private:
  52. mutable T *_ptr;
  53. // internal helpers
  54. _FORCE_INLINE_ uint32_t *_get_refcount() const {
  55. if (!_ptr)
  56. return NULL;
  57. return reinterpret_cast<uint32_t *>(_ptr) - 2;
  58. }
  59. _FORCE_INLINE_ uint32_t *_get_size() const {
  60. if (!_ptr)
  61. return NULL;
  62. return reinterpret_cast<uint32_t *>(_ptr) - 1;
  63. }
  64. _FORCE_INLINE_ T *_get_data() const {
  65. if (!_ptr)
  66. return NULL;
  67. return reinterpret_cast<T *>(_ptr);
  68. }
  69. _FORCE_INLINE_ size_t _get_alloc_size(size_t p_elements) const {
  70. //return nearest_power_of_2_templated(p_elements*sizeof(T)+sizeof(SafeRefCount)+sizeof(int));
  71. return next_power_of_2(p_elements * sizeof(T));
  72. }
  73. _FORCE_INLINE_ bool _get_alloc_size_checked(size_t p_elements, size_t *out) const {
  74. #if defined(_add_overflow) && defined(_mul_overflow)
  75. size_t o;
  76. size_t p;
  77. if (_mul_overflow(p_elements, sizeof(T), &o)) {
  78. *out = 0;
  79. return false;
  80. }
  81. *out = next_power_of_2(o);
  82. if (_add_overflow(o, static_cast<size_t>(32), &p)) return false; //no longer allocated here
  83. return true;
  84. #else
  85. // Speed is more important than correctness here, do the operations unchecked
  86. // and hope the best
  87. *out = _get_alloc_size(p_elements);
  88. return true;
  89. #endif
  90. }
  91. void _unref(void *p_data);
  92. void _ref(const CowData *p_from);
  93. void _ref(const CowData &p_from);
  94. void _copy_on_write();
  95. public:
  96. void operator=(const CowData<T> &p_from) { _ref(p_from); }
  97. _FORCE_INLINE_ T *ptrw() {
  98. _copy_on_write();
  99. return (T *)_get_data();
  100. }
  101. _FORCE_INLINE_ const T *ptr() const {
  102. return _get_data();
  103. }
  104. _FORCE_INLINE_ int size() const {
  105. uint32_t *size = (uint32_t *)_get_size();
  106. if (size)
  107. return *size;
  108. else
  109. return 0;
  110. }
  111. _FORCE_INLINE_ void clear() { resize(0); }
  112. _FORCE_INLINE_ bool empty() const { return _ptr == 0; }
  113. _FORCE_INLINE_ void set(int p_index, const T &p_elem) {
  114. CRASH_BAD_INDEX(p_index, size());
  115. _copy_on_write();
  116. _get_data()[p_index] = p_elem;
  117. }
  118. _FORCE_INLINE_ T &get_m(int p_index) {
  119. CRASH_BAD_INDEX(p_index, size());
  120. _copy_on_write();
  121. return _get_data()[p_index];
  122. }
  123. _FORCE_INLINE_ const T &get(int p_index) const {
  124. CRASH_BAD_INDEX(p_index, size());
  125. return _get_data()[p_index];
  126. }
  127. Error resize(int p_size);
  128. _FORCE_INLINE_ void remove(int p_index) {
  129. ERR_FAIL_INDEX(p_index, size());
  130. T *p = ptrw();
  131. int len = size();
  132. for (int i = p_index; i < len - 1; i++) {
  133. p[i] = p[i + 1];
  134. };
  135. resize(len - 1);
  136. };
  137. Error insert(int p_pos, const T &p_val) {
  138. ERR_FAIL_INDEX_V(p_pos, size() + 1, ERR_INVALID_PARAMETER);
  139. resize(size() + 1);
  140. for (int i = (size() - 1); i > p_pos; i--)
  141. set(i, get(i - 1));
  142. set(p_pos, p_val);
  143. return OK;
  144. };
  145. int find(const T &p_val, int p_from = 0) const;
  146. _FORCE_INLINE_ CowData();
  147. _FORCE_INLINE_ ~CowData();
  148. _FORCE_INLINE_ CowData(CowData<T> &p_from) { _ref(p_from); };
  149. };
  150. template <class T>
  151. void CowData<T>::_unref(void *p_data) {
  152. if (!p_data)
  153. return;
  154. uint32_t *refc = _get_refcount();
  155. if (atomic_decrement(refc) > 0)
  156. return; // still in use
  157. // clean up
  158. if (!std::is_trivially_destructible<T>::value) {
  159. uint32_t *count = _get_size();
  160. T *data = (T *)(count + 1);
  161. for (uint32_t i = 0; i < *count; ++i) {
  162. // call destructors
  163. data[i].~T();
  164. }
  165. }
  166. // free mem
  167. Memory::free_static((uint8_t *)p_data, true);
  168. }
  169. template <class T>
  170. void CowData<T>::_copy_on_write() {
  171. if (!_ptr)
  172. return;
  173. uint32_t *refc = _get_refcount();
  174. if (unlikely(*refc > 1)) {
  175. /* in use by more than me */
  176. uint32_t current_size = *_get_size();
  177. uint32_t *mem_new = (uint32_t *)Memory::alloc_static(_get_alloc_size(current_size), true);
  178. *(mem_new - 2) = 1; //refcount
  179. *(mem_new - 1) = current_size; //size
  180. T *_data = (T *)(mem_new);
  181. // initialize new elements
  182. if (std::is_trivially_copyable<T>::value) {
  183. memcpy(mem_new, _ptr, current_size * sizeof(T));
  184. } else {
  185. for (uint32_t i = 0; i < current_size; i++) {
  186. memnew_placement(&_data[i], T(_get_data()[i]));
  187. }
  188. }
  189. _unref(_ptr);
  190. _ptr = _data;
  191. }
  192. }
  193. template <class T>
  194. Error CowData<T>::resize(int p_size) {
  195. ERR_FAIL_COND_V(p_size < 0, ERR_INVALID_PARAMETER);
  196. int current_size = size();
  197. if (p_size == current_size)
  198. return OK;
  199. if (p_size == 0) {
  200. // wants to clean up
  201. _unref(_ptr);
  202. _ptr = NULL;
  203. return OK;
  204. }
  205. // possibly changing size, copy on write
  206. _copy_on_write();
  207. size_t current_alloc_size = _get_alloc_size(current_size);
  208. size_t alloc_size;
  209. ERR_FAIL_COND_V(!_get_alloc_size_checked(p_size, &alloc_size), ERR_OUT_OF_MEMORY);
  210. if (p_size > current_size) {
  211. if (alloc_size != current_alloc_size) {
  212. if (current_size == 0) {
  213. // alloc from scratch
  214. uint32_t *ptr = (uint32_t *)Memory::alloc_static(alloc_size, true);
  215. ERR_FAIL_COND_V(!ptr, ERR_OUT_OF_MEMORY);
  216. *(ptr - 1) = 0; //size, currently none
  217. *(ptr - 2) = 1; //refcount
  218. _ptr = (T *)ptr;
  219. } else {
  220. void *_ptrnew = (T *)Memory::realloc_static(_ptr, alloc_size, true);
  221. ERR_FAIL_COND_V(!_ptrnew, ERR_OUT_OF_MEMORY);
  222. _ptr = (T *)(_ptrnew);
  223. }
  224. }
  225. // construct the newly created elements
  226. if (!std::is_trivially_constructible<T>::value) {
  227. T *elems = _get_data();
  228. for (int i = *_get_size(); i < p_size; i++) {
  229. memnew_placement(&elems[i], T);
  230. }
  231. }
  232. *_get_size() = p_size;
  233. } else if (p_size < current_size) {
  234. if (!std::is_trivially_destructible<T>::value) {
  235. // deinitialize no longer needed elements
  236. for (uint32_t i = p_size; i < *_get_size(); i++) {
  237. T *t = &_get_data()[i];
  238. t->~T();
  239. }
  240. }
  241. if (alloc_size != current_alloc_size) {
  242. void *_ptrnew = (T *)Memory::realloc_static(_ptr, alloc_size, true);
  243. ERR_FAIL_COND_V(!_ptrnew, ERR_OUT_OF_MEMORY);
  244. _ptr = (T *)(_ptrnew);
  245. }
  246. *_get_size() = p_size;
  247. }
  248. return OK;
  249. }
  250. template <class T>
  251. int CowData<T>::find(const T &p_val, int p_from) const {
  252. int ret = -1;
  253. if (p_from < 0 || size() == 0) {
  254. return ret;
  255. }
  256. for (int i = p_from; i < size(); i++) {
  257. if (get(i) == p_val) {
  258. ret = i;
  259. break;
  260. }
  261. }
  262. return ret;
  263. }
  264. template <class T>
  265. void CowData<T>::_ref(const CowData *p_from) {
  266. _ref(*p_from);
  267. }
  268. template <class T>
  269. void CowData<T>::_ref(const CowData &p_from) {
  270. if (_ptr == p_from._ptr)
  271. return; // self assign, do nothing.
  272. _unref(_ptr);
  273. _ptr = NULL;
  274. if (!p_from._ptr)
  275. return; //nothing to do
  276. if (atomic_conditional_increment(p_from._get_refcount()) > 0) { // could reference
  277. _ptr = p_from._ptr;
  278. }
  279. }
  280. template <class T>
  281. CowData<T>::CowData() {
  282. _ptr = NULL;
  283. }
  284. template <class T>
  285. CowData<T>::~CowData() {
  286. _unref(_ptr);
  287. }
  288. #endif /* COW_H_ */