summaryrefslogtreecommitdiffstats
path: root/src/daemon/PluginManager.cpp
Commit message (Collapse)AuthorAgeFilesLines
* removal of C++isms from libabrt, part 1Denys Vlasenko2010-12-081-24/+25
| | | | | | | | | | | | | This patch converts libabrt usage of C++ map<string, string> to a glib-based container, GHashTable. It is typedef-ed to map_string_h. We can't typedef it to map_string_t, since other parts of ABRT (daemon, cli) still use that name for C++ container. Also, exceptions are removed everywhere. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* remove sqlite DBDenys Vlasenko2010-11-231-14/+0
| | | | | | | | | | | | | | | | | | | | | | 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>
* remove PLUGIN_DYNAMIC_LOAD_UNLOADNikola Pajkovsky2010-11-191-29/+0
| | | | | | it contains polkit Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* remove polkitNikola Pajkovsky2010-11-191-1/+0
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* removing unused Reporter class and unused members of PluginManager classDenys Vlasenko2010-11-171-32/+0
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* remove unused SetPluginSettings(...)Nikola Pajkovsky2010-11-161-72/+0
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* Decouple settings handling from old-style pluginsDenys Vlasenko2010-11-101-31/+0
| | | | | | | | The breakage was discovered when i removed Logger class. it turned out the fix is somewhat involved. This change implements it as discussed with the rest of the team. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* reduce usage of daemon's library in non-daemon partsDenys Vlasenko2010-10-251-1/+0
| | | | Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
* remove dead codeNikola Pajkovsky2010-09-011-24/+0
| | | | Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
* lower case direcotry(no code changed)Nikola Pajkovsky2010-08-101-0/+463
Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>