2 d5af38cc 2022-01-10 op * Copyright (c) 2022 Omar Polo <op@omarpolo.com>
4 d5af38cc 2022-01-10 op * Permission to use, copy, modify, and distribute this software for any
5 d5af38cc 2022-01-10 op * purpose with or without fee is hereby granted, provided that the above
6 d5af38cc 2022-01-10 op * copyright notice and this permission notice appear in all copies.
8 d5af38cc 2022-01-10 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 d5af38cc 2022-01-10 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 d5af38cc 2022-01-10 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 d5af38cc 2022-01-10 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 d5af38cc 2022-01-10 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 d5af38cc 2022-01-10 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 d5af38cc 2022-01-10 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 d5af38cc 2022-01-10 op #include "compat.h"
19 98d3e6c1 2024-02-18 op #include <sys/time.h>
21 d5af38cc 2022-01-10 op #include <stdlib.h>
22 d5af38cc 2022-01-10 op #include <stdint.h>
23 d5af38cc 2022-01-10 op #include <string.h>
24 cfd1de02 2024-02-19 op #include <time.h>
26 98d3e6c1 2024-02-18 op #include "ev.h"
27 65c49665 2024-01-23 op #include "hist.h"
28 d5af38cc 2022-01-10 op #include "mcache.h"
29 8f3c9af8 2022-01-11 op #include "parser.h"
30 c1d27b0e 2024-06-14 op #include "telescope.h"
31 9d65b1d9 2022-01-11 op #include "utils.h"
32 3d89457c 2024-06-18 thomas.ad #include "xwrapper.h"
34 946d3439 2022-01-12 op static struct timeval tv = { 5 * 60, 0 };
35 98d3e6c1 2024-02-18 op static unsigned int timeout;
37 a96922a1 2022-01-11 op static struct ohash h;
38 a96922a1 2022-01-11 op static size_t npages;
39 a96922a1 2022-01-11 op static size_t tot;
41 d5af38cc 2022-01-10 op struct mcache_entry {
43 fd1c80ce 2024-06-14 op const struct parser *parser;
46 fd1c80ce 2024-06-14 op size_t buflen;
51 ffcd827c 2022-01-11 op mcache_free_entry(const char *url)
53 ffcd827c 2022-01-11 op struct mcache_entry *e;
54 ffcd827c 2022-01-11 op unsigned int slot;
56 a96922a1 2022-01-11 op slot = ohash_qlookup(&h, url);
57 a96922a1 2022-01-11 op if ((e = ohash_remove(&h, slot)) == NULL)
61 0110411e 2022-04-13 op tot -= e->buflen;
68 98d3e6c1 2024-02-18 op clean_old_entries(int fd, int ev, void *data)
70 4b4c3458 2022-01-11 op struct mcache_entry *e;
71 4b4c3458 2022-01-11 op unsigned int i;
72 2815e3a0 2024-09-01 op time_t threshold;
74 946d3439 2022-01-12 op /* delete pages older than an hour */
75 2815e3a0 2024-09-01 op threshold = time(NULL) - 60 * 60;
77 a96922a1 2022-01-11 op for (e = ohash_first(&h, &i); e != NULL; e = ohash_next(&h, &i))
78 2815e3a0 2024-09-01 op if (e->ts < threshold)
79 4b4c3458 2022-01-11 op mcache_free_entry(e->url);
81 98d3e6c1 2024-02-18 op timeout = ev_timer(&tv, clean_old_entries, NULL);
85 d5af38cc 2022-01-10 op mcache_init(void)
87 d5af38cc 2022-01-10 op struct ohash_info info = {
88 d5af38cc 2022-01-10 op .key_offset = offsetof(struct mcache_entry, url),
89 d5af38cc 2022-01-10 op .calloc = hash_calloc,
90 d5af38cc 2022-01-10 op .free = hash_free,
91 d5af38cc 2022-01-10 op .alloc = hash_alloc,
94 a96922a1 2022-01-11 op ohash_init(&h, 5, &info);
98 8f3c9af8 2022-01-11 op mcache_tab(struct tab *tab)
100 d5af38cc 2022-01-10 op struct mcache_entry *e;
101 d5af38cc 2022-01-10 op unsigned int slot;
102 d5af38cc 2022-01-10 op size_t l, len;
103 8f3c9af8 2022-01-11 op const char *url;
106 65c49665 2024-01-23 op url = hist_cur(tab->hist);
107 d5af38cc 2022-01-10 op l = strlen(url);
108 d5af38cc 2022-01-10 op len = sizeof(*e) + l + 1;
110 3d89457c 2024-06-18 thomas.ad e = xcalloc(1, len);
111 4b4c3458 2022-01-11 op e->ts = time(NULL);
112 c1d27b0e 2024-06-14 op e->parser = tab->buffer.parser;
113 8f3c9af8 2022-01-11 op e->trust = tab->trust;
114 d5af38cc 2022-01-10 op memcpy(e->url, url, l);
116 0110411e 2022-04-13 op if ((fp = open_memstream(&e->buf, &e->buflen)) == NULL)
119 c1d27b0e 2024-06-14 op if (!parser_serialize(&tab->buffer, fp))
124 ffcd827c 2022-01-11 op /* free any previously cached copies of this page */
125 ffcd827c 2022-01-11 op mcache_free_entry(url);
127 a96922a1 2022-01-11 op slot = ohash_qlookup(&h, url);
128 a96922a1 2022-01-11 op ohash_insert(&h, slot, e);
131 0110411e 2022-04-13 op tot += e->buflen;
133 98d3e6c1 2024-02-18 op if (!ev_timer_pending(timeout))
134 98d3e6c1 2024-02-18 op timeout = ev_timer(&tv, clean_old_entries, NULL);
139 0110411e 2022-04-13 op if (fp != NULL)
141 0110411e 2022-04-13 op if (e->buf != NULL)
142 0110411e 2022-04-13 op free(e->buf);
148 8f3c9af8 2022-01-11 op mcache_lookup(const char *url, struct tab *tab)
150 d5af38cc 2022-01-10 op struct mcache_entry *e;
151 d5af38cc 2022-01-10 op unsigned int slot;
153 a96922a1 2022-01-11 op slot = ohash_qlookup(&h, url);
154 a96922a1 2022-01-11 op if ((e = ohash_find(&h, slot)) == NULL)
157 c1d27b0e 2024-06-14 op parser_init(&tab->buffer, e->parser);
158 c1d27b0e 2024-06-14 op if (!parser_parse(&tab->buffer, e->buf, e->buflen))
160 8f3c9af8 2022-01-11 op if (!parser_free(tab))
163 8f3c9af8 2022-01-11 op tab->trust = e->trust;
167 8f3c9af8 2022-01-11 op parser_free(tab);
168 8f3c9af8 2022-01-11 op erase_buffer(&tab->buffer);
173 a96922a1 2022-01-11 op mcache_info(size_t *r_npages, size_t *r_tot)
175 a96922a1 2022-01-11 op *r_npages = npages;
176 a96922a1 2022-01-11 op *r_tot = tot;