add file hashing for cache validation and provide the license to the cc0 files in the project

This commit is contained in:
2025-07-01 04:28:32 +01:00
parent c31f16d68d
commit 246e20014f
9 changed files with 242 additions and 70 deletions

View File

@@ -1,36 +1,38 @@
#include "object.h"
#include "../../memory.h"
#include "../../hash_data/hash_data.h"
#include <stdbool.h>
#include <string.h>
#include "../../memory.h"
#include "type/type.h"
#include <stdbool.h>
#include <stdio.h>
#include <string.h>
ArgonObject *BASE_CLASS = NULL;
void init_base_field() {
// add_field(BASE_CLASS, "test", BASE_CLASS);
// add_field(BASE_CLASS, "test", BASE_CLASS);
}
ArgonObject* init_child_argon_object(ArgonObject *cls) {
ArgonObject *object = init_argon_class(NULL);
object->self = object;
object->baseObject = cls;
add_field(object, "__call__", NULL);
return object;
ArgonObject *init_child_argon_object(ArgonObject *cls) {
ArgonObject *object = init_argon_class(NULL);
object->self = object;
object->baseObject = cls;
add_field(object, "__call__", NULL);
return object;
}
ArgonObject* init_argon_class(char*name) {
ArgonObject *object = ar_alloc(sizeof(ArgonObject));
object->name = name;
object->type = TYPE_OBJECT;
object->self = NULL;
object->baseObject = ARGON_TYPE;
object->fields = createHashmap_GC();
memset(&object->value, 0, sizeof(object->value));
return object;
ArgonObject *init_argon_class(char *name) {
ArgonObject *object = ar_alloc(sizeof(ArgonObject));
object->name = name;
object->type = TYPE_OBJECT;
object->self = NULL;
object->baseObject = ARGON_TYPE;
object->fields = createHashmap_GC();
memset(&object->value, 0, sizeof(object->value));
return object;
}
void add_field(ArgonObject*target, char* name, ArgonObject *object) {
hashmap_insert_GC(target->fields, siphash64_bytes(name, strlen(name), siphash_key),name, object, 0);
void add_field(ArgonObject *target, char *name, ArgonObject *object) {
hashmap_insert_GC(target->fields,
siphash64_bytes(name, strlen(name), siphash_key), name,
object, 0);
}