aboutsummaryrefslogtreecommitdiffstats
path: root/libwombat/wombat-client.c
blob: 0087d1a9ed579514a5a9dd45a0353b1fa83de6c3 (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
/* Wombat client library
 *
 * Copyright (C) 2001 Ximian, Inc.
 *
 * Author: Rodrigo Moya <rodrigo@ximian.com>
 *
 * 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.
 */

#include "wombat-client.h"

#define PARENT_TYPE BONOBO_X_OBJECT_TYPE

struct _WombatClientPrivate {
    WombatClientGetPasswordFn    get_password;
    WombatClientForgetPasswordFn forget_password;
    gpointer                     fn_data;
};

static void wombat_client_class_init (WombatClientClass *klass);
static void wombat_client_init       (WombatClient *client);
static void wombat_client_destroy    (GtkObject *objct);

/*
 * CORBA interface implementation
 */
static CORBA_char *
impl_GNOME_Evolution_WombatClient_getPassword (PortableServer_Servant servant,
                           const CORBA_char *prompt,
                           const CORBA_char *key,
                           CORBA_Environment *ev)
{
    WombatClient *client;

    client = WOMBAT_CLIENT (bonobo_x_object (servant));
    g_return_val_if_fail (WOMBAT_IS_CLIENT (client), NULL);
    g_return_val_if_fail (client->priv != NULL, NULL);

    if (client->priv->get_password != NULL)
        return client->priv->get_password (client, prompt, key, client->priv->fn_data);

    return NULL;
}

static void
impl_GNOME_Evolution_WombatClient_forgetPassword (PortableServer_Servant servant,
                          const CORBA_char *key,
                          CORBA_Environment *ev)
{
    WombatClient *client;

    client = WOMBAT_CLIENT (bonobo_x_object (servant));
    g_return_if_fail (WOMBAT_IS_CLIENT (client));
    g_return_if_fail (client->priv != NULL);

    if (client->priv->forget_password != NULL)
        client->priv->forget_password (client, key, client->priv->fn_data);
}

/*
 * WombatClient class implementation
 */
static void
wombat_client_class_init (WombatClientClass *klass)
{
    GtkObjectClass *object_class = GTK_OBJECT_CLASS(klass);
    POA_GNOME_Evolution_WombatClient__epv *epv = &klass->epv;

    object_class->destroy = wombat_client_destroy;

    epv->getPassword = impl_GNOME_Evolution_WombatClient_getPassword;
    epv->forgetPassword = impl_GNOME_Evolution_WombatClient_forgetPassword;
}

static void
wombat_client_init (WombatClient *client)
{
    client->priv = g_new0 (WombatClientPrivate, 1);
}

static void
wombat_client_destroy (GtkObject *object)
{
    GtkObjectClass *parent_class;
    WombatClient *client = (WombatClient *) object;

    g_return_if_fail (WOMBAT_IS_CLIENT (client));

    /* free memory */
    if (client->priv != NULL) {
        g_free (client->priv);
    }

    /* call parent class' destroy handler */
    parent_class = GTK_OBJECT_CLASS (gtk_type_class (PARENT_TYPE));
    if (parent_class->destroy != NULL)
        parent_class->destroy (GTK_OBJECT(client));
}

/**
 * wombat_client_get_type
 */
GtkType
wombat_client_get_type (void)
{
    static GtkType type = 0;

    if (!type) {
        GtkTypeInfo info = {
                        "WombatClient",
                        sizeof (WombatClient),
                        sizeof (WombatClientClass),
                        (GtkClassInitFunc) wombat_client_class_init,
                        (GtkObjectInitFunc) wombat_client_init,
                        (GtkArgSetFunc) NULL,
                        (GtkArgSetFunc) NULL
                };
                type = bonobo_x_type_unique(
                        PARENT_TYPE,
                        POA_GNOME_Evolution_WombatClient__init, NULL,
                        GTK_STRUCT_OFFSET (WombatClientClass, epv),
                        &info);
    }
    return type;
}

/**
 * wombat_client_construct
 */
WombatClient *
wombat_client_construct (WombatClient *client,
             WombatClientGetPasswordFn get_password_fn,
             WombatClientForgetPasswordFn forget_password_fn,
             gpointer fn_data)
{
    g_return_val_if_fail (WOMBAT_IS_CLIENT (client), NULL);
    g_return_val_if_fail (client->priv != NULL, NULL);

    client->priv->get_password = get_password_fn;
    client->priv->forget_password = forget_password_fn;
    client->priv->fn_data = fn_data;

    return client;
}

/**
 * wombat_client_new
 */
WombatClient *
wombat_client_new (WombatClientGetPasswordFn get_password_fn,
           WombatClientForgetPasswordFn forget_password_fn,
           gpointer fn_data)
{
    WombatClient *client;

    client = WOMBAT_CLIENT (gtk_type_new (WOMBAT_TYPE_CLIENT));
    return wombat_client_construct (client,
                    get_password_fn,
                    forget_password_fn,
                    fn_data);
}