]> git.meshlink.io Git - catta/blob - avahi-core/cache.h
* strip glib from avahi-core
[catta] / avahi-core / cache.h
1 #ifndef foocachehfoo
2 #define foocachehfoo
3
4 /* $Id$ */
5
6 /***
7   This file is part of avahi.
8  
9   avahi is free software; you can redistribute it and/or modify it
10   under the terms of the GNU Lesser General Public License as
11   published by the Free Software Foundation; either version 2.1 of the
12   License, or (at your option) any later version.
13  
14   avahi is distributed in the hope that it will be useful, but WITHOUT
15   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16   or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General
17   Public License for more details.
18  
19   You should have received a copy of the GNU Lesser General Public
20   License along with avahi; if not, write to the Free Software
21   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22   USA.
23 ***/
24
25 typedef struct AvahiCache AvahiCache;
26
27 #include <avahi-common/llist.h>
28 #include "prioq.h"
29 #include "server.h"
30 #include "timeeventq.h"
31 #include "hashmap.h"
32
33 typedef enum {
34     AVAHI_CACHE_VALID,
35     AVAHI_CACHE_EXPIRY1,
36     AVAHI_CACHE_EXPIRY2,
37     AVAHI_CACHE_EXPIRY3,
38     AVAHI_CACHE_FINAL
39 } AvahiCacheEntryState;
40
41 typedef struct AvahiCacheEntry AvahiCacheEntry;
42
43 struct AvahiCacheEntry {
44     AvahiCache *cache;
45     AvahiRecord *record;
46     struct timeval timestamp;
47     struct timeval expiry;
48     int cache_flush;
49     
50     AvahiAddress origin;
51
52     AvahiCacheEntryState state;
53     AvahiTimeEvent *time_event;
54
55     AVAHI_LLIST_FIELDS(AvahiCacheEntry, by_key);
56     AVAHI_LLIST_FIELDS(AvahiCacheEntry, entry);
57 };
58
59 struct AvahiCache {
60     AvahiServer *server;
61     
62     AvahiInterface *interface;
63     
64     AvahiHashmap *hashmap;
65
66     AVAHI_LLIST_HEAD(AvahiCacheEntry, entries);
67
68     unsigned n_entries;
69 };
70
71 AvahiCache *avahi_cache_new(AvahiServer *server, AvahiInterface *interface);
72 void avahi_cache_free(AvahiCache *c);
73
74 AvahiCacheEntry *avahi_cache_lookup_key(AvahiCache *c, AvahiKey *k);
75 AvahiCacheEntry *avahi_cache_lookup_record(AvahiCache *c, AvahiRecord *r);
76
77 void avahi_cache_update(AvahiCache *c, AvahiRecord *r, int cache_flush, const AvahiAddress *a);
78
79 int avahi_cache_dump(AvahiCache *c, AvahiDumpCallback callback, void* userdata);
80
81 typedef void* AvahiCacheWalkCallback(AvahiCache *c, AvahiKey *pattern, AvahiCacheEntry *e, void* userdata);
82 void* avahi_cache_walk(AvahiCache *c, AvahiKey *pattern, AvahiCacheWalkCallback cb, void* userdata);
83
84 int avahi_cache_entry_half_ttl(AvahiCache *c, AvahiCacheEntry *e);
85
86 void avahi_cache_flush(AvahiCache *c);
87
88 #endif