Blame SOURCES/1000-bugzilla-port-to-Problem-Format-API.patch

d21897
From ff32b9ee7a7e396e33f1e9aeaa5bafd26ccbb273 Mon Sep 17 00:00:00 2001
d21897
From: Jakub Filak <jfilak@redhat.com>
d21897
Date: Thu, 4 Dec 2014 08:45:07 +0100
d21897
Subject: [PATCH 1000/1015] bugzilla: port to Problem Format API
d21897
d21897
Related to #303
d21897
d21897
Signed-off-by: Jakub Filak <jfilak@redhat.com>
d21897
---
d21897
 src/plugins/reporter-bugzilla.c | 691 ++++------------------------------------
d21897
 1 file changed, 59 insertions(+), 632 deletions(-)
d21897
d21897
diff --git a/src/plugins/reporter-bugzilla.c b/src/plugins/reporter-bugzilla.c
d21897
index fbe7873..9ff3df3 100644
d21897
--- a/src/plugins/reporter-bugzilla.c
d21897
+++ b/src/plugins/reporter-bugzilla.c
d21897
@@ -17,515 +17,11 @@
d21897
     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
d21897
 */
d21897
 #include "internal_libreport.h"
d21897
+#include "problem_report.h"
d21897
 #include "client.h"
d21897
 #include "abrt_xmlrpc.h"
d21897
 #include "rhbz.h"
d21897
 
d21897
-#include <satyr/stacktrace.h>
d21897
-#include <satyr/abrt.h>
d21897
-
d21897
-struct section_t {
d21897
-    char *name;
d21897
-    GList *items;
d21897
-};
d21897
-typedef struct section_t section_t;
d21897
-
d21897
-
d21897
-/* Utility functions */
d21897
-
d21897
-static
d21897
-GList* split_string_on_char(const char *str, char ch)
d21897
-{
d21897
-    GList *list = NULL;
d21897
-    for (;;)
d21897
-    {
d21897
-        const char *delim = strchrnul(str, ch);
d21897
-        list = g_list_prepend(list, xstrndup(str, delim - str));
d21897
-        if (*delim == '\0')
d21897
-            break;
d21897
-        str = delim + 1;
d21897
-    }
d21897
-    return g_list_reverse(list);
d21897
-}
d21897
-
d21897
-static
d21897
-int compare_item_name(const char *lookup, const char *name)
d21897
-{
d21897
-    if (lookup[0] == '-')
d21897
-        lookup++;
d21897
-    else if (strncmp(lookup, "%bare_", 6) == 0)
d21897
-        lookup += 6;
d21897
-    return strcmp(lookup, name);
d21897
-}
d21897
-
d21897
-static
d21897
-int is_item_name_in_section(const section_t *lookup, const char *name)
d21897
-{
d21897
-    if (g_list_find_custom(lookup->items, name, (GCompareFunc)compare_item_name))
d21897
-        return 0; /* "found it!" */
d21897
-    return 1;
d21897
-}
d21897
-
d21897
-static
d21897
-bool is_explicit_or_forbidden(const char *name, GList *comment_fmt_spec)
d21897
-{
d21897
-    return g_list_find_custom(comment_fmt_spec, name, (GCompareFunc)is_item_name_in_section);
d21897
-}
d21897
-
d21897
-static
d21897
-GList* load_bzrep_conf_file(const char *path)
d21897
-{
d21897
-    FILE *fp = stdin;
d21897
-    if (strcmp(path, "-") != 0)
d21897
-    {
d21897
-        fp = fopen(path, "r");
d21897
-        if (!fp)
d21897
-            return NULL;
d21897
-    }
d21897
-
d21897
-    GList *sections = NULL;
d21897
-
d21897
-    char *line;
d21897
-    while ((line = xmalloc_fgetline(fp)) != NULL)
d21897
-    {
d21897
-        /* Skip comments */
d21897
-        char first = *skip_whitespace(line);
d21897
-        if (first == '#')
d21897
-            goto free_line;
d21897
-
d21897
-        /* Handle trailing backslash continuation */
d21897
- check_continuation: ;
d21897
-        unsigned len = strlen(line);
d21897
-        if (len && line[len-1] == '\\')
d21897
-        {
d21897
-            line[len-1] = '\0';
d21897
-            char *next_line = xmalloc_fgetline(fp);
d21897
-            if (next_line)
d21897
-            {
d21897
-                line = append_to_malloced_string(line, next_line);
d21897
-                free(next_line);
d21897
-                goto check_continuation;
d21897
-            }
d21897
-        }
d21897
-
d21897
-        /* We are reusing line buffer to form temporary
d21897
-         * "key\0values\0..." in its beginning
d21897
-         */
d21897
-        bool summary_line = false;
d21897
-        char *value = NULL;
d21897
-        char *src;
d21897
-        char *dst;
d21897
-        for (src = dst = line; *src; src++)
d21897
-        {
d21897
-            char c = *src;
d21897
-            /* did we reach the value list? */
d21897
-            if (!value && c == ':' && src[1] == ':')
d21897
-            {
d21897
-                *dst++ = '\0'; /* terminate key */
d21897
-                src += 2;
d21897
-                value = dst; /* remember where value starts */
d21897
-                summary_line = (strcmp(line, "%summary") == 0);
d21897
-                if (summary_line)
d21897
-                {
d21897
-                    value = src;
d21897
-                    break;
d21897
-                }
d21897
-                continue;
d21897
-            }
d21897
-            /* skip whitespace in value list */
d21897
-            if (value && isspace(c))
d21897
-                continue;
d21897
-            *dst++ = c; /* store next key or value char */
d21897
-        }
d21897
-
d21897
-        GList *item_list = NULL;
d21897
-        if (summary_line)
d21897
-        {
d21897
-            /* %summary is special */
d21897
-            item_list = g_list_append(NULL, xstrdup(skip_whitespace(value)));
d21897
-        }
d21897
-        else
d21897
-        {
d21897
-            *dst = '\0'; /* terminate value (or key) */
d21897
-            if (value)
d21897
-                item_list = split_string_on_char(value, ',');
d21897
-        }
d21897
-
d21897
-        section_t *sec = xzalloc(sizeof(*sec));
d21897
-        sec->name = xstrdup(line);
d21897
-        sec->items = item_list;
d21897
-        sections = g_list_prepend(sections, sec);
d21897
-
d21897
- free_line:
d21897
-        free(line);
d21897
-    }
d21897
-
d21897
-    if (fp != stdin)
d21897
-        fclose(fp);
d21897
-
d21897
-    return g_list_reverse(sections);
d21897
-}
d21897
-
d21897
-
d21897
-/* Summary generation */
d21897
-
d21897
-#define MAX_OPT_DEPTH 10
d21897
-static
d21897
-char *format_percented_string(const char *str, problem_data_t *pd)
d21897
-{
d21897
-    size_t old_pos[MAX_OPT_DEPTH] = { 0 };
d21897
-    int okay[MAX_OPT_DEPTH] = { 1 };
d21897
-    int opt_depth = 1;
d21897
-    struct strbuf *result = strbuf_new();
d21897
-
d21897
-    while (*str) {
d21897
-        switch (*str) {
d21897
-        default:
d21897
-            strbuf_append_char(result, *str);
d21897
-            str++;
d21897
-            break;
d21897
-        case '\\':
d21897
-            if (str[1])
d21897
-                str++;
d21897
-            strbuf_append_char(result, *str);
d21897
-            str++;
d21897
-            break;
d21897
-        case '[':
d21897
-            if (str[1] == '[' && opt_depth < MAX_OPT_DEPTH)
d21897
-            {
d21897
-                old_pos[opt_depth] = result->len;
d21897
-                okay[opt_depth] = 1;
d21897
-                opt_depth++;
d21897
-                str += 2;
d21897
-            } else {
d21897
-                strbuf_append_char(result, *str);
d21897
-                str++;
d21897
-            }
d21897
-            break;
d21897
-        case ']':
d21897
-            if (str[1] == ']' && opt_depth > 1)
d21897
-            {
d21897
-                opt_depth--;
d21897
-                if (!okay[opt_depth])
d21897
-                {
d21897
-                    result->len = old_pos[opt_depth];
d21897
-                    result->buf[result->len] = '\0';
d21897
-                }
d21897
-                str += 2;
d21897
-            } else {
d21897
-                strbuf_append_char(result, *str);
d21897
-                str++;
d21897
-            }
d21897
-            break;
d21897
-        case '%': ;
d21897
-            char *nextpercent = strchr(++str, '%');
d21897
-            if (!nextpercent)
d21897
-            {
d21897
-                error_msg_and_die("Unterminated %%element%%: '%s'", str - 1);
d21897
-            }
d21897
-
d21897
-            *nextpercent = '\0';
d21897
-            const problem_item *item = problem_data_get_item_or_NULL(pd, str);
d21897
-            *nextpercent = '%';
d21897
-
d21897
-            if (item && (item->flags & CD_FLAG_TXT))
d21897
-                strbuf_append_str(result, item->content);
d21897
-            else
d21897
-                okay[opt_depth - 1] = 0;
d21897
-            str = nextpercent + 1;
d21897
-            break;
d21897
-        }
d21897
-    }
d21897
-
d21897
-    if (opt_depth > 1)
d21897
-    {
d21897
-        error_msg_and_die("Unbalanced [[ ]] bracket");
d21897
-    }
d21897
-
d21897
-    if (!okay[0])
d21897
-    {
d21897
-        error_msg("Undefined variable outside of [[ ]] bracket");
d21897
-    }
d21897
-
d21897
-    return strbuf_free_nobuf(result);
d21897
-}
d21897
-
d21897
-static
d21897
-char *create_summary_string(problem_data_t *pd, GList *comment_fmt_spec)
d21897
-{
d21897
-    GList *l = comment_fmt_spec;
d21897
-    while (l)
d21897
-    {
d21897
-        section_t *sec = l->data;
d21897
-        l = l->next;
d21897
-
d21897
-        /* Find %summary" */
d21897
-        if (strcmp(sec->name, "%summary") != 0)
d21897
-            continue;
d21897
-
d21897
-        GList *item = sec->items;
d21897
-        if (!item)
d21897
-            /* not supposed to happen, there will be at least "" */
d21897
-            error_msg_and_die("BUG in %%summary parser");
d21897
-
d21897
-        const char *str = item->data;
d21897
-        return format_percented_string(str, pd);
d21897
-    }
d21897
-
d21897
-    return format_percented_string("%reason%", pd);
d21897
-}
d21897
-
d21897
-
d21897
-/* BZ comment generation */
d21897
-
d21897
-static
d21897
-int append_text(struct strbuf *result, const char *item_name, const char *content, bool print_item_name)
d21897
-{
d21897
-    char *eol = strchrnul(content, '\n');
d21897
-    if (eol[0] == '\0' || eol[1] == '\0')
d21897
-    {
d21897
-        /* one-liner */
d21897
-        int pad = 16 - (strlen(item_name) + 2);
d21897
-        if (pad < 0)
d21897
-            pad = 0;
d21897
-        if (print_item_name)
d21897
-            strbuf_append_strf(result,
d21897
-                    eol[0] == '\0' ? "%s: %*s%s\n" : "%s: %*s%s",
d21897
-                    item_name, pad, "", content
d21897
-            );
d21897
-        else
d21897
-            strbuf_append_strf(result,
d21897
-                    eol[0] == '\0' ? "%s\n" : "%s",
d21897
-                    content
d21897
-            );
d21897
-    }
d21897
-    else
d21897
-    {
d21897
-        /* multi-line item */
d21897
-        if (print_item_name)
d21897
-            strbuf_append_strf(result, "%s:\n", item_name);
d21897
-        for (;;)
d21897
-        {
d21897
-            eol = strchrnul(content, '\n');
d21897
-            strbuf_append_strf(result,
d21897
-                    /* For %bare_multiline_item, we don't want to print colons */
d21897
-                    (print_item_name ? ":%.*s\n" : "%.*s\n"),
d21897
-                    (int)(eol - content), content
d21897
-            );
d21897
-            if (eol[0] == '\0' || eol[1] == '\0')
d21897
-                break;
d21897
-            content = eol + 1;
d21897
-        }
d21897
-    }
d21897
-    return 1;
d21897
-}
d21897
-
d21897
-static
d21897
-int append_short_backtrace(struct strbuf *result, problem_data_t *problem_data, size_t max_text_size, bool print_item_name)
d21897
-{
d21897
-    const problem_item *item = problem_data_get_item_or_NULL(problem_data,
d21897
-                                                             FILENAME_BACKTRACE);
d21897
-    if (!item)
d21897
-        return 0; /* "I did not print anything" */
d21897
-    if (!(item->flags & CD_FLAG_TXT))
d21897
-        return 0; /* "I did not print anything" */
d21897
-
d21897
-    char *truncated = NULL;
d21897
-
d21897
-    if (strlen(item->content) >= max_text_size)
d21897
-    {
d21897
-        char *error_msg = NULL;
d21897
-        const char *analyzer = problem_data_get_content_or_NULL(problem_data, FILENAME_ANALYZER);
d21897
-        if (!analyzer)
d21897
-            return 0;
d21897
-
d21897
-        /* For CCpp crashes, use the GDB-produced backtrace which should be
d21897
-         * available by now. sr_abrt_type_from_analyzer returns SR_REPORT_CORE
d21897
-         * by default for CCpp crashes.
d21897
-         */
d21897
-        enum sr_report_type report_type = sr_abrt_type_from_analyzer(analyzer);
d21897
-        if (strcmp(analyzer, "CCpp") == 0)
d21897
-            report_type = SR_REPORT_GDB;
d21897
-
d21897
-        struct sr_stacktrace *backtrace = sr_stacktrace_parse(report_type,
d21897
-                item->content, &error_msg);
d21897
-
d21897
-        if (!backtrace)
d21897
-        {
d21897
-            log(_("Can't parse backtrace: %s"), error_msg);
d21897
-            free(error_msg);
d21897
-            return 0;
d21897
-        }
d21897
-
d21897
-        /* Get optimized thread stack trace for 10 top most frames */
d21897
-        truncated = sr_stacktrace_to_short_text(backtrace, 10);
d21897
-        sr_stacktrace_free(backtrace);
d21897
-
d21897
-        if (!truncated)
d21897
-        {
d21897
-            log(_("Can't generate stacktrace description (no crash thread?)"));
d21897
-            return 0;
d21897
-        }
d21897
-    }
d21897
-
d21897
-    append_text(result,
d21897
-                /*item_name:*/ truncated ? "truncated_backtrace" : FILENAME_BACKTRACE,
d21897
-                /*content:*/   truncated ? truncated             : item->content,
d21897
-                print_item_name
d21897
-    );
d21897
-    free(truncated);
d21897
-    return 1;
d21897
-}
d21897
-
d21897
-static
d21897
-int append_item(struct strbuf *result, const char *item_name, problem_data_t *pd, GList *comment_fmt_spec)
d21897
-{
d21897
-    bool print_item_name = (strncmp(item_name, "%bare_", strlen("%bare_")) != 0);
d21897
-    if (!print_item_name)
d21897
-        item_name += strlen("%bare_");
d21897
-
d21897
-    if (item_name[0] != '%')
d21897
-    {
d21897
-        struct problem_item *item = problem_data_get_item_or_NULL(pd, item_name);
d21897
-        if (!item)
d21897
-            return 0; /* "I did not print anything" */
d21897
-        if (!(item->flags & CD_FLAG_TXT))
d21897
-            return 0; /* "I did not print anything" */
d21897
-
d21897
-        char *formatted = problem_item_format(item);
d21897
-        char *content = formatted ? formatted : item->content;
d21897
-        append_text(result, item_name, content, print_item_name);
d21897
-        free(formatted);
d21897
-        return 1; /* "I printed something" */
d21897
-    }
d21897
-
d21897
-    /* Special item name */
d21897
-
d21897
-    /* Compat with previously-existed ad-hockery: %short_backtrace */
d21897
-    if (strcmp(item_name, "%short_backtrace") == 0)
d21897
-        return append_short_backtrace(result, pd, CD_TEXT_ATT_SIZE_BZ, print_item_name);
d21897
-
d21897
-    /* Compat with previously-existed ad-hockery: %reporter */
d21897
-    if (strcmp(item_name, "%reporter") == 0)
d21897
-        return append_text(result, "reporter", PACKAGE"-"VERSION, print_item_name);
d21897
-
d21897
-    /* %oneline,%multiline,%text */
d21897
-    bool oneline   = (strcmp(item_name+1, "oneline"  ) == 0);
d21897
-    bool multiline = (strcmp(item_name+1, "multiline") == 0);
d21897
-    bool text      = (strcmp(item_name+1, "text"     ) == 0);
d21897
-    if (!oneline && !multiline && !text)
d21897
-    {
d21897
-        log("Unknown or unsupported element specifier '%s'", item_name);
d21897
-        return 0; /* "I did not print anything" */
d21897
-    }
d21897
-
d21897
-    int printed = 0;
d21897
-
d21897
-    /* Iterate over _sorted_ items */
d21897
-    GList *sorted_names = g_hash_table_get_keys(pd);
d21897
-    sorted_names = g_list_sort(sorted_names, (GCompareFunc)strcmp);
d21897
-
d21897
-    /* %text => do as if %oneline, then repeat as if %multiline */
d21897
-    if (text)
d21897
-        oneline = 1;
d21897
-
d21897
- again: ;
d21897
-    GList *l = sorted_names;
d21897
-    while (l)
d21897
-    {
d21897
-        const char *name = l->data;
d21897
-        l = l->next;
d21897
-        struct problem_item *item = g_hash_table_lookup(pd, name);
d21897
-        if (!item)
d21897
-            continue; /* paranoia, won't happen */
d21897
-
d21897
-        if (!(item->flags & CD_FLAG_TXT))
d21897
-            continue;
d21897
-
d21897
-        if (is_explicit_or_forbidden(name, comment_fmt_spec))
d21897
-            continue;
d21897
-
d21897
-        char *formatted = problem_item_format(item);
d21897
-        char *content = formatted ? formatted : item->content;
d21897
-        char *eol = strchrnul(content, '\n');
d21897
-        bool is_oneline = (eol[0] == '\0' || eol[1] == '\0');
d21897
-        if (oneline == is_oneline)
d21897
-            printed |= append_text(result, name, content, print_item_name);
d21897
-        free(formatted);
d21897
-    }
d21897
-    if (text && oneline)
d21897
-    {
d21897
-        /* %text, and we just did %oneline. Repeat as if %multiline */
d21897
-        oneline = 0;
d21897
-        /*multiline = 1; - not checked in fact, so why bother setting? */
d21897
-        goto again;
d21897
-    }
d21897
-
d21897
-    g_list_free(sorted_names); /* names themselves are not freed */
d21897
-
d21897
-    return printed;
d21897
-}
d21897
-
d21897
-static
d21897
-void generate_bz_comment(struct strbuf *result, problem_data_t *pd, GList *comment_fmt_spec)
d21897
-{
d21897
-    bool last_line_is_empty = true;
d21897
-    GList *l = comment_fmt_spec;
d21897
-    while (l)
d21897
-    {
d21897
-        section_t *sec = l->data;
d21897
-        l = l->next;
d21897
-
d21897
-        /* Skip special sections such as "%attach" */
d21897
-        if (sec->name[0] == '%')
d21897
-            continue;
d21897
-
d21897
-        if (sec->items)
d21897
-        {
d21897
-            /* "Text: item[,item]..." */
d21897
-            struct strbuf *output = strbuf_new();
d21897
-            GList *item = sec->items;
d21897
-            while (item)
d21897
-            {
d21897
-                const char *str = item->data;
d21897
-                item = item->next;
d21897
-                if (str[0] == '-') /* "-name", ignore it */
d21897
-                    continue;
d21897
-                append_item(output, str, pd, comment_fmt_spec);
d21897
-            }
d21897
-
d21897
-            if (output->len != 0)
d21897
-            {
d21897
-                strbuf_append_strf(result,
d21897
-                            sec->name[0] ? "%s:\n%s" : "%s%s",
d21897
-                            sec->name,
d21897
-                            output->buf
d21897
-                );
d21897
-                last_line_is_empty = false;
d21897
-            }
d21897
-            strbuf_free(output);
d21897
-        }
d21897
-        else
d21897
-        {
d21897
-            /* Just "Text" (can be "") */
d21897
-
d21897
-            /* Filter out consecutive empty lines */
d21897
-            if (sec->name[0] != '\0' || !last_line_is_empty)
d21897
-                strbuf_append_strf(result, "%s\n", sec->name);
d21897
-            last_line_is_empty = (sec->name[0] == '\0');
d21897
-        }
d21897
-    }
d21897
-
d21897
-    /* Nuke any trailing empty lines */
d21897
-    while (result->len >= 1
d21897
-     && result->buf[result->len-1] == '\n'
d21897
-     && (result->len == 1 || result->buf[result->len-2] == '\n')
d21897
-    ) {
d21897
-        result->buf[--result->len] = '\0';
d21897
-    }
d21897
-}
d21897
-
d21897
-
d21897
 /* BZ attachments */
d21897
 
d21897
 static
d21897
@@ -573,104 +69,6 @@ int attach_file_item(struct abrt_xmlrpc *ax, const char *bug_id,
d21897
     return (r == 0);
d21897
 }
d21897
 
d21897
-static
d21897
-int attach_item(struct abrt_xmlrpc *ax, const char *bug_id,
d21897
-                const char *item_name, problem_data_t *pd, GList *comment_fmt_spec)
d21897
-{
d21897
-    if (item_name[0] != '%')
d21897
-    {
d21897
-        struct problem_item *item = problem_data_get_item_or_NULL(pd, item_name);
d21897
-        if (!item)
d21897
-            return 0;
d21897
-        if (item->flags & CD_FLAG_TXT)
d21897
-            return attach_text_item(ax, bug_id, item_name, item);
d21897
-        if (item->flags & CD_FLAG_BIN)
d21897
-            return attach_file_item(ax, bug_id, item_name, item);
d21897
-        return 0;
d21897
-    }
d21897
-
d21897
-    /* Special item name */
d21897
-
d21897
-    /* %oneline,%multiline,%text,%binary */
d21897
-    bool oneline   = (strcmp(item_name+1, "oneline"  ) == 0);
d21897
-    bool multiline = (strcmp(item_name+1, "multiline") == 0);
d21897
-    bool text      = (strcmp(item_name+1, "text"     ) == 0);
d21897
-    bool binary    = (strcmp(item_name+1, "binary"   ) == 0);
d21897
-    if (!oneline && !multiline && !text && !binary)
d21897
-    {
d21897
-        log("Unknown or unsupported element specifier '%s'", item_name);
d21897
-        return 0;
d21897
-    }
d21897
-
d21897
-    log_debug("Special item_name '%s', iterating for attach...", item_name);
d21897
-    int done = 0;
d21897
-
d21897
-    /* Iterate over _sorted_ items */
d21897
-    GList *sorted_names = g_hash_table_get_keys(pd);
d21897
-    sorted_names = g_list_sort(sorted_names, (GCompareFunc)strcmp);
d21897
-
d21897
-    GList *l = sorted_names;
d21897
-    while (l)
d21897
-    {
d21897
-        const char *name = l->data;
d21897
-        l = l->next;
d21897
-        struct problem_item *item = g_hash_table_lookup(pd, name);
d21897
-        if (!item)
d21897
-            continue; /* paranoia, won't happen */
d21897
-
d21897
-        if (is_explicit_or_forbidden(name, comment_fmt_spec))
d21897
-            continue;
d21897
-
d21897
-        if ((item->flags & CD_FLAG_TXT) && !binary)
d21897
-        {
d21897
-            char *content = item->content;
d21897
-            char *eol = strchrnul(content, '\n');
d21897
-            bool is_oneline = (eol[0] == '\0' || eol[1] == '\0');
d21897
-            if (text || oneline == is_oneline)
d21897
-                done |= attach_text_item(ax, bug_id, name, item);
d21897
-        }
d21897
-        if ((item->flags & CD_FLAG_BIN) && binary)
d21897
-            done |= attach_file_item(ax, bug_id, name, item);
d21897
-    }
d21897
-
d21897
-    g_list_free(sorted_names); /* names themselves are not freed */
d21897
-
d21897
-
d21897
-    log_debug("...Done iterating over '%s' for attach", item_name);
d21897
-
d21897
-    return done;
d21897
-}
d21897
-
d21897
-static
d21897
-int attach_files(struct abrt_xmlrpc *ax, const char *bug_id,
d21897
-                problem_data_t *pd, GList *comment_fmt_spec)
d21897
-{
d21897
-    int done = 0;
d21897
-    GList *l = comment_fmt_spec;
d21897
-    while (l)
d21897
-    {
d21897
-        section_t *sec = l->data;
d21897
-        l = l->next;
d21897
-
d21897
-        /* Find %attach" */
d21897
-        if (strcmp(sec->name, "%attach") != 0)
d21897
-            continue;
d21897
-
d21897
-        GList *item = sec->items;
d21897
-        while (item)
d21897
-        {
d21897
-            const char *str = item->data;
d21897
-            item = item->next;
d21897
-            if (str[0] == '-') /* "-name", ignore it */
d21897
-                continue;
d21897
-            done |= attach_item(ax, bug_id, str, pd, comment_fmt_spec);
d21897
-        }
d21897
-    }
d21897
-
d21897
-    return done;
d21897
-}
d21897
-
d21897
-
d21897
 /* Main */
d21897
 
d21897
 struct bugzilla_struct {
d21897
@@ -1103,18 +501,29 @@ int main(int argc, char **argv)
d21897
 
d21897
     if (opts & OPT_D)
d21897
     {
d21897
-        GList *comment_fmt_spec = load_bzrep_conf_file(fmt_file);
d21897
-        struct strbuf *bzcomment_buf = strbuf_new();
d21897
-        generate_bz_comment(bzcomment_buf, problem_data, comment_fmt_spec);
d21897
-        char *bzcomment = strbuf_free_nobuf(bzcomment_buf);
d21897
-        char *summary = create_summary_string(problem_data, comment_fmt_spec);
d21897
+        problem_formatter_t *pf = problem_formatter_new();
d21897
+
d21897
+        if (problem_formatter_load_file(pf, fmt_file))
d21897
+            error_msg_and_die("Invalid format file: %s", fmt_file);
d21897
+
d21897
+        problem_report_t *pr = NULL;
d21897
+        if (problem_formatter_generate_report(pf, problem_data, &pr))
d21897
+            error_msg_and_die("Failed to format bug report from problem data");
d21897
+
d21897
         printf("summary: %s\n"
d21897
                 "\n"
d21897
                 "%s"
d21897
-                , summary, bzcomment
d21897
+                "\n"
d21897
+                , problem_report_get_summary(pr)
d21897
+                , problem_report_get_description(pr)
d21897
         );
d21897
-        free(bzcomment);
d21897
-        free(summary);
d21897
+
d21897
+        puts("attachments:");
d21897
+        for (GList *a = problem_report_get_attachments(pr); a != NULL; a = g_list_next(a))
d21897
+            printf(" %s\n", (const char *)a->data);
d21897
+
d21897
+        problem_report_free(pr);
d21897
+        problem_formatter_free(pf);
d21897
         exit(0);
d21897
     }
d21897
 
d21897
@@ -1227,22 +636,29 @@ int main(int argc, char **argv)
d21897
             /* Create new bug */
d21897
             log(_("Creating a new bug"));
d21897
 
d21897
-            GList *comment_fmt_spec = load_bzrep_conf_file(fmt_file);
d21897
+            problem_formatter_t *pf = problem_formatter_new();
d21897
+
d21897
+            if (problem_formatter_load_file(pf, fmt_file))
d21897
+                error_msg_and_die("Invalid format file: %s", fmt_file);
d21897
+
d21897
+            problem_report_t *pr = NULL;
d21897
+            if (problem_formatter_generate_report(pf, problem_data, &pr))
d21897
+                error_msg_and_die("Failed to format problem data");
d21897
 
d21897
-            struct strbuf *bzcomment_buf = strbuf_new();
d21897
-            generate_bz_comment(bzcomment_buf, problem_data, comment_fmt_spec);
d21897
             if (crossver_id >= 0)
d21897
-                strbuf_append_strf(bzcomment_buf, "\nPotential duplicate: bug %u\n", crossver_id);
d21897
-            char *bzcomment = strbuf_free_nobuf(bzcomment_buf);
d21897
-            char *summary = create_summary_string(problem_data, comment_fmt_spec);
d21897
+                problem_report_buffer_printf(
d21897
+                        problem_report_get_buffer(pr, PR_SEC_DESCRIPTION),
d21897
+                        "\nPotential duplicate: bug %u\n", crossver_id);
d21897
+
d21897
+            problem_formatter_free(pf);
d21897
+
d21897
             int new_id = rhbz_new_bug(client,
d21897
                     problem_data, rhbz.b_product, rhbz.b_product_version,
d21897
-                    summary, bzcomment,
d21897
+                    problem_report_get_summary(pr),
d21897
+                    problem_report_get_description(pr),
d21897
                     rhbz.b_create_private,
d21897
                     rhbz.b_private_groups
d21897
                     );
d21897
-            free(bzcomment);
d21897
-            free(summary);
d21897
 
d21897
             if (new_id == -1)
d21897
             {
d21897
@@ -1267,9 +683,17 @@ int main(int argc, char **argv)
d21897
             char new_id_str[sizeof(int)*3 + 2];
d21897
             sprintf(new_id_str, "%i", new_id);
d21897
 
d21897
-            attach_files(client, new_id_str, problem_data, comment_fmt_spec);
d21897
-
d21897
-//TODO: free_comment_fmt_spec(comment_fmt_spec);
d21897
+            for (GList *a = problem_report_get_attachments(pr); a != NULL; a = g_list_next(a))
d21897
+            {
d21897
+                const char *item_name = (const char *)a->data;
d21897
+                struct problem_item *item = problem_data_get_item_or_NULL(problem_data, item_name);
d21897
+                if (!item)
d21897
+                    continue;
d21897
+                else if (item->flags & CD_FLAG_TXT)
d21897
+                    attach_text_item(client, new_id_str, item_name, item);
d21897
+                else if (item->flags & CD_FLAG_BIN)
d21897
+                    attach_file_item(client, new_id_str, item_name, item);
d21897
+            }
d21897
 
d21897
             bz = new_bug_info();
d21897
             bz->bi_status = xstrdup("NEW");
d21897
@@ -1340,18 +764,21 @@ int main(int argc, char **argv)
d21897
     const char *comment = problem_data_get_content_or_NULL(problem_data, FILENAME_COMMENT);
d21897
     if (comment && comment[0])
d21897
     {
d21897
-        GList *comment_fmt_spec = load_bzrep_conf_file(fmt_file2);
d21897
-        struct strbuf *bzcomment_buf = strbuf_new();
d21897
-        generate_bz_comment(bzcomment_buf, problem_data, comment_fmt_spec);
d21897
-        char *bzcomment = strbuf_free_nobuf(bzcomment_buf);
d21897
-//TODO: free_comment_fmt_spec(comment_fmt_spec);
d21897
+        problem_formatter_t *pf = problem_formatter_new();
d21897
+        if (problem_formatter_load_file(pf, fmt_file2))
d21897
+            error_msg_and_die("Invalid duplicate format file: '%s", fmt_file2);
d21897
+
d21897
+        problem_report_t *pr;
d21897
+        if (problem_formatter_generate_report(pf, problem_data, &pr))
d21897
+            error_msg_and_die("Failed to format duplicate comment from problem data");
d21897
+
d21897
+        const char *bzcomment = problem_report_get_description(pr);
d21897
 
d21897
         int dup_comment = is_comment_dup(bz->bi_comments, bzcomment);
d21897
         if (!dup_comment)
d21897
         {
d21897
             log(_("Adding new comment to bug %d"), bz->bi_id);
d21897
             rhbz_add_comment(client, bz->bi_id, bzcomment, 0);
d21897
-            free(bzcomment);
d21897
 
d21897
             const char *bt = problem_data_get_content_or_NULL(problem_data, FILENAME_BACKTRACE);
d21897
             unsigned rating = 0;
d21897
@@ -1369,10 +796,10 @@ int main(int argc, char **argv)
d21897
             }
d21897
         }
d21897
         else
d21897
-        {
d21897
-            free(bzcomment);
d21897
             log(_("Found the same comment in the bug history, not adding a new one"));
d21897
-        }
d21897
+
d21897
+        problem_report_free(pr);
d21897
+        problem_formatter_free(pf);
d21897
     }
d21897
 
d21897
  log_out:
d21897
-- 
d21897
1.8.3.1
d21897