Hash :
f6af06c7
Author :
Thomas de Grivel
Date :
2024-11-27T23:20:04
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
/* 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.
*/
#ifndef LIBKC3_KC3_MAIN_H
#define LIBKC3_KC3_MAIN_H
#include "types.h"
#define KC3_EXT ".kc3"
extern const s_str g_kc3_base_binary;
extern const s_str g_kc3_base_octal;
extern const s_str g_kc3_base_decimal;
extern const s_str g_kc3_base_hexadecimal;
extern const s_str g_kc3_bases_hexadecimal[2];
extern const s_str g_kc3_base64;
extern const s_str g_kc3_base64url;
extern const char *g_kc3_license;
extern sw g_kc3_exit_code;
/* Stack-allocation compatible functions, call kc3_clean after use. */
s_env * kc3_init (s_env *env, int *argc, char ***argv);
void kc3_clean (s_env *env);
/* Observers. */
s_list ** kc3_args (s_list **dest);
s_tag * kc3_fact_from_ptr (s_tag *tag, u_ptr_w *ptr);
s_tag * kc3_fact_object (s_fact *fact, s_tag *dest);
s_tag * kc3_fact_predicate (s_fact *fact, s_tag *dest);
s_tag * kc3_fact_subject (s_fact *fact, s_tag *dest);
s_tag * kc3_facts_first_with_tags (s_facts *facts,
s_tag *subject,
s_tag *predicate,
s_tag *object,
p_callable *callback,
s_tag *dest);
uw * kc3_facts_next_id (uw *dest);
s_str * kc3_getenv (const s_str *name, s_str *dest);
void kc3_license (void);
const s_sym ** kc3_module (const s_sym **dest);
uw * kc3_offsetof (const s_sym * const *module,
const s_sym * const *field, uw *dest);
sw kc3_puts (const s_tag *tag);
s_list ** kc3_stacktrace (s_list **dest);
s_str * kc3_str (const s_tag *tag, s_str *dest);
/* Operators. */
s_tag * kc3_access (s_tag *tag, s_list **addr,
s_tag *dest);
bool * kc3_and (s_tag *a, s_tag *b, bool *dest);
s_tag * kc3_buf_parse_tag (s_buf *buf, s_tag *dest);
s_tag * kc3_def (const s_call *call, s_tag *dest);
s_tag * kc3_defmodule (const s_sym **name, const s_block *block,
s_tag *dest);
s_tag * kc3_defoperator (const s_sym **name, const s_sym **sym,
s_tag *symbol_value,
u8 operator_precedence,
const s_sym **operator_associativity,
s_tag *dest);
s_tag * kc3_defstruct (s_list **spec, s_tag *dest);
void ** kc3_dlopen (const s_str *path, void **dest);
s_facts ** kc3_env_db (s_facts **dest);
sw kc3_errno (void);
void kc3_exit (s_tag *code);
bool * kc3_facts_add_tags (s_facts *facts, s_tag *subject,
s_tag *predicate,
s_tag *object,
bool *dest);
s_tag * kc3_facts_collect_with (s_facts *facts, s_list **spec,
p_callable *callback, s_tag *dest);
s_tag * kc3_facts_collect_with_tags (s_facts *facts,
s_tag *subject,
s_tag *predicate,
s_tag *object,
p_callable *callback,
s_tag *dest);
s_tag * kc3_facts_first_with (s_facts *facts, s_list **spec,
p_callable *callback, s_tag *dest);
s_tag * kc3_facts_first_with_tags (s_facts *facts, s_tag *subject,
s_tag *predicate, s_tag *object,
p_callable *callback,
s_tag *dest);
bool * kc3_facts_remove_tags (s_facts *facts,
s_tag *subject,
s_tag *predicate,
s_tag *object,
bool *dest);
bool * kc3_facts_replace_tags (s_facts *facts,
s_tag *subject,
s_tag *predicate,
s_tag *object,
bool *dest);
s_tag * kc3_facts_with (s_facts *facts, s_list **spec,
p_callable *callback, s_tag *dest);
s_tag * kc3_facts_with_macro (s_tag *facts_tag, s_tag *spec_tag,
s_tag *block_tag, s_tag *dest);
s_tag * kc3_facts_with_tags (s_facts *facts, s_tag *subject,
s_tag *predicate, s_tag *object,
p_callable *callback, s_tag *dest);
s_tag * kc3_identity (s_tag *tag, s_tag *dest);
s_tag * kc3_integer_reduce (s_tag *tag, s_tag *dest);
s_tag * kc3_let (s_tag *vars, s_tag *tag, s_tag *dest);
s_array * kc3_list_to_array (s_list **list,
const s_sym * const *array_type,
s_array *dest);
bool kc3_load (const s_str *path);
bool kc3_maybe_reload (const s_str *path);
s_tag * kc3_operator_find_by_sym (const s_sym * const *sym,
s_tag *dest);
bool * kc3_or (s_tag *a, s_tag *b, bool *dest);
bool kc3_require (const s_sym * const *module);
s_str * kc3_strerror (sw err_no, s_str *dest);
s_tag * kc3_struct_put (s_tag *s, const s_sym * const *key,
s_tag *value, s_tag *dest);
s_str * kc3_system (const s_list * const *list, s_str *dest);
/* Special operators. */
s_tag * kc3_if_then_else (s_tag *cond, s_tag *then,
s_tag *else_, s_tag *dest);
s_tag * kc3_while (s_tag *cond, s_tag *body, s_tag *dest);
/* debug */
void kc3_break (void);
/* miscelleanous */
#ifdef WIN32
int fork (void);
#endif
#endif /* LIBKC3_KC3_MAIN_H */