]> git.sesse.net Git - betaftpd/blob - dcache.c
All header files should now be self-contained (ie. you shouldn't need to do any syste...
[betaftpd] / dcache.c
1 /*  dcache.c: BetaFTPD directory listing cache
2     Copyright (C) 2000 Steinar H. Gunderson
3
4     This program is is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License, version 2 if the
6     License as published by the Free Software Foundation.
7
8     This program is distributed in the hope that it will be useful,
9     but WITHOUT ANY WARRANTY; without even the implied warranty of
10     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11     GNU General Public License for more details.
12
13     You should have received a copy of the GNU General Public License
14     along with this program; if not, write to the Free Software
15     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
16 */
17
18 #if HAVE_CONFIG_H
19 #include <config.h>
20 #endif
21
22 #if HAVE_SYS_STAT_H
23 #include <sys/stat.h>
24 #endif
25
26 #if HAVE_STDLIB_H
27 #include <stdlib.h>
28 #endif
29
30 #if HAVE_STRING_H
31 #include <string.h>
32 #endif
33
34 #if HAVE_STRINGS_H
35 #include <strings.h>
36 #endif
37
38 #if WANT_DCACHE
39 #include <ftpd.h>
40 #include <dcache.h>
41
42 extern struct dcache *first_dcache;
43
44 /*
45  * alloc_new_dcache():
46  *              Allocates a new directory cache entry (type `struct dcache'),
47  *              and adds it to the linked list.
48  */
49 struct dcache *alloc_new_dcache()
50 {
51         struct dcache *d = (struct dcache *)(malloc(sizeof(struct dcache)));
52
53         if (d == NULL) return d;
54
55         d->use_count = 0;
56         d->last_used = 0;
57         strcpy(d->dir_name, "");
58         d->dir_data = NULL;
59
60         add_to_linked_list((struct list_element *)first_dcache,
61                            (struct list_element *)d);
62
63         return d;
64 }
65
66 /*
67  * time_out_dcache():
68  *              Time out expired directory listing cache entries.
69  *              Uses much of the same code as time_out_sockets().
70  */
71 void time_out_dcache()
72 {
73         struct dcache *d = NULL, *next = first_dcache->next_dcache;
74         time_t now = time(NULL);
75
76         /* run through the linked list */
77         while (next != NULL) {
78                 d = next;
79                 next = d->next_dcache;
80
81                 if (d->use_count == 0 && (now - d->last_used > 900)) {
82                         destroy_dcache(d);
83                 }
84         }
85 }
86
87 /*
88  * populate_dcache():
89  *              Add a new entry in the dcache, using information from
90  *              the given file transfer object, and the current directory
91  *              (cwd).
92  */
93 void populate_dcache(struct ftran * const f, const char * const cwd,
94                      const char * const pattern, const struct list_options * const lo)
95 {
96         struct stat buf;
97         struct dcache *d = alloc_new_dcache();
98         if (d != NULL && stat(cwd, &buf) > -1) {
99                 d->use_count++;
100                 f->dir_cache = d;
101                 d->dir_data = f->file_data;
102                 d->dir_size = f->size;
103                 d->generated = buf.st_mtime;
104
105                 strcpy(d->dir_name, cwd);
106                 strncpy(d->pattern, pattern, 255);
107                 d->pattern[255] = 0;
108                 d->lo = *lo;
109         }
110 }
111 #endif /* WANT_DCACHE */