aboutsummaryrefslogtreecommitdiffstats
path: root/tools/evolution-addressbook-abuse.c
blob: 44de75d780b20cedbe4dea887400115539ff1ee2 (plain) (blame)
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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */

#include <config.h>

#include <liboaf/liboaf.h>
#include <bonobo/bonobo-main.h>
#include <backend/ebook/e-book-util.h>
#include <gnome.h>

static int cards_to_add_total = 1000;
static int cards_to_add = 50;
static int call_count = 0;

static gchar *
make_random_string (void)
{
    const gchar *elements = " abcdefghijklmnopqrstuvwxyz1234567890  ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    gint len = strlen (elements);
    gint i, N = 5 + (random () % 10);
    gchar *str = g_malloc (N+1);

    for (i = 0; i < N; ++i) {
        str[i] = elements[random () % len];
    }
    str[i] = '\0';

    return str;
}

static gchar *
make_random_vcard (void)
{
    gchar *fa = make_random_string ();
    gchar *name = make_random_string ();
    gchar *email = make_random_string ();
    gchar *org = make_random_string ();

    gchar *vcard;

    vcard = g_strdup_printf ("BEGIN:VCARD\n"
                 "X-EVOLUTION-FILE-AS:%s\n"
                 "N:%s\n"
                 "EMAIL;INTERNET:%s\n"
                 "ORG:%s\n"
                 "END:VCARD",
                 fa, name, email, org);
    g_free (fa);
    g_free (name);
    g_free (email);
    g_free (org);

    return vcard;
}

/* ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** */

static void
add_cb (EBook *book, EBookStatus status, const char *id, gpointer closure)
{
    switch (status) {
    case E_BOOK_STATUS_SUCCESS:
        --cards_to_add_total;
        g_message ("succesful add! (%d remaining)", cards_to_add_total);
        if (cards_to_add_total <= 0)
            gtk_exit (0);
        break;
    default:
        g_message ("something went wrong...");
        gtk_exit (status);
        break;
    }
}

static void
use_addressbook (EBook *book, EBookStatus status, gpointer closure)
{
    gint i;

    if (book == NULL || status != E_BOOK_STATUS_SUCCESS)
        g_error (_("Error loading default addressbook."));

    for (i = 0; i < cards_to_add; ++i) {
        gchar *vcard = make_random_vcard ();
        ECard *card = e_card_new (vcard);
        g_message ("adding %d", i);
        e_book_add_card (book, card, add_cb, NULL);
        g_free (vcard);
        gtk_object_unref (GTK_OBJECT (card));
    }

    gtk_object_unref (GTK_OBJECT (book));
}

static gint
abuse_timeout (gpointer foo)
{
    EBook *book = e_book_new ();
    e_book_load_local_address_book (book, use_addressbook, NULL);

    ++call_count;
    g_message ("timeout!");
    return call_count < cards_to_add_total / cards_to_add;
}

int
main (int argc, char *argv[])
{
    char *filename = NULL;

    struct poptOption options[] = {
        { "input-file", '\0', POPT_ARG_STRING, &filename, 0, N_("Input File"), NULL },
        { NULL, '\0', POPT_ARG_INCLUDE_TABLE, &oaf_popt_options, 0, NULL, NULL },
        POPT_AUTOHELP
        { NULL, '\0', 0, NULL, 0, NULL, NULL }
    };

    if (getenv ("ABUSE_THE_WOMBAT") == NULL) {
        g_print ("You probably don't want to use this program.\n"
             "It isn't very nice.\n");
        exit(0);
    }

    bindtextdomain (PACKAGE, EVOLUTION_LOCALEDIR);
    textdomain (PACKAGE);

    gnome_init_with_popt_table ("evolution-addressbook-clean", "0.0",
                    argc, argv, options, 0, NULL);

    oaf_init (argc, argv);

    if (bonobo_init (CORBA_OBJECT_NIL, CORBA_OBJECT_NIL, CORBA_OBJECT_NIL) == FALSE)
        g_error (_("Could not initialize Bonobo"));

    gtk_timeout_add (20, abuse_timeout, NULL);

    bonobo_main ();

    return 0;
}