diff options
author | Denys Vlasenko <dvlasenk@redhat.com> | 2010-11-23 15:51:54 +0100 |
---|---|---|
committer | Denys Vlasenko <dvlasenk@redhat.com> | 2010-11-23 15:51:54 +0100 |
commit | 86fc61db75385d6fb452b4cf88aec1deffa3a5be (patch) | |
tree | 8b88bd46ef8fe05167f72b3d1f0bff034620b9a1 /src/plugins/SQLite3.h | |
parent | d992b91c61b4da10e1f977038d85cd640f8d7ae5 (diff) | |
download | abrt-86fc61db75385d6fb452b4cf88aec1deffa3a5be.tar.gz abrt-86fc61db75385d6fb452b4cf88aec1deffa3a5be.tar.xz abrt-86fc61db75385d6fb452b4cf88aec1deffa3a5be.zip |
remove sqlite DB
This change removes sqlite database.
Database was used to find dump dirs by [UID:]UUID.
This patch uses more natural way: dump dirs are addressed by their
directory names.
DB was also used to produce a list of dump dirs.
Now it is done by iterating over the /var/spool/abrt directory.
And finally, DB was also used to find duplicate UUIDs.
Now it is done by iterating over the /var/spool/abrt directory.
Crash count, "inform all" and reporting result message are moved
from DB field to a file in dump dir.
"Reported" DB field is deleted -
if message != "", then this dump was reported.
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'src/plugins/SQLite3.h')
-rw-r--r-- | src/plugins/SQLite3.h | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/src/plugins/SQLite3.h b/src/plugins/SQLite3.h deleted file mode 100644 index 5750d92e..00000000 --- a/src/plugins/SQLite3.h +++ /dev/null @@ -1,58 +0,0 @@ -/* - SQLite3.h - - Copyright (C) 2009 Zdenek Prikryl (zprikryl@redhat.com) - Copyright (C) 2009 RedHat inc. - - 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., - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -*/ -#ifndef SQLITE3_H_ -#define SQLITE3_H_ - -#include "plugin.h" -#include "database.h" - -class CSQLite3 : public CDatabase -{ - private: - std::string m_sDBPath; - sqlite3* m_pDB; - - public: - CSQLite3(); - ~CSQLite3(); - - virtual void Connect(); - virtual void DisConnect(); - - virtual void Insert_or_Update(const char *crash_id, - bool inform_all_users, - const char *pDebugDumpPath, - const char *pTime); - virtual void DeleteRow(const char *crash_id); - virtual void DeleteRows_by_dir(const char *dump_dir); - virtual void SetReported(const char *crash_id, const char *pMessage); - virtual void SetReportedPerReporter(const char *crash_id, - const char *reporter, - const char *pMessage); - virtual GList *GetUIDData(long caller_uid); - virtual struct db_row *GetRow(const char *crash_id); - virtual struct db_row *GetRow_by_dir(const char *dir); - - virtual void SetSettings(const map_plugin_settings_t& pSettings); -}; - - -#endif |