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
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// gqbModel.cpp - Model of MVC Pattern for GQB
//
//////////////////////////////////////////////////////////////////////////
#include "pgAdmin3.h"
// wxWindows headers
#include <wx/wx.h>
// App headers
#include "gqb/gqbModel.h"
#include "gqb/gqbQueryObjs.h"
gqbModel::gqbModel():
wxObject()
{
// here store all queryObjects
// GQB-TODO: allow different names for each model
queryCollection = new gqbQueryObjs();
restrictions = new gqbRestrictions();
columnsAlias = new wxArrayString();
}
// GQB-TODO: check this destructor is not complete
gqbModel::~gqbModel()
{
if(queryCollection)
delete queryCollection;
// Don't owns objects only remove then in both
colsPosition.Empty();
colsParents.Empty();
if(columnsAlias)
delete columnsAlias;
//GQB-TODO: delete restrictions
}
gqbQueryObject *gqbModel::addTable(gqbTable *table, wxPoint p)
{
// Get a table but introduce a QueryObject
gqbQueryObject *tmp = new gqbQueryObject(table);
tmp->position = p;
// Now use insert the new object in the collection of the model
queryCollection->addTable(tmp);
// Columns of added table should be possible to use on Order By Clause
gqbIteratorBase *iterator = tmp->parent->createColumnsIterator();
while(iterator->HasNext())
{
gqbColumn *col = (gqbColumn *)iterator->Next();
AvailableColumns.Add(col);
ColumnAvailParent.Add(tmp);
}
delete iterator;
return tmp;
}
gqbIteratorBase *gqbModel::createQueryIterator()
{
return queryCollection->createQueryIterator();
}
gqbIteratorBase *gqbModel::createDownQueryIterator()
{
return queryCollection->createDownQueryIterator();
}
void gqbModel::deleteTable(gqbQueryObject *modelTable)
{
if(modelTable)
{
queryCollection->removeTable(modelTable);
delete modelTable;
modelTable = NULL;
}
}
int gqbModel::tablesCount()
{
return queryCollection->tablesCount();
}
void gqbModel::emptyAll()
{
colsPosition.Empty();
colsParents.Empty();
queryCollection->removeAllQueryObjs();
}
gqbQueryRestriction *gqbModel::addRestriction()
{
gqbQueryRestriction *r = new gqbQueryRestriction();
restrictions->addRestriction(r);
return r;
}
|