summaryrefslogtreecommitdiffstats
path: root/src/gui-wizard-gtk/main.c
blob: de47f8229f5e905ef9f43dee03ddace4e74fb6c2 (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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*
    Copyright (C) 2011  ABRT Team
    Copyright (C) 2011  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 <gtk/gtk.h>
#include "abrtlib.h"
#include "parse_options.h"
#include "wizard.h"
#include "libreport-gtk.h"
#if HAVE_LOCALE_H
# include <locale.h>
#endif

char *g_glade_file = NULL;
char *g_dump_dir_name = NULL;
char *g_analyze_events = NULL;
char *g_report_events = NULL;
int g_report_only = false;
problem_data_t *g_cd;


void reload_problem_data_from_dump_dir(void)
{
    free(g_analyze_events);
    free(g_report_events);

    struct dump_dir *dd = dd_opendir(g_dump_dir_name, DD_OPEN_READONLY);
    if (!dd)
        xfunc_die(); /* dd_opendir already logged error msg */

    problem_data_t *new_cd = create_problem_data_from_dump_dir(dd);
    add_to_problem_data_ext(new_cd, CD_DUMPDIR, g_dump_dir_name, (CD_FLAG_TXT | CD_FLAG_ISNOTEDITABLE));

    g_analyze_events = list_possible_events(dd, NULL, "analyze");
    g_report_events = list_possible_events(dd, NULL, "report");
    dd_close(dd);

    if (1)
    {
        /* Copy "selected for reporting" flags */
        GHashTableIter iter;
        char *name;
        struct problem_item *new_item;
        g_hash_table_iter_init(&iter, new_cd);
        while (g_hash_table_iter_next(&iter, (void**)&name, (void**)&new_item))
        {
            struct problem_item *old_item = g_cd ? get_problem_data_item_or_NULL(g_cd, name) : NULL;
            if (old_item)
            {
                new_item->selected_by_user = old_item->selected_by_user;
            }
            else
            {
                new_item->selected_by_user = 0;
            }
            //log("%s: was ->selected_by_user=%d", __func__, new_item->selected_by_user);
        }
        free_problem_data(g_cd);
    }
    g_cd = new_cd;

    /* Load /etc/abrt/events/foo.{conf,xml} stuff */
    load_event_config_data();
    load_event_config_data_from_keyring();
//TODO: Load ~/.abrt/events/foo.conf?
}

int main(int argc, char **argv)
{
    const char *prgname = "abrt";
    abrt_init(argv);

    /* I18n */
    setlocale(LC_ALL, "");
#if ENABLE_NLS
    bindtextdomain(PACKAGE, LOCALEDIR);
    textdomain(PACKAGE);
#endif

    gtk_init(&argc, &argv);

    /* Can't keep these strings/structs static: _() doesn't support that */
    const char *program_usage_string = _(
        "\b [-vp] [-g GUI_FILE] [-o|--report-only] [-n|--prgname] DIR\n"
        "\n"
        "GUI tool to analyze and report problem saved in specified DIR"
    );
    enum {
        OPT_v = 1 << 0,
        OPT_g = 1 << 1,
        OPT_p = 1 << 2,
        OPT_o = 1 << 3, // report only
        OPT_n = 1 << 4, // prgname
    };
    /* Keep enum above and order of options below in sync! */
    struct options program_options[] = {
        OPT__VERBOSE(&g_verbose),
        OPT_STRING('g', NULL, &g_glade_file, "FILE" , _("Alternate GUI file")),
        OPT_BOOL(  'p', NULL, NULL                  , _("Add program names to log")),
        /* for use from 3rd party apps to show just a reporter selector */
        OPT_BOOL(  'o', "report-only", &g_report_only         , _("Use wizard to report pre-filled problem data")),
        /* override the default prgname, so it's the same as the application
           which is calling us
        */
        OPT_STRING(  'n', "prgname", &prgname, "NAME" , _("Override the default prgname")),
        OPT_END()
    };
    unsigned opts = parse_opts(argc, argv, program_options, program_usage_string);
    argv += optind;
    if (!argv[0] || argv[1]) /* zero or >1 arguments */
        show_usage_and_die(program_usage_string, program_options);

    /* without this the name is set to argv[0] which confuses
     * desktops which uses the name to find the corresponding .desktop file
     * trac#180
     */
    g_set_prgname(prgname);

    export_abrt_envvars(opts & OPT_p);

    g_dump_dir_name = xstrdup(argv[0]);

    /* load /etc/abrt/events/foo.{conf,xml} stuff
       and ~/.abrt/events/foo.conf */
    load_event_config_data();
    load_event_config_data_from_keyring();

    create_assistant();

    g_custom_logger = &show_error_as_msgbox;

    reload_problem_data_from_dump_dir();

    update_gui_state_from_problem_data();

    /* Enter main loop */
    gtk_main();

    return 0;
}