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
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// pgIndex.h PostgreSQL Index
//
//////////////////////////////////////////////////////////////////////////
#ifndef PGINDEX_H
#define PGINDEX_H
#include "pgTable.h"
#include <wx/arrstr.h>
class pgIndexBase : public pgSchemaObject
{
protected:
pgIndexBase(pgSchema *newSchema, pgaFactory &factory, const wxString &newName = wxT(""));
public:
wxString GetTranslatedMessage(int kindOfMessage) const;
void ShowTreeDetail(ctlTree *browser, frmMain *form = 0, ctlListView *properties = 0, ctlSQLBox *sqlPane = 0);
void ShowStatistics(frmMain *form, ctlListView *statistics);
bool CanDropCascaded()
{
return GetSchema()->GetMetaType() != PGM_CATALOG;
}
wxString GetProcArgs() const
{
return procArgs;
}
wxString GetQuotedTypedColumns() const
{
return quotedTypedColumns;
}
wxString GetTypedColumns() const
{
return typedColumns;
}
wxString GetOperatorClasses() const
{
return operatorClasses;
}
wxString GetQuotedColumns() const
{
return quotedColumns;
}
wxString GetColumns() const
{
return columns;
}
wxArrayString GetColumnList() const
{
return columnList;
}
wxString GetColumnNumbers() const
{
return columnNumbers;
}
void iSetColumnNumbers(const wxString &s)
{
columnNumbers = s;
}
wxString GetConstraint() const
{
return constraint;
}
void iSetConstraint(const wxString &s)
{
constraint = s;
}
wxString GetIndexType() const
{
return indexType;
}
void iSetIndexType(const wxString &s)
{
indexType = s;
}
long GetColumnCount() const
{
return columnCount;
}
void iSetColumnCount(const long l)
{
columnCount = l;
}
bool GetIsUnique() const
{
return isUnique;
}
void iSetIsUnique(const bool b)
{
isUnique = b;
}
bool GetIsExclude() const
{
return isExclude;
}
void iSetIsExclude(const bool b)
{
isExclude = b;
}
bool GetIsPrimary() const
{
return isPrimary;
}
void iSetIsPrimary(const bool b)
{
isPrimary = b;
}
bool GetIsClustered() const
{
return isClustered;
}
void iSetIsClustered(const bool b)
{
isClustered = b;
}
bool GetIsValid() const
{
return isValid;
}
void iSetIsValid(const bool b)
{
isValid = b;
}
wxString GetIdxTable() const
{
return idxTable;
}
void iSetIdxTable(const wxString &s)
{
idxTable = s;
}
wxString GetIdxSchema() const
{
return idxSchema;
}
void iSetIdxSchema(const wxString &s)
{
idxSchema = s;
}
OID GetRelTableOid() const
{
return relTableOid;
}
void iSetRelTableOid(const OID d)
{
relTableOid = d;
}
wxString GetTablespace() const
{
return tablespace;
};
void iSetTablespace(const wxString &newVal)
{
tablespace = newVal;
}
OID GetTablespaceOid() const
{
return tablespaceOid;
};
void iSetTablespaceOid(const OID newVal)
{
tablespaceOid = newVal;
}
wxString GetFillFactor()
{
return fillFactor;
}
void iSetFillFactor(const wxString &s)
{
fillFactor = s;
}
wxString GetProcName() const
{
return procName;
}
void iSetProcName(const wxString &s)
{
procName = s;
}
wxString GetProcNamespace() const
{
return procNamespace;
}
void iSetProcNamespace(const wxString &s)
{
procNamespace = s;
}
bool GetDeferrable() const
{
return deferrable;
}
void iSetDeferrable(const bool b)
{
deferrable = b;
}
bool GetDeferred() const
{
return deferred;
}
void iSetDeferred(const bool b)
{
deferred = b;
}
void iSetOperatorClassList(const wxString &s)
{
operatorClassList = s;
}
void iSetProcArgTypeList(const wxString &s)
{
procArgTypeList = s;
}
const wxArrayString &GetOrdersArray()
{
return ordersArray;
}
const wxArrayString &GetNullsArray()
{
return nullsArray;
}
const wxArrayString &GetOpClassesArray()
{
return opclassesArray;
}
const wxArrayString &GetCollationsArray()
{
return collationsArray;
}
bool DropObject(wxFrame *frame, ctlTree *browser, bool cascaded);
wxString GetCreate();
bool CanRestore()
{
return true;
}
wxString GetSql(ctlTree *browser);
pgObject *Refresh(ctlTree *browser, const wxTreeItemId item);
bool CanMaintenance()
{
return true;
}
bool GetShowExtendedStatistics()
{
return showExtendedStatistics;
}
void iSetShowExtendedStatistics(bool b)
{
showExtendedStatistics = b;
}
bool HasStats()
{
return true;
}
bool HasDepends()
{
return true;
}
bool HasReferences()
{
return true;
}
bool HasPgstatindex();
protected:
void ReadColumnDetails();
private:
wxString columnNumbers, columns, quotedColumns, indexType, idxTable, idxSchema, constraint, tablespace;
wxString procName, procNamespace, procArgs, procArgTypeList, typedColumns, quotedTypedColumns, operatorClasses, operatorClassList;
long columnCount;
wxArrayString columnList, ordersArray, nullsArray, opclassesArray, collationsArray;
bool isUnique, isPrimary, isExclude, isClustered, isValid;
bool deferrable, deferred, showExtendedStatistics;
OID relTableOid, tablespaceOid;
wxString fillFactor;
};
class pgIndex : public pgIndexBase
{
public:
pgIndex(pgSchema *newSchema, const wxString &newName = wxT(""));
};
class pgIndexBaseFactory : public pgSchemaObjFactory
{
public:
virtual pgObject *CreateObjects(pgCollection *obj, ctlTree *browser, const wxString &restr = wxEmptyString);
virtual pgCollection *CreateCollection(pgObject *obj);
protected:
pgIndexBaseFactory(const wxChar *tn, const wxChar *ns, const wxChar *nls, wxImage *img = 0) : pgSchemaObjFactory(tn, ns, nls, img) {}
};
class pgIndexFactory : public pgIndexBaseFactory
{
public:
pgIndexFactory();
virtual dlgProperty *CreateDialog(frmMain *frame, pgObject *node, pgObject *parent);
virtual pgObject *CreateObjects(pgCollection *obj, ctlTree *browser, const wxString &restr = wxEmptyString);
};
extern pgIndexFactory indexFactory;
class pgIndexBaseCollection : public pgSchemaObjCollection
{
public:
pgIndexBaseCollection(pgaFactory *factory, pgSchema *sch);
wxString GetTranslatedMessage(int kindOfMessage) const;
void ShowStatistics(frmMain *form, ctlListView *statistics);
};
class executePgstatindexFactory : public contextActionFactory
{
public:
executePgstatindexFactory(menuFactoryList *list, wxMenu *mnu, ctlMenuToolbar *toolbar);
wxWindow *StartDialog(frmMain *form, pgObject *obj);
bool CheckEnable(pgObject *obj);
bool CheckChecked(pgObject *obj);
};
#endif
|