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
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// pgExtension.cpp - Extension class
//
//////////////////////////////////////////////////////////////////////////
// wxWindows headers
#include <wx/wx.h>
// App headers
#include "pgAdmin3.h"
#include "utils/misc.h"
#include "schema/pgExtension.h"
pgExtension::pgExtension(const wxString &newName)
: pgDatabaseObject(extensionFactory, newName)
{
}
wxString pgExtension::GetTranslatedMessage(int kindOfMessage) const
{
wxString message = wxEmptyString;
switch (kindOfMessage)
{
case RETRIEVINGDETAILS:
message = _("Retrieving details on extension");
message += wxT(" ") + GetName();
break;
case REFRESHINGDETAILS:
message = _("Refreshing extension");
message += wxT(" ") + GetName();
break;
case DROPINCLUDINGDEPS:
message = wxString::Format(_("Are you sure you wish to drop extension \"%s\" including all objects that depend on it?"),
GetFullIdentifier().c_str());
break;
case DROPEXCLUDINGDEPS:
message = wxString::Format(_("Are you sure you wish to drop extension \"%s\"?"),
GetFullIdentifier().c_str());
break;
case DROPCASCADETITLE:
message = _("Drop extension cascaded?");
break;
case DROPTITLE:
message = _("Drop extension?");
break;
case PROPERTIESREPORT:
message = _("Extension properties report");
message += wxT(" - ") + GetName();
break;
case PROPERTIES:
message = _("Extension properties");
break;
case DDLREPORT:
message = _("Extension DDL report");
message += wxT(" - ") + GetName();
break;
case DDL:
message = _("Extension DDL");
break;
case DEPENDENCIESREPORT:
message = _("Extension dependencies report");
message += wxT(" - ") + GetName();
break;
case DEPENDENCIES:
message = _("Extension dependencies");
break;
case DEPENDENTSREPORT:
message = _("Extension dependents report");
message += wxT(" - ") + GetName();
break;
case DEPENDENTS:
message = _("Extension dependents");
break;
}
return message;
}
bool pgExtension::DropObject(wxFrame *frame, ctlTree *browser, bool cascaded)
{
wxString sql = wxT("DROP EXTENSION ") + GetQuotedIdentifier();
if (cascaded)
sql += wxT(" CASCADE");
return GetDatabase()->ExecuteVoid(sql);
}
wxString pgExtension::GetSql(ctlTree *browser)
{
if (sql.IsNull())
{
sql = wxT("-- Extension: ") + GetQuotedIdentifier() + wxT("\n\n")
+ wxT("-- DROP EXTENSION ") + GetQuotedIdentifier() + wxT(";")
+ wxT("\n\n CREATE EXTENSION ") + GetName();
if (!GetSchemaStr().IsEmpty())
sql += wxT("\n SCHEMA ") + qtIdent(GetSchemaStr());
if (!GetVersion().IsEmpty())
sql += wxT("\n VERSION ") + qtIdent(GetVersion());
sql += wxT(";\n");
}
return sql;
}
void pgExtension::ShowTreeDetail(ctlTree *browser, frmMain *form, ctlListView *properties, ctlSQLBox *sqlPane)
{
if (properties)
{
CreateListColumns(properties);
properties->AppendItem(_("Name"), GetName());
properties->AppendItem(_("OID"), GetOid());
properties->AppendItem(_("Owner"), GetOwner());
properties->AppendItem(_("Schema"), GetSchemaStr());
properties->AppendYesNoItem(_("Relocatable?"), GetIsRelocatable());
properties->AppendItem(_("Version"), GetVersion());
properties->AppendItem(_("Comment"), firstLineOnly(GetComment()));
}
}
pgObject *pgExtension::Refresh(ctlTree *browser, const wxTreeItemId item)
{
pgObject *language = 0;
pgCollection *coll = browser->GetParentCollection(item);
if (coll)
language = extensionFactory.CreateObjects(coll, 0, wxT("\n AND x.oid=") + GetOidStr());
return language;
}
pgObject *pgExtensionFactory::CreateObjects(pgCollection *collection, ctlTree *browser, const wxString &restriction)
{
wxString sql;
pgExtension *extension = 0;
sql = wxT("select x.oid, pg_get_userbyid(extowner) AS owner, x.extname, n.nspname, x.extrelocatable, x.extversion, e.comment")
wxT(" FROM pg_extension x\n")
wxT(" JOIN pg_namespace n on x.extnamespace=n.oid\n")
wxT(" join pg_available_extensions() e(name, default_version, comment) ON x.extname=e.name\n")
+ restriction + wxT("\n")
wxT(" ORDER BY x.extname");
pgSet *extensions = collection->GetDatabase()->ExecuteSet(sql);
if (extensions)
{
while (!extensions->Eof())
{
extension = new pgExtension(extensions->GetVal(wxT("extname")));
extension->iSetDatabase(collection->GetDatabase());
extension->iSetOid(extensions->GetOid(wxT("oid")));
extension->iSetOwner(extensions->GetVal(wxT("owner")));
extension->iSetSchemaStr(extensions->GetVal(wxT("nspname")));
extension->iSetIsRelocatable(extensions->GetBool(wxT("extrelocatable")));
extension->iSetVersion(extensions->GetVal(wxT("extversion")));
extension->iSetComment(extensions->GetVal(wxT("comment")));
if (browser)
{
browser->AppendObject(collection, extension);
extensions->MoveNext();
}
else
break;
}
delete extensions;
}
return extension;
}
/////////////////////////////
pgExtensionCollection::pgExtensionCollection(pgaFactory *factory, pgDatabase *db)
: pgDatabaseObjCollection(factory, db)
{
}
wxString pgExtensionCollection::GetTranslatedMessage(int kindOfMessage) const
{
wxString message = wxEmptyString;
switch (kindOfMessage)
{
case RETRIEVINGDETAILS:
message = _("Retrieving details on extensions");
break;
case REFRESHINGDETAILS:
message = _("Refreshing extensions");
break;
case OBJECTSLISTREPORT:
message = _("Extensions list report");
break;
}
return message;
}
///////////////////////////////////////////////////
#include "images/extension.pngc"
#include "images/extension-sm.pngc"
#include "images/extensions.pngc"
pgExtensionFactory::pgExtensionFactory()
: pgDatabaseObjFactory(__("Extension"), __("New Extension..."), __("Create a new Extension."), extension_png_img, extension_sm_png_img)
{
}
pgCollection *pgExtensionFactory::CreateCollection(pgObject *obj)
{
return new pgExtensionCollection(GetCollectionFactory(), (pgDatabase *)obj);
}
pgExtensionFactory extensionFactory;
static pgaCollectionFactory cf(&extensionFactory, __("Extensions"), extensions_png_img);
|