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 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// ddColumnFigure.cpp - Minimal Composite Figure for a column of a table
//
//////////////////////////////////////////////////////////////////////////
#include "pgAdmin3.h"
// wxWindows headers
#include <wx/wx.h>
#include <wx/dcbuffer.h>
#include <wx/pen.h>
// App headers
#include "dd/dditems/figures/ddColumnFigure.h"
#include "dd/dditems/figures/ddTextTableItemFigure.h"
#include "dd/dditems/tools/ddColumnFigureTool.h"
#include "dd/dditems/figures/ddColumnKindIcon.h"
#include "dd/dditems/figures/ddColumnOptionIcon.h"
#include "dd/dditems/utilities/ddDataType.h"
#include "dd/dditems/figures/ddTableFigure.h"
#include "dd/dditems/figures/ddRelationshipItem.h"
void ddColumnFigure::Init(wxString &columnName, ddTableFigure *owner, ddRelationshipItem *sourceFk)
{
setKindId(DDCOLUMNFIGURE);
fkSource = sourceFk;
usedAsFkDestFor = NULL;
setOwnerTable(owner);
deactivateGenFkName(); //initializae by default at not generate auto fk name
columnText = new ddTextTableItemFigure(columnName, dt_null, this);
kindImage = new ddColumnKindIcon(this);
optionImage = new ddColumnOptionIcon(this);
//Initialize displaybox and image coords
basicDisplayBox.SetPosition(0, wxPoint(0, 0));
basicDisplayBox.SetSize( columnText->displayBox().GetSize());
if(kindImage && optionImage)
{
basicDisplayBox.width += kindImage->displayBox().GetSize().GetWidth() + 3;
basicDisplayBox.width += optionImage->displayBox().GetSize().GetWidth() + 3;
columnText->displayBox().x[0] += kindImage->displayBox().GetSize().GetWidth() + 2;
columnText->displayBox().x[0] += optionImage->displayBox().GetSize().GetWidth() + 3;
}
else
{
basicDisplayBox.width += 22; //default value = 1 + 8 + 3 + 8 + 2
columnText->displayBox().x[0] += 22;
}
//Set Value default Attributes
fontAttribute->font().SetPointSize(owner->fontAttribute->font().GetPointSize());
pgAttNumColNumber = -1;
}
ddColumnFigure::ddColumnFigure(wxString &columnName, ddTableFigure *owner, ddRelationshipItem *sourceFk)
{
Init(columnName, owner, sourceFk);
}
//Constructor for creation of existing column from storage
ddColumnFigure::ddColumnFigure(wxString &columnName, ddTableFigure *owner, ddColumnOptionType option, bool isGenFk, bool isPkColumn, wxString colDataType, int p, int s, int ukIdx, ddRelationshipItem *srcFk, ddRelationshipItem *usedAsFk )
{
Init(columnName, owner, srcFk);
setColumnOption(option);
generateFkName = isGenFk;
kindImage->setPrimaryKey(isPkColumn);
int dtype = columnText->dataTypes().Index(colDataType, false);
if(dtype != wxNOT_FOUND)
{
setDataType((ddDataType)dtype);
}
else
{
wxMessageBox(wxString::Format(_("%s column has a non compatible data type (%s).\n%s will now have the default data type."),
columnName.c_str(), colDataType.c_str(), columnName.c_str()));
setDataType((ddDataType)0);
}
columnText->setPrecision(p);
columnText->setScale(s);
kindImage->setUkIndex(ukIdx);
usedAsFkDestFor = usedAsFk;
if(ownerTable)
ownerTable->updateTableSize();
}
ddColumnFigure::~ddColumnFigure()
{
if(columnText)
delete columnText;
if(kindImage)
delete kindImage;
if(optionImage)
delete optionImage;
}
void ddColumnFigure::AddPosForNewDiagram()
{
//Add position for new displaybox at new diagram
hdAttributeFigure::AddPosForNewDiagram();
//Add position to each figure inside this composite figure
if(kindImage)
kindImage->AddPosForNewDiagram();
if(optionImage)
optionImage->AddPosForNewDiagram();
if(columnText)
columnText->AddPosForNewDiagram();
}
void ddColumnFigure::RemovePosOfDiagram(int posIdx)
{
//Remove this position at displaybox of this figure
hdAttributeFigure::RemovePosOfDiagram(posIdx);
//Remove this position at each figure inside this composite figure
if(kindImage)
kindImage->RemovePosOfDiagram(posIdx);
if(optionImage)
optionImage->RemovePosOfDiagram(posIdx);
if(columnText)
columnText->RemovePosOfDiagram(posIdx);
}
void ddColumnFigure::basicMoveBy(int posIdx, int x, int y)
{
hdAbstractFigure::basicMoveBy(posIdx, x, y);
if(kindImage)
kindImage->moveBy(posIdx, x, y);
if(optionImage)
optionImage->moveBy(posIdx, x, y);
columnText->moveBy(posIdx, x, y);
}
void ddColumnFigure::moveTo(int posIdx, int x, int y)
{
hdAbstractFigure::moveTo(posIdx, x, y);
int distance = 0;
if(kindImage)
{
kindImage->moveTo(posIdx, x, y);
distance += kindImage->displayBox().GetSize().GetWidth() + 3;
}
else
{
distance += 11; //value = 8 + 3
}
if(optionImage)
{
optionImage->moveTo(posIdx, x + distance, y);
distance += optionImage->displayBox().GetSize().GetWidth() + 3;
}
else
{
distance += 11; //value = 8 + 3
}
columnText->moveTo(posIdx, x + distance, y);
}
bool ddColumnFigure::containsPoint(int posIdx, int x, int y)
{
bool out = false;
if(columnText->containsPoint(posIdx, x, y))
out = true;
else if(kindImage->containsPoint(posIdx, x, y))
out = true;
else if(optionImage->containsPoint(posIdx, x, y))
out = true;
return out;
}
hdMultiPosRect &ddColumnFigure::getBasicDisplayBox()
{
return basicDisplayBox;
}
void ddColumnFigure::basicDraw(wxBufferedDC &context, hdDrawingView *view)
{
columnText->draw(context, view);
if(kindImage)
kindImage->draw(context, view);
if(optionImage)
optionImage->draw(context, view);
}
void ddColumnFigure::basicDrawSelected(wxBufferedDC &context, hdDrawingView *view)
{
columnText->drawSelected(context, view);
if(kindImage)
kindImage->drawSelected(context, view);
if(optionImage)
optionImage->drawSelected(context, view);
}
hdIFigure *ddColumnFigure::findFigure(int posIdx, int x, int y)
{
hdIFigure *out = NULL;
if(columnText->containsPoint(posIdx, x, y))
out = columnText;
if(kindImage && kindImage->containsPoint(posIdx, x, y))
out = kindImage;
if(optionImage && optionImage->containsPoint(posIdx, x, y))
out = optionImage;
return out;
}
hdITool *ddColumnFigure::CreateFigureTool(hdDrawingView *view, hdITool *defaultTool)
{
return new ddColumnFigureTool(view, this, defaultTool);
}
hdIFigure *ddColumnFigure::getFigureAt(int pos)
{
if(pos == 0)
return (hdIFigure *) kindImage;
if(pos == 1)
return (hdIFigure *) optionImage;
if(pos == 2)
return (hdIFigure *) columnText;
return NULL;
}
ddTableFigure *ddColumnFigure::getOwnerTable()
{
return ownerTable;
}
void ddColumnFigure::setOwnerTable(ddTableFigure *table)
{
ownerTable = table;
}
void ddColumnFigure::displayBoxUpdate()
{
if(kindImage && optionImage)
{
columnText->displayBoxUpdate();
basicDisplayBox.width = columnText->displayBox().GetSize().GetWidth();
basicDisplayBox.width += kindImage->displayBox().GetSize().GetWidth() + 3;
basicDisplayBox.width += optionImage->displayBox().GetSize().GetWidth() + 3;
}
else
{
columnText->displayBoxUpdate();
basicDisplayBox.width += 22; //default value = 1 + 8 + 3 + 8 +2
}
}
bool ddColumnFigure::isNull()
{
return optionImage->getOption() == null;
}
bool ddColumnFigure::isNotNull()
{
return optionImage->getOption() == notnull;
}
bool ddColumnFigure::isNone()
{
return kindImage->isNone();
}
bool ddColumnFigure::isPrimaryKey()
{
return kindImage->isPrimaryKey();
}
void ddColumnFigure::disablePrimaryKey()
{
kindImage->disablePrimaryKey();
}
void ddColumnFigure::enablePrimaryKey()
{
kindImage->enablePrimaryKey();
}
bool ddColumnFigure::isUniqueKey()
{
return kindImage->isUniqueKey();
}
bool ddColumnFigure::isUniqueKey(int uniqueIndex)
{
return kindImage->isUniqueKey(uniqueIndex);
}
bool ddColumnFigure::isPlain()
{
return kindImage->isNone();
}
void ddColumnFigure::setColumnKindToNone()
{
kindImage->disablePrimaryKey();
kindImage->disableUniqueKey();
//Foreign key cannot be changed by set / toggle functions
}
void ddColumnFigure::setRightIconForColumn()
{
kindImage->setRightIconForColumn();
}
void ddColumnFigure::toggleColumnKind(ddColumnType type, hdDrawingView *view)
{
kindImage->toggleColumnKind(type, view);
}
void ddColumnFigure::setColumnOption(ddColumnOptionType type)
{
optionImage->changeIcon(type);
}
wxString &ddColumnFigure::getColumnName(bool datatype)
{
return columnText->getText(datatype);
}
void ddColumnFigure::setPrecision(int n)
{
columnText->setPrecision(n);
}
int ddColumnFigure::getPrecision()
{
return columnText->getPrecision();
}
void ddColumnFigure::setScale(int n)
{
columnText->setScale(n);
}
int ddColumnFigure::getScale()
{
return columnText->getScale();
}
int ddColumnFigure::getUniqueConstraintIndex()
{
return kindImage->getUniqueConstraintIndex();
}
void ddColumnFigure::setUniqueConstraintIndex(int i)
{
kindImage->setUniqueConstraintIndex(i);
}
ddColumnOptionType ddColumnFigure::getColumnOption()
{
return optionImage->getOption();
}
ddDataType ddColumnFigure::getDataType()
{
return columnText->getDataType();
}
void ddColumnFigure::setDataType(ddDataType type)
{
columnText->setDataType(type);
}
void ddColumnFigure::setColumnName(wxString name)
{
columnText->setText(name);
}
bool ddColumnFigure::isForeignKeyFromPk()
{
if(fkSource)
{
return fkSource->isForeignKeyFromPk();
}
else if(usedAsFkDestFor)
{
return usedAsFkDestFor->isForeignKeyFromPk();
}
return false;
}
bool ddColumnFigure::isForeignKey()
{
bool a = isUserCreatedForeignKey();
bool b = isGeneratedForeignKey();
return (a || b);
}
bool ddColumnFigure::isGeneratedForeignKey()
{
return fkSource != NULL;
}
bool ddColumnFigure::isUserCreatedForeignKey()
{
return usedAsFkDestFor != NULL;
}
ddRelationshipItem *ddColumnFigure::getRelatedFkItem()
{
return usedAsFkDestFor;
}
void ddColumnFigure::setAsUserCreatedFk(ddRelationshipItem *relatedFkItem)
{
usedAsFkDestFor = relatedFkItem;
//Now fix icons of kind of column
if(relatedFkItem == NULL)
{
kindImage->setRightIconForColumn();
}
}
bool ddColumnFigure::isFkNameGenerated()
{
return generateFkName;
}
void ddColumnFigure::activateGenFkName()
{
generateFkName = true;
}
void ddColumnFigure::deactivateGenFkName()
{
generateFkName = false;
}
wxString ddColumnFigure::generateSQL(bool forAlterColumn)
{
wxString tmp;
tmp = wxT("\"") + getColumnName() + wxT("\" ");
if(forAlterColumn)
tmp += wxT("TYPE ");
tmp += columnText->getType();
return tmp;
}
ddRelationshipItem *ddColumnFigure::getFkSource()
{
return fkSource;
}
void ddColumnFigure::setTextColour(wxColour colour)
{
columnText->fontColorAttribute->fontColor = colour;
}
//Validate status of column for SQL DDL generation
bool ddColumnFigure::validateColumn(wxString &errors)
{
bool out = true;
wxString tmp;
if(usedAsFkDestFor)
{
//Validate if relationship is marked as identifying but column isn't marked as primary key
wxString sourceTableName = usedAsFkDestFor->sourceTableName();
wxString destTableName = usedAsFkDestFor->destTableName();
wxString fkColName = usedAsFkDestFor->fkColumn->getColumnName(false);
wxString sourceColName = usedAsFkDestFor->original->getColumnName(false);
if(usedAsFkDestFor->relationIsIdentifying() && !this->isPrimaryKey())
{
out = false;
tmp = _("relation between table: ") + sourceTableName + _(" and table: ") + destTableName;
tmp += _(" is marked as identifying but user created foreign key column: ") + fkColName;
tmp += _(" isn't set as primary key \n");
errors.Append(tmp);
}
//Validate if relationship is marked as optional but column is mandatory
if( !usedAsFkDestFor->relationIsMandatory() && this->isNotNull())
{
out = false;
tmp = _("relation between table:") + sourceTableName + _(" and table: ") + destTableName;
tmp += _("is marked as optional but user created foreign key column: ") + fkColName;
tmp += _("is set as mandatory \n");
errors.Append(tmp);
}
//Validate if relationship is marked as mandatory buy column is optional
if( usedAsFkDestFor->relationIsMandatory() && this->isNull())
{
out = false;
tmp = _("relation between table:") + sourceTableName + _(" and table: ") + destTableName +
tmp += _(" is marked as mandatory but user created foreign key column: ") + fkColName;
tmp += _("is set as optional \n");
errors.Append(tmp);
}
//Validate datatype compatibility (right now only exactly same datatype)
if(this->getDataType() != usedAsFkDestFor->original->getDataType())
{
out = false;
tmp = _("User created foreign key column: ") + fkColName + _("have different datatype from source column of relationship: ");
tmp += sourceColName + _(" \n");
errors.Append(tmp);
}
}
return out;
}
//Used by persistence classes
void ddColumnFigure::setFkSource(ddRelationshipItem *newColumn)
{
fkSource = newColumn;
}
//Used by reverse engineering functions
wxString ddColumnFigure::getRawDataType()
{
return columnText->getType(true);
}
|