aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/widgets/e-minicard-control.c
blob: ab1356d1d5bc09376abf13de02cfe5e0957c7fa5 (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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * e-minicard-control.c
 *
 * Authors:
 *    Chris Lahey <clahey@helixcode.com>
 *
 * Copyright 1999, 2000, Helix Code, Inc.
 */

#include <config.h>

#include <bonobo/bonobo-generic-factory.h>
#include <bonobo/bonobo-persist.h>
#include <bonobo/bonobo-persist-stream.h>
#include <bonobo/bonobo-stream-client.h>
#include <addressbook/backend/ebook/e-book.h>
#include <addressbook/backend/ebook/e-card.h>

#include "e-minicard-control.h"
#include "e-minicard-widget.h"

#if 0
enum {
    PROP_RUNNING
} MyArgs;

#define RUNNING_KEY  "Clock::Running"

static void
get_prop (BonoboPropertyBag *bag,
      BonoboArg         *arg,
      guint              arg_id,
      CORBA_Environment *ev,
      gpointer           user_data)
{
    GtkObject *clock = user_data;

    switch (arg_id) {

    case PROP_RUNNING:
    {
        gboolean b = GPOINTER_TO_UINT (gtk_object_get_data (clock, RUNNING_KEY));
        BONOBO_ARG_SET_BOOLEAN (arg, b);
        break;
    }

    default:
        g_warning ("Unhandled arg %d", arg_id);
        break;
    }
}

static void
set_prop (BonoboPropertyBag *bag,
      const BonoboArg   *arg,
      guint              arg_id,
      CORBA_Environment *ev,
      gpointer           user_data)
{
    GtkClock *clock = user_data;

    switch (arg_id) {

    case PROP_RUNNING:
    {
        guint i;

        i = BONOBO_ARG_GET_BOOLEAN (arg);

        if (i)
            gtk_clock_start (clock);
        else
            gtk_clock_stop (clock);

        gtk_object_set_data (GTK_OBJECT (clock), RUNNING_KEY,
                     GUINT_TO_POINTER (i));
        break;
    }

    default:
        g_warning ("Unhandled arg %d", arg_id);
        break;
    }
}
#endif

/*
 * Bonobo::PersistStream
 *
 * These two functions implement the Bonobo::PersistStream load and
 * save methods which allow data to be loaded into and out of the
 * BonoboObject.
 */
static char *
stream_read (Bonobo_Stream stream)
{
    Bonobo_Stream_iobuf *buffer;
    CORBA_Environment    ev;
    char *data = NULL;
    gint length = 0;

    CORBA_exception_init (&ev);
    do {
#define READ_CHUNK_SIZE 65536
        Bonobo_Stream_read (stream, READ_CHUNK_SIZE,
                    &buffer, &ev);

        if (ev._major != CORBA_NO_EXCEPTION) {
            CORBA_exception_free (&ev);
            return NULL;
        }

        if (buffer->_length <= 0)
            break;

        data = g_realloc (data, length + buffer->_length + 1);

        memcpy (data + length, buffer->_buffer, buffer->_length);

        length += buffer->_length;

        CORBA_free (buffer);
    } while (1);

    CORBA_free (buffer);
    CORBA_exception_free (&ev);

    if (data)
        data[length] = '\0';
    else
        data = g_strdup("");

    return data;
} /* stream_read */

/*
 * This function implements the Bonobo::PersistStream:load method.
 */
static void
pstream_load (BonoboPersistStream *ps, const Bonobo_Stream stream,
          Bonobo_Persist_ContentType type, void *data,
          CORBA_Environment *ev)
{
    ECard *card;
    char *vcard;
    GtkWidget *minicard = data;

    if (type && g_strcasecmp (type, "text/vCard") != 0 &&       
        g_strcasecmp (type, "text/x-vCard") != 0) {     
        CORBA_exception_set (ev, CORBA_USER_EXCEPTION,
                     ex_Bonobo_Persist_WrongDataType, NULL);
        return;
    }

    if ((vcard = stream_read (stream)) == NULL) {
        CORBA_exception_set (ev, CORBA_USER_EXCEPTION,
                     ex_Bonobo_Persist_FileNotFound, NULL);
        return;
    }

    card = e_card_new(vcard);
    g_free(vcard);
    gtk_object_set(GTK_OBJECT(minicard),
               "card", card,
               NULL);
    gtk_object_unref(GTK_OBJECT(card));
} /* pstream_load */

/*
 * This function implements the Bonobo::PersistStream:save method.
 */
static void
pstream_save (BonoboPersistStream *ps, const Bonobo_Stream stream,
          Bonobo_Persist_ContentType type, void *data,
          CORBA_Environment *ev)
{
    char                *vcard;
    ECard               *card;
    EMinicardWidget     *minicard = data;
    int                  length;

    if (type && g_strcasecmp (type, "text/vCard") != 0 &&       
        g_strcasecmp (type, "text/x-vCard") != 0) {     
        CORBA_exception_set (ev, CORBA_USER_EXCEPTION,
                     ex_Bonobo_Persist_WrongDataType, NULL);
        return;
    }

    gtk_object_get (GTK_OBJECT (minicard),
            "card", &card,
            NULL);
    vcard = e_card_get_vcard(card);
    length = strlen (vcard);
    bonobo_stream_client_write (stream, vcard, length, ev);
    g_free (vcard);
} /* pstream_save */

static CORBA_long
pstream_get_max_size (BonoboPersistStream *ps, void *data,
              CORBA_Environment *ev)
{
  GtkWidget *minicard = data;
  ECard *card;
  char *vcard;
  gint length;
  
  gtk_object_get (GTK_OBJECT (minicard),
          "card", &card, NULL);
  vcard = e_card_get_vcard(card);
  length = strlen (vcard);
  g_free (vcard);

  return length;
}

static Bonobo_Persist_ContentTypeList *
pstream_get_content_types (BonoboPersistStream *ps, void *closure,
               CORBA_Environment *ev)
{
    return bonobo_persist_generate_content_types (2, "text/vCard", "text/x-vCard");
}

static void
book_open_cb (EBook *book, EBookStatus status, gpointer closure)
{
    ECard *card = closure;
    e_book_add_card(book, card, NULL, NULL);
    gtk_object_unref(GTK_OBJECT(card));
}

static void
save_in_addressbook(GtkWidget *button, EMinicardWidget *minicard)
{
    EBook *book;
    gchar *path, *uri;
    ECard *card;

    book = e_book_new ();

    if (!book) {
        printf ("%s: %s(): Couldn't create EBook, bailing.\n",
            __FILE__,
            __FUNCTION__);
        return;
    }


    path = g_concat_dir_and_file (g_get_home_dir (),
                      "evolution/local/Contacts/addressbook.db");
    uri = g_strdup_printf ("file://%s", path);
    g_free (path);

    gtk_object_get(GTK_OBJECT(minicard),
               "card", &card,
               NULL);
    gtk_object_ref(GTK_OBJECT(card));

    if (! e_book_load_uri (book, uri, book_open_cb, card)) {
        printf ("error calling load_uri!\n");
    }
    g_free(uri);
}

static BonoboObject *
e_minicard_control_factory (BonoboGenericFactory *Factory, void *closure)
{
#if 0
    BonoboPropertyBag  *pb;
#endif
    BonoboControl      *control;
    BonoboPersistStream *stream;
    GtkWidget      *minicard;
    GtkWidget          *button;
    GtkWidget          *vbox;

    /* Create the control. */

    minicard = e_minicard_widget_new ();
    gtk_widget_show (minicard);

    button = gtk_button_new_with_label(_("Save in addressbook"));
    gtk_signal_connect(GTK_OBJECT(button), "clicked",
               GTK_SIGNAL_FUNC(save_in_addressbook), minicard);
    gtk_widget_show (button);

    vbox = gtk_vbox_new(FALSE, 0);
    gtk_box_pack_start(GTK_BOX(vbox), minicard, TRUE, TRUE, 0);
    gtk_box_pack_start(GTK_BOX(vbox), button, FALSE, FALSE, 0);
    gtk_widget_show (vbox);

    control = bonobo_control_new (vbox);

    stream = bonobo_persist_stream_new (pstream_load, pstream_save,
                        pstream_get_max_size,
                        pstream_get_content_types,
                        minicard);

#if 0
    /* Create the properties. */
    pb = bonobo_property_bag_new (get_prop, set_prop, clock);
    bonobo_control_set_properties (control, pb);

    bonobo_property_bag_add (pb, "running", PROP_RUNNING,
                 BONOBO_ARG_BOOLEAN, NULL,
                 "Whether or not the clock is running", 0);
#endif

    if (stream == NULL) {
        bonobo_object_unref (BONOBO_OBJECT (control));
        return NULL;
    }

    bonobo_object_add_interface (BONOBO_OBJECT (control),
                    BONOBO_OBJECT (stream));

    return BONOBO_OBJECT (control);
}

void
e_minicard_control_factory_init (void)
{
    static BonoboGenericFactory *factory = NULL;

    if (factory != NULL)
        return;

    factory =
        bonobo_generic_factory_new (
                "OAFIID:GNOME_Evolution_Addressbook_MiniCard_ControlFactory",
            e_minicard_control_factory, NULL);

    if (factory == NULL)
        g_error ("I could not register a EMinicard control factory.");
}