Files
Compound/Var/include/var.h
William 5f7a6c6f93 (SOC) Storage Only Commit
(ADD) Name, NameScope, Catlog, Object, String, Attribute, Char, Registry, Utils, Type, <Platform Support>, <Global Constants>, README

(MOD) Array, Var, Status, MemMan, <Common>
2024-05-16 00:04:42 +08:00

54 lines
1.3 KiB
C

#ifndef COMPOUND_VAR
# define COMPOUND_VAR
# include <stdio.h>
# include <Compound/common.h>
# include <Compound/status.h>
# define VAR_IDENTITY_LENGTH 64
# define VAR_LITERALISE_LENGTH (VAR_IDENTITY_LENGTH + 16 + 9 + 10)
# define VAR_LITERALISE_FORMAT ("%s @[%p]: %ld")
# define VAR_IDENTITY_ILLEGAL_CHAR "!@#$%^*()-=+;\'\"\\|,./<>?[]{}`~ "
static Status IllegalVarIdentity = {
.description = "Given identity does not fit the standard of Var Naming "
"convension.",
.characteristic = STATUS_ERROR,
.prev = &InvalidParameter
};
// static Status VarIdentityTooLong = {
// .description = "Given identity has longer length that the maximum length "
// "limitation.",
// .characteristic = STATUS_ERROR,
// .prev = &IllegalVarIdentity
// };
typedef struct {
/* Data */
void *addr;
size_t size;
/* Identification */
char *identity; // Maximum up to VAR_IDENTITY_LENGTH
} Var;
// typedef struct {
// union {
// /* Self Pointing (Var) */
// const Var *__this__;
// };
// } _Var;
Status Var_Create(Var *inst, void *addr, size_t size, char *identity);
Status Var_CopyOf(Var *inst, Var *other);
void Var_Delete(Var *inst);
Status VarUtils_Literalise(Var *inst, char *buff);
void VarUtils_Swap(Var *v1, Var *v2);
bool VarUtils_IsIdentityLegal(char *identity);
#endif /* COMPOUND_VAR */