mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
init
This commit is contained in:
commit
9c6f9f3405
1784 changed files with 440662 additions and 0 deletions
241
schema/pgTextSearchDictionary.cpp
Normal file
241
schema/pgTextSearchDictionary.cpp
Normal file
|
|
@ -0,0 +1,241 @@
|
|||
//////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// pgAdmin III - PostgreSQL Tools
|
||||
//
|
||||
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
||||
// This software is released under the PostgreSQL Licence
|
||||
//
|
||||
// pgTextSearchDictionary.cpp - Text Search Dictionary class
|
||||
//
|
||||
//////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// wxWindows headers
|
||||
#include <wx/wx.h>
|
||||
|
||||
// App headers
|
||||
#include "pgAdmin3.h"
|
||||
#include "utils/misc.h"
|
||||
#include "schema/pgTextSearchDictionary.h"
|
||||
|
||||
|
||||
pgTextSearchDictionary::pgTextSearchDictionary(pgSchema *newSchema, const wxString &newName)
|
||||
: pgSchemaObject(newSchema, textSearchDictionaryFactory, newName)
|
||||
{
|
||||
}
|
||||
|
||||
pgTextSearchDictionary::~pgTextSearchDictionary()
|
||||
{
|
||||
}
|
||||
|
||||
wxString pgTextSearchDictionary::GetTranslatedMessage(int kindOfMessage) const
|
||||
{
|
||||
wxString message = wxEmptyString;
|
||||
|
||||
switch (kindOfMessage)
|
||||
{
|
||||
case RETRIEVINGDETAILS:
|
||||
message = _("Retrieving details on FTS dictionary");
|
||||
message += wxT(" ") + GetName();
|
||||
break;
|
||||
case REFRESHINGDETAILS:
|
||||
message = _("Refreshing FTS dictionary");
|
||||
message += wxT(" ") + GetName();
|
||||
break;
|
||||
case DROPINCLUDINGDEPS:
|
||||
message = wxString::Format(_("Are you sure you wish to drop FTS dictionary \"%s\" including all objects that depend on it?"),
|
||||
GetFullIdentifier().c_str());
|
||||
break;
|
||||
case DROPEXCLUDINGDEPS:
|
||||
message = wxString::Format(_("Are you sure you wish to drop FTS dictionary \"%s\"?"),
|
||||
GetFullIdentifier().c_str());
|
||||
break;
|
||||
case DROPCASCADETITLE:
|
||||
message = _("Drop FTS dictionary cascaded?");
|
||||
break;
|
||||
case DROPTITLE:
|
||||
message = _("Drop FTS dictionary?");
|
||||
break;
|
||||
case PROPERTIESREPORT:
|
||||
message = _("FTS dictionary properties report");
|
||||
message += wxT(" - ") + GetName();
|
||||
break;
|
||||
case PROPERTIES:
|
||||
message = _("FTS dictionary properties");
|
||||
break;
|
||||
case DDLREPORT:
|
||||
message = _("FTS dictionary DDL report");
|
||||
message += wxT(" - ") + GetName();
|
||||
break;
|
||||
case DDL:
|
||||
message = _("FTS dictionary DDL");
|
||||
break;
|
||||
case DEPENDENCIESREPORT:
|
||||
message = _("FTS dictionary dependencies report");
|
||||
message += wxT(" - ") + GetName();
|
||||
break;
|
||||
case DEPENDENCIES:
|
||||
message = _("FTS dictionary dependencies");
|
||||
break;
|
||||
case DEPENDENTSREPORT:
|
||||
message = _("FTS dictionary dependents report");
|
||||
message += wxT(" - ") + GetName();
|
||||
break;
|
||||
case DEPENDENTS:
|
||||
message = _("FTS dictionary dependents");
|
||||
break;
|
||||
}
|
||||
|
||||
return message;
|
||||
}
|
||||
|
||||
bool pgTextSearchDictionary::DropObject(wxFrame *frame, ctlTree *browser, bool cascaded)
|
||||
{
|
||||
wxString sql = wxT("DROP TEXT SEARCH DICTIONARY ") + this->GetSchema()->GetQuotedIdentifier() + wxT(".") + qtIdent(this->GetIdentifier());
|
||||
|
||||
if (cascaded)
|
||||
sql += wxT(" CASCADE");
|
||||
|
||||
return GetDatabase()->ExecuteVoid(sql);
|
||||
}
|
||||
|
||||
|
||||
wxString pgTextSearchDictionary::GetSql(ctlTree *browser)
|
||||
{
|
||||
if (sql.IsNull())
|
||||
{
|
||||
sql = wxT("-- Text Search Dictionary: ") + GetFullIdentifier() + wxT("\n\n")
|
||||
+ wxT("-- DROP TEXT SEARCH DICTIONARY ") + GetFullIdentifier() + wxT("\n\n")
|
||||
+ wxT("CREATE TEXT SEARCH DICTIONARY ") + GetFullIdentifier() + wxT(" (")
|
||||
+ wxT("\n TEMPLATE = ") + qtTypeIdent(GetTemplate());
|
||||
|
||||
if (options.Length() > 0)
|
||||
sql += wxT(",\n ") + options;
|
||||
|
||||
sql += wxT("\n);\n");
|
||||
|
||||
if (!GetComment().IsNull())
|
||||
sql += wxT("COMMENT ON TEXT SEARCH DICTIONARY ") + GetFullIdentifier()
|
||||
+ wxT(" IS ") + qtDbString(GetComment()) + wxT(";\n");
|
||||
}
|
||||
|
||||
return sql;
|
||||
}
|
||||
|
||||
|
||||
void pgTextSearchDictionary::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(_("Template"), GetTemplate());
|
||||
properties->AppendItem(_("Options"), GetOptions());
|
||||
properties->AppendItem(_("Comment"), firstLineOnly(GetComment()));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
pgObject *pgTextSearchDictionary::Refresh(ctlTree *browser, const wxTreeItemId item)
|
||||
{
|
||||
pgObject *dict = 0;
|
||||
pgCollection *coll = browser->GetParentCollection(item);
|
||||
if (coll)
|
||||
dict = textSearchDictionaryFactory.CreateObjects(coll, 0, wxT("\n AND dict.oid=") + GetOidStr());
|
||||
|
||||
return dict;
|
||||
}
|
||||
|
||||
|
||||
///////////////////////////////////////////////////
|
||||
|
||||
|
||||
pgTextSearchDictionaryCollection::pgTextSearchDictionaryCollection(pgaFactory *factory, pgSchema *sch)
|
||||
: pgSchemaObjCollection(factory, sch)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
wxString pgTextSearchDictionaryCollection::GetTranslatedMessage(int kindOfMessage) const
|
||||
{
|
||||
wxString message = wxEmptyString;
|
||||
|
||||
switch (kindOfMessage)
|
||||
{
|
||||
case RETRIEVINGDETAILS:
|
||||
message = _("Retrieving details on FTS dictionaries");
|
||||
break;
|
||||
case REFRESHINGDETAILS:
|
||||
message = _("Refreshing FTS dictionaries");
|
||||
break;
|
||||
case OBJECTSLISTREPORT:
|
||||
message = _("FTS dictionaries list report");
|
||||
break;
|
||||
}
|
||||
|
||||
return message;
|
||||
}
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////
|
||||
|
||||
|
||||
pgObject *pgTextSearchDictionaryFactory::CreateObjects(pgCollection *collection, ctlTree *browser, const wxString &restriction)
|
||||
{
|
||||
pgTextSearchDictionary *dict = 0;
|
||||
|
||||
pgSet *dictionaries;
|
||||
dictionaries = collection->GetDatabase()->ExecuteSet(
|
||||
wxT("SELECT dict.oid, dict.dictname, pg_get_userbyid(dict.dictowner) as dictowner, t.tmplname, dict.dictinitoption, description\n")
|
||||
wxT(" FROM pg_ts_dict dict\n")
|
||||
wxT(" LEFT OUTER JOIN pg_ts_template t ON t.oid=dict.dicttemplate\n")
|
||||
wxT(" LEFT OUTER JOIN pg_description des ON (des.objoid=dict.oid AND des.classoid='pg_ts_dict'::regclass)\n")
|
||||
wxT(" WHERE dict.dictnamespace = ") + collection->GetSchema()->GetOidStr()
|
||||
+ restriction + wxT("\n")
|
||||
wxT(" ORDER BY dict.dictname"));
|
||||
|
||||
if (dictionaries)
|
||||
{
|
||||
while (!dictionaries->Eof())
|
||||
{
|
||||
dict = new pgTextSearchDictionary(collection->GetSchema(), dictionaries->GetVal(wxT("dictname")));
|
||||
dict->iSetOid(dictionaries->GetOid(wxT("oid")));
|
||||
dict->iSetOwner(dictionaries->GetVal(wxT("dictowner")));
|
||||
dict->iSetComment(dictionaries->GetVal(wxT("description")));
|
||||
dict->iSetTemplate(dictionaries->GetVal(wxT("tmplname")));
|
||||
dict->iSetOptions(dictionaries->GetVal(wxT("dictinitoption")));
|
||||
|
||||
if (browser)
|
||||
{
|
||||
browser->AppendObject(collection, dict);
|
||||
dictionaries->MoveNext();
|
||||
}
|
||||
else
|
||||
break;
|
||||
}
|
||||
|
||||
delete dictionaries;
|
||||
}
|
||||
return dict;
|
||||
}
|
||||
|
||||
|
||||
#include "images/dictionary.pngc"
|
||||
#include "images/dictionaries.pngc"
|
||||
|
||||
pgTextSearchDictionaryFactory::pgTextSearchDictionaryFactory()
|
||||
: pgSchemaObjFactory(__("FTS Dictionary"), __("New FTS Dictionary..."), __("Create a new FTS Dictionary."), dictionary_png_img)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
pgCollection *pgTextSearchDictionaryFactory::CreateCollection(pgObject *obj)
|
||||
{
|
||||
return new pgTextSearchDictionaryCollection(GetCollectionFactory(), (pgSchema *)obj);
|
||||
}
|
||||
|
||||
pgTextSearchDictionaryFactory textSearchDictionaryFactory;
|
||||
static pgaCollectionFactory cf(&textSearchDictionaryFactory, __("FTS Dictionaries"), dictionaries_png_img);
|
||||
Loading…
Add table
Add a link
Reference in a new issue