Hash :
865d1524
Author :
Thomas de Grivel
Date :
2022-10-31T00:50:45
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
/* c3
* Copyright 2022 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 "str.h"
#include "sym.h"
#include "u8.h"
e_bool ident_character_is_reserved (character c)
{
return (character_is_space(c) ||
c == '#' ||
c == '(' ||
c == ')' ||
c == ',' ||
c == '.' ||
c == ';' ||
c == ']' ||
c == '|' ||
c == '}');
}
s8 ident_compare (const s_ident *a, const s_ident *b)
{
sw r;
if (a == b)
return 0;
if (!a)
return -1;
if (!b)
return 1;
if ((r = sym_compare(a->module, b->module)))
return r;
return sym_compare(a->sym, b->sym);
}
e_bool ident_first_character_is_reserved (character c)
{
return (character_is_digit(c) ||
character_is_uppercase(c) ||
character_is_space(c) ||
c == ':' ||
c == '"');
}
e_bool ident_has_reserved_characters (const s_ident *ident)
{
character c;
sw r;
s_str stra;
str_init(&stra, false, ident->sym->str.size, ident->sym->str.ptr.p);
if ((r = str_read_character(&stra, &c)) > 0) {
if (ident_first_character_is_reserved(c))
return true;
while ((r = str_read_character(&stra, &c)) > 0) {
if (ident_character_is_reserved(c))
return true;
}
}
if (r < 0)
return true;
return false;
}
t_hash_context * ident_hash_update (t_hash_context *context,
const s_ident *ident)
{
assert(context);
assert(ident);
u8_hash_update(context, '_');
return sym_hash_update(context, ident->sym);
}
s_ident * ident_init (s_ident *ident, const s_sym *sym)
{
assert(ident);
assert(sym);
ident->module = NULL;
ident->sym = sym;
return ident;
}
s_ident * ident_init_1 (s_ident *ident, const s8 *p)
{
s_str tmp;
str_init_1(&tmp, false, p);
str_to_ident(&tmp, ident);
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);
}