pointerpoolnode.h

来自「一个非常好的GIS开源新版本」· C头文件 代码 · 共 143 行

H
143
字号
// Spatial Index Library//// Copyright (C) 2002 Navel Ltd.//// This library is free software; you can redistribute it and/or// modify it under the terms of the GNU Lesser General Public// License as published by the Free Software Foundation; either// version 2.1 of the License, or (at your option) any later version.//// This library is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU// Lesser General Public License for more details.//// You should have received a copy of the GNU Lesser General Public// License along with this library; if not, write to the Free Software// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA////  Email://    mhadji@gmail.com#ifndef __spatialindex_rtree_pointer_pool_node_h#define __spatialindex_rtree_pointer_pool_node_h#include "Node.h"#define NDEBUG 1using namespace SpatialIndex;namespace Tools{	template<> class PointerPool<RTree::Node>	{	public:		explicit PointerPool(unsigned long capacity) : m_capacity(capacity)		{			#ifndef NDEBUG			m_hits = 0;			m_misses = 0;			m_pointerCount = 0;			#endif		}		~PointerPool()		{			assert(m_pool.size() <= m_capacity);			while (! m_pool.empty())			{				RTree::Node* x = m_pool.top(); m_pool.pop();				#ifndef NDEBUG				m_pointerCount--;				#endif				delete x;			}			#ifndef NDEBUG			std::cerr << "Lost pointers: " << m_pointerCount << std::endl;			#endif		}		PoolPointer<RTree::Node> acquire()		{			if (! m_pool.empty())			{				RTree::Node* p = m_pool.top(); m_pool.pop();				#ifndef NDEBUG				m_hits++;				#endif				return PoolPointer<RTree::Node>(p, this);			}			#ifndef NDEBUG			else			{				// fixme: well sort of...				m_pointerCount++;				m_misses++;			}			#endif			return PoolPointer<RTree::Node>();		}		void release(RTree::Node* p)		{			if (p != 0)			{				if (m_pool.size() < m_capacity)				{					if (p->m_pData != 0)					{						for (unsigned long cChild = 0; cChild < p->m_children; cChild++)						{							// there is no need to set the pointer to zero, after deleting it,							// since it will be redeleted only if it is actually initialized again,							// a fact that will be depicted by variable m_children.							if (p->m_pData[cChild] != 0) delete[] p->m_pData[cChild];						}					}					p->m_level = 0;					p->m_identifier = -1;					p->m_children = 0;					p->m_totalDataLength = 0;					m_pool.push(p);				}				else				{					#ifndef NDEBUG					m_pointerCount--;					#endif					delete p;				}				assert(m_pool.size() <= m_capacity);			}		}		unsigned long getCapacity() const { return m_capacity; }		void setCapacity(unsigned long c)		{			assert (c >= 0);			m_capacity = c;		}	protected:		unsigned long m_capacity;		std::stack<RTree::Node*> m_pool;	#ifndef NDEBUG	public:		unsigned long m_hits;		unsigned long m_misses;		long m_pointerCount;	#endif	};}#endif /* __spatialindex_rtree_pointer_pool_node_h */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?