summaryrefslogtreecommitdiffstats
path: root/lib/Plugins
diff options
context:
space:
mode:
authorZdenek Prikryl <zprikryl@redhat.com>2009-09-08 17:08:16 +0200
committerZdenek Prikryl <zprikryl@redhat.com>2009-09-08 17:08:16 +0200
commitf02e1d87d46aa6161d0cab5444e0abfa9624b78d (patch)
treecc1148c8ef544818a7995074e679a987ba325a44 /lib/Plugins
parent58d9dfde6ce788c5ffdfe5160d19aaeb8ac7b3a2 (diff)
parentff2627e7c597e50025ca4d91ff8168eec80f9054 (diff)
downloadabrt-f02e1d87d46aa6161d0cab5444e0abfa9624b78d.tar.gz
abrt-f02e1d87d46aa6161d0cab5444e0abfa9624b78d.tar.xz
abrt-f02e1d87d46aa6161d0cab5444e0abfa9624b78d.zip
Merge branch 'master' of git://git.fedorahosted.org/abrt
Diffstat (limited to 'lib/Plugins')
-rw-r--r--lib/Plugins/CCpp.cpp31
-rw-r--r--lib/Plugins/SQLite3.cpp73
-rw-r--r--lib/Plugins/SQLite3.h7
3 files changed, 57 insertions, 54 deletions
diff --git a/lib/Plugins/CCpp.cpp b/lib/Plugins/CCpp.cpp
index 2d0326c5..995ddbeb 100644
--- a/lib/Plugins/CCpp.cpp
+++ b/lib/Plugins/CCpp.cpp
@@ -428,22 +428,24 @@ std::string CAnalyzerCCpp::GetLocalUUID(const std::string& pDebugDumpDir)
{
update_client(_("Getting local universal unique identification..."));
- CDebugDump dd;
std::string UID;
std::string executable;
std::string package;
std::string buildIdPC;
std::string independentBuildIdPC;
- std::string core = "--core="+ pDebugDumpDir + "/" +FILENAME_COREDUMP;
+ std::string core = "--core=" + pDebugDumpDir + "/"FILENAME_COREDUMP;
char* command = (char*)"eu-unstrip";
char* args[4] = { (char*)"eu-unstrip", NULL, (char*)"-n", NULL };
args[1] = (char*)core.c_str();
+
+ CDebugDump dd;
dd.Open(pDebugDumpDir);
dd.LoadText(FILENAME_UID, UID);
dd.LoadText(FILENAME_EXECUTABLE, executable);
dd.LoadText(FILENAME_PACKAGE, package);
ExecVP(command, args, atoi(UID.c_str()), buildIdPC);
dd.Close();
+
GetIndependentBuildIdPC(buildIdPC, independentBuildIdPC);
return CreateHash(package + executable + independentBuildIdPC);
}
@@ -484,14 +486,13 @@ void CAnalyzerCCpp::CreateReport(const std::string& pDebugDumpDir)
dd.Close();
map_plugin_settings_t settings = GetSettings();
- if( settings["InstallDebuginfo"] == "yes" )
+ if (settings["InstallDebuginfo"] == "yes")
{
InstallDebugInfos(package);
}
- else {
- char buffer[1024];
- snprintf(buffer,1024, _("Skip debuginfo installation for package %s"), package.c_str());
- warn_client(std::string(buffer));
+ else
+ {
+ warn_client(ssprintf(_("Skip debuginfo installation for package %s"), package.c_str()));
}
GetBacktrace(pDebugDumpDir, backtrace);
@@ -554,17 +555,21 @@ void CAnalyzerCCpp::DeInit()
void CAnalyzerCCpp::SetSettings(const map_plugin_settings_t& pSettings)
{
- if (pSettings.find("MemoryMap") != pSettings.end())
+ map_plugin_settings_t::const_iterator end = pSettings.end();
+ map_plugin_settings_t::const_iterator it = pSettings.find("MemoryMap");
+ if (it != end)
{
- m_bMemoryMap = pSettings.find("MemoryMap")->second == "yes";
+ m_bMemoryMap = it->second == "yes";
}
- if (pSettings.find("DebugInfo") != pSettings.end())
+ it = pSettings.find("DebugInfo");
+ if (it != end)
{
- m_sDebugInfo = pSettings.find("DebugInfo")->second;
+ m_sDebugInfo = it->second;
}
- if (pSettings.find("InstallDebuginfo") != pSettings.end())
+ it = pSettings.find("InstallDebuginfo");
+ if (it != end)
{
- m_bInstallDebuginfo = pSettings.find("InstallDebuginfo")->second == "yes";
+ m_bInstallDebuginfo = it->second == "yes";
}
}
diff --git a/lib/Plugins/SQLite3.cpp b/lib/Plugins/SQLite3.cpp
index a57da240..700ac913 100644
--- a/lib/Plugins/SQLite3.cpp
+++ b/lib/Plugins/SQLite3.cpp
@@ -1,6 +1,5 @@
/*
- DebugDump.h - header file for the library caring of writing new reports
- to the specific directory
+ SQLite3.cpp
Copyright (C) 2009 Zdenek Prikryl (zprikryl@redhat.com)
Copyright (C) 2009 RedHat inc.
@@ -33,7 +32,7 @@
#define ABRT_TABLE "abrt_v"ABRT_TABLE_VERSION_STR
#define SQLITE3_MASTER_TABLE "sqlite_master"
-// afret a while, we can drom a support for update, so a table can stay in
+// after a while, we can drop support for update, so a table can stay in
// normal limits
static const char* upate_sql_commands[][ABRT_TABLE_VERSION + 1] = {
// v0 -> *
@@ -100,9 +99,9 @@ bool CSQLite3::Exist(const std::string& pUUID, const std::string& pUID)
GetTable("SELECT "DATABASE_COLUMN_REPORTED" FROM "ABRT_TABLE" WHERE "
DATABASE_COLUMN_UUID" = '"+pUUID+"' AND "
DATABASE_COLUMN_UID" = '"+pUID+"';", table);
- if(table.empty())
+ if (table.empty())
{
- return false;
+ return false;
}
return true;
}
@@ -113,7 +112,7 @@ void CSQLite3::Exec(const std::string& pCommand)
int ret = sqlite3_exec(m_pDB, pCommand.c_str(), 0, 0, &err);
if (ret != SQLITE_OK)
{
- throw CABRTException(EXCEP_PLUGIN, "SQLite3::Exec(): Error on: " + pCommand + " " + err);
+ throw CABRTException(EXCEP_PLUGIN, "SQLite3::Exec(): Error on: " + pCommand + " " + err);
}
}
@@ -211,7 +210,7 @@ bool CSQLite3::CheckTable()
int ret = sqlite3_get_table(m_pDB, command.c_str(), &table, &nrow, &ncol, &err);
if (ret != SQLITE_OK)
{
- throw CABRTException(EXCEP_PLUGIN, "SQLite3::GetTable(): Error on: " + command + " " + err);
+ throw CABRTException(EXCEP_PLUGIN, "SQLite3::GetTable(): Error on: " + command + " " + err);
}
if (!nrow || !nrow)
{
@@ -281,24 +280,24 @@ void CSQLite3::Insert(const std::string& pUUID,
{
if (!Exist(pUUID, pUID))
{
- Exec("INSERT INTO "ABRT_TABLE"("
- DATABASE_COLUMN_UUID","
- DATABASE_COLUMN_UID","
- DATABASE_COLUMN_DEBUG_DUMP_PATH","
- DATABASE_COLUMN_TIME")"
- " VALUES ('"+pUUID+"',"
- "'"+pUID+"',"
- "'"+pDebugDumpPath+"',"
- "'"+pTime+"'"
- ");");
+ Exec("INSERT INTO "ABRT_TABLE"("
+ DATABASE_COLUMN_UUID","
+ DATABASE_COLUMN_UID","
+ DATABASE_COLUMN_DEBUG_DUMP_PATH","
+ DATABASE_COLUMN_TIME")"
+ " VALUES ('"+pUUID+"',"
+ "'"+pUID+"',"
+ "'"+pDebugDumpPath+"',"
+ "'"+pTime+"'"
+ ");");
}
else
{
- Exec("UPDATE "ABRT_TABLE" "
- "SET "DATABASE_COLUMN_COUNT" = "DATABASE_COLUMN_COUNT" + 1, "
- DATABASE_COLUMN_TIME" = '"+pTime+"' "
- "WHERE "DATABASE_COLUMN_UUID" = '"+pUUID+"' "
- "AND "DATABASE_COLUMN_UID" = '"+pUID+"';");
+ Exec("UPDATE "ABRT_TABLE" "
+ "SET "DATABASE_COLUMN_COUNT" = "DATABASE_COLUMN_COUNT" + 1, "
+ DATABASE_COLUMN_TIME" = '"+pTime+"' "
+ "WHERE "DATABASE_COLUMN_UUID" = '"+pUUID+"' "
+ "AND "DATABASE_COLUMN_UID" = '"+pUID+"';");
}
}
@@ -306,14 +305,14 @@ void CSQLite3::Delete(const std::string& pUUID, const std::string& pUID)
{
if (pUID == "0")
{
- Exec("DELETE FROM "ABRT_TABLE" "
- "WHERE "DATABASE_COLUMN_UUID" = '"+pUUID+"';");
+ Exec("DELETE FROM "ABRT_TABLE" "
+ "WHERE "DATABASE_COLUMN_UUID" = '"+pUUID+"';");
}
else if (Exist(pUUID, pUID))
{
- Exec("DELETE FROM "ABRT_TABLE" "
- "WHERE "DATABASE_COLUMN_UUID" = '"+pUUID+"' "
- "AND "DATABASE_COLUMN_UID" = '"+pUID+"';");
+ Exec("DELETE FROM "ABRT_TABLE" "
+ "WHERE "DATABASE_COLUMN_UUID" = '"+pUUID+"' "
+ "AND "DATABASE_COLUMN_UID" = '"+pUID+"';");
}
else
{
@@ -325,14 +324,14 @@ void CSQLite3::SetReported(const std::string& pUUID, const std::string& pUID, co
{
if (Exist(pUUID, pUID))
{
- Exec("UPDATE "ABRT_TABLE" "
- "SET "DATABASE_COLUMN_REPORTED" = 1 "
- "WHERE "DATABASE_COLUMN_UUID" = '"+pUUID+"' "
- "AND "DATABASE_COLUMN_UID" = '"+pUID+"';");
- Exec("UPDATE "ABRT_TABLE" "
- "SET "DATABASE_COLUMN_MESSAGE" = '" + pMessage + "' "
- "WHERE "DATABASE_COLUMN_UUID" = '"+pUUID+"' "
- "AND "DATABASE_COLUMN_UID" = '"+pUID+"';");
+ Exec("UPDATE "ABRT_TABLE" "
+ "SET "DATABASE_COLUMN_REPORTED" = 1 "
+ "WHERE "DATABASE_COLUMN_UUID" = '"+pUUID+"' "
+ "AND "DATABASE_COLUMN_UID" = '"+pUID+"';");
+ Exec("UPDATE "ABRT_TABLE" "
+ "SET "DATABASE_COLUMN_MESSAGE" = '" + pMessage + "' "
+ "WHERE "DATABASE_COLUMN_UUID" = '"+pUUID+"' "
+ "AND "DATABASE_COLUMN_UID" = '"+pUID+"';");
}
else
{
@@ -340,7 +339,7 @@ void CSQLite3::SetReported(const std::string& pUUID, const std::string& pUID, co
}
}
-const vector_database_rows_t CSQLite3::GetUIDData(const std::string& pUID)
+vector_database_rows_t CSQLite3::GetUIDData(const std::string& pUID)
{
vector_database_rows_t table;
if (pUID == "0")
@@ -356,7 +355,7 @@ const vector_database_rows_t CSQLite3::GetUIDData(const std::string& pUID)
return table;
}
-const database_row_t CSQLite3::GetUUIDData(const std::string& pUUID, const std::string& pUID)
+database_row_t CSQLite3::GetUUIDData(const std::string& pUUID, const std::string& pUID)
{
vector_database_rows_t table;
diff --git a/lib/Plugins/SQLite3.h b/lib/Plugins/SQLite3.h
index 1604d3be..e7ca8ae2 100644
--- a/lib/Plugins/SQLite3.h
+++ b/lib/Plugins/SQLite3.h
@@ -1,6 +1,5 @@
/*
- DebugDump.h - header file for the library caring of writing new reports
- to the specific directory
+ SQLite3.h
Copyright (C) 2009 Zdenek Prikryl (zprikryl@redhat.com)
Copyright (C) 2009 RedHat inc.
@@ -55,8 +54,8 @@ class CSQLite3 : public CDatabase
virtual void Delete(const std::string& pUUID, const std::string& pUID);
virtual void SetReported(const std::string& pUUID, const std::string& pUID, const std::string& pMessage);
- virtual const vector_database_rows_t GetUIDData(const std::string& pUID);
- virtual const database_row_t GetUUIDData(const std::string& pUUID, const std::string& pUID);
+ virtual vector_database_rows_t GetUIDData(const std::string& pUID);
+ virtual database_row_t GetUUIDData(const std::string& pUUID, const std::string& pUID);
virtual void SetSettings(const map_plugin_settings_t& pSettings);
virtual map_plugin_settings_t GetSettings();