aboutsummaryrefslogtreecommitdiffstats
path: root/shell/importer/evolution-importer.c
blob: 85d2446a1990eecd9c4fe1b1671f75a3e9298cca (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
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
/* evolution-importer.c
 *
 * Copyright (C) 2000  Helix Code, 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., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 *
 * Author: Iain Holmes  <iain@helixcode.com>
 */

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

#include <bonobo/bonobo-object.h>
#include <gal/util/e-util.h>

#include "GNOME_Evolution_Importer.h"
#include "evolution-importer.h"


#define PARENT_TYPE BONOBO_OBJECT_TYPE
static BonoboObjectClass *parent_class = NULL;

struct _EvolutionImporterPrivate {
    EvolutionImporterLoadFileFn load_file_fn;
    EvolutionImporterSupportFormatFn support_format_fn;
    EvolutionImporterProcessItemFn process_item_fn;
    EvolutionImporterGetErrorFn get_error_fn;

    void *closure;
};


static POA_GNOME_Evolution_Importer__vepv Importer_vepv;

static POA_GNOME_Evolution_Importer *
create_servant (void)
{
    POA_GNOME_Evolution_Importer *servant;
    CORBA_Environment ev;

    servant = (POA_GNOME_Evolution_Importer *) g_new0 (BonoboObjectServant, 1);
    servant->vepv = &Importer_vepv;

    CORBA_exception_init (&ev);
    POA_GNOME_Evolution_Importer__init ((PortableServer_Servant) servant, &ev);
    if (ev._major != CORBA_NO_EXCEPTION) {
        g_free (servant);
        CORBA_exception_free (&ev);
        return NULL;
    }

    CORBA_exception_free (&ev);

    return servant;
}

static CORBA_boolean
impl_GNOME_Evolution_Importer_supportFormat (PortableServer_Servant servant,
                         const CORBA_char *filename,
                         CORBA_Environment *ev)
{
    BonoboObject *bonobo_object;
    EvolutionImporter *importer;
    EvolutionImporterPrivate *priv;

    bonobo_object = bonobo_object_from_servant (servant);
    importer = EVOLUTION_IMPORTER (bonobo_object);
    priv = importer->private;

    if (priv->support_format_fn != NULL)
        return (priv->support_format_fn) (importer, filename, 
                          priv->closure);
    else
        return FALSE;
}

static CORBA_boolean
impl_GNOME_Evolution_Importer_loadFile (PortableServer_Servant servant,
                    const CORBA_char *filename,
                    CORBA_Environment *ev)
{
    BonoboObject *bonobo_object;
    EvolutionImporter *importer;
    EvolutionImporterPrivate *priv;

    bonobo_object = bonobo_object_from_servant (servant);
    importer = EVOLUTION_IMPORTER (bonobo_object);
    priv = importer->private;

    if (priv->load_file_fn != NULL)
        return (priv->load_file_fn) (importer, filename, priv->closure);
    else
        return FALSE;
}

static void
impl_GNOME_Evolution_Importer_processItem (PortableServer_Servant servant,
                       GNOME_Evolution_ImporterListener listener,
                       CORBA_Environment *ev)
{
    BonoboObject *bonobo_object;
    EvolutionImporter *importer;
    EvolutionImporterPrivate *priv;

    bonobo_object = bonobo_object_from_servant (servant);
    importer = EVOLUTION_IMPORTER (bonobo_object);
    priv = importer->private;

    if (priv->process_item_fn != NULL)
        (priv->process_item_fn) (importer, listener, priv->closure, ev);
    else
        GNOME_Evolution_ImporterListener_notifyResult (listener,
                                   GNOME_Evolution_ImporterListener_UNSUPPORTED_OPERATION, FALSE, ev);
}

static CORBA_char *
impl_GNOME_Evolution_Importer_getError (PortableServer_Servant servant,
                    CORBA_Environment *ev)
{
    BonoboObject *bonobo_object;
    EvolutionImporter *importer;
    EvolutionImporterPrivate *priv;
    CORBA_char *out_str;

    bonobo_object = bonobo_object_from_servant (servant);
    importer = EVOLUTION_IMPORTER (bonobo_object);
    priv = importer->private;

    if (priv->get_error_fn != NULL) {
        out_str = (priv->get_error_fn) (importer, priv->closure);
        return CORBA_string_dup (out_str ? out_str : "");
    } else
        return CORBA_string_dup ("");
}


static void
destroy (GtkObject *object)
{
    EvolutionImporter *importer;
    EvolutionImporterPrivate *priv;

    importer = EVOLUTION_IMPORTER (object);
    priv = importer->private;

    if (priv == NULL)
        return;

    g_free (priv);
    importer->private = NULL;

    (* GTK_OBJECT_CLASS (parent_class)->destroy) (object);
}

static void
corba_class_init (void)
{
    POA_GNOME_Evolution_Importer__vepv *vepv;
    POA_GNOME_Evolution_Importer__epv *epv;
    PortableServer_ServantBase__epv *base_epv;

    base_epv = g_new0 (PortableServer_ServantBase__epv, 1);
    
    epv = g_new0 (POA_GNOME_Evolution_Importer__epv, 1);
    epv->supportFormat = impl_GNOME_Evolution_Importer_supportFormat;
    epv->loadFile = impl_GNOME_Evolution_Importer_loadFile;
    epv->processItem = impl_GNOME_Evolution_Importer_processItem;
    epv->getError = impl_GNOME_Evolution_Importer_getError;

    vepv = &Importer_vepv;
    vepv->_base_epv = base_epv;
    vepv->Bonobo_Unknown_epv = bonobo_object_get_epv ();
    vepv->GNOME_Evolution_Importer_epv = epv;
}

static void
class_init (EvolutionImporterClass *klass)
{
    GtkObjectClass *object_class;

    object_class = GTK_OBJECT_CLASS (klass);
    object_class->destroy = destroy;

    parent_class = gtk_type_class (PARENT_TYPE);
    corba_class_init ();
}

static void
init (EvolutionImporter *importer)
{
    EvolutionImporterPrivate *priv;

    priv = g_new0 (EvolutionImporterPrivate, 1);

    importer->private = priv;
}



static void
evolution_importer_construct (EvolutionImporter *importer,
                  GNOME_Evolution_Importer corba_object,
                  EvolutionImporterSupportFormatFn support_format_fn,
                  EvolutionImporterLoadFileFn load_file_fn,
                  EvolutionImporterProcessItemFn process_item_fn,
                  EvolutionImporterGetErrorFn get_error_fn,
                  void *closure)
{
    EvolutionImporterPrivate *priv;

    g_return_if_fail (importer != NULL);
    g_return_if_fail (EVOLUTION_IS_IMPORTER (importer));
    g_return_if_fail (corba_object != CORBA_OBJECT_NIL);
    g_return_if_fail (support_format_fn != NULL);
    g_return_if_fail (load_file_fn != NULL);
    g_return_if_fail (process_item_fn != NULL);

    bonobo_object_construct (BONOBO_OBJECT (importer), corba_object);

    priv = importer->private;
    priv->support_format_fn = support_format_fn;
    priv->load_file_fn = load_file_fn;
    priv->process_item_fn = process_item_fn;
    priv->get_error_fn = get_error_fn;

    priv->closure = closure;
}

/**
 * evolution_importer_new:
 * @support_format_fn: The function to be called by the supportFormat method.
 * @load_file_fn: The function to be called by the loadFile method.
 * @process_item_fn: The function to be called by the processItem method.
 * @get_error_fn: The function to be called by the getError method.
 * @closure: The data to be passed to all of the above functions.
 *
 * Creates a new EvolutionImporter object. Of the parameters only 
 * @get_error_function and @closure may be #NULL.
 *
 * Returns: A newly created EvolutionImporter object.
 */
EvolutionImporter *
evolution_importer_new (EvolutionImporterSupportFormatFn support_format_fn,
            EvolutionImporterLoadFileFn load_file_fn,
            EvolutionImporterProcessItemFn process_item_fn,
            EvolutionImporterGetErrorFn get_error_fn,
            void *closure)
{
    EvolutionImporter *importer;
    POA_GNOME_Evolution_Importer *servant;
    GNOME_Evolution_Importer corba_object;

    servant = create_servant ();
    if (servant == NULL)
        return NULL;

    importer = gtk_type_new (evolution_importer_get_type ());
    corba_object = bonobo_object_activate_servant (BONOBO_OBJECT (importer),
                               servant);
    evolution_importer_construct (importer, corba_object, 
                      support_format_fn, load_file_fn,
                      process_item_fn, get_error_fn, closure);
    return importer;
}

E_MAKE_TYPE (evolution_importer, "EvolutionImporter", EvolutionImporter,
         class_init, init, PARENT_TYPE);