summaryrefslogtreecommitdiffstats
path: root/src/Applet/Applet.cpp
blob: cf58c7da9fd7c9523ef4263673e11175297e136b (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*
    Copyright (C) 2009  Jiri Moskovcak (jmoskovc@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.
    */

#include "CCApplet.h"
#include <iostream>
#include <dbus/dbus-shared.h>

#if HAVE_CONFIG_H
    #include <config.h>
#endif

#if HAVE_LOCALE_H
    #include <locale.h>
#endif

#if ENABLE_NLS
    #include <libintl.h>
    #define _(S) gettext(S)
#else
    #define _(S) (S)
#endif

//@@global applet object
CApplet *applet;

static void
crash_notify_cb(const char* progname)
{
    const char *message = _("A crash in package %s has been detected!");
#ifdef DEBUG
    std::cerr << "Application " << progname << " has crashed!" << std::endl;
#endif
    //applet->AddEvent(uid, std::string(progname));
    applet->SetIconTooltip(message, progname);
    applet->ShowIcon();
    applet->CrashNotify(message, progname);
}

static void
quota_exceed_cb(const char* str)
{
    applet->ShowIcon();
    applet->CrashNotify("%s", str);
}

int main(int argc, char **argv)
{
    setlocale(LC_ALL,"");

#if ENABLE_NLS
    bindtextdomain(PACKAGE, LOCALEDIR);
    textdomain(PACKAGE);
#endif

    /* need to be thread safe */
    g_thread_init(NULL);
    gdk_threads_init();
    gdk_threads_enter();
    gtk_init(&argc,&argv);
    /* prevent zombies when we spawn abrt-gui */
    signal(SIGCHLD, SIG_IGN);

    /* move to the DBusClient::connect */
    DBus::Glib::BusDispatcher dispatcher;
    /* this should bind the dispatcher with mainloop */
    dispatcher.attach(NULL);
    DBus::default_dispatcher = &dispatcher;
    DBus::Connection session = DBus::Connection::SessionBus();
    //FIXME: possible race, but the dbus-c++ API won't let us check return value of request_name :(
    if(session.has_name("com.redhat.abrt.applet"))
    {
        //applet is already running
        std::cerr << _("Applet is already running.") << std::endl;
        return -1;
    }
    else
    {
        //applet is not running, so claim the name on the session bus
        session.request_name("com.redhat.abrt.applet");
    }

    DBus::Connection conn = DBus::Connection::SystemBus();
    applet = new CApplet(conn, session, CC_DBUS_PATH, CC_DBUS_NAME);
    applet->ConnectCrashHandler(crash_notify_cb);
    applet->ConnectQuotaExceedHandler(quota_exceed_cb);
    if(!conn.has_name(CC_DBUS_NAME))
    {
        std::cout << _("ABRT service is not running") << std::endl;
        applet->Disable(_("ABRT service is not running"));
    }

    gtk_main();
    gdk_threads_leave();
    delete applet;
    return 0;
}