Fix FSF address (Tobias Mueller, #470445)
[platform/upstream/evolution-data-server.git] / camel / camel-uid-cache.h
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /* camel-uid-cache.h: UID caching code. */
3
4 /* 
5  * Authors:
6  *  Bertrand Guiheneuf <bertrand@helixcode.com>
7  *
8  * Copyright 2000 Ximian, Inc. (www.ximian.com)
9  *
10  * This program is free software; you can redistribute it and/or 
11  * modify it under the terms of version 2 of the GNU Lesser General Public 
12  * License as published by the Free Software Foundation.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
22  * USA
23  */
24
25 #ifndef CAMEL_UID_CACHE_H
26 #define CAMEL_UID_CACHE_H 1
27
28 #include <glib.h>
29
30 #include <stdio.h>
31 #include <sys/types.h>
32
33 G_BEGIN_DECLS
34
35 typedef struct {
36         char *filename;
37         GHashTable *uids;
38         unsigned int level;
39         size_t expired;
40         size_t size;
41         int fd;
42 } CamelUIDCache;
43
44 CamelUIDCache *camel_uid_cache_new (const char *filename);
45 gboolean camel_uid_cache_save (CamelUIDCache *cache);
46 void camel_uid_cache_destroy (CamelUIDCache *cache);
47
48 GPtrArray *camel_uid_cache_get_new_uids (CamelUIDCache *cache, GPtrArray *uids);
49
50 void camel_uid_cache_save_uid (CamelUIDCache *cache, const char *uid);
51 void camel_uid_cache_free_uids (GPtrArray *uids);
52
53 G_END_DECLS
54
55 #endif /* CAMEL_UID_CACHE_H */