Tag
Hash :
fd94253e
Author :
Thomas de Grivel
Date :
2024-05-02T15:50: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 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 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
/* c3
* Copyright 2022-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 "assert.h"
#include "buf.h"
#include "buf_inspect.h"
#include "character.h"
#include "env.h"
#include "facts.h"
#include "facts_with.h"
#include "facts_with_cursor.h"
#include "module.h"
#include "str.h"
#include "sym.h"
#include "tag.h"
bool ident_character_is_reserved (character c)
{
return (character_is_space(c) ||
c == '#' ||
c == '(' ||
c == ')' ||
c == ',' ||
c == '.' ||
c == ';' ||
c == '[' ||
c == ']' ||
c == '{' ||
c == '}');
}
bool ident_first_character_is_reserved (character c)
{
return (character_is_digit(c) ||
character_is_uppercase(c) ||
character_is_space(c) ||
c == '"' ||
c == '\'' ||
c == '(' ||
c == ')' ||
c == ':' ||
c == '[' ||
c == ']' ||
c == '{' ||
c == '}');
}
s_tag * ident_get (const s_ident *ident, s_facts *facts, s_tag *dest)
{
s_facts_with_cursor cursor;
const s_sym *module;
s_tag tag_ident;
s_tag tag_is_a;
s_tag tag_macro;
s_tag tag_module;
s_tag tag_special_operator;
s_tag tag_sym;
s_tag tag_symbol;
s_tag tag_symbol_value;
s_tag tag_var;
module = ident->module;
if (! module) {
if (! sym_search_modules(ident->sym, &module) ||
! module) {
err_write_1("ident_get: symbol not found: ");
err_inspect_sym(&ident->sym);
err_write_1("\n");
assert(! "ident_get: symbol not found");
return NULL;
}
}
if (! module_ensure_loaded(module, facts))
return NULL;
tag_init_ident(&tag_ident, ident);
tag_init_sym( &tag_is_a, &g_sym_is_a);
tag_init_sym( &tag_macro, &g_sym_macro);
tag_init_sym( &tag_module, module);
tag_init_sym( &tag_special_operator, &g_sym_special_operator);
tag_init_sym( &tag_sym, ident->sym);
tag_init_sym( &tag_symbol, &g_sym_symbol);
tag_init_sym( &tag_symbol_value, &g_sym_symbol_value);
tag_init_var( &tag_var);
if (! facts_find_fact_by_tags(facts, &tag_module, &tag_symbol,
&tag_ident))
return NULL;
facts_with(facts, &cursor, (t_facts_spec) {
&tag_ident, &tag_symbol_value, &tag_var,
NULL, NULL });
if (! facts_with_cursor_next(&cursor)) {
facts_with_cursor_clean(&cursor);
return NULL;
}
facts_with_cursor_clean(&cursor);
facts_with(facts, &cursor, (t_facts_spec) {
&tag_ident, &tag_is_a, &tag_macro, NULL, NULL });
if (facts_with_cursor_next(&cursor)) {
if (tag_var.type == TAG_CFN)
tag_var.data.cfn.macro = true;
else if (tag_var.type == TAG_FN)
tag_var.data.fn.macro = true;
}
facts_with_cursor_clean(&cursor);
facts_with(facts, &cursor, (t_facts_spec) {
&tag_ident, &tag_is_a, &tag_special_operator, NULL, NULL});
if (facts_with_cursor_next(&cursor)) {
if (tag_var.type == TAG_CFN)
tag_var.data.cfn.special_operator = true;
else if (tag_var.type == TAG_FN)
tag_var.data.fn.special_operator = true;
}
facts_with_cursor_clean(&cursor);
*dest = tag_var;
return dest;
}
bool ident_has_reserved_characters (const s_ident *ident)
{
character c;
sw r;
s_str stra;
str_init(&stra, NULL, ident->sym->str.size, ident->sym->str.ptr.p);
if ((r = str_read_character_utf8(&stra, &c)) > 0) {
if (ident_first_character_is_reserved(c))
return true;
while ((r = str_read_character_utf8(&stra, &c)) > 0) {
if (ident_character_is_reserved(c))
return true;
}
}
if (r < 0)
return true;
return false;
}
s_ident * ident_init (s_ident *ident, const s_sym *module,
const s_sym *sym)
{
assert(ident);
assert(sym);
ident->module = module;
ident->sym = sym;
return ident;
}
s_ident * ident_init_1 (s_ident *ident, const char *p)
{
s_str tmp;
str_init_1(&tmp, NULL, p);
str_to_ident(&tmp, ident);
return ident;
}
s_ident * ident_init_cast (s_ident *ident, const s_sym * const *type,
const s_tag *tag)
{
switch (tag->type) {
case TAG_IDENT:
*ident = tag->data.ident;
return ident;
default:
break;
}
err_write_1("ident_init_cast: cannot cast ");
err_write_1(tag_type_to_string(tag->type));
if (*type == &g_sym_Ident)
err_puts(" to Ident");
else {
err_write_1(" to ");
err_inspect_sym(type);
err_puts(" aka Ident");
}
assert(! "ident_init_cast: cannot cast to Ident");
return NULL;
}
s_ident * ident_init_copy (s_ident *ident, const s_ident *src)
{
ident->module = src->module;
ident->sym = src->sym;
return ident;
}
s_str * ident_inspect (const s_ident *ident, s_str *dest)
{
sw r;
sw size;
s_buf buf;
size = buf_inspect_ident_size(ident);
if (size < 0)
return NULL;
buf_init_alloc(&buf, size);
r = buf_inspect_ident(&buf, ident);
if (r != size) {
buf_clean(&buf);
return NULL;
}
return buf_to_str(&buf, dest);
}
bool ident_is_special_operator (const s_ident *ident)
{
return env_ident_is_special_operator(&g_c3_env, ident);
}
s_ident * ident_resolve_module (const s_ident *ident, s_ident *dest)
{
return env_ident_resolve_module(&g_c3_env, ident, dest);
}
bool ident_to_tag_type (const s_ident *ident, e_tag_type *dest)
{
assert(ident);
assert(dest);
return sym_to_tag_type(ident->sym, dest);
}