CmCoreObject.cpp 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. #include "CmCoreObject.h"
  2. #include "CmCoreThread.h"
  3. #include "CmCoreObjectManager.h"
  4. #include "CmCoreThreadAccessor.h"
  5. #include "CmDebug.h"
  6. using namespace std::placeholders;
  7. namespace BansheeEngine
  8. {
  9. BS_STATIC_THREAD_SYNCHRONISER_CLASS_INSTANCE(mCoreGpuObjectLoadedCondition, CoreObject)
  10. BS_STATIC_MUTEX_CLASS_INSTANCE(mCoreGpuObjectLoadedMutex, CoreObject)
  11. CoreObject::CoreObject(bool initializeOnRenderThread)
  12. : mFlags(0), mInternalID(0)
  13. {
  14. mInternalID = CoreObjectManager::instance().registerObject(this);
  15. mFlags = initializeOnRenderThread ? mFlags | CGO_INIT_ON_CORE_THREAD : mFlags;
  16. }
  17. CoreObject::~CoreObject()
  18. {
  19. if(isInitialized())
  20. {
  21. // Object must be released with destroy() otherwise engine can still try to use it, even if it was destructed
  22. // (e.g. if an object has one of its methods queued in a command queue, and is destructed, you will be accessing invalid memory)
  23. BS_EXCEPT(InternalErrorException, "Destructor called but object is not destroyed. This will result in nasty issues.");
  24. }
  25. #if BS_DEBUG_MODE
  26. if(!mThis.expired())
  27. {
  28. BS_EXCEPT(InternalErrorException, "Shared pointer to this object still has active references but " \
  29. "the object is being deleted? You shouldn't delete CoreGpuObjects manually.");
  30. }
  31. #endif
  32. CoreObjectManager::instance().unregisterObject(this);
  33. }
  34. void CoreObject::destroy()
  35. {
  36. if(requiresInitOnCoreThread())
  37. {
  38. setScheduledToBeDeleted(true);
  39. if(BS_THREAD_CURRENT_ID == CoreThread::instance().getCoreThreadId())
  40. mThis.lock()->destroy_internal();
  41. else
  42. queueDestroyGpuCommand(mThis.lock());
  43. }
  44. else
  45. {
  46. destroy_internal();
  47. }
  48. }
  49. void CoreObject::destroy_internal()
  50. {
  51. #if BS_DEBUG_MODE
  52. if(!isInitialized())
  53. BS_EXCEPT(InternalErrorException, "Trying to destroy an object that is already destroyed (or it never was initialized).");
  54. #endif
  55. setIsInitialized(false);
  56. }
  57. void CoreObject::initialize()
  58. {
  59. #if BS_DEBUG_MODE
  60. if(isInitialized() || isScheduledToBeInitialized())
  61. BS_EXCEPT(InternalErrorException, "Trying to initialize an object that is already initialized.");
  62. #endif
  63. if(requiresInitOnCoreThread())
  64. {
  65. setScheduledToBeInitialized(true);
  66. if(BS_THREAD_CURRENT_ID == CoreThread::instance().getCoreThreadId())
  67. mThis.lock()->initialize_internal();
  68. else
  69. queueInitializeGpuCommand(mThis.lock());
  70. }
  71. else
  72. {
  73. initialize_internal();
  74. }
  75. }
  76. void CoreObject::initialize_internal()
  77. {
  78. if(requiresInitOnCoreThread())
  79. {
  80. {
  81. BS_LOCK_MUTEX(mCoreGpuObjectLoadedMutex);
  82. setIsInitialized(true);
  83. }
  84. setScheduledToBeInitialized(false);
  85. BS_THREAD_NOTIFY_ALL(mCoreGpuObjectLoadedCondition);
  86. }
  87. else
  88. {
  89. setIsInitialized(true);
  90. }
  91. }
  92. void CoreObject::synchronize()
  93. {
  94. if(!isInitialized())
  95. {
  96. if(requiresInitOnCoreThread())
  97. {
  98. #if BS_DEBUG_MODE
  99. if(BS_THREAD_CURRENT_ID == CoreThread::instance().getCoreThreadId())
  100. BS_EXCEPT(InternalErrorException, "You cannot call this method on the core thread. It will cause a deadlock!");
  101. #endif
  102. BS_LOCK_MUTEX_NAMED(mCoreGpuObjectLoadedMutex, lock);
  103. while(!isInitialized())
  104. {
  105. if(!isScheduledToBeInitialized())
  106. BS_EXCEPT(InternalErrorException, "Attempting to wait until initialization finishes but object is not scheduled to be initialized.");
  107. BS_THREAD_WAIT(mCoreGpuObjectLoadedCondition, mCoreGpuObjectLoadedMutex, lock);
  108. }
  109. }
  110. else
  111. {
  112. BS_EXCEPT(InternalErrorException, "Attempting to wait until initialization finishes but object is not scheduled to be initialized.");
  113. }
  114. }
  115. }
  116. void CoreObject::_setThisPtr(std::shared_ptr<CoreObject> ptrThis)
  117. {
  118. mThis = ptrThis;
  119. }
  120. void CoreObject::_deleteDelayedInternal(CoreObject* obj)
  121. {
  122. assert(obj != nullptr);
  123. // This method usually gets called automatically by the shared pointer when all references are released. The process:
  124. // - If the object wasn't initialized delete it right away
  125. // - Otherwise:
  126. // - We re-create the reference to the object by setting mThis pointer
  127. // - We queue the object to be destroyed so all of its GPU resources may be released on the core thread
  128. // - destroy() makes sure it keeps a reference of mThis so object isn't deleted
  129. // - Once the destroy() finishes the reference is removed and the default shared_ptr deleter is called
  130. #if BS_DEBUG_MODE
  131. if(obj->isScheduledToBeInitialized())
  132. {
  133. BS_EXCEPT(InternalErrorException, "Object scheduled to be initialized, yet it's being deleted. " \
  134. "By design objects queued in the command queue should always have a reference count >= 1, therefore never be deleted " \
  135. "while still in the queue.");
  136. }
  137. #endif
  138. }
  139. void CoreObject::queueGpuCommand(std::shared_ptr<CoreObject>& obj, std::function<void()> func)
  140. {
  141. // We call another internal method and go through an additional layer of abstraction in order to keep an active
  142. // reference to the obj (saved in the bound function).
  143. // We could have called the function directly using "this" pointer but then we couldn't have used a shared_ptr for the object,
  144. // in which case there is a possibility that the object would be released and deleted while still being in the command queue.
  145. gCoreAccessor().queueCommand(std::bind(&CoreObject::executeGpuCommand, obj, func));
  146. }
  147. AsyncOp CoreObject::queueReturnGpuCommand(std::shared_ptr<CoreObject>& obj, std::function<void(AsyncOp&)> func)
  148. {
  149. // See queueGpuCommand
  150. return gCoreAccessor().queueReturnCommand(std::bind(&CoreObject::executeReturnGpuCommand, obj, func, _1));
  151. }
  152. void CoreObject::queueInitializeGpuCommand(std::shared_ptr<CoreObject>& obj)
  153. {
  154. std::function<void()> func = std::bind(&CoreObject::initialize_internal, obj.get());
  155. CoreThread::instance().queueCommand(std::bind(&CoreObject::executeGpuCommand, obj, func));
  156. }
  157. void CoreObject::queueDestroyGpuCommand(std::shared_ptr<CoreObject>& obj)
  158. {
  159. std::function<void()> func = std::bind(&CoreObject::destroy_internal, obj.get());
  160. gCoreAccessor().queueCommand(std::bind(&CoreObject::executeGpuCommand, obj, func));
  161. }
  162. void CoreObject::executeGpuCommand(std::shared_ptr<CoreObject>& obj, std::function<void()> func)
  163. {
  164. volatile std::shared_ptr<CoreObject> objParam = obj; // Makes sure obj isn't optimized out?
  165. func();
  166. }
  167. void CoreObject::executeReturnGpuCommand(std::shared_ptr<CoreObject>& obj, std::function<void(AsyncOp&)> func, AsyncOp& op)
  168. {
  169. volatile std::shared_ptr<CoreObject> objParam = obj; // Makes sure obj isn't optimized out?
  170. func(op);
  171. }
  172. }