summaryrefslogtreecommitdiffstats
path: root/src/CLI/ABRTSocket.h
blob: d4905be10bfc8d82ea43c2c8f30c7f8aa63105ba (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
#ifndef ABRTSOCKET_H_
#define ABRTSOCKET_H_

#include <string>

#include "CrashTypes.h"

class CABRTSocket
{
    private:
        int m_nSocket;

        void Send(const char *pMessage);
        void Recv(std::string& pMessage);

    public:
        CABRTSocket();
        ~CABRTSocket();

        void Connect(const char *pPath);
        void Disconnect();

        vector_map_crash_data_t GetCrashInfos();
        map_crash_data_t CreateReport(const char *pUUID);
        void Report(const map_crash_data_t& pReport);
        int32_t DeleteDebugDump(const char *pUUID);
};

#endif /* ABRTSOCKET_H_ */