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 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// gqbQueryObjs.cpp - All objects used by a model of a query in the MVC Pattern model.
//
//////////////////////////////////////////////////////////////////////////
#include "pgAdmin3.h"
// wxWindows headers
#include <wx/wx.h>
#include <wx/textctrl.h>
#include <wx/regex.h>
// App headers
#include "gqb/gqbTable.h"
#include "gqb/gqbColumn.h"
#include "gqb/gqbQueryObjs.h"
#include "gqb/gqbObjectCollection.h"
#include "gqb/gqbViewPanels.h"
//
// Collections of Tables inside a Query, data structured used for query storage & later generation of SQL sentence
//
gqbQueryObjs::gqbQueryObjs()
: gqbObjectCollection(wxT(""), NULL, NULL)
{
setType(GQB_QUERY);
}
void gqbQueryObjs::addTable(gqbQueryObject *mtable)
{
this->addObject(mtable);
}
void gqbQueryObjs::removeTable(gqbQueryObject *mtable)
{
this->removeObject(mtable);
}
gqbIteratorBase *gqbQueryObjs::createQueryIterator()
{
return this->createIterator();
}
gqbIteratorBase *gqbQueryObjs::createDownQueryIterator()
{
return this->createDownIterator();
}
int gqbQueryObjs::tablesCount()
{
return this->countObjects();
}
void gqbQueryObjs::removeAllQueryObjs()
{
this->removeAll();
}
//
// An Object inside a query (A table object in the query), not equal to gqbTable
// Reason: Sometimes a table can be used twice or more times in a query with different columns selected
// Because this we can not use directly the base table object
gqbQueryObject::gqbQueryObject(gqbTable *table)
: gqbObjectCollection(table->getName(), table, table->getConnection())
{
selected = false;
parent = table;
//GQB-TODO: Calculate a good initial position
position.x = 20;
position.y = 20;
haveJoins = false;
haveRegisteredJoins = false;
registeredCollection = NULL;
joinsCollection = NULL;
setType(GQB_QUERYOBJ);
}
// Destructor must empty collection to don't allow deleting of column items from tree
// because this collection doesn't owns it, and then shouldn't destroy it.
gqbQueryObject::~gqbQueryObject()
{
this->removeAll();
// Remove item registered at this Query Object
gqbQueryJoin *tmp;
if(registeredCollection)
{
gqbIteratorBase *r = createRegJoinsIterator();
while(r->HasNext())
{
tmp = (gqbQueryJoin *)r->Next();
this->unregisterJoin(tmp, true); // remove and unregister every join in every query object
// which have registered at this query object
// On each iteration the structure of iterator change because
// modified his own collection & should be reset
r->ResetIterator();
}
delete r;
}
if(joinsCollection)
{
gqbIteratorBase *j = createJoinsIterator();
while(j->HasNext())
{
tmp = (gqbQueryJoin *)j->Next();
this->removeJoin(tmp, true); // removes & unregister Join which have like origin this
// query object
// On each iteration the structure of iterator change because
// modified his own collection & should be reset
j->ResetIterator();
}
delete j;
}
// removeJoin & unregisterJoin delete the collections where there aren't any items inside.
}
void gqbQueryObject::setSelected(bool value)
{
this->selected = value;
}
bool gqbQueryObject::getSelected()
{
return this->selected;
}
void gqbQueryObject::setWidth(int value)
{
width = value;
}
int gqbQueryObject::getWidth()
{
return width;
}
void gqbQueryObject::setHeight(int value)
{
height = value;
}
int gqbQueryObject::getHeight()
{
return height;
}
void gqbQueryObject::addColumn(gqbColumn *column)
{
this->addObject(column);
}
void gqbQueryObject::removeColumn(gqbColumn *column)
{
this->removeObject(column);
}
bool gqbQueryObject::existsColumn(gqbColumn *column)
{
return this->existsObject(column);
}
gqbIteratorBase *gqbQueryObject::createQueryTableIterator()
{
return this->createIterator();
}
gqbIteratorBase *gqbQueryObject::createJoinsIterator()
{
return joinsCollection->createIterator();
}
gqbIteratorBase *gqbQueryObject::createRegJoinsIterator()
{
return registeredCollection->createIterator();
}
// Create a Join from this table [owner] column to other table [observable] column
gqbQueryJoin *gqbQueryObject::addJoin(gqbQueryObject *owner, gqbQueryObject *observable, gqbColumn *source, gqbColumn *destination, type_Join kind)
{
if(!haveJoins)
{
implementationj = new gqbArrayCollection();
joinsCollection = new gqbCollection(implementationj);
haveJoins = true;
}
gqbQueryJoin *join = new gqbQueryJoin(owner, observable, source, destination, kind);
joinsCollection->addItem(join);
observable->registerJoin(join);
return join;
}
// Remove the join from this query object [source table]
void gqbQueryObject::removeJoin(gqbQueryJoin *join, bool unRegister = false)
{
// Notify to observable that the join this object owns will be removed & then remove the join
if(unRegister)
join->getDestQTable()->unregisterJoin(join, false);
joinsCollection->removeItem(join);
if(join)
delete join; // Join can be only delete Here by his owner
if(joinsCollection->count() <= 0)
{
delete joinsCollection; // implementation it's delete too inside collection.
haveJoins = false;
joinsCollection = NULL;
}
}
// Register a Join created from other table [source] to this table [destination]
void gqbQueryObject::registerJoin(gqbQueryJoin *join)
{
if(!haveRegisteredJoins)
{
implementationr = new gqbArrayCollection();
registeredCollection = new gqbCollection(implementationr);
haveRegisteredJoins = true;
}
registeredCollection->addItem(join);
}
// Unregister a Join create from other table [source] to this table [destination] delete the join if need it..
void gqbQueryObject::unregisterJoin(gqbQueryJoin *join, bool removeIt = false)
{
// Notify to source/owner object of join about join removing & then remove
registeredCollection->removeItem(join);
if(removeIt)
join->getSourceQTable()->removeJoin(join, false);
if(registeredCollection->count() <= 0)
{
delete registeredCollection; //implementation it's delete too inside collection.
haveRegisteredJoins = false;
registeredCollection = NULL;
}
}
int gqbQueryObject::getColumnIndex(gqbColumn *column)
{
return parent->indexColumn(column);
}
bool gqbQueryObject::getHaveJoins()
{
return haveJoins;
}
bool gqbQueryObject::getHaveRegJoins()
{
return haveRegisteredJoins;
}
// GQB-TODO if last join it's delete I MUST delete implementation & collection & put haveJoins in false;
// Same for registered joins
//
// A Join inside a query Object like Table or view [Stored at source, registered at destination]
// I need to store the owner, destination because columns it's share between multiple joins
gqbQueryJoin::gqbQueryJoin(gqbQueryObject *_owner, gqbQueryObject *_destination, gqbColumn *sourceCol, gqbColumn *destCol, type_Join joinKind)
: gqbObject(wxT(""), _owner, NULL)
{
kindofJoin = joinKind;
sCol = sourceCol;
dCol = destCol;
owner = _owner;
selected = false;
destination = _destination;
setType(GQB_JOIN);
}
void gqbQueryJoin::setKindofJoin(type_Join kind)
{
kindofJoin = kind;
}
type_Join gqbQueryJoin::getKindofJoin()
{
return kindofJoin;
}
// Return the object where the join is stored
gqbQueryObject *gqbQueryJoin::getSourceQTable()
{
return owner;
}
// Return the object where the join point to.
gqbQueryObject *gqbQueryJoin::getDestQTable()
{
return destination;
}
// Return the gqbObject of Destination Column
gqbColumn *gqbQueryJoin::getDCol()
{
return dCol;
}
// Return the gqbObject of Source Column
gqbColumn *gqbQueryJoin::getSCol()
{
return sCol;
}
wxString gqbQueryJoin::getSourceTable()
{
if (!owner)
return wxEmptyString;
gqbTable *s = (gqbTable *)sCol->getOwner();
return s->getName();
}
wxString gqbQueryJoin::getDestTable()
{
if (!destination)
return wxEmptyString;
gqbTable *d = (gqbTable *)dCol->getOwner();
return d->getName();
}
wxString gqbQueryJoin::getSourceCol()
{
if (!sCol)
return wxEmptyString;
return sCol->getName();
}
wxString gqbQueryJoin::getDestCol()
{
if (!dCol)
return wxEmptyString;
return dCol->getName();
}
void gqbQueryJoin::setSourceAnchor(wxPoint pt)
{
sAnchor = pt;
}
void gqbQueryJoin::setDestAnchor(wxPoint pt)
{
dAnchor = pt;
}
wxPoint &gqbQueryJoin::getSourceAnchor()
{
return sAnchor;
}
wxPoint &gqbQueryJoin::getDestAnchor()
{
return dAnchor;
}
void gqbQueryJoin::setSelected(bool value)
{
this->selected = value;
}
bool gqbQueryJoin::getSelected()
{
return this->selected;
}
void gqbQueryJoin::setAnchorsUsed(wxPoint pt)
{
anchorsUsed = pt;
}
wxPoint &gqbQueryJoin::getAnchorsUsed()
{
return anchorsUsed;
}
//
// A query restriction
//
enum
{
QRButton = 9000,
QRValue,
QRConnector,
QRtype
};
gqbQueryRestriction::gqbQueryRestriction()
: gqbObject(wxT(""), NULL, NULL)
{
leftPart = wxT("");
value_s = wxT("");
connector = wxT("AND");
restriction = wxT("=");
setType(GQB_RESTRICTION);
}
gqbRestrictions::gqbRestrictions()
: gqbObjectCollection(wxT(""), NULL, NULL)
{
setType(GQB_RESTRICTION);
}
gqbRestrictions::~gqbRestrictions()
{
this->removeAll();
}
void gqbRestrictions::addRestriction(gqbQueryRestriction *r)
{
this->addObject(r);
}
void gqbRestrictions::addRestrictionAt(gqbQueryRestriction *r, int index)
{
this->insertObjectAt(r, index);
}
// Remove but don't delete restriction
void gqbRestrictions::removeRestriction(gqbQueryRestriction *r)
{
this->removeObject(r);
}
void gqbRestrictions::deleteAllRestrictions()
{
this->deleteAll();
}
gqbIteratorBase *gqbRestrictions::createRestrictionsIterator()
{
return this->createIterator();
}
int gqbRestrictions::restrictionsCount()
{
return this->getCount();
}
gqbQueryRestriction *gqbRestrictions::getRestrictionAt(int index)
{
return (gqbQueryRestriction *)this->getObjectAtIndex(index);
}
|