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
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// pgCast.cpp - Cast class
//
//////////////////////////////////////////////////////////////////////////
// wxWindows headers
#include <wx/wx.h>
// App headers
#include "pgAdmin3.h"
#include "utils/misc.h"
#include "schema/pgCast.h"
pgCast::pgCast(const wxString &newName)
: pgDatabaseObject(castFactory, newName)
{
}
pgCast::~pgCast()
{
}
wxString pgCast::GetTranslatedMessage(int kindOfMessage) const
{
wxString message = wxEmptyString;
switch (kindOfMessage)
{
case RETRIEVINGDETAILS:
message = _("Retrieving details on cast");
message += wxT(" ") + GetName();
break;
case REFRESHINGDETAILS:
message = _("Refreshing cast");
message += wxT(" ") + GetName();
break;
case DROPINCLUDINGDEPS:
message = wxString::Format(_("Are you sure you wish to drop cast \"%s\" including all objects that depend on it?"),
GetFullIdentifier().c_str());
break;
case DROPEXCLUDINGDEPS:
message = wxString::Format(_("Are you sure you wish to drop cast \"%s\"?"),
GetFullIdentifier().c_str());
break;
case DROPCASCADETITLE:
message = _("Drop cast cascaded?");
break;
case DROPTITLE:
message = _("Drop cast?");
break;
case PROPERTIESREPORT:
message = _("Cast properties report");
message += wxT(" - ") + GetName();
break;
case PROPERTIES:
message = _("Cast properties");
break;
case DDLREPORT:
message = _("Cast DDL report");
message += wxT(" - ") + GetName();
break;
case DDL:
message = _("Cast DDL");
break;
case DEPENDENCIESREPORT:
message = _("Cast dependencies report");
message += wxT(" - ") + GetName();
break;
case DEPENDENCIES:
message = _("Cast dependencies");
break;
case DEPENDENTSREPORT:
message = _("Cast dependents report");
message += wxT(" - ") + GetName();
break;
case DEPENDENTS:
message = _("Cast dependents");
break;
}
return message;
}
bool pgCast::DropObject(wxFrame *frame, ctlTree *browser, bool cascaded)
{
wxString sql = wxT("DROP CAST (") + GetSourceType() + wxT(" AS ") + GetTargetType() + wxT(")");
if (cascaded)
sql += wxT(" CASCADE");
return GetDatabase()->ExecuteVoid(sql);
}
wxString pgCast::GetSql(ctlTree *browser)
{
if (sql.IsNull())
{
sql = wxT("-- Cast: ") + GetQuotedFullIdentifier() + wxT("\n\n")
wxT("-- DROP CAST (") + GetSourceType() +
wxT(" AS ") + GetTargetType() + wxT(");")
wxT("\n\nCREATE CAST (") + GetSourceType() +
wxT(" AS ") + GetTargetType();
if (GetCastFunction().IsNull())
sql += wxT(")\n WITHOUT FUNCTION");
else
sql += wxT(")\n WITH FUNCTION ") + GetQuotedSchemaPrefix(GetCastNamespace()) + qtIdent(GetCastFunction()) + wxT("(") + GetSourceType() + wxT(")");
if (GetCastContext() != wxT("EXPLICIT"))
sql += wxT("\n AS ") + GetCastContext();
sql += wxT(";\n");
}
return sql;
}
void pgCast::ShowTreeDetail(ctlTree *browser, frmMain *form, ctlListView *properties, ctlSQLBox *sqlPane)
{
if (properties)
{
CreateListColumns(properties);
properties->AppendItem(_("Name"), GetName());
properties->AppendItem(_("OID"), GetOid());
properties->AppendItem(_("Source type"), GetSourceType());
properties->AppendItem(_("Target type"), GetTargetType());
if (GetCastFunction().IsNull())
properties->AppendItem(_("Function"), _("(binary compatible)"));
else
properties->AppendItem(_("Function"), GetCastFunction() + wxT("(") + GetSourceType() + wxT(")"));
properties->AppendItem(_("Context"), GetCastContext());
properties->AppendYesNoItem(_("System cast?"), GetSystemObject());
if (GetConnection()->BackendMinimumVersion(7, 5))
properties->AppendItem(_("Comment"), firstLineOnly(GetComment()));
}
}
pgObject *pgCast::Refresh(ctlTree *browser, const wxTreeItemId item)
{
pgObject *cast = 0;
pgCollection *coll = browser->GetParentCollection(item);
if (coll)
cast = castFactory.CreateObjects(coll, 0, wxT(" WHERE ca.oid=") + GetOidStr());
return cast;
}
pgObject *pgCastFactory::CreateObjects(pgCollection *collection, ctlTree *browser, const wxString &restriction)
{
pgCast *cast = 0;
wxString systemRestriction;
if (!settings->GetShowSystemObjects() && restriction.IsEmpty())
systemRestriction = wxT(" WHERE ca.oid > ") + NumToStr(collection->GetConnection()->GetLastSystemOID()) + wxT("\n");
pgSet *casts = collection->GetDatabase()->ExecuteSet(
wxT("SELECT ca.oid, ca.*, format_type(st.oid,NULL) AS srctyp, format_type(tt.oid,tt.typtypmod) AS trgtyp,")
wxT( " ns.nspname AS srcnspname, nt.nspname AS trgnspname,\n")
wxT( " proname, np.nspname AS pronspname, description\n")
wxT(" FROM pg_cast ca\n")
wxT(" JOIN pg_type st ON st.oid=castsource\n")
wxT(" JOIN pg_namespace ns ON ns.oid=st.typnamespace\n")
wxT(" JOIN pg_type tt ON tt.oid=casttarget\n")
wxT(" JOIN pg_namespace nt ON nt.oid=tt.typnamespace\n")
wxT(" LEFT JOIN pg_proc pr ON pr.oid=castfunc\n")
wxT(" LEFT JOIN pg_namespace np ON np.oid=pr.pronamespace\n")
wxT(" LEFT OUTER JOIN pg_description des ON (des.objoid=ca.oid AND des.objsubid=0 AND des.classoid='pg_cast'::regclass)\n")
+ restriction + systemRestriction +
wxT(" ORDER BY st.typname, tt.typname"));
if (casts)
{
while (!casts->Eof())
{
wxString name = casts->GetVal(wxT("srctyp")) + wxT("->") + casts->GetVal(wxT("trgtyp"));
cast = new pgCast(name);
cast->iSetOid(casts->GetOid(wxT("oid")));
cast->iSetDatabase(collection->GetDatabase());
cast->iSetSourceType(casts->GetVal(wxT("srctyp")));
cast->iSetSourceNamespace(casts->GetVal(wxT("srcnspname")));
cast->iSetSourceTypeOid(casts->GetOid(wxT("castsource")));
cast->iSetTargetType(casts->GetVal(wxT("trgtyp")));
cast->iSetTargetNamespace(casts->GetVal(wxT("trgnspname")));
cast->iSetTargetTypeOid(casts->GetOid(wxT("casttarget")));
cast->iSetCastFunction(casts->GetVal(wxT("proname")));
cast->iSetCastNamespace(casts->GetVal(wxT("pronspname")));
cast->iSetComment(casts->GetVal(wxT("description")));
wxString ct = casts->GetVal(wxT("castcontext"));
cast->iSetCastContext(
ct == wxT("i") ? wxT("IMPLICIT") :
ct == wxT("a") ? wxT("ASSIGNMENT") : wxT("EXPLICIT"));
if (settings->GetShowSystemObjects() ||
(cast->GetOid() > collection->GetServer()->GetLastSystemOID()))
{
if (browser)
{
browser->AppendObject(collection, cast);
casts->MoveNext();
}
else
break;
}
else
break;
}
delete casts;
}
return cast;
}
/////////////////////////////
pgCastCollection::pgCastCollection(pgaFactory *factory, pgDatabase *db)
: pgDatabaseObjCollection(factory, db)
{
}
wxString pgCastCollection::GetTranslatedMessage(int kindOfMessage) const
{
wxString message = wxEmptyString;
switch (kindOfMessage)
{
case RETRIEVINGDETAILS:
message = _("Retrieving details on casts");
break;
case REFRESHINGDETAILS:
message = _("Refreshing casts");
break;
case OBJECTSLISTREPORT:
message = _("Casts list report");
break;
}
return message;
}
/////////////////////////////
#include "images/cast.pngc"
#include "images/cast-sm.pngc"
#include "images/casts.pngc"
pgCastFactory::pgCastFactory()
: pgDatabaseObjFactory(__("Cast"), __("New Cast..."), __("Create a new Cast."), cast_png_img, cast_sm_png_img)
{
}
pgCollection *pgCastFactory::CreateCollection(pgObject *obj)
{
return new pgCastCollection(GetCollectionFactory(), (pgDatabase *)obj);
}
pgCastFactory castFactory;
static pgaCollectionFactory cf(&castFactory, __("Casts"), casts_png_img);
|