Tag
Hash :
5455754d
Author :
Thomas de Grivel
Date :
2024-08-11T17:18:22
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
/* 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 "assert.h"
#include "buf.h"
#include "buf_inspect.h"
#include "buf_parse.h"
#include "call.h"
#include "cfn.h"
#include "facts.h"
#include "facts_cursor.h"
#include "facts_with.h"
#include "facts_with_cursor.h"
#include "fn.h"
#include "ident.h"
#include "list.h"
#include "tag.h"
void call_clean (s_call *call)
{
assert(call);
list_delete_all(call->arguments);
if (call->cfn)
cfn_delete(call->cfn);
if (call->fn)
fn_delete(call->fn);
}
bool call_get (s_call *call)
{
return env_call_get(&g_kc3_env, call);
}
s_call * call_init (s_call *call)
{
assert(call);
*call = (s_call) {0};
return call;
}
s_call * call_init_1 (s_call *call, const char *p)
{
s_buf buf;
uw len;
sw r;
len = strlen(p);
buf_init_const(&buf, len, p);
buf.wpos = len;
r = buf_parse_call(&buf, call);
if (r < 0 || (uw) r != len) {
err_write_1("call_init_1: invalid call: ");
err_write_1(p);
err_write_1(": ");
err_inspect_sw(&r);
err_write_1(" != ");
err_inspect_uw(&len);
err_write_1("\n");
return NULL;
}
return call;
}
s_call * call_init_call_cast (s_call *call, const s_sym *type)
{
s_list *next;
s_call tmp = {0};
tmp.ident.module = type;
tmp.ident.sym = &g_sym_cast;
next = list_new(NULL);
if (! next)
return NULL;
tmp.arguments = list_new(next);
if (! tmp.arguments) {
list_delete_all(next);
return NULL;
}
tag_init_sym(&tmp.arguments->tag, type);
*call = tmp;
return call;
}
s_call * call_init_cast (s_call *call, const s_sym * const *type,
const s_tag *tag)
{
assert(call);
assert(type);
assert(tag);
switch (tag->type) {
case TAG_CALL:
return call_init_copy(call, &tag->data.call);
default:
break;
}
err_write_1("call_init_cast: cannot cast ");
err_write_1(tag_type_to_string(tag->type));
if (*type == &g_sym_Call)
err_puts(" to Call");
else {
err_write_1(" to ");
err_inspect_sym(type);
err_puts(" aka Call");
}
assert(! "call_init_cast: cannot cast to Call");
return NULL;
}
s_call * call_init_copy (s_call *call, const s_call *src)
{
s_call tmp = {0};
assert(src);
assert(call);
if (! ident_init_copy(&tmp.ident, &src->ident) ||
! list_init_copy(&tmp.arguments,
(const s_list * const *) &src->arguments))
return NULL;
// FIXME: copy cfn and fn ?
if (src->cfn)
tmp.cfn = cfn_new_copy(src->cfn);
if (src->fn)
tmp.fn = fn_new_copy(src->fn);
*call = tmp;
return call;
}
s_call * call_init_op (s_call *call)
{
s_list *arg;
s_call tmp = {0};
assert(call);
arg = list_new(NULL);
if (! arg)
return NULL;
tmp.arguments = list_new(arg);
if (! tmp.arguments) {
list_delete(arg);
return NULL;
}
*call = tmp;
return call;
}
s_call * call_init_op_unary (s_call *call)
{
s_call tmp = {0};
assert(call);
tmp.arguments = list_new(NULL);
*call = tmp;
return call;
}