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
|
/* Copyright (C) 2004 MySQL AB
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
#include "myqb.h"
#ifndef _XOPEN_SOURCE
#define _XOPEN_SOURCE /* glibc2 needs this */
#endif
#include <time.h>
#include "myx_public_interface.h"
#include <glibmm.h>
#include "MQHistory.h"
MQHistory::MQHistory()
{
MYX_LIB_ERROR err;
_history= myx_history_load(prefs.build_path_to("query-browser/history.xml").c_str(), &err);
if (!_history)
{
_history= g_new0(MYX_HISTORY, 1);
}
}
static MQHistory *_instance= 0;
MQHistory *MQHistory::instance()
{
if (!_instance)
_instance= new MQHistory();
return _instance;
}
void MQHistory::save()
{
MYX_LIB_ERROR err;
err= myx_history_store(prefs.build_path_to("query-browser/history.xml").c_str(),
_history);
}
void MQHistory::reset()
{
myx_history_free(_history);
_history= g_new0(MYX_HISTORY, 1);
save();
_signal_changed.emit();
}
std::string MQHistory::add_entry(const Glib::ustring &query,
const Glib::ustring &catalog,
const Glib::ustring &schema)
{
MYX_HISTORY_ENTRY *item= myx_history_add_entry(_history,
catalog.c_str(), schema.c_str(),
query.c_str(),
prefs.max_query_history);
save();
_signal_changed.emit();
return get_id_for(item);
}
MYX_HISTORY_ENTRY *MQHistory::find_entry(const std::string &id)
{
for (unsigned int i= 0; i < _history->entries_num; i++)
{
if (id == get_id_for(_history->entries+i))
return _history->entries+i;
}
return NULL;
}
std::string MQHistory::check_dupe_and_mark(const Glib::ustring &query)
{
for (unsigned int i= 0; i < _history->entries_num; i++)
{
if (query.compare(_history->entries[i].sql)==0)
{
mark_entry(_history->entries+i);
save();
_signal_changed.emit();
return get_id_for(_history->entries+i);
}
}
return "";
}
std::string MQHistory::get_id_for(MYX_HISTORY_ENTRY *entry)
{
return std::string(entry->sql);
}
void MQHistory::mark_entry(MYX_HISTORY_ENTRY *entry)
{
time_t timestamp;
struct tm *cur_tm_date;
char *g_str;
timestamp= time(NULL);
cur_tm_date= gmtime(×tamp);
//YYYY-MM-DDThh:mm:ssTZD TZD= timezone or Z for UTC
g_str= g_strdup_printf("%d-%02d-%02dT%02d:%02d:%02dZ", cur_tm_date->tm_year+1900,
cur_tm_date->tm_mon+1, cur_tm_date->tm_mday,
cur_tm_date->tm_hour, cur_tm_date->tm_min,
cur_tm_date->tm_sec);
entry->date_last_access=g_str;
}
void MQHistory::remove_entry(MYX_HISTORY_ENTRY *entry)
{
entry->marked_deleted= 1;
save();
}
MYX_HISTORY_TREE *MQHistory::get_tree()
{
return myx_history_get_tree(_history);
}
|