pgadmin3/dlg/dlgSearchObject.cpp
lsv 7f54463cec fix issue #47
1. Добавлена проверка пустого имени файла перед удалением (frmRestore).
2. Проблема в неверном втором аргументе функции pg_get_expr.
При наличи сложного DEFUALT выражения для колонки выводилось ошибка при выполнении функции.
Исправлено в dlgSearchObject, frmEditGrid, ShowDependencies.
2024-10-08 16:49:01 +05:00

976 lines
46 KiB
C++

//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// dlgSearchObject.h - Search dialogue
//
//////////////////////////////////////////////////////////////////////////
//AVANT DE LE COMMITER, IL FAUT AJOUTER LA MODIF DU PROJET VS2008
// App headers
#include "pgAdmin3.h"
#include "frm/frmMain.h"
#include "dlg/dlgSearchObject.h"
#include "utils/sysSettings.h"
#include "utils/misc.h"
#include "ctl/ctlListView.h"
#define txtPattern CTRL_TEXT("txtPattern")
#define cbType CTRL_COMBOBOX("cbType")
#define cbSchema CTRL_COMBOBOX("cbSchema")
#define lcResults CTRL_LISTCTRL("lcResults")
#define btnSearch CTRL_BUTTON("btnSearch")
#define chkNames CTRL_CHECKBOX("chkNames")
#define chkDefinitions CTRL_CHECKBOX("chkDefinitions")
#define chkComments CTRL_CHECKBOX("chkComments")
BEGIN_EVENT_TABLE(dlgSearchObject, pgDialog)
EVT_BUTTON(wxID_HELP, dlgSearchObject::OnHelp)
EVT_BUTTON(XRCID("btnSearch"), dlgSearchObject::OnSearch)
EVT_BUTTON(wxID_CANCEL, dlgSearchObject::OnCancel)
EVT_TEXT(XRCID("txtPattern"), dlgSearchObject::OnChange)
EVT_COMBOBOX(XRCID("cbType"), dlgSearchObject::OnChange)
EVT_LIST_ITEM_SELECTED(XRCID("lcResults"), dlgSearchObject::OnSelSearchResult)
EVT_CHECKBOX(XRCID("chkNames"), dlgSearchObject::OnChange)
EVT_CHECKBOX(XRCID("chkDefinitions"), dlgSearchObject::OnChange)
EVT_CHECKBOX(XRCID("chkComments"), dlgSearchObject::OnChange)
END_EVENT_TABLE()
dlgSearchObject::dlgSearchObject(frmMain *p, pgDatabase *db, pgObject *obj)
{
parent = p;
header = wxT("");
currentdb = db;
SetFont(settings->GetSystemFont());
LoadResource(p, wxT("dlgSearchObject"));
statusBar = XRCCTRL(*this, "unkStatusBar", wxStatusBar);
// Icon
appearanceFactory->SetIcons(this);
RestorePosition();
ToggleBtnSearch(false);
lcResults->InsertColumn(0, _("Type"));
lcResults->InsertColumn(1, _("Name"));
lcResults->InsertColumn(2, _("Path"));
// Mapping table between local language and english,
// because in SQL we're using only english and translate it later
// to the local language.
aMap[_("All types")] = wxT("All types");
aMap[_("Schemas")] = wxT("Schemas");
aMap[_("Tables")] = wxT("Tables");
aMap[_("Columns")] = wxT("Columns");
aMap[_("Triggers")] = wxT("Triggers");
aMap[_("Views")] = wxT("Views");
aMap[_("Rules")] = wxT("Rules");
aMap[_("Indexes")] = wxT("Indexes");
aMap[_("Functions")] = wxT("Functions");
aMap[_("Procedures")] = wxT("Procedures");
aMap[_("Aggregates")] = wxT("Aggregates");
aMap[_("Trigger Functions")] = wxT("Trigger Functions");
aMap[_("Constraints")] = wxT("Constraints");
aMap[_("Sequences")] = wxT("Sequences");
aMap[_("Types")] = wxT("Types");
aMap[_("Domains")] = wxT("Domains");
aMap[_("Languages")] = wxT("Languages");
aMap[_("Conversions")] = wxT("Conversions");
aMap[_("Casts")] = wxT("Casts");
aMap[_("Login Roles")] = wxT("Login Roles");
aMap[_("Group Roles")] = wxT("Group Roles");
aMap[_("FTS Configurations")] = wxT("FTS Configurations");
aMap[_("FTS Dictionaries")] = wxT("FTS Dictionaries");
aMap[_("FTS Parsers")] = wxT("FTS Parsers");
aMap[_("FTS Templates")] = wxT("FTS Templates");
aMap[_("Foreign Data Wrappers")] = wxT("Foreign Data Wrappers");
aMap[_("Foreign Servers")] = wxT("Foreign Servers");
aMap[_("Foreign Tables")] = wxT("Foreign Tables");
aMap[_("User Mappings")] = wxT("User Mappings");
aMap[_("Operators")] = wxT("Operators");
aMap[_("Operator Classes")] = wxT("Operator Classes");
aMap[_("Operator Families")] = wxT("Operator Families");
aMap[_("Extensions")] = wxT("Extensions");
aMap[_("Collations")] = wxT("Collations");
cbType->Clear();
cbType->Append(_("All types"));
cbType->Append(_("Schemas"));
cbType->Append(_("Tables"));
cbType->Append(_("Columns"));
cbType->Append(_("Triggers"));
cbType->Append(_("Views"));
cbType->Append(_("Rules"));
cbType->Append(_("Indexes"));
cbType->Append(_("Functions"));
cbType->Append(_("Aggregates"));
cbType->Append(_("Trigger Functions"));
cbType->Append(_("Constraints"));
cbType->Append(_("Sequences"));
cbType->Append(_("Types"));
cbType->Append(_("Languages"));
cbType->Append(_("Domains"));
cbType->Append(_("Conversions"));
cbType->Append(_("Casts"));
cbType->Append(_("Login Roles"));
cbType->Append(_("Group Roles"));
cbType->Append(_("FTS Configurations"));
cbType->Append(_("FTS Dictionaries"));
cbType->Append(_("FTS Parsers"));
cbType->Append(_("FTS Templates"));
if(currentdb->BackendMinimumVersion(8, 4))
{
cbType->Append(_("Foreign Data Wrappers"));
cbType->Append(_("Foreign Servers"));
cbType->Append(_("User Mappings"));
}
if(currentdb->BackendMinimumVersion(9, 1))
{
cbType->Append(_("Foreign Tables"));
}
cbType->Append(_("Operators"));
cbType->Append(_("Operator Classes"));
cbType->Append(_("Operator Families"));
if(currentdb->BackendMinimumVersion(9, 1))
{
cbType->Append(_("Extensions"));
cbType->Append(_("Collations"));
}
if(currentdb->BackendMinimumVersion(10, 0))
{
cbType->Append(_("Procedures"));
}
cbSchema->Clear();
cbSchema->Append(_("All schemas"));
cbSchema->Append(_("My schemas"));
if (obj->GetSchema())
{
if (obj->GetSchema()->GetSchema())
currentSchema = obj->GetSchema()->GetSchema()->GetName();
else
currentSchema = obj->GetSchema()->GetName();
}
else if (obj->GetMetaType() == PGM_SCHEMA && !obj->IsCollection())
currentSchema = obj->GetName();
else
currentSchema = wxEmptyString;
if (!currentSchema.IsEmpty())
cbSchemaIdxCurrent = cbSchema->Append(wxString::Format(_("Current schema (%s)"), currentSchema.c_str()));
wxString sql;
sql = wxT("SELECT nsp.nspname")
wxT(" FROM pg_namespace nsp\n");
if (!settings->GetShowSystemObjects())
{
if (currentdb->BackendMinimumVersion(8, 1))
sql += wxT(" WHERE nspname NOT LIKE E'pg\\\\_temp\\\\_%' AND nspname NOT LIKE E'pg\\\\_toast%'");
else
sql += wxT(" WHERE nspname NOT LIKE 'pg\\\\_temp\\\\_%' AND nspname NOT LIKE 'pg\\\\_toast%'");
}
sql += wxT(" ORDER BY nspname");
pgSet *set = currentdb->GetConnection()->ExecuteSet(sql);
if(set)
{
while(!set->Eof())
{
cbSchema->Append(set->GetVal(wxT("nspname")));
set->MoveNext();
}
delete set;
}
RestoreSettings();
txtPattern->SetFocus();
}
dlgSearchObject::~dlgSearchObject()
{
SaveSettings();
SavePosition();
}
void dlgSearchObject::SaveSettings()
{
settings->Write(wxT("SearchObject/Pattern"), txtPattern->GetValue());
settings->Write(wxT("SearchObject/Type"), aMap[cbType->GetValue()]);
settings->Write(wxT("SearchObject/Schema"), cbSchema->GetValue());
settings->WriteBool(wxT("SearchObject/Names"), chkNames->GetValue());
settings->WriteBool(wxT("SearchObject/Definitions"), chkDefinitions->GetValue());
settings->WriteBool(wxT("SearchObject/Comments"), chkComments->GetValue());
}
wxString dlgSearchObject::getMapKeyByValue(wxString search_value)
{
wxString key = wxEmptyString;
LngMapping::iterator it;
for (it = aMap.begin(); it != aMap.end(); ++it)
{
if (search_value.IsSameAs(it->second))
{
key = it->first;
break;
}
}
return key;
}
void dlgSearchObject::RestoreSettings()
{
wxString val, mapkey;
bool bVal;
// Pattern
settings->Read(wxT("SearchObject/Pattern"), &val, wxEmptyString);
txtPattern->SetValue(val);
// Type
settings->Read(wxT("SearchObject/Type"), &val, wxT("All types"));
mapkey = getMapKeyByValue(val);
if (cbType->FindString(mapkey, true) == wxNOT_FOUND)
cbType->SetValue(getMapKeyByValue(wxT("All types")));
else
cbType->SetValue(mapkey);
// Schema
settings->Read(wxT("SearchObject/Schema"), &val, wxT("All schemas"));
if (cbSchema->FindString(val, true) == wxNOT_FOUND)
cbSchema->SetValue(wxT("All schemas"));
else
cbSchema->SetValue(val);
// names
settings->Read(wxT("SearchObject/Names"), &bVal, true);
chkNames->SetValue(bVal);
// definitions
settings->Read(wxT("SearchObject/Definitions"), &bVal, false);
chkDefinitions->SetValue(bVal);
// comments
settings->Read(wxT("SearchObject/Comments"), &bVal, false);
chkComments->SetValue(bVal);
}
void dlgSearchObject::OnHelp(wxCommandEvent &ev)
{
DisplayHelp(wxT("search_object"), HELP_PGADMIN);
}
void dlgSearchObject::OnSelSearchResult(wxListEvent &ev)
{
long row_number = ev.GetIndex();
if(lcResults->GetItemTextColour(row_number) == wxColour(128, 128, 128))
{
/* Result type is not enabled in settings, so we don't search for it in the tree */
return;
}
//Taken from: http://wiki.wxwidgets.org/WxListCtrl#Get_the_String_Contents_of_a_.22cell.22_in_a_LC_REPORT_wxListCtrl
wxListItem row_info;
wxString path;
// Set what row it is (m_itemId is a member of the regular wxListCtrl class)
row_info.m_itemId = row_number;
// Set what column of that row we want to query for information.
row_info.m_col = 2;
// Set text mask
row_info.m_mask = wxLIST_MASK_TEXT;
// Get the info and store it in row_info variable.
lcResults->GetItem(row_info);
// Extract the text out that cell
path = row_info.m_text;
if(!parent->SetCurrentNode(parent->GetBrowser()->GetRootItem(), path))
{
wxMessageBox(_("The specified object couldn't be found in the tree."));
}
}
void dlgSearchObject::OnChange(wxCommandEvent &ev)
{
ToggleBtnSearch(true);
}
void dlgSearchObject::ToggleBtnSearch(bool enable)
{
if(enable &&
/* When someone searches for operators, the limit of 3 characters is ignored */
(aMap[cbType->GetValue()] == wxT("Operators") || txtPattern->GetValue().Length() >= 3) &&
// At least one search mode enabled
(chkNames->GetValue() || chkDefinitions->GetValue() || chkComments->GetValue()))
{
btnSearch->Enable();
}
else
btnSearch->Disable();
}
void dlgSearchObject::OnSearch(wxCommandEvent &ev)
{
if (!(chkNames->GetValue() || chkDefinitions->GetValue() || chkComments->GetValue()))
return; // should not happen
wxBusyCursor wait;
ToggleBtnSearch(false);
if (statusBar)
statusBar->SetStatusText(_("Searching..."));
wxString txtPatternStr;
if (txtPattern->GetValue().Contains(wxT("%")))
txtPatternStr = currentdb->GetConnection()->qtDbString(txtPattern->GetValue().Lower());
else
txtPatternStr = currentdb->GetConnection()->qtDbString(wxT("%") + txtPattern->GetValue().Lower() + wxT("%"));
/*
Adding objects:
Create a sql statement which lists all objects of the specified type and add it to the inner statement with an union.
We need four columns: type, objectname, path and nspname (schema name). If object is schemaless, set nspname to NULL.
Parts of the path which has to be translated to the local langauge (because of tree path) must begin with a colon.
Append the type to the combobox and the mapping table in the constructor. */
wxString databasePath = parent->GetNodePath(currentdb->GetDatabase()->GetId());
wxString searchSQL = wxT("SELECT * FROM ( ");
bool nextMode = false;
// search names
if (chkNames->GetValue())
{
if (nextMode)
searchSQL += wxT("UNION \n");
nextMode = true;
searchSQL += wxT("SELECT * FROM ( ")
wxT(" SELECT ")
wxT(" CASE ")
wxT(" WHEN c.relkind = 'r' THEN 'Tables' ")
wxT(" WHEN c.relkind = 'S' THEN 'Sequences' ")
wxT(" WHEN c.relkind IN ('v','m') THEN 'Views' ")
wxT(" ELSE 'should not happen' ")
wxT(" END AS type, c.relname AS objectname, ")
wxT(" ':Schemas/' || n.nspname || '/' || ")
wxT(" CASE ")
wxT(" WHEN c.relkind = 'r' THEN ':Tables' ")
wxT(" WHEN c.relkind = 'S' THEN ':Sequences' ")
wxT(" WHEN c.relkind IN ('v','m') THEN ':Views' ")
wxT(" ELSE 'should not happen' ")
wxT(" END || '/' || c.relname AS path, n.nspname ")
wxT(" FROM pg_class c ")
wxT(" LEFT JOIN pg_namespace n ON n.oid = c.relnamespace ")
wxT(" WHERE c.relkind in ('r','S','v','m') ")
wxT(" UNION ")
wxT(" SELECT 'Indexes', cls.relname, ':Schemas/' || n.nspname || '/:Tables/' || tab.relname || '/:Indexes/' || cls.relname, n.nspname ")
wxT(" FROM pg_index idx ")
wxT(" JOIN pg_class cls ON cls.oid=indexrelid ")
wxT(" JOIN pg_class tab ON tab.oid=indrelid ")
wxT(" JOIN pg_namespace n ON n.oid=tab.relnamespace ")
wxT(" LEFT JOIN pg_depend dep ON (dep.classid = cls.tableoid AND dep.objid = cls.oid AND dep.refobjsubid = '0' AND dep.refclassid=(SELECT oid FROM pg_class WHERE relname='pg_constraint') AND dep.deptype='i') ")
wxT(" LEFT OUTER JOIN pg_constraint con ON (con.tableoid = dep.refclassid AND con.oid = dep.refobjid) ")
wxT(" LEFT OUTER JOIN pg_description des ON des.objoid=cls.oid ")
wxT(" LEFT OUTER JOIN pg_description desp ON (desp.objoid=con.oid AND desp.objsubid = 0) ")
wxT(" WHERE contype IS NULL ")
wxT(" UNION ")
wxT(" SELECT CASE WHEN t.typname = 'trigger' THEN 'Trigger Functions' ELSE case when p.prokind='p' then 'Procedures' else 'Functions' end END AS type, p.proname, ")
wxT(" ':Schemas/' || n.nspname || '/' || case when t.typname = 'trigger' then ':Trigger Functions' else case when p.prokind='p' then ':Procedures' else ':Functions' end end || '/' || p.proname, n.nspname ")
wxT(" from pg_proc p ")
wxT(" left join pg_namespace n on p.pronamespace = n.oid ")
wxT(" left join pg_type t on p.prorettype = t.oid ")
wxT(" union ")
wxT(" select 'Schemas', nspname, ':Schemas/' || nspname, nspname from pg_namespace ")
wxT(" union ")
wxT(" select 'Columns', a.attname, ")
wxT(" ':Schemas/' || n.nspname || '/' || ")
wxT(" case ")
wxT(" when t.relkind = 'r' then ':Tables' ")
wxT(" when t.relkind = 'S' then ':Sequences' ")
wxT(" when t.relkind in ('v','m') then ':Views' ")
wxT(" else 'should not happen' ")
wxT(" end || '/' || t.relname || '/:Columns/' || a.attname AS path, n.nspname ")
wxT(" from pg_attribute a ")
wxT(" inner join pg_class t on a.attrelid = t.oid and t.relkind in ('r','v','m') ")
wxT(" left join pg_namespace n on t.relnamespace = n.oid where a.attnum > 0 ")
wxT(" union ")
wxT(" select 'Constraints', case when tf.relname is null then c.conname else c.conname || ' -> ' || tf.relname end, ':Schemas/' || n.nspname||'/:Tables/'||t.relname||'/:Constraints/'||case when tf.relname is null then c.conname else c.conname || ' -> ' || tf.relname end, n.nspname from pg_constraint c ")
wxT(" left join pg_class t on c.conrelid = t.oid ")
wxT(" left join pg_class tf on c.confrelid = tf.oid ")
wxT(" left join pg_namespace n on t.relnamespace = n.oid ")
wxT(" union ")
wxT(" select 'Rules', r.rulename, ':Schemas/' || n.nspname||case when t.relkind in ('v','m') then '/:Views/' else '/:Tables/' end||t.relname||'/:Rules/'|| r.rulename, n.nspname from pg_rewrite r ")
wxT(" left join pg_class t on r.ev_class = t.oid ")
wxT(" left join pg_namespace n on t.relnamespace = n.oid ")
wxT(" union ")
wxT(" select 'Triggers', tr.tgname, ':Schemas/' || n.nspname||case when t.relkind in ('v','m') then '/:Views/' else '/:Tables/' end||t.relname || '/:Triggers/' || tr.tgname, n.nspname from pg_trigger tr ")
wxT(" left join pg_class t on tr.tgrelid = t.oid ")
wxT(" left join pg_namespace n on t.relnamespace = n.oid ")
wxT(" where ");
if(currentdb->BackendMinimumVersion(9, 0))
searchSQL += wxT(" tr.tgisinternal = false ");
else
searchSQL += wxT(" tr.tgisconstraint = false ");
searchSQL += wxT(" union ")
wxT(" SELECT 'Types', t.typname, ':Schemas/' || n.nspname || '/:Types/' || t.typname, n.nspname ")
wxT(" FROM pg_type t ")
wxT(" LEFT OUTER JOIN pg_type e ON e.oid=t.typelem ")
wxT(" LEFT OUTER JOIN pg_class ct ON ct.oid=t.typrelid AND ct.relkind <> 'c' ")
wxT(" LEFT OUTER JOIN pg_namespace n on t.typnamespace = n.oid ")
wxT(" WHERE t.typtype != 'd' AND t.typname NOT LIKE E'\\\\_%' ");
if (!settings->GetShowSystemObjects())
searchSQL += wxT(" AND ct.oid IS NULL\n");
searchSQL += wxT(" union ")
wxT(" SELECT 'Conversions', co.conname, ':Schemas/' || n.nspname || '/:Conversions/' || co.conname, n.nspname ")
wxT(" FROM pg_conversion co ")
wxT(" JOIN pg_namespace n ON n.oid=co.connamespace ")
wxT(" LEFT OUTER JOIN pg_description des ON des.objoid=co.oid AND des.objsubid=0 ")
wxT(" union ")
wxT(" SELECT 'Casts', format_type(st.oid,NULL) ||'->'|| format_type(tt.oid,tt.typtypmod), ':Casts/' || format_type(st.oid,NULL) ||'->'|| format_type(tt.oid,tt.typtypmod), NULL as nspname ")
wxT(" FROM pg_cast ca ")
wxT(" JOIN pg_type st ON st.oid=castsource ")
wxT(" JOIN pg_type tt ON tt.oid=casttarget ")
wxT(" union ")
wxT(" SELECT 'Languages', lanname, ':Languages/' || lanname, NULL as nspname ")
wxT(" FROM pg_language lan ")
wxT(" WHERE lanispl IS TRUE ")
wxT(" union ")
wxT(" SELECT 'FTS Configurations', cfg.cfgname, ':Schemas/' || n.nspname || '/:FTS Configurations/' || cfg.cfgname, n.nspname ")
wxT(" FROM pg_ts_config cfg ")
wxT(" left join pg_namespace n on cfg.cfgnamespace = n.oid ")
wxT(" union ")
wxT(" SELECT 'FTS Dictionaries', dict.dictname, ':Schemas/' || ns.nspname || '/:FTS Dictionaries/' || dict.dictname, ns.nspname ")
wxT(" FROM pg_ts_dict dict ")
wxT(" left join pg_namespace ns on dict.dictnamespace = ns.oid ")
wxT(" union ")
wxT(" SELECT 'FTS Parsers', prs.prsname, ':Schemas/' || ns.nspname || '/:FTS Parsers/' || prs.prsname, ns.nspname ")
wxT(" FROM pg_ts_parser prs ")
wxT(" left join pg_namespace ns on prs.prsnamespace = ns.oid ")
wxT(" union ")
wxT(" SELECT 'FTS Templates', tmpl.tmplname, ':Schemas/' || ns.nspname || '/:FTS Templates/' || tmpl.tmplname, ns.nspname ")
wxT(" FROM pg_ts_template tmpl ")
wxT(" left join pg_namespace ns on tmpl.tmplnamespace = ns.oid ")
wxT(" union ")
wxT(" select 'Domains', t.typname, ':Schemas/' || n.nspname || '/:Domains/' || t.typname, n.nspname from pg_type t ")
wxT(" inner join pg_namespace n on t.typnamespace = n.oid ")
wxT(" where t.typtype = 'd' ")
wxT(" union ")
wxT(" select 'Aggregates', pr.proname, ':Schemas/' || ns.nspname || '/:Aggregates/' || pr.proname , ns.nspname from pg_catalog.pg_aggregate ag ")
wxT(" inner join pg_proc pr on ag.aggfnoid = pr.oid ")
wxT(" left join pg_namespace ns on pr.pronamespace = ns.oid ")
wxT(" union ")
wxT(" select case when rolcanlogin = true then 'Login Roles' else 'Group Roles' end, rolname, case when rolcanlogin = true then ':Login Roles' else ':Group Roles' end || '/' || rolname, NULL as nspname ")
wxT(" from pg_roles ")
wxT(" union ")
wxT(" select 'Tablespaces', spcname, ':Tablespaces/'||spcname, NULL as nspname from pg_tablespace ")
wxT(" union ")
wxT(" SELECT 'Operators', op.oprname, ':Schemas/' || ns.nspname || '/:Operators/' || op.oprname, ns.nspname ")
wxT(" FROM pg_operator op ")
wxT(" left join pg_namespace ns on op.oprnamespace = ns.oid ")
wxT(" union ")
wxT(" SELECT 'Operator Classes', op.opcname, ':Schemas/' || ns.nspname || '/:Operator Classes/' || op.opcname, ns.nspname ")
wxT(" FROM pg_opclass op ")
wxT(" left join pg_namespace ns on op.opcnamespace = ns.oid ")
wxT(" union ")
wxT(" SELECT 'Operator Families', opf.opfname, ':Schemas/' || ns.nspname || '/:Operator Families/' || opf.opfname, ns.nspname ")
wxT(" FROM pg_opfamily opf ")
wxT(" left join pg_namespace ns on opf.opfnamespace = ns.oid ");
if(currentdb->BackendMinimumVersion(8, 4) && currentdb->GetConnection()->IsSuperuser())
{
searchSQL += wxT(" union ")
wxT(" select 'Foreign Data Wrappers', fdwname, ':Foreign Data Wrappers/' || fdwname, NULL as nspname from pg_foreign_data_wrapper ")
wxT(" union ")
wxT(" select 'Foreign Server', sr.srvname, ':Foreign Data Wrappers/' || fdw.fdwname || '/:Foreign Servers/' || sr.srvname, NULL as nspname from pg_foreign_server sr ")
wxT(" inner join pg_foreign_data_wrapper fdw on sr.srvfdw = fdw.oid ")
wxT(" union ")
wxT(" select 'User Mappings', ro.rolname, ':Foreign Data Wrappers/' || fdw.fdwname || '/:Foreign Servers/' || sr.srvname || '/:User Mappings/' || ro.rolname, NULL as nspname from pg_user_mapping um ")
wxT(" inner join pg_roles ro on um.umuser = ro.oid ")
wxT(" inner join pg_foreign_server sr on um.umserver = sr.oid ")
wxT(" inner join pg_foreign_data_wrapper fdw on sr.srvfdw = fdw.oid ");
}
if(currentdb->BackendMinimumVersion(9, 1))
{
searchSQL += wxT(" union ")
wxT(" select 'Foreign Tables', c.relname, ':Schemas/' || ns.nspname || '/:Foreign Tables/' || c.relname, ns.nspname from pg_foreign_table ft ")
wxT(" inner join pg_class c on ft.ftrelid = c.oid ")
wxT(" inner join pg_namespace ns on c.relnamespace = ns.oid ")
wxT(" union ")
wxT(" select 'Extensions', x.extname, ':Extensions/' || x.extname, NULL as nspname ")
wxT(" FROM pg_extension x ")
wxT(" JOIN pg_namespace n on x.extnamespace=n.oid ")
wxT(" join pg_available_extensions() e(name, default_version, comment) ON x.extname=e.name ")
wxT(" union ")
wxT(" SELECT 'Collations', c.collname, ':Schemas/' || n.nspname || '/:Collations/' || c.collname, n.nspname ")
wxT(" FROM pg_collation c ")
wxT(" JOIN pg_namespace n ON n.oid=c.collnamespace ");
}
searchSQL += wxT(") sn \n")
wxT("where lower(sn.objectname) like ") + txtPatternStr + wxT(" \n");
} // search names
// search definitions
if (chkDefinitions->GetValue())
{
if (nextMode)
searchSQL += wxT("UNION \n");
nextMode = true;
searchSQL += wxT("SELECT * FROM ( ") // Function's source code
wxT(" SELECT CASE WHEN t.typname = 'trigger' THEN 'Trigger Functions' ELSE case when p.prokind='p' then 'Procedures' else 'Functions' end END AS type, p.proname as objectname, ")
wxT(" ':Schemas/' || n.nspname || '/' || case when t.typname = 'trigger' then ':Trigger Functions' else case when p.prokind='p' then ':Procedures' else ':Functions' end end || '/' || p.proname as path, n.nspname ")
wxT(" from pg_proc p ")
wxT(" left join pg_namespace n on p.pronamespace = n.oid ")
wxT(" left join pg_type t on p.prorettype = t.oid ")
wxT("WHERE p.prosrc ILIKE ") + txtPatternStr + wxT(" ")
wxT("UNION ") // Column's type name and default value
wxT("select 'Columns', a.attname, ")
wxT("':Schemas/' || n.nspname || '/' || ")
wxT("case ")
wxT(" when t.relkind = 'r' then ':Tables' ")
wxT(" when t.relkind = 'S' then ':Sequences' ")
wxT(" when t.relkind in ('v','m') then ':Views' ")
wxT(" else 'should not happen' ")
wxT("end || '/' || t.relname || '/:Columns/' || a.attname AS path, n.nspname ")
wxT("from pg_attribute a ")
wxT("inner join pg_type ty on a.atttypid = ty.oid ")
wxT("left join pg_attrdef ad on a.attrelid = ad.adrelid and a.attnum = ad.adnum ")
wxT("inner join pg_class t on a.attrelid = t.oid and t.relkind in ('r','v','m') ")
wxT("left join pg_namespace n on t.relnamespace = n.oid ")
wxT("where a.attnum > 0 ")
wxT(" and (ty.typname ilike ") + txtPatternStr + wxT(" or pg_get_expr(ad.adbin,ad.adrelid) ilike ") + txtPatternStr + wxT(") ")
wxT("UNION ") // View's definition
wxT("SELECT 'Views', c.relname, ")
wxT("':Schemas/' || n.nspname || '/:Views/' || c.relname, n.nspname ")
wxT(" FROM pg_class c ")
wxT(" LEFT JOIN pg_namespace n ON n.oid = c.relnamespace ")
wxT(" WHERE c.relkind IN ('v','m') ")
wxT(" and pg_get_viewdef(c.oid) ilike ") + txtPatternStr + wxT(" ")
wxT("UNION ") // Relation's column names except for Views (searched earlier)
wxT("SELECT CASE ")
wxT(" WHEN c.relkind = 'c' THEN 'Types' ")
wxT(" WHEN c.relkind = 'r' THEN 'Tables' ")
wxT(" WHEN c.relkind = 'f' THEN 'Foreign Tables' ")
wxT(" ELSE 'should not happen' ")
wxT(" END AS type, c.relname AS objectname, ")
wxT(" ':Schemas/' || n.nspname || '/' || ")
wxT(" CASE ")
wxT(" WHEN c.relkind = 'c' THEN ':Types' ")
wxT(" WHEN c.relkind = 'r' THEN ':Tables' ")
wxT(" WHEN c.relkind = 'f' THEN ':Foreign Tables' ")
wxT(" ELSE 'should not happen' ")
wxT(" END || '/' || c.relname AS path, n.nspname ")
wxT(" from pg_attribute a ")
wxT(" inner join pg_class c on a.attrelid = c.oid and c.relkind in ('c','r','f') ")
wxT(" left join pg_namespace n on c.relnamespace = n.oid ")
wxT(" where a.attname ilike ") + txtPatternStr + wxT(" ");
// TODO: search for other object's definitions (indexes, constraints and so on)
searchSQL += wxT(") sd \n");
} // search definitions
// search comments
if (chkComments->GetValue())
{
if (nextMode)
searchSQL += wxT("UNION \n");
nextMode = true;
wxString pd = wxT("(select pd.objoid, pd.classoid, pd.objsubid, c.relname")
wxT(" from pg_description pd")
wxT(" join pg_class c on pd.classoid = c.oid")
wxT(" where pd.description ilike ") + txtPatternStr + wxT(" UNION ")
wxT("select psd.objoid, psd.classoid, NULL as objsubid, c.relname")
wxT(" from pg_shdescription psd")
wxT(" join pg_class c on psd.classoid = c.oid")
wxT(" where psd.description ilike ") + txtPatternStr + wxT(") ");
searchSQL += wxT("SELECT * FROM ( ");
if(currentdb->BackendMinimumVersion(8, 4)) // Common Table Expressions are available
{
searchSQL += wxT("with pd as ") + pd;
pd = wxT("pd ");
}
else // use pd as a subquery
pd += wxT(" pd ");
searchSQL += wxT("SELECT CASE")
wxT(" WHEN c.relkind = 'r' THEN 'Tables'")
wxT(" WHEN c.relkind = 'S' THEN 'Sequences'")
wxT(" WHEN c.relkind IN ('v','m') THEN 'Views'")
wxT(" ELSE 'should not happen'")
wxT(" END AS type, c.relname AS objectname,")
wxT(" ':Schemas/' || n.nspname || '/' ||")
wxT(" CASE")
wxT(" WHEN c.relkind = 'r' THEN ':Tables'")
wxT(" WHEN c.relkind = 'S' THEN ':Sequences'")
wxT(" WHEN c.relkind IN ('v','m') THEN ':Views'")
wxT(" ELSE 'should not happen'")
wxT(" END || '/' || c.relname AS path, n.nspname")
wxT(" FROM ") + pd +
wxT(" JOIN pg_class c on pd.relname = 'pg_class' and pd.objoid = c.oid")
wxT(" LEFT JOIN pg_namespace n ON n.oid = c.relnamespace")
wxT(" WHERE c.relkind in ('r','S','v','m')")
wxT(" UNION")
wxT(" SELECT 'Indexes', cls.relname, ':Schemas/' || n.nspname || '/:Tables/' || tab.relname || '/:Indexes/' || cls.relname, n.nspname")
wxT(" FROM ") + pd +
wxT(" JOIN pg_class cls ON pd.relname = 'pg_class' and pd.objoid = cls.oid")
wxT(" JOIN pg_index idx ON cls.oid=indexrelid")
wxT(" JOIN pg_class tab ON tab.oid=indrelid")
wxT(" JOIN pg_namespace n ON n.oid=tab.relnamespace")
wxT(" LEFT JOIN pg_depend dep ON (dep.classid = cls.tableoid AND dep.objid = cls.oid AND dep.refobjsubid = '0' AND dep.refclassid=(SELECT oid FROM pg_class WHERE relname='pg_constraint') AND dep.deptype='i')")
wxT(" LEFT OUTER JOIN pg_constraint con ON (con.tableoid = dep.refclassid AND con.oid = dep.refobjid)")
wxT(" LEFT OUTER JOIN pg_description des ON des.objoid=cls.oid")
wxT(" LEFT OUTER JOIN pg_description desp ON (desp.objoid=con.oid AND desp.objsubid = 0)")
wxT(" WHERE contype IS NULL")
wxT(" UNION")
wxT(" select CASE WHEN p_t.typname = 'trigger' THEN 'Trigger Functions' ELSE case when p_.prokind='p' then 'Procedures' else 'Functions' end END AS type,")
wxT(" p_.proname AS objectname,")
wxT(" ':Schemas/' || n.nspname || '/' ||")
wxT(" case when p_t.typname = 'trigger' then ':Trigger Functions/' else case when p_.prokind='p' then ':Procedures/' else ':Functions/' end end || p_.proname AS path, n.nspname")
wxT(" from ") + pd +
wxT(" join pg_proc p_ on pd.relname = 'pg_proc' and pd.objoid = p_.oid and p_.prokind <> 'a'")
wxT(" left join pg_type p_t on p_.prorettype = p_t.oid")
wxT(" left join pg_namespace n on p_.pronamespace = n.oid")
wxT(" union")
wxT(" select 'Schemas', n_.nspname, ':Schemas/' || n_.nspname, n_.nspname")
wxT(" from ") + pd +
wxT(" join pg_namespace n_ on pd.relname = 'pg_namespace' and pd.objoid = n_.oid")
wxT(" union")
wxT(" select 'Columns', a.attname,")
wxT(" ':Schemas/' || n.nspname || '/' ||")
wxT(" case")
wxT(" when t.relkind = 'r' then ':Tables'")
wxT(" when t.relkind = 'S' then ':Sequences'")
wxT(" when t.relkind in ('v','m') then ':Views'")
wxT(" else 'should not happen'")
wxT(" end || '/' || t.relname || '/:Columns/' || a.attname AS path, n.nspname")
wxT(" from ") + pd +
wxT(" join pg_class t on pd.relname = 'pg_class' and pd.objoid = t.oid and t.relkind in ('r','v','m')")
wxT(" join pg_attribute a on a.attrelid = t.oid and pd.objsubid = a.attnum")
wxT(" left join pg_namespace n on t.relnamespace = n.oid where a.attnum > 0")
wxT(" union")
wxT(" select 'Constraints',")
wxT(" case when tf.relname is null then c.conname else c.conname || ' -> ' || tf.relname end,")
wxT(" ':Schemas/' || n.nspname||'/:Tables/'||t.relname||'/:Constraints/'")
wxT(" ||case when tf.relname is null then c.conname else c.conname || ' -> ' || tf.relname end, n.nspname")
wxT(" from ") + pd +
wxT(" join pg_constraint c on pd.relname = 'pg_constraint' and pd.objoid = c.oid")
wxT(" left join pg_class t on c.conrelid = t.oid")
wxT(" left join pg_class tf on c.confrelid = tf.oid")
wxT(" left join pg_namespace n on t.relnamespace = n.oid")
wxT(" union")
wxT(" select 'Rules', r.rulename, ':Schemas/' || n.nspname||case when t.relkind in ('v','m') then '/:Views/' else '/:Tables/' end||t.relname||'/:Rules/'|| r.rulename, n.nspname")
wxT(" from ") + pd +
wxT(" join pg_rewrite r on pd.relname = 'pg_rewrite' and pd.objoid = r.oid")
wxT(" left join pg_class t on r.ev_class = t.oid")
wxT(" left join pg_namespace n on t.relnamespace = n.oid")
wxT(" union")
wxT(" select 'Triggers', tr.tgname, ':Schemas/' || n.nspname||case when t.relkind in ('v','m') then '/:Views/' else '/:Tables/' end||t.relname || '/:Triggers/' || tr.tgname, n.nspname")
wxT(" from ") + pd +
wxT(" join pg_trigger tr on pd.relname = 'pg_trigger' and pd.objoid = tr.oid")
wxT(" left join pg_class t on tr.tgrelid = t.oid")
wxT(" left join pg_namespace n on t.relnamespace = n.oid WHERE ");
if(currentdb->BackendMinimumVersion(9, 0))
searchSQL += wxT(" tr.tgisinternal = false ");
else
searchSQL += wxT(" tr.tgisconstraint = false ");
searchSQL += wxT(" union")
wxT(" SELECT 'Types', t.typname, ':Schemas/' || n.nspname || '/:Types/' || t.typname, n.nspname")
wxT(" FROM ") + pd +
wxT(" JOIN pg_type t on pd.relname = 'pg_type' and pd.objoid = t.oid")
wxT(" LEFT OUTER JOIN pg_type e ON e.oid=t.typelem")
wxT(" LEFT OUTER JOIN pg_class ct ON ct.oid=t.typrelid AND ct.relkind <> 'c'")
wxT(" LEFT OUTER JOIN pg_namespace n on t.typnamespace = n.oid")
wxT(" WHERE t.typtype != 'd' AND t.typname NOT LIKE E'\\\\_%'")
wxT(" union")
wxT(" SELECT 'Conversions', co.conname, ':Schemas/' || n.nspname || '/:Conversions/' || co.conname, n.nspname")
wxT(" FROM ") + pd +
wxT(" JOIN pg_conversion co on pd.relname = 'pg_conversion' and pd.objoid = co.oid")
wxT(" JOIN pg_namespace n ON n.oid=co.connamespace")
wxT(" LEFT OUTER JOIN pg_description des ON des.objoid=co.oid AND des.objsubid=0")
wxT(" union")
wxT(" SELECT 'Casts', format_type(st.oid,NULL) ||'->'|| format_type(tt.oid,tt.typtypmod), ':Casts/' || format_type(st.oid,NULL) ||'->'|| format_type(tt.oid,tt.typtypmod), NULL as nspname")
wxT(" FROM ") + pd +
wxT(" JOIN pg_cast ca on pd.relname = 'pg_cast' and pd.objoid = ca.oid")
wxT(" JOIN pg_type st ON st.oid=castsource")
wxT(" JOIN pg_type tt ON tt.oid=casttarget")
wxT(" union")
wxT(" SELECT 'Languages', lanname, ':Languages/' || lanname, NULL as nspname")
wxT(" FROM ") + pd +
wxT(" JOIN pg_language lan on pd.relname = 'pg_language' and pd.objoid = lan.oid")
wxT(" WHERE lanispl IS TRUE")
wxT(" union")
wxT(" SELECT 'FTS Configurations', cfg.cfgname, ':Schemas/' || n.nspname || '/:FTS Configurations/' || cfg.cfgname, n.nspname")
wxT(" FROM ") + pd +
wxT(" JOIN pg_ts_config cfg on pd.relname = 'pg_ts_config' and pd.objoid = cfg.oid")
wxT(" left join pg_namespace n on cfg.cfgnamespace = n.oid")
wxT(" union")
wxT(" SELECT 'FTS Dictionaries', dict.dictname, ':Schemas/' || ns.nspname || '/:FTS Dictionaries/' || dict.dictname, ns.nspname")
wxT(" FROM ") + pd +
wxT(" JOIN pg_ts_dict dict on pd.relname = 'pg_ts_dict' and pd.objoid = dict.oid")
wxT(" left join pg_namespace ns on dict.dictnamespace = ns.oid")
wxT(" union")
wxT(" SELECT 'FTS Parsers', prs.prsname, ':Schemas/' || ns.nspname || '/:FTS Parsers/' || prs.prsname, ns.nspname")
wxT(" FROM ") + pd +
wxT(" JOIN pg_ts_parser prs on pd.relname = 'pg_ts_parser' and pd.objoid = prs.oid")
wxT(" left join pg_namespace ns on prs.prsnamespace = ns.oid")
wxT(" union")
wxT(" SELECT 'FTS Templates', tmpl.tmplname, ':Schemas/' || ns.nspname || '/:FTS Templates/' || tmpl.tmplname, ns.nspname")
wxT(" FROM ") + pd +
wxT(" JOIN pg_ts_template tmpl on pd.relname = 'pg_ts_template' and pd.objoid = tmpl.oid")
wxT(" left join pg_namespace ns on tmpl.tmplnamespace = ns.oid")
wxT(" union")
wxT(" select 'Domains', t.typname, ':Schemas/' || n.nspname || '/:Domains/' || t.typname, n.nspname")
wxT(" FROM ") + pd +
wxT(" JOIN pg_type t on pd.relname = 'pg_type' and pd.objoid = t.oid")
wxT(" inner join pg_namespace n on t.typnamespace = n.oid")
wxT(" where t.typtype = 'd'")
wxT(" union")
wxT(" select 'Aggregates', pr.proname, ':Schemas/' || ns.nspname || '/:Aggregates/' || pr.proname, ns.nspname")
wxT(" from ") + pd +
wxT(" join pg_proc pr on pd.relname = 'pg_proc' and pd.objoid = pr.oid")
wxT(" JOIN pg_catalog.pg_aggregate ag on ag.aggfnoid = pr.oid")
wxT(" left join pg_namespace ns on pr.pronamespace = ns.oid")
wxT(" union")
wxT(" select case when r_.rolcanlogin = true then 'Login Roles' else 'Group Roles' end, r_.rolname,")
wxT(" case when r_.rolcanlogin = true then ':Login Roles' else ':Group Roles' end || '/' || rolname, NULL as nspname")
wxT(" from ") + pd +
wxT(" join pg_roles r_ on pd.relname = 'pg_authid' and pd.objoid = r_.oid")
wxT(" union")
wxT(" select 'Tablespaces', ts_.spcname, ':Tablespaces/'||ts_.spcname, NULL as nspname")
wxT(" from ") + pd +
wxT(" JOIN pg_tablespace ts_ on pd.relname = 'pg_tablespace' and pd.objoid = ts_.oid")
wxT(" union")
wxT(" SELECT 'Operators', op.oprname, ':Schemas/' || ns.nspname || '/:Operators/' || op.oprname, ns.nspname")
wxT(" FROM ") + pd +
wxT(" JOIN pg_operator op ON pd.relname = 'pg_operator' and pd.objoid = op.oid")
wxT(" left join pg_namespace ns on op.oprnamespace = ns.oid")
wxT(" union")
wxT(" SELECT 'Operator Classes', op.opcname, ':Schemas/' || ns.nspname || '/:Operator Classes/' || op.opcname, ns.nspname")
wxT(" FROM ") + pd +
wxT(" JOIN pg_opclass op ON pd.relname = 'pg_opclass' and pd.objoid = op.oid")
wxT(" left join pg_namespace ns on op.opcnamespace = ns.oid")
wxT(" union")
wxT(" SELECT 'Operator Families', opf.opfname, ':Schemas/' || ns.nspname || '/:Operator Families/' || opf.opfname, ns.nspname")
wxT(" FROM ") + pd +
wxT(" JOIN pg_opfamily opf ON pd.relname = 'pg_opfamily' and pd.objoid = opf.oid")
wxT(" left join pg_namespace ns on opf.opfnamespace = ns.oid");
if(currentdb->BackendMinimumVersion(8, 4) && currentdb->GetConnection()->IsSuperuser())
{
searchSQL += wxT(" union")
wxT(" select 'Foreign Data Wrappers', fdw.fdwname, ':Foreign Data Wrappers/' || fdw.fdwname, NULL as nspname ")
wxT(" from ") + pd +
wxT(" JOIN pg_foreign_data_wrapper fdw ON pd.relname = 'pg_foreign_data_wrapper' and pd.objoid = fdw.oid")
wxT(" union ")
wxT(" select 'Foreign Server', sr.srvname, ':Foreign Data Wrappers/' || fdw.fdwname || '/:Foreign Servers/' || sr.srvname, NULL as nspname")
wxT(" from ") + pd +
wxT(" JOIN pg_foreign_server sr ON pd.relname = 'pg_foreign_server' and pd.objoid = sr.oid")
wxT(" inner join pg_foreign_data_wrapper fdw on sr.srvfdw = fdw.oid ");
}
if(currentdb->BackendMinimumVersion(9, 1))
{
searchSQL += wxT(" union")
wxT(" select 'Foreign Tables', c.relname, ':Schemas/' || ns.nspname || '/:Foreign Tables/' || c.relname, ns.nspname")
wxT(" from ") + pd +
wxT(" JOIN pg_class c ON pd.relname = 'pg_class' and pd.objoid = c.oid")
wxT(" join pg_foreign_table ft on ft.ftrelid = c.oid")
wxT(" inner join pg_namespace ns on c.relnamespace = ns.oid")
wxT(" union")
wxT(" select 'Extensions', x.extname, ':Extensions/' || x.extname, NULL AS nspname")
wxT(" FROM ") + pd +
wxT(" JOIN pg_extension x ON pd.relname = 'pg_extension' and pd.objoid = x.oid")
wxT(" JOIN pg_namespace n on x.extnamespace=n.oid")
wxT(" join pg_available_extensions() e(name, default_version, comment) ON x.extname=e.name")
wxT(" union")
wxT(" SELECT 'Collations', c.collname, ':Schemas/' || n.nspname || '/:Collations/' || c.collname, n.nspname")
wxT(" FROM ") + pd +
wxT(" JOIN pg_collation c ON pd.relname = 'pg_collation' and pd.objoid = c.oid")
wxT(" JOIN pg_namespace n ON n.oid=c.collnamespace");
}
searchSQL += wxT(") sc \n");
} // search comments
searchSQL += wxT(") ii \n");
bool nextPredicate = false;
if (cbType->GetValue() != _("All types"))
{
searchSQL += (nextPredicate) ? wxT("AND ") : wxT("WHERE ");
nextPredicate = true;
searchSQL += wxT("ii.type = ") + currentdb->GetConnection()->qtDbString(aMap[cbType->GetValue()]) + wxT(" ");
}
if (cbSchema->GetSelection() == cbSchemaIdxCurrent && !currentSchema.IsEmpty())
{
searchSQL += (nextPredicate) ? wxT("AND ") : wxT("WHERE ");
nextPredicate = true;
searchSQL += wxT("ii.nspname = ") + currentdb->GetConnection()->qtDbString(currentSchema) + wxT(" ");
}
else if (cbSchema->GetValue() == _("My schemas"))
{
searchSQL += (nextPredicate) ? wxT("AND ") : wxT("WHERE ");
nextPredicate = true;
searchSQL += wxT("ii.nspname IN (SELECT n.nspname FROM pg_namespace n WHERE n.nspowner = (SELECT u.usesysid FROM pg_user u WHERE u.usename = ")
+ currentdb->GetConnection()->qtDbString(currentdb->GetConnection()->GetUser()) + wxT(")) ");
}
else if (cbSchema->GetValue() != _("All schemas"))
{
searchSQL += (nextPredicate) ? wxT("AND ") : wxT("WHERE ");
nextPredicate = true;
searchSQL += wxT("ii.nspname = ") + currentdb->GetConnection()->qtDbString(cbSchema->GetValue()) + wxT(" ");
}
searchSQL += wxT("ORDER BY 1, 2, 3");
pgSet *set = currentdb->GetConnection()->ExecuteSet(searchSQL);
int i = 0;
if(set)
{
lcResults->DeleteAllItems();
while(!set->Eof())
{
wxString objectType = set->GetVal(wxT("type"));
wxString objectName = set->GetVal(wxT("objectname"));
wxString ItemPath;
/* Login Roles, Group Roles and Tablespaces are "outside" the database, so we have to adjust the path */
if(objectType == wxT("Login Roles") || objectType == wxT("Group Roles") || objectType == wxT("Tablespaces"))
{
wxStringTokenizer tkz(databasePath, wxT("/"));
while(tkz.HasMoreTokens())
{
wxString token = tkz.GetNextToken();
if(token == _("Databases"))
break;
ItemPath += token + wxT("/");
}
ItemPath += set->GetVal(wxT("path"));
}
else
{
ItemPath = databasePath + wxT("/") + set->GetVal(wxT("path"));
}
if(ItemPath.Contains(wxT("Schemas/information_schema")))
{
/* In information Schema only views and columns are displayed, nothing else */
if(objectType == wxT("Views") || objectType == wxT("Columns"))
{
ItemPath.Replace(wxT(":Schemas/information_schema"), wxT(":Catalogs/ANSI/:Catalog Objects"));
ItemPath.Replace(wxT(":Views/"), wxT(""));
}
else
{
set->MoveNext();
continue;
}
}
if(ItemPath.Contains(wxT("Schemas/pg_catalog")))
{
ItemPath.Replace(wxT(":Schemas/pg_catalog"), wxT(":Catalogs/PostgreSQL"));
}
wxListItem item;
item.SetId(i);
lcResults->InsertItem(item);
wxString locTypeStr = wxGetTranslation(set->GetVal(wxT("type")));
/* Check if viewing of the specified object is enabled in settings */
if(!settings->GetDisplayOption(locTypeStr))
{
lcResults->SetItemTextColour(i, wxColour(128, 128, 128));
}
lcResults->SetItem(i, 0, locTypeStr);
lcResults->SetItem(i, 1, objectName);
lcResults->SetItem(i, 2, TranslatePath(ItemPath));
set->MoveNext();
i++;
}
delete set;
}
if(lcResults->GetItemCount() > 0)
{
lcResults->SetColumnWidth(0, wxLIST_AUTOSIZE);
lcResults->SetColumnWidth(1, wxLIST_AUTOSIZE);
lcResults->SetColumnWidth(2, wxLIST_AUTOSIZE);
}
if (statusBar)
{
if (i > 0)
statusBar->SetStatusText(wxString::Format(wxPLURAL("Found %d item", "Found %d items", i), i));
else
statusBar->SetStatusText(_("Nothing was found"));
}
ToggleBtnSearch(true);
}
wxString dlgSearchObject::TranslatePath(wxString &path)
{
/* Translate a path, but only word that start's with a colon (:) */
wxStringTokenizer tkz(path, wxT("/"));
wxString newPath;
while(tkz.HasMoreTokens())
{
wxString token = tkz.GetNextToken();
if(token.StartsWith(wxT(":")))
{
token = wxGetTranslation(token.AfterFirst(':'));
}
newPath = newPath + token.Trim() + wxT("/");
}
return newPath.BeforeLast('/');
}
void dlgSearchObject::OnCancel(wxCommandEvent &ev)
{
if (IsModal())
EndModal(wxID_CANCEL);
else
Destroy();
}
searchObjectFactory::searchObjectFactory(menuFactoryList *list, wxMenu *mnu, ctlMenuToolbar *toolbar) : contextActionFactory(list)
{
mnu->Append(id, _("&Search objects...\tCtrl-G"), _("Search database for specific objects"));
}
wxWindow *searchObjectFactory::StartDialog(frmMain *form, pgObject *obj)
{
dlgSearchObject *so = new dlgSearchObject(form, obj->GetDatabase(), obj);
so->Show();
return 0;
}
bool searchObjectFactory::CheckEnable(pgObject *obj)
{
return obj && obj->GetDatabase() && obj->GetDatabase()->GetConnected();
}