aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-uid-cache.c
blob: 5bb616b304830b00348551e4c0bff2b43e0118cd (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
336
337
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* camel-uid-cache.c: UID caching code. */

/* 
 * Authors:
 *  Dan Winship <danw@ximian.com>
 *
 * Copyright 2000 Ximian, Inc. (www.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 <errno.h>
#include <fcntl.h>
#include <string.h>
#include <sys/stat.h>
#include <unistd.h>

#include "camel-io.h"
#include "camel-store.h"      /* for camel_mkdir_hier */
#include "camel-uid-cache.h"

struct _uid_state {
    int level;
    gboolean save;
};


/**
 * camel_uid_cache_new:
 * @filename: path to load the cache from
 *
 * Creates a new UID cache, initialized from @filename. If @filename
 * doesn't already exist, the UID cache will be empty. Otherwise, if
 * it does exist but can't be read, the function will return %NULL.
 *
 * Return value: a new UID cache, or %NULL
 **/
CamelUIDCache *
camel_uid_cache_new (const char *filename)
{
    CamelUIDCache *cache;
    struct stat st;
    char *dirname, *buf, **uids;
    int fd, i;
    
    dirname = g_path_get_dirname (filename);
    if (camel_mkdir_hier (dirname, 0777) == -1) {
        g_free (dirname);
        return NULL;
    }
    
    g_free (dirname);
    
    if ((fd = open (filename, O_RDONLY | O_CREAT, 0666)) == -1)
        return NULL;
    
    if (fstat (fd, &st) == -1) {
        close (fd);
        return NULL;
    }
    
    buf = g_malloc (st.st_size + 1);
    
    if (st.st_size > 0 && camel_read (fd, buf, st.st_size) == -1) {
        close (fd);
        g_free (buf);
        return NULL;
    }
    
    buf[st.st_size] = '\0';
    
    close (fd);
    
    cache = g_new (CamelUIDCache, 1);
    cache->uids = g_hash_table_new (g_str_hash, g_str_equal);
    cache->filename = g_strdup (filename);
    cache->level = 1;
    cache->expired = 0;
    cache->size = 0;
    cache->fd = -1;
    
    uids = g_strsplit (buf, "\n", 0);
    g_free (buf);
    for (i = 0; uids[i]; i++) {
        struct _uid_state *state;
        
        state = g_new (struct _uid_state, 1);
        state->level = cache->level;
        state->save = TRUE;
        
        g_hash_table_insert (cache->uids, uids[i], state);
    }
    
    g_free (uids);
    
    return cache;
}


static void
maybe_write_uid (gpointer key, gpointer value, gpointer data)
{
    CamelUIDCache *cache = data;
    struct _uid_state *state = value;
    
    if (cache->fd == -1)
        return;
    
    if (state && state->level == cache->level && state->save) {
        if (camel_write (cache->fd, key, strlen (key)) == -1 || 
            camel_write (cache->fd, "\n", 1) == -1) {
            cache->fd = -1;
        } else {
            cache->size += strlen (key) + 1;
        }
    } else {
        /* keep track of how much space the expired uids would
         * have taken up in the cache */
        cache->expired += strlen (key) + 1;
    }
}


/**
 * camel_uid_cache_save:
 * @cache: a CamelUIDCache
 *
 * Attempts to save @cache back to disk.
 *
 * Return value: success or failure
 **/
gboolean
camel_uid_cache_save (CamelUIDCache *cache)
{
    struct stat st;
    char *filename;
    int errnosav;
    int fd;
    
    filename = g_strdup_printf ("%s~", cache->filename);
    if ((fd = open (filename, O_WRONLY | O_CREAT | O_EXCL, 0666)) == -1) {
        g_free (filename);
        return FALSE;
    }
    
    cache->fd = fd;
    cache->size = 0;
    cache->expired = 0;
    g_hash_table_foreach (cache->uids, maybe_write_uid, cache);
    
    if (cache->fd == -1)
        goto exception;
    
 overwrite:
    if (fsync (fd) == -1)
        goto exception;
    
    close (fd);
    fd = -1;
    
    if (rename (filename, cache->filename) == -1)
        goto exception;
    
    g_free (filename);
    
    return TRUE;
    
 exception:
    
    errnosav = errno;
    
#ifdef ENABLE_SPASMOLYTIC
    if (fd != -1) {
        /**
         * If our new cache size is larger than the old cache,
         * even if we haven't finished writing it out
         * successfully, we should still attempt to replace
         * the old cache with the new cache because it will at
         * least avoid re-downloading a few extra messages
         * than if we just kept the old cache.
         *
         * Similarly, even if the new cache size is smaller
         * than the old cache size, but we've expired enough
         * uids to make up for the difference in size (or
         * more), then we should replace the old cache with
         * the new cache as well.
         **/
        
        if (stat (cache->filename, &st) == 0 &&
            (cache->size > st.st_size || cache->size + cache->expired > st.st_size)) {
            if (ftruncate (fd, (off_t) cache->size) != -1) {
                cache->size = 0;
                cache->expired = 0;
                goto overwrite;
            }
        }
        
        close (fd);
    }
#endif
    
    unlink (filename);
    g_free (filename);
    
    errno = errnosav;
    
    return FALSE;
}


static void
free_uid (gpointer key, gpointer value, gpointer data)
{
    g_free (key);
    g_free (value);
}


/**
 * camel_uid_cache_destroy:
 * @cache: a CamelUIDCache
 *
 * Destroys @cache and frees its data.
 **/
void
camel_uid_cache_destroy (CamelUIDCache *cache)
{
    g_hash_table_foreach (cache->uids, free_uid, NULL);
    g_hash_table_destroy (cache->uids);
    g_free (cache->filename);
    g_free (cache);
}


/**
 * camel_uid_cache_get_new_uids:
 * @cache: a CamelUIDCache
 * @uids: an array of UIDs
 *
 * Returns an array of UIDs from @uids that are not in @cache, and
 * removes UIDs from @cache that aren't in @uids.
 *
 * Return value: an array of new UIDs, which must be freed with
 * camel_uid_cache_free_uids().
 **/
GPtrArray *
camel_uid_cache_get_new_uids (CamelUIDCache *cache, GPtrArray *uids)
{
    GPtrArray *new_uids;
    gpointer old_uid;
    char *uid;
    int i;
    
    new_uids = g_ptr_array_new ();
    cache->level++;
    
    for (i = 0; i < uids->len; i++) {
        struct _uid_state *state;
        
        uid = uids->pdata[i];
        if (g_hash_table_lookup_extended (cache->uids, uid, (void **)&old_uid, (void **)&state)) {
            g_hash_table_remove (cache->uids, uid);
            g_free (old_uid);
        } else {
            g_ptr_array_add (new_uids, g_strdup (uid));
            state = g_new (struct _uid_state, 1);
            state->save = FALSE;
        }
        
        state->level = cache->level;
        g_hash_table_insert (cache->uids, g_strdup (uid), state);
    }
    
    return new_uids;
}


/**
 * camel_uid_cache_save_uid:
 * @cache: a CamelUIDCache
 * @uid: a uid to save
 *
 * Marks a uid for saving.
 **/
void
camel_uid_cache_save_uid (CamelUIDCache *cache, const char *uid)
{
    struct _uid_state *state;
    gpointer old_uid;
    
    g_return_if_fail (uid != NULL);
    
    if (g_hash_table_lookup_extended (cache->uids, uid, (void **)&old_uid, (void **)&state)) {
        state->save = TRUE;
        state->level = cache->level;
    } else {
        state = g_new (struct _uid_state, 1);
        state->save = TRUE;
        state->level = cache->level;
        
        g_hash_table_insert (cache->uids, g_strdup (uid), state);
    }
}


/**
 * camel_uid_cache_free_uids:
 * @uids: an array returned from camel_uid_cache_get_new_uids()
 *
 * Frees the array of UIDs.
 **/
void
camel_uid_cache_free_uids (GPtrArray *uids)
{
    int i;
    
    for (i = 0; i < uids->len; i++)
        g_free (uids->pdata[i]);
    g_ptr_array_free (uids, TRUE);
}