Hash :
143b13f1
Author :
Thomas de Grivel
Date :
2023-08-09T16:08:17
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
/* c3
* Copyright 2022,2023 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 <assert.h>
#include <string.h>
#include "c3.h"
s_tag * module_get (const s_module *module, const s_sym *sym,
s_tag *dest)
{
s_ident ident;
s_tag tag_cfn;
s_tag tag_fn;
s_tag tag_ident;
s_tag tag_is_a;
s_tag tag_module;
s_tag tag_name;
s_tag tag_symbol;
s_tag tag_tmp;
assert(module);
assert(sym);
s_facts_with_cursor cursor;
tag_init_sym(&tag_name, module->name);
tag_init_1( &tag_is_a, ":is_a");
tag_init_1( &tag_module, ":module");
tag_init_1( &tag_symbol, ":symbol");
ident_init(&ident, sym);
ident.module_name = module->name;
tag_init_ident(&tag_ident, &ident);
facts_with(module->facts, &cursor, (t_facts_spec) {
&tag_name, &tag_is_a, &tag_module,
&tag_symbol, &tag_ident, NULL, NULL});
if (! facts_with_cursor_next(&cursor)) {
facts_with_cursor_clean(&cursor);
return NULL;
}
facts_with_cursor_clean(&cursor);
tag_init_1(&tag_cfn, ":cfn");
tag_init_1(&tag_fn, ":fn");
tag_init_var(&tag_tmp);
facts_with(module->facts, &cursor, (t_facts_spec) {
&tag_ident, &tag_cfn, &tag_tmp, NULL, NULL});
if (! facts_with_cursor_next(&cursor)) {
facts_with_cursor_clean(&cursor);
facts_with(module->facts, &cursor, (t_facts_spec) {
&tag_ident, &tag_fn, &tag_tmp, NULL, NULL});
if (! facts_with_cursor_next(&cursor))
tag_init_void(&tag_tmp);
}
facts_with_cursor_clean(&cursor);
*dest = tag_tmp;
return dest;
}
s_module * module_load (s_module *module, const s_sym *name,
s_facts *facts)
{
return env_module_load(&g_c3_env, module, name, facts);
}
s_str * module_name_path (const s_str *prefix, const s_sym *name,
s_str *dest)
{
character b = -1;
character c;
s_buf in;
s_buf out;
sw out_size;
sw r;
assert(dest);
assert(name);
buf_init_str(&in, &name->str);
out_size = module_name_path_size(prefix, name);
buf_init_alloc(&out, out_size);
if ((r = buf_write_str(&out, prefix)) < 0)
goto error;
if ((r = buf_write_s8(&out, '/')) < 0)
goto error;
while ((r = buf_read_character_utf8(&in, &c)) > 0) {
if (c == '.')
c = '/';
else if (character_is_uppercase(c)) {
if (character_is_lowercase(b)) {
if ((r = buf_write_s8(&out, '_')) < 0)
goto error;
}
c = character_to_lower(c);
}
if ((r = buf_write_character_utf8(&out, c)) < 0)
goto error;
b = c;
}
if ((r = buf_write_1(&out, FACTS_EXT)) < 0)
goto error;
buf_clean(&in);
return buf_to_str(&out, dest);
error:
buf_clean(&in);
buf_clean(&out);
return NULL;
}
sw module_name_path_size (const s_str *prefix, const s_sym *name)
{
character b = 0;
character c;
s_buf in;
sw r;
sw result = 0;
assert(prefix);
assert(name);
buf_init_str(&in, &name->str);
result += prefix->size;
result++;
while ((r = buf_read_character_utf8(&in, &c)) > 0) {
if (character_is_uppercase(c))
if (character_is_lowercase(b))
result += 1;
result += character_utf8_size(c);
b = c;
}
result += strlen(FACTS_EXT);
buf_clean(&in);
return result;
}