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
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// dlgDomain.cpp - PostgreSQL Domain Property
//
//////////////////////////////////////////////////////////////////////////
// wxWindows headers
#include <wx/wx.h>
// App headers
#include "pgAdmin3.h"
#include "frm/frmMain.h"
#include "utils/misc.h"
#include "utils/pgDefs.h"
#include "dlg/dlgDomain.h"
#include "dlg/dlgCheck.h"
#include "schema/pgSchema.h"
#include "schema/pgCheck.h"
#include "schema/pgDomain.h"
#include "schema/pgDatatype.h"
#include "ctl/ctlSeclabelPanel.h"
// pointer to controls
#define chkNotNull CTRL_CHECKBOX("chkNotNull")
#define txtDefault CTRL_TEXT("txtDefault")
#define cbCollation CTRL_COMBOBOX("cbCollation")
#define lstConstraints CTRL_LISTVIEW("lstConstraints")
#define btnAddConstr CTRL_BUTTON("btnAddConstr")
#define cbConstrType CTRL_COMBOBOX("cbConstrType")
#define btnRemoveConstr CTRL_BUTTON("btnRemoveConstr")
BEGIN_EVENT_TABLE(dlgDomain, dlgTypeProperty)
EVT_TEXT(XRCID("txtLength"), dlgProperty::OnChange)
EVT_TEXT(XRCID("txtPrecision"), dlgProperty::OnChange)
EVT_TEXT(XRCID("cbDatatype"), dlgDomain::OnSelChangeTyp)
EVT_COMBOBOX(XRCID("cbDatatype"), dlgDomain::OnSelChangeTyp)
EVT_TEXT(XRCID("txLength"), dlgProperty::OnChange)
EVT_TEXT(XRCID("txtDefault"), dlgProperty::OnChange)
EVT_CHECKBOX(XRCID("chkNotNull"), dlgProperty::OnChange)
EVT_BUTTON(XRCID("btnAddConstr"), dlgDomain::OnAddConstr)
EVT_BUTTON(XRCID("btnRemoveConstr"), dlgDomain::OnRemoveConstr)
EVT_LIST_ITEM_SELECTED(XRCID("lstConstraints"), dlgDomain::OnSelChangeConstr)
END_EVENT_TABLE();
dlgProperty *pgDomainFactory::CreateDialog(frmMain *frame, pgObject *node, pgObject *parent)
{
return new dlgDomain(this, frame, (pgDomain *)node, (pgSchema *)parent);
}
dlgDomain::dlgDomain(pgaFactory *f, frmMain *frame, pgDomain *node, pgSchema *sch)
: dlgTypeProperty(f, frame, wxT("dlgDomain"))
{
schema = sch;
domain = node;
seclabelPage = new ctlSeclabelPanel(nbNotebook);
txtLength->Disable();
txtPrecision->Disable();
lstConstraints->CreateColumns(0, _("Constraint name"), _("Definition"), 90);
}
pgObject *dlgDomain::GetObject()
{
return domain;
}
int dlgDomain::Go(bool modal)
{
if (connection->BackendMinimumVersion(9, 1))
{
seclabelPage->SetConnection(connection);
seclabelPage->SetObject(domain);
this->Connect(EVT_SECLABELPANEL_CHANGE, wxCommandEventHandler(dlgDomain::OnChange));
}
else
seclabelPage->Disable();
if (domain)
{
// edit mode
cbSchema->Enable(connection->BackendMinimumVersion(8, 1));
cbDatatype->Append(domain->GetBasetype());
AddType(wxT(" "), 0, domain->GetBasetype());
cbDatatype->SetSelection(0);
if (domain->GetLength() >= 0)
{
txtLength->SetValue(NumToStr(domain->GetLength()));
if (domain->GetPrecision() >= 0)
txtPrecision->SetValue(NumToStr(domain->GetPrecision()));
}
chkNotNull->SetValue(domain->GetNotNull());
txtDefault->SetValue(domain->GetDefault());
wxCookieType cookie;
pgObject *data = 0;
wxTreeItemId item = mainForm->GetBrowser()->GetFirstChild(domain->GetId(), cookie);
while (item)
{
data = mainForm->GetBrowser()->GetObject(item);
pgaFactory *factory = data->GetFactory();
if (factory == checkFactory.GetCollectionFactory())
constraintsItem = item;
else if (data->GetMetaType() == PGM_CONSTRAINT)
constraintsItem = item;
if (constraintsItem)
break;
item = mainForm->GetBrowser()->GetNextChild(domain->GetId(), cookie);
}
if (constraintsItem)
{
pgCollection *coll = (pgCollection *)mainForm->GetBrowser()->GetObject(constraintsItem);
// make sure all constraints are appended
coll->ShowTreeDetail(mainForm->GetBrowser());
// this is the constraints collection
item = mainForm->GetBrowser()->GetFirstChild(constraintsItem, cookie);
// add constraints
while (item)
{
data = mainForm->GetBrowser()->GetObject(item);
switch (data->GetMetaType())
{
case PGM_CHECK:
{
pgCheck *obj = (pgCheck *)data;
lstConstraints->AppendItem(data->GetIconId(), obj->GetName(), obj->GetDefinition());
constraintsDefinition.Add(obj->GetDefinition());
previousConstraints.Add(obj->GetQuotedIdentifier()
+ wxT(" ") + obj->GetTypeName().Upper() + wxT(" ") + obj->GetDefinition());
break;
}
}
item = mainForm->GetBrowser()->GetNextChild(constraintsItem, cookie);
}
}
cbDatatype->Disable();
cbCollation->SetValue(domain->GetQuotedCollation());
cbCollation->Disable();
if (!connection->BackendMinimumVersion(7, 4))
{
cbOwner->Disable();
txtDefault->Disable();
chkNotNull->Disable();
}
}
else
{
// create mode
FillDatatype(cbDatatype, false);
cbCollation->Enable(connection->BackendMinimumVersion(9, 1));
if (connection->BackendMinimumVersion(9, 1))
{
// fill collation combobox
cbCollation->Append(wxEmptyString);
pgSet *set = connection->ExecuteSet(
wxT("SELECT nspname, collname\n")
wxT(" FROM pg_collation c, pg_namespace n\n")
wxT(" WHERE c.collnamespace=n.oid\n")
wxT(" ORDER BY nspname, collname"));
if (set)
{
while (!set->Eof())
{
wxString name = qtIdent(set->GetVal(wxT("nspname"))) + wxT(".") + qtIdent(set->GetVal(wxT("collname")));
cbCollation->Append(name);
set->MoveNext();
}
delete set;
}
cbCollation->SetSelection(0);
}
}
cbConstrType->Clear();
cbConstrType->Append(_("Check"));
cbConstrType->SetSelection(0);
btnRemoveConstr->Disable();
return dlgProperty::Go(modal);
}
pgObject *dlgDomain::CreateObject(pgCollection *collection)
{
wxString name = GetName();
pgObject *obj = domainFactory.CreateObjects(collection, 0,
wxT(" AND d.typname=") + qtDbString(name) +
wxT("\n AND d.typnamespace=") + schema->GetOidStr() +
wxT("\n"));
return obj;
}
void dlgDomain::CheckChange()
{
bool enable = true;
if (domain)
{
enable = false;
if (connection->BackendMinimumVersion(7, 4) || lstColumns->GetItemCount() > 0)
{
enable = !GetSql().IsEmpty();
}
if (seclabelPage && connection->BackendMinimumVersion(9, 1))
enable = enable || !(seclabelPage->GetSqlForSecLabels().IsEmpty());
}
else
{
wxString name = GetName();
long varlen = StrToLong(txtLength->GetValue()),
varprec = StrToLong(txtPrecision->GetValue());
txtPrecision->Enable(isVarPrec && varlen > 0);
CheckValid(enable, !name.IsEmpty(), _("Please specify name."));
CheckValid(enable, cbDatatype->GetGuessedSelection() >= 0, _("Please select a datatype."));
CheckValid(enable, !isVarLen || txtLength->GetValue().IsEmpty()
|| (varlen >= minVarLen && varlen <= maxVarLen && NumToStr(varlen) == txtLength->GetValue()),
_("Please specify valid length."));
CheckValid(enable, !txtPrecision->IsEnabled()
|| (varprec >= 0 && varprec <= varlen && NumToStr(varprec) == txtPrecision->GetValue()),
_("Please specify valid numeric precision (0..") + NumToStr(varlen) + wxT(")."));
}
EnableOK(enable);
}
void dlgDomain::OnSelChangeTyp(wxCommandEvent &ev)
{
if (!domain)
{
cbDatatype->GuessSelection(ev);
CheckLenEnable();
txtLength->Enable(isVarLen);
CheckChange();
}
}
void dlgDomain::OnChangeValidate(wxCommandEvent &ev)
{
CheckChange();
}
wxString dlgDomain::GetSql()
{
wxString sql, name;
int pos;
wxString definition;
int index = -1;
wxArrayString tmpDef = previousConstraints;
wxString tmpsql = wxEmptyString;
if (domain)
{
// edit mode
name = GetName();
if (txtName->GetValue() != domain->GetName())
{
if (connection->BackendMinimumVersion(9, 2))
AppendNameChange(sql, wxT("DOMAIN ") + domain->GetQuotedFullIdentifier());
else
AppendNameChange(sql, wxT("TYPE ") + domain->GetQuotedFullIdentifier());
}
if (chkNotNull->GetValue() != domain->GetNotNull())
{
sql += wxT("ALTER DOMAIN ") + domain->GetQuotedFullIdentifier();
if (chkNotNull->GetValue())
sql += wxT("\n SET NOT NULL;\n");
else
sql += wxT("\n DROP NOT NULL;\n");
}
if (txtDefault->GetValue() != domain->GetDefault())
{
sql += wxT("ALTER DOMAIN ") + domain->GetQuotedFullIdentifier();
if (txtDefault->GetValue().IsEmpty())
sql += wxT("\n DROP DEFAULT;\n");
else
sql += wxT("\n SET DEFAULT ") + txtDefault->GetValue() + wxT(";\n");
}
// Build a temporary list of ADD CONSTRAINTs, and fixup the list to remove
for (pos = 0; pos < lstConstraints->GetItemCount() ; pos++)
{
wxString conname = qtIdent(lstConstraints->GetItemText(pos));
definition = conname;
definition += wxT(" CHECK ") + constraintsDefinition.Item(pos);
index = tmpDef.Index(definition);
if (index >= 0)
tmpDef.RemoveAt(index);
else
{
tmpsql += wxT("ALTER DOMAIN ") + domain->GetQuotedFullIdentifier()
+ wxT("\n ADD");
if (!conname.IsEmpty())
tmpsql += wxT(" CONSTRAINT ");
tmpsql += definition + wxT(";\n");
}
}
// Add the DROP CONSTRAINTs...
for (index = 0 ; index < (int)tmpDef.GetCount() ; index++)
{
definition = tmpDef.Item(index);
if (definition[0U] == '"')
definition = definition.Mid(1).BeforeFirst('"');
else
definition = definition.BeforeFirst(' ');
sql += wxT("ALTER DOMAIN ") + domain->GetQuotedFullIdentifier()
+ wxT("\n DROP CONSTRAINT ") + qtIdent(definition) + wxT(";\n");
}
// Add the ADD CONSTRAINTs...
sql += tmpsql;
AppendOwnerChange(sql, wxT("DOMAIN ") + domain->GetQuotedFullIdentifier());
AppendSchemaChange(sql, wxT("DOMAIN ") + domain->GetQuotedFullIdentifier());
}
else
{
// create mode
name = qtIdent(cbSchema->GetValue()) + wxT(".") + qtIdent(GetName());
sql = wxT("CREATE DOMAIN ") + name
+ wxT("\n AS ") + GetQuotedTypename(cbDatatype->GetGuessedSelection());
if (!cbCollation->GetValue().IsEmpty() && cbCollation->GetValue() != wxT("pg_catalog.\"default\""))
sql += wxT("\n COLLATE ") + cbCollation->GetValue();
AppendIfFilled(sql, wxT("\n DEFAULT "), txtDefault->GetValue());
if (chkNotNull->GetValue())
sql += wxT("\n NOT NULL");
for (pos = 0 ; pos < lstConstraints->GetItemCount() ; pos++)
{
wxString name = lstConstraints->GetItemText(pos);
wxString definition = constraintsDefinition.Item(pos);
if (!name.IsEmpty())
sql += wxT("\n CONSTRAINT ") + qtIdent(name) + wxT(" CHECK ") + definition;
else
sql += wxT("\n CHECK ") + definition;
}
sql += wxT(";\n");
AppendOwnerNew(sql, wxT("DOMAIN ") + name);
}
AppendComment(sql, wxT("DOMAIN ") + qtIdent(cbSchema->GetValue()) + wxT(".") + qtIdent(GetName()), domain);
if (seclabelPage && connection->BackendMinimumVersion(9, 1))
sql += seclabelPage->GetSqlForSecLabels(wxT("DOMAIN"), name);
return sql;
}
void dlgDomain::OnChange(wxCommandEvent &event)
{
CheckChange();
}
void dlgDomain::OnAddConstr(wxCommandEvent &ev)
{
int sel = cbConstrType->GetCurrentSelection();
switch (sel)
{
case 0: // Check
{
dlgCheck chk(&checkFactory, mainForm);
chk.CenterOnParent();
chk.SetDatabase(database);
if (chk.Go(true) != wxID_CANCEL)
{
wxString tmpDef = chk.GetDefinition();
tmpDef.Replace(wxT("\n"), wxT(" "));
lstConstraints->AppendItem(checkFactory.GetIconId(), chk.GetName(), tmpDef);
constraintsDefinition.Add(tmpDef);
}
break;
}
}
CheckChange();
}
void dlgDomain::OnRemoveConstr(wxCommandEvent &ev)
{
if (settings->GetConfirmDelete())
{
if (wxMessageBox(_("Are you sure you wish to remove the selected constraint?"), _("Remove constraint?"), wxYES_NO | wxNO_DEFAULT | wxICON_QUESTION) != wxYES)
return;
}
int pos = lstConstraints->GetSelection();
if (pos < 0)
return;
lstConstraints->DeleteItem(pos);
constraintsDefinition.RemoveAt(pos);
btnRemoveConstr->Disable();
CheckChange();
}
void dlgDomain::OnSelChangeConstr(wxListEvent &ev)
{
btnRemoveConstr->Enable();
}
|