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
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// slListen.cpp PostgreSQL Slony-I listen
//
//////////////////////////////////////////////////////////////////////////
// wxWindows headers
#include <wx/wx.h>
// App headers
#include "pgAdmin3.h"
#include "utils/misc.h"
#include "schema/pgObject.h"
#include "slony/slListen.h"
#include "slony/slNode.h"
#include "slony/slCluster.h"
#include "frm/frmMain.h"
slListen::slListen(slNode *n, const wxString &newName)
: slNodeObject(n, listenFactory, newName)
{
}
bool slListen::DropObject(wxFrame *frame, ctlTree *browser, bool cascaded)
{
return GetDatabase()->ExecuteVoid(
wxT("SELECT ") + GetCluster()->GetSchemaPrefix()
+ wxT("droplisten(") + NumToStr(GetSlId())
+ wxT(", ") + NumToStr(GetProviderId())
+ wxT(", ") + NumToStr(GetNode()->GetSlId())
+ wxT(");\n"));
}
wxString slListen::GetTranslatedMessage(int kindOfMessage) const
{
wxString message = wxEmptyString;
switch (kindOfMessage)
{
case RETRIEVINGDETAILS:
message = _("Retrieving details on Slony listen");
message += wxT(" ") + GetName();
break;
case REFRESHINGDETAILS:
message = _("Refreshing Slony listen");
message += wxT(" ") + GetName();
break;
case DROPINCLUDINGDEPS:
message = wxString::Format(_("Are you sure you wish to drop Slony listen \"%s\" including all objects that depend on it?"),
GetFullIdentifier().c_str());
break;
case DROPEXCLUDINGDEPS:
message = wxString::Format(_("Are you sure you wish to drop Slony listen \"%s\"?"),
GetFullIdentifier().c_str());
break;
case DROPCASCADETITLE:
message = _("Drop Slony listen cascaded?");
break;
case DROPTITLE:
message = _("Drop Slony listen?");
break;
case PROPERTIESREPORT:
message = _("Slony listen properties report");
message += wxT(" - ") + GetName();
break;
case PROPERTIES:
message = _("Slony listen properties");
break;
case DDLREPORT:
message = _("Slony listen DDL report");
message += wxT(" - ") + GetName();
break;
case DDL:
message = _("Slony listen DDL");
break;
case DEPENDENCIESREPORT:
message = _("Slony listen dependencies report");
message += wxT(" - ") + GetName();
break;
case DEPENDENCIES:
message = _("Slony listen dependencies");
break;
case DEPENDENTSREPORT:
message = _("Slony listen dependents report");
message += wxT(" - ") + GetName();
break;
case DEPENDENTS:
message = _("Slony listen dependents");
break;
}
return message;
}
wxString slListen::GetSql(ctlTree *browser)
{
if (sql.IsNull())
{
sql = wxT("-- Node will listen to ") + GetProviderName()
+ wxT(" for replication data from ") + GetOriginName() + wxT(".\n\n")
wxT("SELECT ") + GetCluster()->GetSchemaPrefix()
+ wxT("storelisten(") + NumToStr(GetSlId())
+ wxT(", ") + NumToStr(GetProviderId())
+ wxT(", ") + NumToStr(GetNode()->GetSlId())
+ wxT(");\n");
}
return sql;
}
void slListen::ShowTreeDetail(ctlTree *browser, frmMain *form, ctlListView *properties, ctlSQLBox *sqlPane)
{
if (!expandedKids)
{
expandedKids = true;
browser->RemoveDummyChild(this);
}
if (properties)
{
CreateListColumns(properties);
properties->AppendItem(_("Origin"), GetOriginName());
properties->AppendItem(_("Origin ID"), GetSlId());
properties->AppendItem(_("Provider"), GetProviderName());
properties->AppendItem(_("Provider ID"), GetProviderId());
}
}
pgObject *slListen::Refresh(ctlTree *browser, const wxTreeItemId item)
{
pgObject *listen = 0;
pgCollection *coll = browser->GetParentCollection(item);
if (coll)
listen = listenFactory.CreateObjects(coll, 0,
wxT(" WHERE li_origin =") + NumToStr(GetSlId()) +
wxT(" AND li_provider = ") + NumToStr(GetProviderId()) +
wxT(" AND li_receiver = ") + NumToStr(GetNode()->GetSlId()) +
wxT("\n"));
return listen;
}
pgObject *slListenFactory::CreateObjects(pgCollection *coll, ctlTree *browser, const wxString &restr)
{
slNodeObjCollection *collection = (slNodeObjCollection *)coll;
slListen *listen = 0;
wxString restriction;
if (restr.IsEmpty())
restriction = wxT(" WHERE li_receiver = ") + NumToStr(collection->GetSlId());
else
restriction = restr;
pgSet *listens = collection->GetDatabase()->ExecuteSet(
wxT("SELECT li_origin, li_provider, li_receiver, no.no_comment as origin_name, np.no_comment as provider_name\n")
wxT(" FROM ") + collection->GetCluster()->GetSchemaPrefix() + wxT("sl_listen\n")
wxT(" JOIN ") + collection->GetCluster()->GetSchemaPrefix() + wxT("sl_node no ON no.no_id=li_origin\n")
wxT(" JOIN ") + collection->GetCluster()->GetSchemaPrefix() + wxT("sl_node np ON np.no_id=li_provider\n")
+ restriction +
wxT(" ORDER BY li_origin, li_provider"));
if (listens)
{
while (!listens->Eof())
{
wxString orgName = listens->GetVal(wxT("origin_name")).BeforeFirst('\n');
wxString provName = listens->GetVal(wxT("provider_name")).BeforeFirst('\n');
listen = new slListen(collection->GetNode(), orgName + wxT(" (") + provName + wxT(")"));
listen->iSetSlId(listens->GetLong(wxT("li_origin")));
listen->iSetProviderId(listens->GetLong(wxT("li_provider")));
listen->iSetOriginName(orgName);
listen->iSetProviderName(provName);
if (browser)
{
browser->AppendObject(collection, listen);
listens->MoveNext();
}
else
break;
}
delete listens;
}
return listen;
}
wxString slListenCollection::GetTranslatedMessage(int kindOfMessage) const
{
wxString message = wxEmptyString;
switch (kindOfMessage)
{
case RETRIEVINGDETAILS:
message = _("Retrieving details on Slony listens");
break;
case REFRESHINGDETAILS:
message = _("Refreshing Slony listens");
break;
case OBJECTSLISTREPORT:
message = _("Slony listens list report");
break;
}
return message;
}
///////////////////////////////////////////////////
#include "images/sllisten.pngc"
#include "images/sllistens.pngc"
slListenFactory::slListenFactory()
: slNodeObjFactory(__("Listen"), __("New Listen"), __("Create a new Listen."), sllisten_png_img)
{
metaType = SLM_LISTEN;
}
pgCollection *slListenFactory::CreateCollection(pgObject *obj)
{
return new slListenCollection(GetCollectionFactory(), (slNode *)obj);
}
slListenFactory listenFactory;
static pgaCollectionFactory cf(&listenFactory, __("listens"), sllistens_png_img);
|