2019-11-23 20:27:39 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2010-2012 cocos2d-x.org
|
|
|
|
Copyright (c) 2013-2016 Chukong Technologies Inc.
|
|
|
|
Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
|
|
|
|
2022-10-01 16:24:52 +08:00
|
|
|
https://axmolengine.github.io/
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef __AUTORELEASEPOOL_H__
|
|
|
|
#define __AUTORELEASEPOOL_H__
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include "base/CCRef.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @addtogroup base
|
|
|
|
* @{
|
|
|
|
*/
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_BEGIN
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A pool for managing autorelease objects.
|
|
|
|
* @js NA
|
|
|
|
*/
|
2022-07-16 10:43:05 +08:00
|
|
|
class AX_DLL AutoreleasePool
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* @warning Don't create an autorelease pool in heap, create it in stack.
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
AutoreleasePool();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Create an autorelease pool with specific name. This name is useful for debugging.
|
|
|
|
* @warning Don't create an autorelease pool in heap, create it in stack.
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*
|
|
|
|
* @param name The name of created autorelease pool.
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
AutoreleasePool(std::string_view name);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
~AutoreleasePool();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a given object to this autorelease pool.
|
|
|
|
*
|
|
|
|
* The same object may be added several times to an autorelease pool. When the
|
|
|
|
* pool is destructed, the object's `Ref::release()` method will be called
|
|
|
|
* the same times as it was added.
|
|
|
|
*
|
|
|
|
* @param object The object to be added into the autorelease pool.
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
void addObject(Ref* object);
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear the autorelease pool.
|
|
|
|
*
|
|
|
|
* It will invoke each element's `release()` function.
|
|
|
|
*
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
void clear();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2022-08-08 18:02:17 +08:00
|
|
|
#if defined(_AX_DEBUG) && (_AX_DEBUG > 0)
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Whether the autorelease pool is doing `clear` operation.
|
|
|
|
*
|
|
|
|
* @return True if autorelease pool is clearing, false if not.
|
|
|
|
*
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
bool isClearing() const { return _isClearing; };
|
|
|
|
#endif
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Checks whether the autorelease pool contains the specified object.
|
|
|
|
*
|
|
|
|
* @param object The object to be checked.
|
|
|
|
* @return True if the autorelease pool contains the object, false if not
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
bool contains(Ref* object) const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dump the objects that are put into the autorelease pool. It is used for debugging.
|
|
|
|
*
|
|
|
|
* The result will look like:
|
|
|
|
* Object pointer address object id reference count
|
|
|
|
*
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
void dump();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* The underlying array of object managed by the pool.
|
|
|
|
*
|
|
|
|
* Although Array retains the object once when an object is added, proper
|
|
|
|
* Ref::release() is called outside the array to make sure that the pool
|
|
|
|
* does not affect the managed object's reference count. So an object can
|
|
|
|
* be destructed properly by calling Ref::release() even if the object
|
|
|
|
* is in the pool.
|
|
|
|
*/
|
|
|
|
std::vector<Ref*> _managedObjectArray;
|
|
|
|
std::string _name;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2022-08-08 18:02:17 +08:00
|
|
|
#if defined(_AX_DEBUG) && (_AX_DEBUG > 0)
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* The flag for checking whether the pool is doing `clear` operation.
|
|
|
|
*/
|
|
|
|
bool _isClearing;
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
|
|
|
// end of base group
|
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @cond
|
|
|
|
*/
|
2022-07-16 10:43:05 +08:00
|
|
|
class AX_DLL PoolManager
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
static PoolManager* getInstance();
|
|
|
|
static void destroyInstance();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
/**
|
|
|
|
* Get current auto release pool, there is at least one auto release pool that created by engine.
|
|
|
|
* You can create your own auto release pool at demand, which will be put into auto release pool stack.
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
AutoreleasePool* getCurrentPool() const;
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
bool isObjectInPools(Ref* obj) const;
|
|
|
|
|
|
|
|
friend class AutoreleasePool;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
private:
|
|
|
|
PoolManager();
|
|
|
|
~PoolManager();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
void push(AutoreleasePool* pool);
|
2019-11-23 20:27:39 +08:00
|
|
|
void pop();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
static PoolManager* s_singleInstance;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2019-11-23 20:27:39 +08:00
|
|
|
std::vector<AutoreleasePool*> _releasePoolStack;
|
|
|
|
};
|
|
|
|
/**
|
|
|
|
* @endcond
|
|
|
|
*/
|
|
|
|
|
2022-07-11 17:50:21 +08:00
|
|
|
NS_AX_END
|
2019-11-23 20:27:39 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
#endif //__AUTORELEASEPOOL_H__
|