| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396 |
- /**
- * @file value.c
- * @author Ambroz Bizjak <ambrop7@gmail.com>
- *
- * @section LICENSE
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- * 3. Neither the name of the author nor the
- * names of its contributors may be used to endorse or promote products
- * derived from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * @section DESCRIPTION
- *
- * Synopsis:
- * value(value)
- * value value::get(where)
- * value value::try_get(where)
- * value value::getpath(list path)
- * value value::insert(where, what)
- * value value::insert_undo(where, what)
- *
- * Description:
- * Value objects allow examining and manipulating values.
- *
- * value(value) constructs a new value object from the given value.
- *
- * value::get(where) constructs a value object for the element at position 'where'
- * (for a list), or the value corresponding to key 'where' (for a map). It is an
- * error if the base value is not a list or a map, the index is out of bounds of
- * the list, or the key does not exist in the map.
- * The resulting value object is NOT a copy, and shares (part of) the same
- * underlying value structure as the base value object. Deleting it will remove
- * it from the list or map it is part of.
- *
- * value::try_get(where) is like get(), except that if any restriction on 'where'
- * is violated, no error is triggered; instead, the value object is constructed
- * as being deleted; this state is exposed via the 'exists' variable.
- * This can be used to check for the presence of a key in a map, and in case it
- * exists, allow access to the corresponding value without another get() statement.
- *
- * value::getpath(path) is like get(), except that it performs multiple
- * consecutive resolutions. Also, if the path is an empty list, it performs
- * no resulution at all.
- *
- * value::insert(where, what) constructs a value object by inserting into an
- * existing value object.
- * For lists, 'where' is the index of the element to insert before, or the length
- * of the list to append to it.
- * For maps, 'where' is the key to insert under. If the key already exists in the
- * map, its value is replaced; any references to the old value however remain valid.
- *
- * value::insert_undo(where, what) is like insert(), except that, on
- * deinitialization, it attempts to revert the value to the original state.
- * It does this by taking a reference to the old value at 'where' (if any) and
- * before inserting the new value 'what' to that location. On deinitialization,
- * it removes the value that it inserted from its parent and inserts the stored
- * referenced value in its place, assuming this is possible (the inserted value
- * has not been deleted and has a parent at deinitialization time).
- *
- * Variables:
- * (empty) - the value stored in the value object
- * type - type of the value; "string", "list" or "map"
- * length - number of elements in the list or map, or the number of bytes in a
- * string
- * keys - a list of keys in the map (only if the value is a map)
- * exists - "true" or "false", reflecting whether the value object holds a value
- * (is not in deleted state)
- *
- * Synopsis:
- * value::remove(where)
- * value::delete()
- *
- * Description:
- * value::remove(where) removes from an existing value object.
- * For lists, 'where' is the index of the element to remove, and must be in range.
- * For maps, 'where' is the key to remove, and must be an existing key.
- * In any case, any references to the removed value remain valid.
- *
- * value::delete() deletes the underlying value data of this value object.
- * After delection, the value object enters a deleted state, which will cause any
- * operation on it to fail. Any other value objects which referred to the same value
- * or parts of it will too enter deleted state. If the value was an element
- * in a list or map, is is removed from it.
- *
- * Synopsis:
- * value value::substr(string start [, string length])
- *
- * Description:
- * Constructs a string value by extracting a part of a string.
- * 'start' specifies the index of the character (from zero) where the substring to
- * extract starts, and must be <= the length of the string.
- * 'length' specifies the maximum number of characters to extract, if given.
- * The newly constructed value is a copy of the extracted substring.
- * The value must be a string value.
- */
- #include <stdlib.h>
- #include <string.h>
- #include <stddef.h>
- #include <limits.h>
- #include <inttypes.h>
- #include <misc/offset.h>
- #include <misc/debug.h>
- #include <misc/parse_number.h>
- #include <structure/LinkedList0.h>
- #include <structure/IndexedList.h>
- #include <structure/BCountAVL.h>
- #include <ncd/NCDModule.h>
- #include <generated/blog_channel_ncd_value.h>
- #define ModuleLog(i, ...) NCDModuleInst_Backend_Log((i), BLOG_CURRENT_CHANNEL, __VA_ARGS__)
- struct value;
- struct valref {
- struct value *v;
- LinkedList0Node refs_list_node;
- };
- typedef void (*value_deinit_func) (void *deinit_data, NCDModuleInst *i);
- struct instance {
- NCDModuleInst *i;
- struct valref ref;
- value_deinit_func deinit_func;
- void *deinit_data;
- };
- struct value {
- LinkedList0 refs_list;
-
- struct value *parent;
- union {
- struct {
- IndexedListNode list_contents_il_node;
- } list_parent;
- struct {
- NCDValue key;
- BCountAVLNode map_contents_tree_node;
- } map_parent;
- };
-
- int type;
- union {
- struct {
- uint8_t *string;
- size_t length;
- } string;
- struct {
- IndexedList list_contents_il;
- } list;
- struct {
- BCountAVL map_contents_tree;
- } map;
- };
- };
- static int ncdvalue_comparator (void *unused, void *vv1, void *vv2);
- static const char * get_type_str (int type);
- static void value_cleanup (struct value *v);
- static void value_delete (struct value *v);
- static struct value * value_init_string (NCDModuleInst *i, const uint8_t *str, size_t len);
- static struct value * value_init_list (NCDModuleInst *i);
- static size_t value_list_len (struct value *v);
- static struct value * value_list_at (struct value *v, size_t index);
- static size_t value_list_indexof (struct value *v, struct value *ev);
- static int value_list_insert (NCDModuleInst *i, struct value *list, struct value *v, size_t index);
- static void value_list_remove (struct value *list, struct value *v);
- static struct value * value_init_map (NCDModuleInst *i);
- static size_t value_map_len (struct value *map);
- static struct value * value_map_at (struct value *map, size_t index);
- static struct value * value_map_find (struct value *map, NCDValue *key);
- static int value_map_insert (struct value *map, struct value *v, NCDValue key, NCDModuleInst *i);
- static void value_map_remove (struct value *map, struct value *v);
- static void value_map_remove2 (struct value *map, struct value *v, NCDValue *out_key);
- static struct value * value_init_fromvalue (NCDModuleInst *i, NCDValue *value);
- static int value_to_value (NCDModuleInst *i, struct value *v, NCDValue *out_value);
- static struct value * value_get (NCDModuleInst *i, struct value *v, NCDValue *where, int no_error);
- static struct value * value_get_path (NCDModuleInst *i, struct value *v, NCDValue *path);
- static struct value * value_insert (NCDModuleInst *i, struct value *v, NCDValue *where, NCDValue *what, struct value **out_oldv);
- static int value_remove (NCDModuleInst *i, struct value *v, NCDValue *where);
- static void valref_init (struct valref *r, struct value *v);
- static void valref_free (struct valref *r);
- static struct value * valref_val (struct valref *r);
- static void valref_break (struct valref *r);
- static int ncdvalue_comparator (void *unused, void *vv1, void *vv2)
- {
- NCDValue *v1 = vv1;
- NCDValue *v2 = vv2;
-
- return NCDValue_Compare(v1, v2);
- }
- static const char * get_type_str (int type)
- {
- switch (type) {
- case NCDVALUE_STRING: return "string";
- case NCDVALUE_LIST: return "list";
- case NCDVALUE_MAP: return "map";
- }
- ASSERT(0)
- return NULL;
- }
- static void value_cleanup (struct value *v)
- {
- if (v->parent || !LinkedList0_IsEmpty(&v->refs_list)) {
- return;
- }
-
- switch (v->type) {
- case NCDVALUE_STRING: {
- free(v->string.string);
- } break;
-
- case NCDVALUE_LIST: {
- while (value_list_len(v) > 0) {
- struct value *ev = value_list_at(v, 0);
- value_list_remove(v, ev);
- value_cleanup(ev);
- }
- } break;
-
- case NCDVALUE_MAP: {
- while (value_map_len(v) > 0) {
- struct value *ev = value_map_at(v, 0);
- value_map_remove(v, ev);
- value_cleanup(ev);
- }
- } break;
-
- default: ASSERT(0);
- }
-
- free(v);
- }
- static void value_delete (struct value *v)
- {
- if (v->parent) {
- switch (v->parent->type) {
- case NCDVALUE_LIST: {
- value_list_remove(v->parent, v);
- } break;
- case NCDVALUE_MAP: {
- value_map_remove(v->parent, v);
- } break;
- default: ASSERT(0);
- }
- }
-
- LinkedList0Node *ln;
- while (ln = LinkedList0_GetFirst(&v->refs_list)) {
- struct valref *r = UPPER_OBJECT(ln, struct valref, refs_list_node);
- ASSERT(r->v == v)
- valref_break(r);
- }
-
- switch (v->type) {
- case NCDVALUE_STRING: {
- free(v->string.string);
- } break;
-
- case NCDVALUE_LIST: {
- while (value_list_len(v) > 0) {
- struct value *ev = value_list_at(v, 0);
- value_delete(ev);
- }
- } break;
-
- case NCDVALUE_MAP: {
- while (value_map_len(v) > 0) {
- struct value *ev = value_map_at(v, 0);
- value_delete(ev);
- }
- } break;
-
- default: ASSERT(0);
- }
-
- free(v);
- }
- static struct value * value_init_string (NCDModuleInst *i, const uint8_t *str, size_t len)
- {
- struct value *v = malloc(sizeof(*v));
- if (!v) {
- ModuleLog(i, BLOG_ERROR, "malloc failed");
- goto fail0;
- }
-
- LinkedList0_Init(&v->refs_list);
- v->parent = NULL;
- v->type = NCDVALUE_STRING;
-
- if (!(v->string.string = malloc(len))) {
- ModuleLog(i, BLOG_ERROR, "malloc failed");
- goto fail1;
- }
-
- memcpy(v->string.string, str, len);
-
- v->string.length = len;
-
- return v;
-
- fail1:
- free(v);
- fail0:
- return NULL;
- }
- static struct value * value_init_list (NCDModuleInst *i)
- {
- struct value *v = malloc(sizeof(*v));
- if (!v) {
- ModuleLog(i, BLOG_ERROR, "malloc failed");
- return NULL;
- }
-
- LinkedList0_Init(&v->refs_list);
- v->parent = NULL;
- v->type = NCDVALUE_LIST;
-
- IndexedList_Init(&v->list.list_contents_il);
-
- return v;
- }
- static size_t value_list_len (struct value *v)
- {
- ASSERT(v->type == NCDVALUE_LIST)
-
- return IndexedList_Count(&v->list.list_contents_il);
- }
- static struct value * value_list_at (struct value *v, size_t index)
- {
- ASSERT(v->type == NCDVALUE_LIST)
- ASSERT(index < value_list_len(v))
-
- IndexedListNode *iln = IndexedList_GetAt(&v->list.list_contents_il, index);
- ASSERT(iln)
-
- struct value *e = UPPER_OBJECT(iln, struct value, list_parent.list_contents_il_node);
- ASSERT(e->parent == v)
-
- return e;
- }
- static size_t value_list_indexof (struct value *v, struct value *ev)
- {
- ASSERT(v->type == NCDVALUE_LIST)
- ASSERT(ev->parent == v)
-
- uint64_t index = IndexedList_IndexOf(&v->list.list_contents_il, &ev->list_parent.list_contents_il_node);
- ASSERT(index < value_list_len(v))
-
- return index;
- }
- static int value_list_insert (NCDModuleInst *i, struct value *list, struct value *v, size_t index)
- {
- ASSERT(list->type == NCDVALUE_LIST)
- ASSERT(!v->parent)
- ASSERT(index <= value_list_len(list))
-
- if (value_list_len(list) == SIZE_MAX) {
- ModuleLog(i, BLOG_ERROR, "list has too many elements");
- return 0;
- }
-
- IndexedList_InsertAt(&list->list.list_contents_il, &v->list_parent.list_contents_il_node, index);
- v->parent = list;
-
- return 1;
- }
- static void value_list_remove (struct value *list, struct value *v)
- {
- ASSERT(list->type == NCDVALUE_LIST)
- ASSERT(v->parent == list)
-
- IndexedList_Remove(&list->list.list_contents_il, &v->list_parent.list_contents_il_node);
- v->parent = NULL;
- }
- static struct value * value_init_map (NCDModuleInst *i)
- {
- struct value *v = malloc(sizeof(*v));
- if (!v) {
- ModuleLog(i, BLOG_ERROR, "malloc failed");
- return NULL;
- }
-
- LinkedList0_Init(&v->refs_list);
- v->parent = NULL;
- v->type = NCDVALUE_MAP;
-
- BCountAVL_Init(&v->map.map_contents_tree, OFFSET_DIFF(struct value, map_parent.key, map_parent.map_contents_tree_node), ncdvalue_comparator, NULL);
-
- return v;
- }
- static size_t value_map_len (struct value *map)
- {
- ASSERT(map->type == NCDVALUE_MAP)
-
- return BCountAVL_Count(&map->map.map_contents_tree);
- }
- static struct value * value_map_at (struct value *map, size_t index)
- {
- ASSERT(map->type == NCDVALUE_MAP)
- ASSERT(index < value_map_len(map))
-
- BCountAVLNode *tn = BCountAVL_GetAt(&map->map.map_contents_tree, index);
- ASSERT(tn)
-
- struct value *e = UPPER_OBJECT(tn, struct value, map_parent.map_contents_tree_node);
- ASSERT(e->parent == map)
-
- return e;
- }
- static struct value * value_map_find (struct value *map, NCDValue *key)
- {
- ASSERT(map->type == NCDVALUE_MAP)
- ASSERT(key)
-
- BCountAVLNode *tn = BCountAVL_LookupExact(&map->map.map_contents_tree, key);
- if (!tn) {
- return NULL;
- }
-
- struct value *e = UPPER_OBJECT(tn, struct value, map_parent.map_contents_tree_node);
- ASSERT(e->parent == map)
-
- return e;
- }
- static int value_map_insert (struct value *map, struct value *v, NCDValue key, NCDModuleInst *i)
- {
- ASSERT(map->type == NCDVALUE_MAP)
- ASSERT(!v->parent)
- ASSERT(!value_map_find(map, &key))
-
- if (value_map_len(map) == SIZE_MAX) {
- ModuleLog(i, BLOG_ERROR, "map has too many elements");
- return 0;
- }
-
- v->map_parent.key = key;
- int res = BCountAVL_Insert(&map->map.map_contents_tree, &v->map_parent.map_contents_tree_node, NULL);
- ASSERT(res)
- v->parent = map;
-
- return 1;
- }
- static void value_map_remove (struct value *map, struct value *v)
- {
- ASSERT(map->type == NCDVALUE_MAP)
- ASSERT(v->parent == map)
-
- BCountAVL_Remove(&map->map.map_contents_tree, &v->map_parent.map_contents_tree_node);
- NCDValue_Free(&v->map_parent.key);
- v->parent = NULL;
- }
- static void value_map_remove2 (struct value *map, struct value *v, NCDValue *out_key)
- {
- ASSERT(map->type == NCDVALUE_MAP)
- ASSERT(v->parent == map)
- ASSERT(out_key)
-
- BCountAVL_Remove(&map->map.map_contents_tree, &v->map_parent.map_contents_tree_node);
- *out_key = v->map_parent.key;
- v->parent = NULL;
- }
- static struct value * value_init_fromvalue (NCDModuleInst *i, NCDValue *value)
- {
- struct value *v;
-
- switch (NCDValue_Type(value)) {
- case NCDVALUE_STRING: {
- if (!(v = value_init_string(i, (const uint8_t *)NCDValue_StringValue(value), NCDValue_StringLength(value)))) {
- goto fail0;
- }
- } break;
-
- case NCDVALUE_LIST: {
- if (!(v = value_init_list(i))) {
- goto fail0;
- }
-
- for (NCDValue *eval = NCDValue_ListFirst(value); eval; eval = NCDValue_ListNext(value, eval)) {
- struct value *ev = value_init_fromvalue(i, eval);
- if (!ev) {
- goto fail1;
- }
-
- if (!value_list_insert(i, v, ev, value_list_len(v))) {
- value_cleanup(ev);
- goto fail1;
- }
- }
- } break;
-
- case NCDVALUE_MAP: {
- if (!(v = value_init_map(i))) {
- goto fail0;
- }
-
- for (NCDValue *ekey = NCDValue_MapFirstKey(value); ekey; ekey = NCDValue_MapNextKey(value, ekey)) {
- NCDValue *eval = NCDValue_MapKeyValue(value, ekey);
-
- NCDValue key;
- if (!NCDValue_InitCopy(&key, ekey)) {
- BLog(BLOG_ERROR, "NCDValue_InitCopy failed");
- goto fail1;
- }
-
- struct value *ev = value_init_fromvalue(i, eval);
- if (!ev) {
- NCDValue_Free(&key);
- goto fail1;
- }
-
- if (!value_map_insert(v, ev, key, i)) {
- NCDValue_Free(&key);
- value_cleanup(ev);
- goto fail1;
- }
- }
- } break;
-
- default: ASSERT(0);
- }
-
- return v;
-
- fail1:
- value_cleanup(v);
- fail0:
- return NULL;
- }
- static int value_to_value (NCDModuleInst *i, struct value *v, NCDValue *out_value)
- {
- switch (v->type) {
- case NCDVALUE_STRING: {
- if (!(NCDValue_InitStringBin(out_value, v->string.string, v->string.length))) {
- ModuleLog(i, BLOG_ERROR, "NCDValue_InitStringBin failed");
- goto fail0;
- }
- } break;
-
- case NCDVALUE_LIST: {
- NCDValue_InitList(out_value);
-
- for (size_t index = 0; index < value_list_len(v); index++) {
- NCDValue eval;
- if (!value_to_value(i, value_list_at(v, index), &eval)) {
- goto fail1;
- }
-
- if (!NCDValue_ListAppend(out_value, eval)) {
- ModuleLog(i, BLOG_ERROR, "NCDValue_ListAppend failed");
- NCDValue_Free(&eval);
- goto fail1;
- }
- }
- } break;
-
- case NCDVALUE_MAP: {
- NCDValue_InitMap(out_value);
-
- for (size_t index = 0; index < value_map_len(v); index++) {
- struct value *ev = value_map_at(v, index);
-
- NCDValue key;
- NCDValue val;
-
- if (!NCDValue_InitCopy(&key, &ev->map_parent.key)) {
- ModuleLog(i, BLOG_ERROR, "NCDValue_InitCopy failed");
- goto fail1;
- }
-
- if (!value_to_value(i, ev, &val)) {
- NCDValue_Free(&key);
- goto fail1;
- }
-
- if (!NCDValue_MapInsert(out_value, key, val)) {
- ModuleLog(i, BLOG_ERROR, "NCDValue_MapInsert failed");
- NCDValue_Free(&key);
- NCDValue_Free(&val);
- goto fail1;
- }
- }
- } break;
-
- default: ASSERT(0);
- }
-
- return 1;
-
- fail1:
- NCDValue_Free(out_value);
- fail0:
- return 0;
- }
- static struct value * value_get (NCDModuleInst *i, struct value *v, NCDValue *where, int no_error)
- {
- switch (v->type) {
- case NCDVALUE_STRING: {
- if (!no_error) ModuleLog(i, BLOG_ERROR, "cannot resolve into a string");
- goto fail;
- } break;
-
- case NCDVALUE_LIST: {
- if (NCDValue_Type(where) != NCDVALUE_STRING) {
- if (!no_error) ModuleLog(i, BLOG_ERROR, "index is not a string (resolving into list)");
- goto fail;
- }
-
- uintmax_t index;
- if (NCDValue_StringHasNulls(where) || !parse_unsigned_integer(NCDValue_StringValue(where), &index)) {
- if (!no_error) ModuleLog(i, BLOG_ERROR, "index is not a valid number (resolving into list)");
- goto fail;
- }
-
- if (index >= value_list_len(v)) {
- if (!no_error) ModuleLog(i, BLOG_ERROR, "index is out of bounds (resolving into list)");
- goto fail;
- }
-
- v = value_list_at(v, index);
- } break;
-
- case NCDVALUE_MAP: {
- v = value_map_find(v, where);
- if (!v) {
- if (!no_error) ModuleLog(i, BLOG_ERROR, "key does not exist (resolving into map)");
- goto fail;
- }
- } break;
-
- default: ASSERT(0);
- }
-
- return v;
-
- fail:
- return NULL;
- }
- static struct value * value_get_path (NCDModuleInst *i, struct value *v, NCDValue *path)
- {
- ASSERT(NCDValue_Type(path) == NCDVALUE_LIST)
-
- for (NCDValue *ev = NCDValue_ListFirst(path); ev; ev = NCDValue_ListNext(path, ev)) {
- if (!(v = value_get(i, v, ev, 0))) {
- goto fail;
- }
- }
-
- return v;
-
- fail:
- return NULL;
- }
- static struct value * value_insert (NCDModuleInst *i, struct value *v, NCDValue *where, NCDValue *what, struct value **out_oldv)
- {
- ASSERT(v)
- NCDValue_Type(where);
- NCDValue_Type(what);
-
- struct value *nv = value_init_fromvalue(i, what);
- if (!nv) {
- goto fail0;
- }
-
- struct value *oldv = NULL;
-
- switch (v->type) {
- case NCDVALUE_STRING: {
- ModuleLog(i, BLOG_ERROR, "cannot insert into a string");
- goto fail1;
- } break;
-
- case NCDVALUE_LIST: {
- if (NCDValue_Type(where) != NCDVALUE_STRING) {
- ModuleLog(i, BLOG_ERROR, "index is not a string (inserting into list)");
- goto fail1;
- }
-
- uintmax_t index;
- if (NCDValue_StringHasNulls(where) || !parse_unsigned_integer(NCDValue_StringValue(where), &index)) {
- ModuleLog(i, BLOG_ERROR, "index is not a valid number (inserting into list)");
- goto fail1;
- }
-
- if (index > value_list_len(v)) {
- ModuleLog(i, BLOG_ERROR, "index is out of bounds (inserting into list)");
- goto fail1;
- }
-
- if (!value_list_insert(i, v, nv, index)) {
- goto fail1;
- }
- } break;
-
- case NCDVALUE_MAP: {
- oldv = value_map_find(v, where);
-
- if (!oldv && value_map_len(v) == SIZE_MAX) {
- ModuleLog(i, BLOG_ERROR, "map has too many elements");
- goto fail1;
- }
-
- NCDValue key;
- if (!NCDValue_InitCopy(&key, where)) {
- ModuleLog(i, BLOG_ERROR, "NCDValue_InitCopy failed");
- goto fail1;
- }
-
- if (oldv) {
- value_map_remove(v, oldv);
- }
-
- int res = value_map_insert(v, nv, key, i);
- ASSERT(res)
- } break;
-
- default: ASSERT(0);
- }
-
- if (out_oldv) {
- *out_oldv = oldv;
- }
- else if (oldv) {
- value_cleanup(oldv);
- }
-
- return nv;
-
- fail1:
- value_cleanup(nv);
- fail0:
- return NULL;
- }
- static int value_remove (NCDModuleInst *i, struct value *v, NCDValue *where)
- {
- switch (v->type) {
- case NCDVALUE_STRING: {
- ModuleLog(i, BLOG_ERROR, "cannot remove from a string");
- goto fail;
- } break;
-
- case NCDVALUE_LIST: {
- if (NCDValue_Type(where) != NCDVALUE_STRING) {
- ModuleLog(i, BLOG_ERROR, "index is not a string (removing from list)");
- goto fail;
- }
-
- uintmax_t index;
- if (NCDValue_StringHasNulls(where) || !parse_unsigned_integer(NCDValue_StringValue(where), &index)) {
- ModuleLog(i, BLOG_ERROR, "index is not a valid number (removing from list)");
- goto fail;
- }
-
- if (index >= value_list_len(v)) {
- ModuleLog(i, BLOG_ERROR, "index is out of bounds (removing from list)");
- goto fail;
- }
-
- struct value *ov = value_list_at(v, index);
-
- value_list_remove(v, ov);
- value_cleanup(ov);
- } break;
-
- case NCDVALUE_MAP: {
- struct value *ov = value_map_find(v, where);
- if (!ov) {
- ModuleLog(i, BLOG_ERROR, "key does not exist (removing from map)");
- goto fail;
- }
-
- value_map_remove(v, ov);
- value_cleanup(ov);
- } break;
-
- default: ASSERT(0);
- }
-
- return 1;
-
- fail:
- return 0;
- }
- static void valref_init (struct valref *r, struct value *v)
- {
- r->v = v;
-
- if (v) {
- LinkedList0_Prepend(&v->refs_list, &r->refs_list_node);
- }
- }
- static void valref_free (struct valref *r)
- {
- if (r->v) {
- LinkedList0_Remove(&r->v->refs_list, &r->refs_list_node);
- value_cleanup(r->v);
- }
- }
- static struct value * valref_val (struct valref *r)
- {
- return r->v;
- }
- static void valref_break (struct valref *r)
- {
- ASSERT(r->v)
-
- LinkedList0_Remove(&r->v->refs_list, &r->refs_list_node);
- r->v = NULL;
- }
- static void func_new_common (NCDModuleInst *i, struct value *v, value_deinit_func deinit_func, void *deinit_data)
- {
- // allocate instance
- struct instance *o = malloc(sizeof(*o));
- if (!o) {
- ModuleLog(i, BLOG_ERROR, "failed to allocate instance");
- goto fail0;
- }
- o->i = i;
- NCDModuleInst_Backend_SetUser(i, o);
-
- // init value references
- valref_init(&o->ref, v);
-
- // remember deinit
- o->deinit_func = deinit_func;
- o->deinit_data = deinit_data;
-
- NCDModuleInst_Backend_Up(i);
- return;
-
- fail0:
- value_cleanup(v);
- if (deinit_func) {
- deinit_func(deinit_data, i);
- }
- NCDModuleInst_Backend_SetError(i);
- NCDModuleInst_Backend_Dead(i);
- }
- static void func_die (void *vo)
- {
- struct instance *o = vo;
- NCDModuleInst *i = o->i;
-
- // deinit
- if (o->deinit_func) {
- o->deinit_func(o->deinit_data, i);
- }
-
- // free value reference
- valref_free(&o->ref);
-
- // free instance
- free(o);
-
- NCDModuleInst_Backend_Dead(i);
- }
- static int func_getvar (void *vo, const char *name, NCDValue *out_value)
- {
- struct instance *o = vo;
- struct value *v = valref_val(&o->ref);
-
- if (!strcmp(name, "exists")) {
- const char *str = v ? "true" : "false";
- if (!NCDValue_InitString(out_value, str)) {
- ModuleLog(o->i, BLOG_ERROR, "NCDValue_InitString failed");
- return 0;
- }
- return 1;
- }
-
- if (strcmp(name, "type") && strcmp(name, "length") && strcmp(name, "keys") && strcmp(name, "")) {
- return 0;
- }
-
- if (!v) {
- ModuleLog(o->i, BLOG_ERROR, "value was deleted");
- return 0;
- }
-
- if (!strcmp(name, "type")) {
- if (!NCDValue_InitString(out_value, get_type_str(v->type))) {
- ModuleLog(o->i, BLOG_ERROR, "NCDValue_InitString failed");
- return 0;
- }
- }
- else if (!strcmp(name, "length")) {
- size_t len;
- switch (v->type) {
- case NCDVALUE_LIST:
- len = value_list_len(v);
- break;
- case NCDVALUE_MAP:
- len = value_map_len(v);
- break;
- case NCDVALUE_STRING:
- len = v->string.length;
- break;
- default:
- ASSERT(0);
- }
-
- char str[64];
- snprintf(str, sizeof(str), "%zu", len);
- if (!NCDValue_InitString(out_value, str)) {
- ModuleLog(o->i, BLOG_ERROR, "NCDValue_InitString failed");
- return 0;
- }
- }
- else if (!strcmp(name, "keys")) {
- if (v->type != NCDVALUE_MAP) {
- ModuleLog(o->i, BLOG_ERROR, "value is not a map (reading keys variable)");
- return 0;
- }
-
- NCDValue_InitList(out_value);
-
- for (size_t i = 0; i < value_map_len(v); i++) {
- struct value *ev = value_map_at(v, i);
-
- NCDValue key;
- if (!NCDValue_InitCopy(&key, &ev->map_parent.key)) {
- ModuleLog(o->i, BLOG_ERROR, "NCDValue_InitCopy failed");
- goto map_fail1;
- }
-
- if (!NCDValue_ListAppend(out_value, key)) {
- ModuleLog(o->i, BLOG_ERROR, "NCDValue_ListAppend failed");
- NCDValue_Free(&key);
- goto map_fail1;
- }
- }
-
- return 1;
-
- map_fail1:
- NCDValue_Free(out_value);
- return 0;
- }
- else if (!strcmp(name, "")) {
- if (!value_to_value(o->i, v, out_value)) {
- return 0;
- }
- }
- else {
- ASSERT(0);
- }
-
- return 1;
- }
- static void func_new_value (NCDModuleInst *i)
- {
- NCDValue *value_arg;
- if (!NCDValue_ListRead(i->args, 1, &value_arg)) {
- ModuleLog(i, BLOG_ERROR, "wrong arity");
- goto fail0;
- }
-
- struct value *v = value_init_fromvalue(i, value_arg);
- if (!v) {
- goto fail0;
- }
-
- func_new_common(i, v, NULL, NULL);
- return;
-
- fail0:
- NCDModuleInst_Backend_SetError(i);
- NCDModuleInst_Backend_Dead(i);
- }
- static void func_new_get (NCDModuleInst *i)
- {
- NCDValue *where_arg;
- if (!NCDValue_ListRead(i->args, 1, &where_arg)) {
- ModuleLog(i, BLOG_ERROR, "wrong arity");
- goto fail0;
- }
-
- struct instance *mo = NCDModuleInst_Backend_GetUser((NCDModuleInst *)i->method_user);
- struct value *mov = valref_val(&mo->ref);
-
- if (!mov) {
- ModuleLog(i, BLOG_ERROR, "value was deleted");
- goto fail0;
- }
-
- struct value *v = value_get(i, mov, where_arg, 0);
- if (!v) {
- goto fail0;
- }
-
- func_new_common(i, v, NULL, NULL);
- return;
-
- fail0:
- NCDModuleInst_Backend_SetError(i);
- NCDModuleInst_Backend_Dead(i);
- }
- static void func_new_try_get (NCDModuleInst *i)
- {
- NCDValue *where_arg;
- if (!NCDValue_ListRead(i->args, 1, &where_arg)) {
- ModuleLog(i, BLOG_ERROR, "wrong arity");
- goto fail0;
- }
-
- struct instance *mo = NCDModuleInst_Backend_GetUser((NCDModuleInst *)i->method_user);
- struct value *mov = valref_val(&mo->ref);
-
- if (!mov) {
- ModuleLog(i, BLOG_ERROR, "value was deleted");
- goto fail0;
- }
-
- struct value *v = value_get(i, mov, where_arg, 1);
-
- func_new_common(i, v, NULL, NULL);
- return;
-
- fail0:
- NCDModuleInst_Backend_SetError(i);
- NCDModuleInst_Backend_Dead(i);
- }
- static void func_new_getpath (NCDModuleInst *i)
- {
- NCDValue *path_arg;
- if (!NCDValue_ListRead(i->args, 1, &path_arg)) {
- ModuleLog(i, BLOG_ERROR, "wrong arity");
- goto fail0;
- }
- if (NCDValue_Type(path_arg) != NCDVALUE_LIST) {
- ModuleLog(i, BLOG_ERROR, "wrong type");
- goto fail0;
- }
-
- struct instance *mo = NCDModuleInst_Backend_GetUser((NCDModuleInst *)i->method_user);
- struct value *mov = valref_val(&mo->ref);
-
- if (!mov) {
- ModuleLog(i, BLOG_ERROR, "value was deleted");
- goto fail0;
- }
-
- struct value *v = value_get_path(i, mov, path_arg);
- if (!v) {
- goto fail0;
- }
-
- func_new_common(i, v, NULL, NULL);
- return;
-
- fail0:
- NCDModuleInst_Backend_SetError(i);
- NCDModuleInst_Backend_Dead(i);
- }
- static void func_new_insert (NCDModuleInst *i)
- {
- NCDValue *where_arg;
- NCDValue *what_arg;
- if (!NCDValue_ListRead(i->args, 2, &where_arg, &what_arg)) {
- ModuleLog(i, BLOG_ERROR, "wrong arity");
- goto fail0;
- }
-
- struct instance *mo = NCDModuleInst_Backend_GetUser((NCDModuleInst *)i->method_user);
- struct value *mov = valref_val(&mo->ref);
-
- if (!mov) {
- ModuleLog(i, BLOG_ERROR, "value was deleted");
- goto fail0;
- }
-
- struct value *v = value_insert(i, mov, where_arg, what_arg, NULL);
- if (!v) {
- goto fail0;
- }
-
- func_new_common(i, v, NULL, NULL);
- return;
-
- fail0:
- NCDModuleInst_Backend_SetError(i);
- NCDModuleInst_Backend_Dead(i);
- }
- struct insert_undo_deinit_data {
- struct valref val_ref;
- struct valref oldval_ref;
- };
- static void insert_undo_deinit_func (struct insert_undo_deinit_data *data, NCDModuleInst *i)
- {
- struct value *val = valref_val(&data->val_ref);
- struct value *oldval = valref_val(&data->oldval_ref);
-
- if (val && val->parent && (!oldval || !oldval->parent)) {
- // get parent
- struct value *parent = val->parent;
-
- // remove this value from parent and restore saved one (or none)
- switch (parent->type) {
- case NCDVALUE_LIST: {
- size_t index = value_list_indexof(parent, val);
- value_list_remove(parent, val);
- if (oldval) {
- int res = value_list_insert(i, parent, oldval, index);
- ASSERT(res)
- }
- } break;
-
- case NCDVALUE_MAP: {
- NCDValue key;
- value_map_remove2(parent, val, &key);
- if (oldval) {
- int res = value_map_insert(parent, oldval, key, i);
- ASSERT(res)
- } else {
- NCDValue_Free(&key);
- }
- } break;
-
- default: ASSERT(0);
- }
- }
-
- valref_free(&data->oldval_ref);
- valref_free(&data->val_ref);
- free(data);
- }
- static void func_new_insert_undo (NCDModuleInst *i)
- {
- NCDValue *where_arg;
- NCDValue *what_arg;
- if (!NCDValue_ListRead(i->args, 2, &where_arg, &what_arg)) {
- ModuleLog(i, BLOG_ERROR, "wrong arity");
- goto fail0;
- }
-
- struct instance *mo = NCDModuleInst_Backend_GetUser((NCDModuleInst *)i->method_user);
- struct value *mov = valref_val(&mo->ref);
-
- if (!mov) {
- ModuleLog(i, BLOG_ERROR, "value was deleted");
- goto fail0;
- }
-
- struct insert_undo_deinit_data *data = malloc(sizeof(*data));
- if (!data) {
- ModuleLog(i, BLOG_ERROR, "malloc failed");
- goto fail0;
- }
-
- struct value *oldv;
- struct value *v = value_insert(i, mov, where_arg, what_arg, &oldv);
- if (!v) {
- goto fail1;
- }
-
- valref_init(&data->val_ref, v);
- valref_init(&data->oldval_ref, oldv);
-
- func_new_common(i, v, (value_deinit_func)insert_undo_deinit_func, data);
- return;
-
- fail1:
- free(data);
- fail0:
- NCDModuleInst_Backend_SetError(i);
- NCDModuleInst_Backend_Dead(i);
- }
- static void func_new_substr (NCDModuleInst *i)
- {
- NCDValue *start_arg;
- NCDValue *length_arg = NULL;
- if (!NCDValue_ListRead(i->args, 1, &start_arg) &&
- !NCDValue_ListRead(i->args, 2, &start_arg, &length_arg)) {
- ModuleLog(i, BLOG_ERROR, "wrong arity");
- goto fail0;
- }
- if (!NCDValue_IsStringNoNulls(start_arg) || (length_arg && !NCDValue_IsStringNoNulls(length_arg))) {
- ModuleLog(i, BLOG_ERROR, "wrong type");
- goto fail0;
- }
-
- uintmax_t start;
- if (!parse_unsigned_integer(NCDValue_StringValue(start_arg), &start)) {
- ModuleLog(i, BLOG_ERROR, "start is not a number");
- goto fail0;
- }
-
- uintmax_t length = UINTMAX_MAX;
- if (length_arg && !parse_unsigned_integer(NCDValue_StringValue(length_arg), &length)) {
- ModuleLog(i, BLOG_ERROR, "length is not a number");
- goto fail0;
- }
-
- struct instance *mo = NCDModuleInst_Backend_GetUser((NCDModuleInst *)i->method_user);
- struct value *mov = valref_val(&mo->ref);
-
- if (!mov) {
- ModuleLog(i, BLOG_ERROR, "value was deleted");
- goto fail0;
- }
-
- if (mov->type != NCDVALUE_STRING) {
- ModuleLog(i, BLOG_ERROR, "value is not a string");
- goto fail0;
- }
-
- if (start > mov->string.length) {
- ModuleLog(i, BLOG_ERROR, "start is out of range");
- goto fail0;
- }
-
- size_t remain = mov->string.length - start;
- size_t amount = length < remain ? length : remain;
-
- struct value *v = value_init_string(i, mov->string.string + start, amount);
- if (!v) {
- goto fail0;
- }
-
- func_new_common(i, v, NULL, NULL);
- return;
-
- fail0:
- NCDModuleInst_Backend_SetError(i);
- NCDModuleInst_Backend_Dead(i);
- }
- static void remove_func_new (NCDModuleInst *i)
- {
- NCDValue *where_arg;
- if (!NCDValue_ListRead(i->args, 1, &where_arg)) {
- ModuleLog(i, BLOG_ERROR, "wrong arity");
- goto fail0;
- }
-
- struct instance *mo = NCDModuleInst_Backend_GetUser((NCDModuleInst *)i->method_user);
- struct value *mov = valref_val(&mo->ref);
-
- if (!mov) {
- ModuleLog(i, BLOG_ERROR, "value was deleted");
- goto fail0;
- }
-
- if (!value_remove(i, mov, where_arg)) {
- goto fail0;
- }
-
- NCDModuleInst_Backend_Up(i);
- return;
-
- fail0:
- NCDModuleInst_Backend_SetError(i);
- NCDModuleInst_Backend_Dead(i);
- }
- static void delete_func_new (NCDModuleInst *i)
- {
- if (!NCDValue_ListRead(i->args, 0)) {
- ModuleLog(i, BLOG_ERROR, "wrong arity");
- goto fail0;
- }
-
- struct instance *mo = NCDModuleInst_Backend_GetUser((NCDModuleInst *)i->method_user);
- struct value *mov = valref_val(&mo->ref);
-
- if (!mov) {
- ModuleLog(i, BLOG_ERROR, "value was deleted");
- goto fail0;
- }
-
- value_delete(mov);
-
- NCDModuleInst_Backend_Up(i);
- return;
-
- fail0:
- NCDModuleInst_Backend_SetError(i);
- NCDModuleInst_Backend_Dead(i);
- }
- static const struct NCDModule modules[] = {
- {
- .type = "value",
- .func_new = func_new_value,
- .func_die = func_die,
- .func_getvar = func_getvar
- }, {
- .type = "value::get",
- .base_type = "value",
- .func_new = func_new_get,
- .func_die = func_die,
- .func_getvar = func_getvar
- }, {
- .type = "value::try_get",
- .base_type = "value",
- .func_new = func_new_try_get,
- .func_die = func_die,
- .func_getvar = func_getvar
- }, {
- .type = "value::getpath",
- .base_type = "value",
- .func_new = func_new_getpath,
- .func_die = func_die,
- .func_getvar = func_getvar
- }, {
- .type = "value::insert",
- .base_type = "value",
- .func_new = func_new_insert,
- .func_die = func_die,
- .func_getvar = func_getvar
- }, {
- .type = "value::insert_undo",
- .base_type = "value",
- .func_new = func_new_insert_undo,
- .func_die = func_die,
- .func_getvar = func_getvar
- }, {
- .type = "value::remove",
- .func_new = remove_func_new
- }, {
- .type = "value::delete",
- .func_new = delete_func_new
- }, {
- .type = "value::substr",
- .base_type = "value",
- .func_new = func_new_substr,
- .func_die = func_die,
- .func_getvar = func_getvar
- }, {
- .type = NULL
- }
- };
- const struct NCDModuleGroup ncdmodule_value = {
- .modules = modules
- };
|