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 269 270 271 272 273 274 275 276 277 278
|
//////////////////////////////////////////////////////////////////////////
//
// pgAdmin III - PostgreSQL Tools
//
// Copyright (C) 2002 - 2014, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
// macros.cpp - Query macros
//
//////////////////////////////////////////////////////////////////////////
#include <wx/wx.h>
#include "pgAdmin3.h"
#include "utils/favourites.h"
#include "utils/macros.h"
#include "utils/sysSettings.h"
#include <wx/file.h>
//
// libxml convenience macros
//
#define XML_FROM_WXSTRING(s) ((const xmlChar *)(const char *)s.mb_str(wxConvUTF8))
#define WXSTRING_FROM_XML(s) wxString((char *)s, wxConvUTF8)
#define XML_STR(s) ((const xmlChar *)s)
//
// libxml convenience function
//
static void SkipToEndElement(xmlTextReaderPtr reader)
{
while (xmlTextReaderRead(reader) == 1)
{
if (xmlTextReaderNodeType(reader) == 15)
return;
}
}
queryMacroItem::queryMacroItem(const wxString newKey, const wxString newName, const wxString newQuery, const int newId)
{
key = newKey;
name = newName;
query = newQuery;
id = newId;
}
void queryMacroItem::AppendToMenu(wxMenu *menu, int newId)
{
id = newId;
menu->Append(id, name + wxT("\t") + key, query);
}
void queryMacroItem::Update(const wxString &newName, const wxString &newQuery)
{
name = newName;
query = newQuery;
}
queryMacroList::queryMacroList(xmlTextReaderPtr reader)
{
// Element of type <foo />, meaning empty folder
if (xmlTextReaderIsEmptyElement(reader))
return;
while (xmlTextReaderRead(reader))
{
int type = xmlTextReaderNodeType(reader);
if (type == 15)
return; // Close on parent element
if (xmlTextReaderNodeType(reader) != 1)
continue; // Any unknown element type
wxString nodename = WXSTRING_FROM_XML(xmlTextReaderConstName(reader));
xmlChar *ckey = xmlTextReaderGetAttribute(reader, XML_STR("key"));
if (!ckey)
continue;
wxString key = WXSTRING_FROM_XML(ckey);
xmlFree(ckey);
xmlChar *cname = xmlTextReaderGetAttribute(reader, XML_STR("name"));
if (!cname)
continue;
wxString name = WXSTRING_FROM_XML(cname);
xmlFree(cname);
if (nodename == wxT("macro"))
{
xmlChar *cquery = xmlTextReaderReadString(reader);
if (!cquery)
continue;
wxString query = WXSTRING_FROM_XML(cquery);
xmlFree(cquery);
macros.Add(new queryMacroItem(key, name, query));
SkipToEndElement(reader);
}
}
}
queryMacroList::~queryMacroList()
{
WX_CLEAR_ARRAY(macros);
}
int queryMacroList::AppendAllToMenu(wxMenu *menu, int startId)
{
int id = startId;
size_t i;
for (i = 0; i < macros.GetCount(); i++)
{
macros.Item(i)->AppendToMenu(menu, id);
id++;
}
return id;
}
void queryMacroList::AddNewMacro(const wxString &key, const wxString &name, const wxString &query)
{
macros.Add(new queryMacroItem(key, name, query));
}
void queryMacroList::AddOrUpdateMacro(const wxString &key, const wxString &name, const wxString &query)
{
queryMacroItem *item = FindMacro(key);
if (item != NULL)
{
item->Update(name, query);
}
else
{
AddNewMacro(key, name, query);
}
}
bool queryMacroList::DelMacro(int id)
{
size_t i;
for (i = 0; i < macros.GetCount(); i++)
{
if (macros.Item(i)->GetId() == id)
{
queryMacroItem *itm = macros.Item(i);
delete itm;
macros.RemoveAt(i);
return true;
}
}
return false;
}
bool queryMacroList::DelMacro(const wxString &key)
{
size_t i;
for (i = 0; i < macros.GetCount(); i++)
{
if (macros.Item(i)->GetKey() == key)
{
queryMacroItem *itm = macros.Item(i);
delete itm;
macros.RemoveAt(i);
return true;
}
}
return false;
}
queryMacroItem *queryMacroList::FindMacro(int id)
{
size_t i;
for (i = 0; i < macros.GetCount(); i++)
{
if (macros.Item(i)->GetId() == id)
return macros.Item(i);
}
return NULL;
}
queryMacroItem *queryMacroList::FindMacro(const wxString &key)
{
size_t i;
for (i = 0; i < macros.GetCount(); i++)
{
if (macros.Item(i)->GetKey() == key)
return macros.Item(i);
}
return NULL;
}
void queryMacroList::saveList(xmlTextWriterPtr writer)
{
size_t i;
for (i = 0; i < macros.GetCount(); i++)
{
xmlTextWriterStartElement(writer, XML_STR("macro"));
xmlTextWriterWriteAttribute(writer, XML_STR("key"),
XML_FROM_WXSTRING(macros.Item(i)->GetKey()));
xmlTextWriterWriteAttribute(writer, XML_STR("name"),
XML_FROM_WXSTRING(macros.Item(i)->GetName()));
xmlTextWriterWriteString(writer,
XML_FROM_WXSTRING(macros.Item(i)->GetQuery()));
xmlTextWriterEndElement(writer);
}
}
//
// queryMacroFileProvider - load and save macros from a XML file in the users
// home directory
//
queryMacroList *queryMacroFileProvider::LoadMacros(bool emptyOnFailure)
{
xmlTextReaderPtr reader;
int ret;
if (!wxFile::Access(settings->GetMacrosFile(), wxFile::read))
return emptyOnFailure ? (new queryMacroList()) : NULL;
reader = xmlReaderForFile((const char *)settings->GetMacrosFile().mb_str(wxConvUTF8), NULL, 0);
if (!reader)
{
wxMessageBox(_("Failed to load macros file!"));
return emptyOnFailure ? (new queryMacroList()) : NULL;
}
ret = xmlTextReaderRead(reader);
if (ret != 1)
{
wxMessageBox(_("Failed to read macros file!"));
return emptyOnFailure ? (new queryMacroList()) : NULL;
}
queryMacroList *f = (queryMacroList *)(new queryMacroList(reader));
xmlTextReaderClose(reader);
xmlFreeTextReader(reader);
xmlCleanupParser();
return f;
}
void queryMacroFileProvider::SaveMacros(queryMacroList *macros)
{
xmlTextWriterPtr writer;
writer = xmlNewTextWriterFilename((const char *)settings->GetMacrosFile().mb_str(wxConvUTF8), 0);
if (!writer)
{
wxMessageBox(_("Failed to open macros file!"));
return;
}
xmlTextWriterSetIndent(writer, 1);
if ((xmlTextWriterStartDocument(writer, NULL, "UTF-8", NULL) < 0) ||
(xmlTextWriterStartElement(writer, XML_STR("macros")) < 0))
{
wxMessageBox(_("Failed to write to macros file!"));
xmlFreeTextWriter(writer);
return;
}
((queryMacroList *)macros)->saveList(writer);
if (xmlTextWriterEndDocument(writer) < -1)
{
wxMessageBox(_("Failed to write to macros file!"));
}
xmlFreeTextWriter(writer);
}
|