Tag
Hash :
068f23f5
Author :
Date :
2024-08-01T13:35:36
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
/* 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 <string.h>
#include "alloc.h"
#include "assert.h"
#include "arg.h"
#include "binding.h"
#include "buf.h"
#include "buf_parse.h"
#include "fn.h"
#include "fn_clause.h"
#include "list.h"
#include "sym.h"
#include "tag_type.h"
s8 fn_arity (const s_fn *fn)
{
assert(fn);
if (fn->clauses) {
if (fn->clauses->arity > S8_MAX) {
err_puts("fn_arity: invalid arity");
assert(! "fn_arity: invalid arity");
return -1;
}
return fn->clauses->arity;
}
return -1;
}
void fn_clean (s_fn *fn)
{
assert(fn);
fn_clause_delete_all(fn->clauses);
}
void fn_delete (s_fn *fn)
{
fn_clean(fn);
free(fn);
}
s_fn * fn_init (s_fn *fn, const s_sym *module)
{
s_fn tmp = {0};
assert(fn);
tmp.module = module;
*fn = tmp;
return fn;
}
s_fn * fn_init_1 (s_fn *fn, const char *p)
{
s_buf buf;
uw len;
sw r;
assert(fn);
assert(p);
len = strlen(p);
buf_init_const(&buf, len, p);
buf.wpos = len;
r = buf_parse_fn(&buf, fn);
if (r < 0 || (uw) r != len) {
err_write_1("fn_init_1: invalid function: \"");
err_write_1(p);
err_write_1("\": ");
err_inspect_sw(&r);
err_write_1(" != ");
err_inspect_uw(&len);
assert(! "fn_init_1: invalid function");
return NULL;
}
return fn;
}
s_fn * fn_init_cast (s_fn *fn, const s_sym * const *type, const s_tag *tag)
{
assert(fn);
assert(type);
assert(tag);
switch (tag->type) {
case TAG_FN:
return fn_init_copy(fn, &tag->data.fn);
default:
break;
}
err_write_1("fn_init_cast: cannot cast ");
err_write_1(tag_type_to_string(tag->type));
if (*type == &g_sym_Fn)
err_puts(" to Fn");
else {
err_write_1(" to ");
err_inspect_sym(type);
err_puts(" aka Fn");
}
assert(! "fn_init_cast: cannot cast to Fn");
return NULL;
}
s_fn * fn_init_copy (s_fn *fn, const s_fn *src)
{
s_fn tmp = {0};
assert(fn);
assert(src);
tmp.module = src->module;
tmp.clauses = fn_clause_new_copy(src->clauses);
tmp.macro = src->macro;
tmp.special_operator = src->special_operator;
*fn = tmp;
return fn;
}
s_fn * fn_new (const s_sym *module)
{
s_fn *fn;
fn = alloc(sizeof(s_fn));
if (! fn)
return NULL;
fn_init(fn, module);
return fn;
}
s_fn * fn_new_copy (const s_fn *src)
{
s_fn *fn;
assert(src);
fn = alloc(sizeof(s_fn));
if (! fn)
return NULL;
if (! fn_init_copy(fn, src)) {
free(fn);
return NULL;
}
return fn;
}