1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
|
/**********************************************************************
* $Id: AbstractSTRtree.cpp,v 1.22 2004/12/08 13:54:43 strk Exp $
*
* GEOS - Geometry Engine Open Source
* http://geos.refractions.net
*
* Copyright (C) 2001-2002 Vivid Solutions Inc.
*
* This is free software; you can redistribute and/or modify it under
* the terms of the GNU Lesser General Public Licence as published
* by the Free Software Foundation.
* See the COPYING file for more information.
*
**********************************************************************/
#include <geos/indexStrtree.h>
#include <geos/util.h>
#include <geos/profiler.h>
#include <stdio.h>
#include <algorithm>
#include <typeinfo>
//#define PROFILE 1
namespace geos {
/**
* Constructs an AbstractSTRtree with the specified maximum number of child
* nodes that a node may have
*/
AbstractSTRtree::AbstractSTRtree(int newNodeCapacity):
nodes(new vector<AbstractNode *>()),
nodeCapacity(newNodeCapacity),
built(false),
itemBoundables(new vector<Boundable*>())
{
Assert::isTrue(newNodeCapacity>1, "Node capacity must be greater than 1");
}
AbstractSTRtree::~AbstractSTRtree() {
unsigned int ibsize = itemBoundables->size();
for (unsigned int i=0; i<ibsize; i++)
delete (*itemBoundables)[i];
delete itemBoundables;
unsigned int nsize = nodes->size();
for (unsigned int i=0; i<nsize; i++)
delete (*nodes)[i];
delete nodes;
//delete root;
}
/**
* Creates parent nodes, grandparent nodes, and so forth up to the root
* node, for the data that has been inserted into the tree. Can only be
* called once, and thus can be called only after all of the data has been
* inserted into the tree.
*/
void
AbstractSTRtree::build()
{
#if PROFILE
static Profile *prof = Profiler::instance()->get("AbstractSTRtree::build");
prof->start();
#endif
Assert::isTrue(!built);
root=(itemBoundables->empty()?createNode(0):createHigherLevels(itemBoundables,-1));
built=true;
#if PROFILE
prof->stop();
#endif
}
//void AbstractSTRtree::checkConsistency() {
// if (!built) {
// build();
// }
// vector<Boundable*>* itemBoundablesInTree=boundablesAtLevel(-1);
// Assert::isTrue(itemBoundables->size()==itemBoundablesInTree->size());
//}
/**
* Sorts the childBoundables then divides them into groups of size M, where
* M is the node capacity.
*/
vector<Boundable*>*
AbstractSTRtree::createParentBoundables(vector<Boundable*> *childBoundables, int newLevel)
{
Assert::isTrue(!childBoundables->empty());
vector<Boundable*> *parentBoundables=new vector<Boundable*>();
parentBoundables->push_back(createNode(newLevel));
vector<Boundable*> *sortedChildBoundables=sortBoundables(childBoundables);
unsigned int scbsize = sortedChildBoundables->size();
for(unsigned int i=0; i<scbsize; i++) {
Boundable *childBoundable=(AbstractNode*)(*sortedChildBoundables)[i];
if (lastNode(parentBoundables)->getChildBoundables()->size()==(unsigned int)nodeCapacity)
{
parentBoundables->push_back(createNode(newLevel));
}
lastNode(parentBoundables)->addChildBoundable(childBoundable);
}
delete sortedChildBoundables;
return parentBoundables;
}
AbstractNode* AbstractSTRtree::lastNode(vector<Boundable*> *nodes) {
return (AbstractNode*)(*nodes)[nodes->size()-1];
}
bool AbstractSTRtree::compareDoubles(double a, double b) {
//return a>b?1:(a<b?-1:0);
return a < b;
}
/**
* Creates the levels higher than the given level
*
* @param boundablesOfALevel
* the level to build on
* @param level
* the level of the Boundables, or -1 if the boundables are item
* boundables (that is, below level 0)
* @return the root, which may be a ParentNode or a LeafNode
*/
AbstractNode*
AbstractSTRtree::createHigherLevels(vector<Boundable*> *boundablesOfALevel, int level)
{
Assert::isTrue(!boundablesOfALevel->empty());
vector<Boundable*> *parentBoundables=createParentBoundables(boundablesOfALevel,level+1);
if (parentBoundables->size()==1) {
AbstractNode *ret = (AbstractNode*)(*parentBoundables)[0];
delete parentBoundables;
return ret;
}
AbstractNode *ret = createHigherLevels(parentBoundables,level+1);
delete parentBoundables;
return ret;
}
AbstractNode* AbstractSTRtree::getRoot() {
return root;
}
/**
* Returns the maximum number of child nodes that a node may have
*/
int AbstractSTRtree::getNodeCapacity() {
return nodeCapacity;
}
void
AbstractSTRtree::insert(const void* bounds,void* item)
{
Assert::isTrue(!built,"Cannot insert items into an STR packed R-tree after it has been built.");
itemBoundables->push_back(new ItemBoundable(bounds,item));
}
/**
* Also builds the tree, if necessary.
*/
vector<void*>*
AbstractSTRtree::query(const void* searchBounds)
{
if (!built) {
build();
}
#if PROFILE
static Profile *prof = Profiler::instance()->get("AbstractSTRtree::query(searchBounds)");
prof->start();
#endif
vector<void*> *matches=new vector<void*>();
if (itemBoundables->empty()) {
Assert::isTrue(root->getBounds()==NULL);
return matches;
}
if (getIntersectsOp()->intersects(root->getBounds(),searchBounds))
{
query(searchBounds,root,matches);
}
#if PROFILE
prof->stop();
#endif
return matches;
}
void
AbstractSTRtree::query(const void* searchBounds,
AbstractNode* node, vector<void*> *matches)
{
vector<Boundable*> *vb=node->getChildBoundables();
unsigned int vbsize=vb->size();
for(unsigned int i=0;i<vbsize;i++)
{
Boundable *childBoundable=(*vb)[i];
if (!getIntersectsOp()->intersects(childBoundable->getBounds(),searchBounds))
{
continue;
}
if(AbstractNode *an=dynamic_cast<AbstractNode*>(childBoundable))
{
query(searchBounds, an, matches);
}
else if (ItemBoundable *ib=dynamic_cast<ItemBoundable *>(childBoundable))
{
matches->push_back(ib->getItem());
}
else
{
Assert::shouldNeverReachHere("AbstractSTRtree::query encountered an unsupported childBoundable type");
}
}
}
vector<Boundable*>*
AbstractSTRtree::boundablesAtLevel(int level)
{
vector<Boundable*> *boundables=new vector<Boundable*>();
boundablesAtLevel(level,root,boundables);
return boundables;
}
/**
* @param level -1 to get items
*/
void
AbstractSTRtree::boundablesAtLevel(int level,AbstractNode* top,vector<Boundable*> *boundables)
{
Assert::isTrue(level>-2);
if (top->getLevel()==level) {
boundables->push_back(top);
return;
}
vector<Boundable*> *vb=top->getChildBoundables();
unsigned int vbsize = vb->size();
for(unsigned int i=0; i<vbsize; i++) {
Boundable *boundable=(*vb)[i];
if (typeid(*boundable)==typeid(AbstractNode)) {
boundablesAtLevel(level,(AbstractNode*) boundable,boundables);
} else {
Assert::isTrue(typeid(*boundable)==typeid(ItemBoundable));
if (level==-1) {
boundables->push_back(boundable);
}
}
}
return;
}
} // namespace geos
/**********************************************************************
* $Log: AbstractSTRtree.cpp,v $
* Revision 1.22 2004/12/08 13:54:43 strk
* gcc warnings checked and fixed, general cleanups.
*
* Revision 1.21 2004/11/08 15:58:13 strk
* More performance tuning.
*
* Revision 1.20 2004/11/04 19:08:07 strk
* Cleanups, initializers list, profiling.
*
* Revision 1.19 2004/11/01 16:43:04 strk
* Added Profiler code.
* Temporarly patched a bug in DoubleBits (must check drawbacks).
* Various cleanups and speedups.
*
* Revision 1.18 2004/07/27 16:35:46 strk
* Geometry::getEnvelopeInternal() changed to return a const Envelope *.
* This should reduce object copies as once computed the envelope of a
* geometry remains the same.
*
* Revision 1.17 2004/07/13 08:33:52 strk
* Added missing virtual destructor to virtual classes.
* Fixed implicit unsigned int -> int casts
*
* Revision 1.16 2004/07/02 13:28:27 strk
* Fixed all #include lines to reflect headers layout change.
* Added client application build tips in README.
*
* Revision 1.15 2004/05/06 15:00:59 strk
* Boundable destructor made virtual.
* Added vector <AbstractNode *> *nodes member in AbstractSTRTree,
* used to keep track of created node to cleanly delete them at
* destruction time.
*
* Revision 1.14 2004/05/06 08:59:19 strk
* memory leak fixed
*
* Revision 1.13 2004/05/05 17:42:06 strk
* AbstractNode destructor made virtual. AbstractNode::bounds made protected.
* SIRAbstractNode and STRAbstractNode destructors added to get rid of
* AbstractNode::bounds in the right way (is a void * casted to appropriate
* Class in the subClasses).
*
* Revision 1.12 2004/05/03 22:56:44 strk
* leaks fixed, exception specification omitted.
*
* Revision 1.11 2004/05/03 16:29:21 strk
* Added sortBoundables(const vector<Boundable *>) pure virtual in AbstractSTRtree,
* implemented in SIRtree and STRtree. Comparator funx made static in STRtree.cpp
* and SIRtree.cpp.
*
* Revision 1.10 2004/05/03 13:17:55 strk
* Fixed comparator function to express StrictWeakOrdering.
*
* Revision 1.9 2004/04/28 14:58:47 strk
* Made AbstractSTRtree::query use dynamic_cast<> to simulate java's
* instanceof. Previous typeid(*) use missed to catch an STRAbstractNode
* as a class derived from AbstractNode. Still have to check if this
* is the correct semantic with Martin, but at least lots of SIGABORT
* are no more raised.
*
* Revision 1.8 2004/04/26 12:37:19 strk
* Some leaks fixed.
*
* Revision 1.7 2004/04/14 12:28:43 strk
* shouldNeverReachHere exceptions made more verbose
*
* Revision 1.6 2004/03/25 02:23:55 ybychkov
* All "index/" packages upgraded to JTS 1.4
*
* Revision 1.5 2003/11/07 01:23:42 pramsey
* Add standard CVS headers licence notices and copyrights to all cpp and h
* files.
*
*
**********************************************************************/
|