-
Notifications
You must be signed in to change notification settings - Fork 1
/
mcache.c
177 lines (142 loc) · 3.43 KB
/
mcache.c
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
/*
* Copyright (c) 2022 Omar Polo <op@omarpolo.com>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "compat.h"
#include <sys/time.h>
#include <stdlib.h>
#include <stdint.h>
#include <string.h>
#include <time.h>
#include "ev.h"
#include "hist.h"
#include "mcache.h"
#include "parser.h"
#include "telescope.h"
#include "utils.h"
#include "xwrapper.h"
static struct timeval tv = { 5 * 60, 0 };
static unsigned int timeout;
static struct ohash h;
static size_t npages;
static size_t tot;
struct mcache_entry {
time_t ts;
const struct parser *parser;
int trust;
char *buf;
size_t buflen;
char url[];
};
static void
mcache_free_entry(const char *url)
{
struct mcache_entry *e;
unsigned int slot;
slot = ohash_qlookup(&h, url);
if ((e = ohash_remove(&h, slot)) == NULL)
return;
npages--;
tot -= e->buflen;
free(e->buf);
free(e);
}
static void
clean_old_entries(int fd, int ev, void *data)
{
struct mcache_entry *e;
unsigned int i;
time_t threshold;
/* delete pages older than an hour */
threshold = time(NULL) - 60 * 60;
for (e = ohash_first(&h, &i); e != NULL; e = ohash_next(&h, &i))
if (e->ts < threshold)
mcache_free_entry(e->url);
timeout = ev_timer(&tv, clean_old_entries, NULL);
}
void
mcache_init(void)
{
struct ohash_info info = {
.key_offset = offsetof(struct mcache_entry, url),
.calloc = hash_calloc,
.free = hash_free,
.alloc = hash_alloc,
};
ohash_init(&h, 5, &info);
}
int
mcache_tab(struct tab *tab)
{
struct mcache_entry *e;
unsigned int slot;
size_t l, len;
const char *url;
FILE *fp;
url = hist_cur(tab->hist);
l = strlen(url);
len = sizeof(*e) + l + 1;
e = xcalloc(1, len);
e->ts = time(NULL);
e->parser = tab->buffer.parser;
e->trust = tab->trust;
memcpy(e->url, url, l);
if ((fp = open_memstream(&e->buf, &e->buflen)) == NULL)
goto err;
if (!parser_serialize(&tab->buffer, fp))
goto err;
fclose(fp);
/* free any previously cached copies of this page */
mcache_free_entry(url);
slot = ohash_qlookup(&h, url);
ohash_insert(&h, slot, e);
npages++;
tot += e->buflen;
if (!ev_timer_pending(timeout))
timeout = ev_timer(&tv, clean_old_entries, NULL);
return 0;
err:
if (fp != NULL)
fclose(fp);
if (e->buf != NULL)
free(e->buf);
free(e);
return -1;
}
int
mcache_lookup(const char *url, struct tab *tab)
{
struct mcache_entry *e;
unsigned int slot;
slot = ohash_qlookup(&h, url);
if ((e = ohash_find(&h, slot)) == NULL)
return 0;
parser_init(&tab->buffer, e->parser);
if (!parser_parse(&tab->buffer, e->buf, e->buflen))
goto err;
if (!parser_free(tab))
goto err;
tab->trust = e->trust;
return 1;
err:
parser_free(tab);
erase_buffer(&tab->buffer);
return 0;
}
void
mcache_info(size_t *r_npages, size_t *r_tot)
{
*r_npages = npages;
*r_tot = tot;
}