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
/* kc3
* Copyright 2022,2023,2024 kmx.io <contact@kmx.io>
*
* Permission is hereby granted to use this software granted the above
* copyright notice and this permission paragraph are included in all
* copies and substantial portions of this software.
*
* THIS SOFTWARE IS PROVIDED "AS-IS" WITHOUT ANY GUARANTEE OF
* PURPOSE AND PERFORMANCE. IN NO EVENT WHATSOEVER SHALL THE
* AUTHOR BE CONSIDERED LIABLE FOR THE USE AND PERFORMANCE OF
* THIS SOFTWARE.
*/
#include <libkc3/kc3.h>
#include "mime_type.h"
const s_sym ** http_mime_type (const s_str *ext, const s_sym **dest)
{
s_facts_cursor cursor;
const s_sym *default_mime_type;
const s_fact *fact = NULL;
s_tag tag_ext = {0};
s_tag tag_mime_type_sym;
s_tag tag_mime_type_value;
if ((tag_ext.data.sym = sym_find(ext)))
tag_ext.type = TAG_SYM;
tag_init_sym(&tag_mime_type_sym, sym_1("mime_type"));
tag_init_var(&tag_mime_type_value, &g_sym_Sym);
default_mime_type = sym_1("application/octet-stream");
if (! facts_with_tags(&g_kc3_env.facts, &cursor, &tag_ext,
&tag_mime_type_sym, &tag_mime_type_value))
goto default_mime_type;
if (! facts_cursor_next(&cursor, &fact) ||
! fact ||
tag_mime_type_value.type != TAG_SYM ||
! tag_mime_type_value.data.sym)
goto default_mime_type;
*dest = tag_mime_type_value.data.sym;
return dest;
default_mime_type:
*dest = default_mime_type;
return dest;
}
bool http_mime_type_buf_parse (s_buf *buf)
{
sw r;
if ((r = buf_ignore_spaces(buf)) < 0)
return false;
if ((r = buf_read_1(buf, "types")) <= 0)
return false;
if ((r = buf_ignore_spaces(buf)) < 0)
return false;
if ((r = buf_read_1(buf, "{")) <= 0)
return false;
while (1) {
if (! http_mime_type_buf_parse_type(buf))
return false;
if ((r = buf_ignore_spaces(buf)) < 0)
return false;
if ((r = buf_read_1(buf, "}")) < 0)
return false;
if (r > 0)
break;
}
return true;
}
bool http_mime_type_buf_parse_type (s_buf *buf)
{
character c;
s_tag ext;
sw r;
sw result = 0;
s_buf_save save;
s_str str;
s_buf tmp;
const s_sym *type;
if ((r = buf_ignore_spaces(buf)) < 0)
return false;
if ((r = buf_read_until_space_into_str(buf, &str)) <= 0)
return false;
type = str_to_sym(&str);
str_clean(&str);
while (1) {
if ((r = buf_ignore_spaces(buf)) <= 0)
return false;
buf_save_init(buf, &save);
while (1) {
if ((r = buf_peek_character_utf8(buf, &c)) < 0)
goto restore;
if (r && (character_is_space(c) || c == ';')) {
buf_init(&tmp, false, buf->size, buf->ptr.pchar);
tmp.rpos = save.rpos;
tmp.wpos = buf->rpos;
if (! buf_read_to_str(&tmp, &str)) {
r = -1;
goto restore;
}
r = result;
break;
}
if ((r = buf_read_character_utf8(buf, &c)) <= 0)
goto restore;
result += r;
}
buf_save_clean(buf, &save);
if (r > 0) {
tag_init_sym(&ext, str_to_sym(&str));
str_clean(&str);
if (! http_mime_type_def(&ext, &type))
return false;
}
if ((r = buf_read_1(buf, ";")) < 0)
return false;
if (r > 0)
break;
}
return true;
restore:
buf_save_restore_rpos(buf, &save);
buf_save_clean(buf, &save);
return false;
}
bool http_mime_type_def (const s_tag *ext,
const s_sym * const *mime_type)
{
s_tag tag_mime_type_sym;
s_tag tag_mime_type_value;
assert(ext);
assert(mime_type);
tag_init_sym(&tag_mime_type_sym, sym_1("mime_type"));
tag_init_sym(&tag_mime_type_value, *mime_type);
if (! facts_replace_tags(&g_kc3_env.facts, ext,
&tag_mime_type_sym,
&tag_mime_type_value))
return false;
return true;
}
bool http_mime_type_load (s_str *path)
{
s_buf buf;
FILE *fp;
fp = file_open(path->ptr.pchar, "rb");
if (! fp)
return false;
if (! buf_init_alloc(&buf, BUF_SIZE)) {
fclose(fp);
return false;
}
if (! buf_file_open_r(&buf, fp)) {
buf_clean(&buf);
fclose(fp);
return false;
}
if (! http_mime_type_buf_parse(&buf)) {
err_puts("http_mime_type_load: http_mime_type_buf_parse");
err_inspect_buf(&buf);
buf_file_close(&buf);
buf_clean(&buf);
fclose(fp);
return false;
}
buf_file_close(&buf);
buf_clean(&buf);
fclose(fp);
return true;
}