Hash :
89697be8
Author :
Thomas de Grivel
Date :
2024-07-28T05:25:58
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
/* 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 "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 "ident.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_tag *dest)
{
return env_ident_get(&g_kc3_env, ident, dest);
}
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 = {0};
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, bool *dest)
{
return env_ident_is_special_operator(&g_kc3_env, ident, dest);
}
s_ident * ident_resolve_module (const s_ident *ident, s_ident *dest)
{
return env_ident_resolve_module(&g_kc3_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);
}