1
0
Fork 0
forked from fun/fun
fun/src/value.h

70 lines
2.7 KiB
C
Raw Normal View History

2025-09-13 05:09:20 +02:00
#ifndef FUN_VALUE_H
#define FUN_VALUE_H
#include <inttypes.h>
struct Bytecode; /* forward */
2025-09-15 01:36:20 +02:00
struct Array; /* forward */
2025-09-13 05:09:20 +02:00
typedef enum {
VAL_INT,
VAL_STRING,
VAL_FUNCTION,
2025-09-15 01:36:20 +02:00
VAL_ARRAY,
2025-09-13 05:09:20 +02:00
VAL_NIL
} ValueType;
typedef struct {
ValueType type;
union {
int64_t i;
char *s;
struct Bytecode *fn;
2025-09-15 01:36:20 +02:00
struct Array *arr;
2025-09-13 05:09:20 +02:00
};
} Value;
/* constructors / helpers */
Value make_int(int64_t v);
Value make_string(const char *s);
Value make_function(struct Bytecode *fn);
Value make_nil(void);
2025-09-15 01:36:20 +02:00
/* arrays */
Value make_array_from_values(const Value *vals, int count); /* deep-copies vals */
int array_length(const Value *v); /* returns -1 if not array */
int array_get_copy(const Value *v, int index, Value *out); /* returns 0 on error; out = copy_value(item) */
int array_set(Value *v, int index, Value newElem); /* returns 0 on error; takes ownership of newElem */
2025-09-15 01:53:41 +02:00
int array_push(Value *v, Value newElem); /* returns new length or -1 on error */
int array_pop(Value *v, Value *out); /* returns 1 on success, out takes ownership */
int array_insert(Value *v, int index, Value newElem); /* returns new length or -1 */
int array_remove(Value *v, int index, Value *out); /* returns 1 on success */
Value array_slice(const Value *v, int start, int end); /* negative end means till end */
Value array_concat(const Value *a, const Value *b); /* returns new array */
2025-09-15 01:36:20 +02:00
/* copy/free */
Value copy_value(const Value *v); /* deep for strings, RC for arrays, shallow fn */
2025-09-15 01:53:41 +02:00
Value deep_copy_value(const Value *v); /* deep copy including arrays */
2025-09-15 01:36:20 +02:00
void free_value(Value v); /* frees owned resources */
2025-09-13 05:09:20 +02:00
/* utilities */
void print_value(const Value *v);
int value_is_truthy(const Value *v);
2025-09-15 03:59:03 +02:00
int value_equals(const Value *a, const Value *b); /* int/string equality */
2025-09-13 05:09:20 +02:00
/* stringify into a newly-allocated C string; caller must free */
char *value_to_string_alloc(const Value *v);
2025-09-15 03:59:03 +02:00
/* array utils */
int array_contains(const Value *arr, const Value *needle); /* 1/0 */
int array_index_of(const Value *arr, const Value *needle); /* idx or -1 */
void array_clear(Value *arr); /* free elements, count=0 */
/* string helpers returning newly allocated C strings or arrays */
char *string_substr(const char *s, int start, int len); /* clamps bounds */
int string_find(const char *hay, const char *needle); /* index or -1 */
Value string_split_to_array(const char *s, const char *sep); /* array of strings */
char *array_join_with_sep(const Value *arr, const char *sep); /* join items as strings */
2025-09-13 05:09:20 +02:00
#endif