summaryrefslogtreecommitdiffstats
path: root/lib/Plugins/Python.cpp
blob: 79247d65d8012b28acd4745404c0a98214d331a8 (plain)
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
#include "abrtlib.h"
#include "Python.h"
#include "DebugDump.h"
#include "ABRTException.h"

static std::string CreateHash(const char *pDebugDumpDir)
{
	std::string uuid;
	CDebugDump dd;
	dd.Open(pDebugDumpDir);
	dd.LoadText(FILENAME_UUID, uuid);
	return uuid;
}

std::string CAnalyzerPython::GetLocalUUID(const char *pDebugDumpDir)
{
	return CreateHash(pDebugDumpDir);
}
std::string CAnalyzerPython::GetGlobalUUID(const char *pDebugDumpDir)
{
	return GetLocalUUID(pDebugDumpDir);
}

void CAnalyzerPython::Init()
{
}

void CAnalyzerPython::DeInit()
{
}

PLUGIN_INFO(ANALYZER,
            CAnalyzerPython,
            "Python",
            "0.0.1",
            "Analyzes crashes in Python programs",
            "zprikryl@redhat.com, jmoskovc@redhat.com",
            "https://fedorahosted.org/abrt/wiki",
            "");