aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/alarm-notify/save.c
blob: d4666d8cf6b202f0ea23d49c1a07b198111692f7 (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
/* Evolution calendar - Functions to save alarm notification times
 *
 * Copyright (C) 2001 Ximian, Inc.
 *
 * Authors: Federico Mena-Quintero <federico@ximian.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of version 2 of the GNU General Public
 * License as published by the Free Software Foundation.
 *
 * 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.
 */

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

#include <bonobo/bonobo-arg.h>
#include <bonobo/bonobo-exception.h>
#include <bonobo/bonobo-moniker-util.h>
#include "evolution-calendar.h"
#include "save.h"



/* Key names for the configuration values */

#define KEY_LAST_NOTIFICATION_TIME "/Calendar/AlarmNotify/LastNotificationTime"
#define KEY_CALENDARS_TO_LOAD "/Calendar/AlarmNotify/CalendarsToLoad"



/* Tries to get the config database object; returns CORBA_OBJECT_NIL on failure. */
Bonobo_ConfigDatabase
get_config_db (void)
{
    CORBA_Environment ev;
    Bonobo_ConfigDatabase db;

    CORBA_exception_init (&ev);

    db = bonobo_get_object ("wombat:", "Bonobo/ConfigDatabase", &ev);
    if (BONOBO_EX (&ev) || db == CORBA_OBJECT_NIL) {
        g_message ("get_config_db(): Could not get the config database object");
        db = CORBA_OBJECT_NIL;
    }

    CORBA_exception_free (&ev);
    return db;
}

/* Syncs a database and unrefs it */
void
discard_config_db (Bonobo_ConfigDatabase db)
{
    CORBA_Environment ev;

    CORBA_exception_init (&ev);

    Bonobo_ConfigDatabase_sync (db, &ev);
    if (BONOBO_EX (&ev))
        g_message ("discard_config_db(): Got an exception during the sync command");

    CORBA_exception_free (&ev);

    CORBA_exception_init (&ev);

    bonobo_object_release_unref (db, &ev);
    if (BONOBO_EX (&ev))
        g_message ("discard_config_db(): Could not release/unref the database");

    CORBA_exception_free (&ev);
}

/**
 * save_notification_time:
 * @t: A time value.
 * 
 * Saves the last notification time so that it can be fetched the next time the
 * alarm daemon is run.  This way the daemon can show alarms that should have
 * triggered while it was not running.
 **/
void
save_notification_time (time_t t)
{
    Bonobo_ConfigDatabase db;
    CORBA_Environment ev;

    g_return_if_fail (t != -1);

    db = get_config_db ();
    if (db == CORBA_OBJECT_NIL)
        return;

    CORBA_exception_init (&ev);

    bonobo_config_set_long (db, KEY_LAST_NOTIFICATION_TIME, (long) t, &ev);
    if (BONOBO_EX (&ev))
        g_message ("save_notification_time(): Could not save the value");

    CORBA_exception_free (&ev);

    discard_config_db (db);
}

/**
 * get_saved_notification_time:
 * 
 * Queries the last saved value for alarm notification times.
 * 
 * Return value: The last saved value, or -1 if no value had been saved before.
 **/
time_t
get_saved_notification_time (void)
{
    Bonobo_ConfigDatabase db;
    long t;

    db = get_config_db ();
    if (db == CORBA_OBJECT_NIL)
        return -1;

    t = bonobo_config_get_long_with_default (db, KEY_LAST_NOTIFICATION_TIME, -1, NULL);

    discard_config_db (db);

    return (time_t) t;
}

/**
 * save_calendars_to_load:
 * @uris: A list of URIs of calendars.
 * 
 * Saves the list of calendars that should be loaded the next time the alarm
 * daemon starts up.
 **/
void
save_calendars_to_load (GPtrArray *uris)
{
    Bonobo_ConfigDatabase db;
    int len, i;
    GNOME_Evolution_Calendar_StringSeq *seq;
    CORBA_Environment ev;
    CORBA_any *any; 

    g_return_if_fail (uris != NULL);

    db = get_config_db ();
    if (db == CORBA_OBJECT_NIL)
        return;

    /* Build the sequence of URIs */

    len = uris->len;

    seq = GNOME_Evolution_Calendar_StringSeq__alloc ();
    seq->_length = len;
    seq->_buffer = CORBA_sequence_CORBA_string_allocbuf (len);
    CORBA_sequence_set_release (seq, TRUE);

    for (i = 0; i < len; i++) {
        char *uri;

        uri = uris->pdata[i];
        seq->_buffer[i] = CORBA_string_dup (uri);
    }

    /* Save it */

    any = bonobo_arg_new (TC_GNOME_Evolution_Calendar_StringSeq);
    any->_value = seq;

    CORBA_exception_init (&ev);

    bonobo_config_set_value (db, KEY_CALENDARS_TO_LOAD, any, &ev);

    if (ev._major != CORBA_NO_EXCEPTION)
        g_message ("save_calendars_to_load(): Could not save the list of calendars");

    CORBA_exception_free (&ev);

    discard_config_db (db);
    bonobo_arg_release (any); /* this releases the sequence */
}

/**
 * get_calendars_to_load:
 * 
 * Gets the list of calendars that should be loaded when the alarm daemon starts
 * up.
 * 
 * Return value: A list of URIs, or NULL if the value could not be retrieved.
 **/
GPtrArray *
get_calendars_to_load (void)
{
    Bonobo_ConfigDatabase db;
    GNOME_Evolution_Calendar_StringSeq *seq;
    CORBA_Environment ev;
    CORBA_any *any; 
    int len, i;
    GPtrArray *uris;

    db = get_config_db ();
    if (db == CORBA_OBJECT_NIL)
        return NULL;

    /* Get the value */

    CORBA_exception_init (&ev);

    any = bonobo_config_get_value (db, KEY_CALENDARS_TO_LOAD,
                       TC_GNOME_Evolution_Calendar_StringSeq,
                       &ev);
    discard_config_db (db);

    if (ev._major == CORBA_USER_EXCEPTION) {
        char *ex_id;

        ex_id = CORBA_exception_id (&ev);

        if (strcmp (ex_id, ex_Bonobo_ConfigDatabase_NotFound) == 0) {
            CORBA_exception_free (&ev);
            uris = g_ptr_array_new ();
            g_ptr_array_set_size (uris, 0);
            return uris;
        }
    }

    if (ev._major != CORBA_NO_EXCEPTION) {
        g_message ("get_calendars_to_load(): Could not get the list of calendars");
        CORBA_exception_free (&ev);
        return NULL;
    }

    CORBA_exception_free (&ev);

    /* Decode the value */

    seq = any->_value;
    len = seq->_length;

    uris = g_ptr_array_new ();
    g_ptr_array_set_size (uris, len);

    for (i = 0; i < len; i++)
        uris->pdata[i] = g_strdup (seq->_buffer[i]);

#if 0
    /* FIXME: The any and sequence are leaked.  If we release them this way,
     * we crash inside the ORB freeing routines :(
     */
    bonobo_arg_release (any);
#endif

    return uris;
}