server/src/util/attrib.c

501 lines
12 KiB
C
Raw Normal View History

/*
2015-01-30 22:10:29 +01:00
Copyright (c) 1998-2015, Enno Rehling <enno@eressea.de>
2014-10-18 14:16:26 +02:00
Katja Zedel <katze@felidae.kn-bremen.de
Christian Schlittchen <corwin@amber.kn-bremen.de>
2010-08-08 10:06:34 +02:00
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
**/
#include <platform.h>
#include "attrib.h"
#include "log.h"
#include "storage.h"
#include <util/gamedata.h>
#include <critbit.h>
2010-08-08 10:06:34 +02:00
#include <assert.h>
#include <string.h>
#include <stdlib.h>
int a_readint(attrib * a, void *owner, struct gamedata *data)
{
int n;
READ_INT(data->store, &n);
if (a) a->data.i = n;
return AT_READ_OK;
}
void a_writeint(const attrib * a, const void *owner, struct storage *store)
{
WRITE_INT(store, a->data.i);
}
int a_readshorts(attrib * a, void *owner, struct gamedata *data)
{
int n;
READ_INT(data->store, &n);
a->data.sa[0] = (short)n;
READ_INT(data->store, &n);
a->data.sa[1] = (short)n;
return AT_READ_OK;
}
void a_writeshorts(const attrib * a, const void *owner, struct storage *store)
{
WRITE_INT(store, a->data.sa[0]);
WRITE_INT(store, a->data.sa[1]);
}
int a_readchars(attrib * a, void *owner, struct gamedata *data)
{
int i;
for (i = 0; i != 4; ++i) {
int n;
READ_INT(data->store, &n);
a->data.ca[i] = (char)n;
}
return AT_READ_OK;
}
void a_writechars(const attrib * a, const void *owner, struct storage *store)
{
int i;
for (i = 0; i != 4; ++i) {
WRITE_INT(store, a->data.ca[i]);
}
}
#define DISPLAYSIZE 8192
int a_readstring(attrib * a, void *owner, struct gamedata *data)
{
char buf[DISPLAYSIZE];
char * result = 0;
int e;
size_t len = 0;
do {
e = READ_STR(data->store, buf, sizeof(buf));
if (result) {
result = realloc(result, len + DISPLAYSIZE - 1);
strcpy(result + len, buf);
len += DISPLAYSIZE - 1;
}
else {
result = _strdup(buf);
}
} while (e == ENOMEM);
a->data.v = result;
return AT_READ_OK;
}
void a_writestring(const attrib * a, const void *owner, struct storage *store)
{
assert(a->data.v);
WRITE_STR(store, (const char *)a->data.v);
}
void a_finalizestring(attrib * a)
{
free(a->data.v);
}
2010-08-08 10:06:34 +02:00
#define MAXATHASH 61
2014-10-18 14:16:26 +02:00
static attrib_type *at_hash[MAXATHASH];
2010-08-08 10:06:34 +02:00
2011-03-07 08:02:35 +01:00
static unsigned int __at_hashkey(const char *s)
2010-08-08 10:06:34 +02:00
{
2014-10-18 14:16:26 +02:00
int key = 0;
size_t i = strlen(s);
2011-03-07 08:02:35 +01:00
2014-10-18 14:16:26 +02:00
while (i > 0) {
key = (s[--i] + key * 37);
}
return key & 0x7fffffff; //TODO: V112 http://www.viva64.com/en/V112 Dangerous magic number 0x7fffffff used: return key & 0x7fffffff;.
2010-08-08 10:06:34 +02:00
}
2011-03-07 08:02:35 +01:00
void at_register(attrib_type * at)
2010-08-08 10:06:34 +02:00
{
2014-10-18 14:16:26 +02:00
attrib_type *find;
if (at->read == NULL) {
log_warning("registering non-persistent attribute %s.\n", at->name); //TODO: V111 http://www.viva64.com/en/V111 Call of function 'log_warning' with variable number of arguments. Second argument has memsize type.
2014-10-18 14:16:26 +02:00
}
at->hashkey = __at_hashkey(at->name);
find = at_hash[at->hashkey % MAXATHASH];
while (find && at->hashkey != find->hashkey) {
find = find->nexthash;
}
if (find && find == at) {
log_warning("attribute '%s' was registered more than once\n", at->name); //TODO: V111 http://www.viva64.com/en/V111 Call of function 'log_warning' with variable number of arguments. Second argument has memsize type.
2014-10-18 14:16:26 +02:00
return;
}
else {
assert(!find || !"hashkey is already in use");
}
at->nexthash = at_hash[at->hashkey % MAXATHASH];
at_hash[at->hashkey % MAXATHASH] = at;
2010-08-08 10:06:34 +02:00
}
2011-03-07 08:02:35 +01:00
static attrib_type *at_find(unsigned int hk)
2010-08-08 10:06:34 +02:00
{
2014-10-18 14:16:26 +02:00
const char *translate[3][2] = {
{ "zielregion", "targetregion" }, /* remapping: from 'zielregion, heute targetregion */
{ "verzaubert", "curse" }, /* remapping: früher verzaubert, jetzt curse */
{ NULL, NULL }
2014-10-18 14:16:26 +02:00
};
attrib_type *find = at_hash[hk % MAXATHASH];
while (find && hk != find->hashkey)
find = find->nexthash;
if (!find) {
int i = 0;
while (translate[i][0]) {
if (__at_hashkey(translate[i][0]) == hk)
return at_find(__at_hashkey(translate[i][1]));
++i;
}
2011-03-07 08:02:35 +01:00
}
2014-10-18 14:16:26 +02:00
return find;
2010-08-08 10:06:34 +02:00
}
2011-03-07 08:02:35 +01:00
attrib *a_select(attrib * a, const void *data,
2014-10-18 14:16:26 +02:00
bool(*compare) (const attrib *, const void *))
2010-08-08 10:06:34 +02:00
{
2014-10-18 14:16:26 +02:00
while (a && !compare(a, data))
a = a->next;
return a;
2010-08-08 10:06:34 +02:00
}
2011-03-07 08:02:35 +01:00
attrib *a_find(attrib * a, const attrib_type * at)
2010-08-08 10:06:34 +02:00
{
2014-10-18 14:16:26 +02:00
while (a && a->type != at)
a = a->nexttype;
return a;
2010-08-08 10:06:34 +02:00
}
2011-03-07 08:02:35 +01:00
static attrib *a_insert(attrib * head, attrib * a)
2010-08-08 10:06:34 +02:00
{
attrib **pa;
2014-10-18 14:16:26 +02:00
assert(!(a->type->flags & ATF_UNIQUE));
assert(head && head->type == a->type);
2010-08-08 10:06:34 +02:00
pa = &head->next;
2014-10-18 14:16:26 +02:00
while (*pa && (*pa)->type == a->type) {
pa = &(*pa)->next;
}
a->next = *pa;
return *pa = a;
2010-08-08 10:06:34 +02:00
}
2011-03-07 08:02:35 +01:00
attrib *a_add(attrib ** pa, attrib * a)
2010-08-08 10:06:34 +02:00
{
2014-10-18 14:16:26 +02:00
attrib *first = *pa;
assert(a->next == NULL && a->nexttype == NULL);
2011-03-07 08:02:35 +01:00
2014-10-18 14:16:26 +02:00
if (first == NULL)
return *pa = a;
if (first->type == a->type) {
return a_insert(first, a);
2010-08-08 10:06:34 +02:00
}
2014-10-18 14:16:26 +02:00
for (;;) {
attrib *next = first->nexttype;
if (next == NULL) {
/* the type is not in the list, append it behind the last type */
attrib **insert = &first->next;
first->nexttype = a;
while (*insert)
insert = &(*insert)->next;
*insert = a;
break;
}
if (next->type == a->type) {
return a_insert(next, a);
}
first = next;
2010-08-08 10:06:34 +02:00
}
2014-10-18 14:16:26 +02:00
return a;
2010-08-08 10:06:34 +02:00
}
2011-03-07 08:02:35 +01:00
static int a_unlink(attrib ** pa, attrib * a)
2010-08-08 10:06:34 +02:00
{
2014-10-18 14:16:26 +02:00
attrib **pnexttype = pa;
attrib **pnext = NULL;
assert(a != NULL);
while (*pnexttype) {
attrib *next = *pnexttype;
if (next->type == a->type)
break;
pnexttype = &next->nexttype;
pnext = &next->next;
2010-08-08 10:06:34 +02:00
}
2014-10-18 14:16:26 +02:00
if (*pnexttype && (*pnexttype)->type == a->type) {
if (*pnexttype == a) {
*pnexttype = a->next;
if (a->next != a->nexttype) {
a->next->nexttype = a->nexttype;
}
if (pnext == NULL)
return 1;
while (*pnext && (*pnext)->type != a->type)
pnext = &(*pnext)->next;
}
else {
pnext = &(*pnexttype)->next;
}
while (*pnext && (*pnext)->type == a->type) {
if (*pnext == a) {
*pnext = a->next;
return 1;
}
pnext = &(*pnext)->next;
}
2010-08-08 10:06:34 +02:00
}
2014-10-18 14:16:26 +02:00
return 0;
2010-08-08 10:06:34 +02:00
}
static void a_free(attrib * a)
{
const attrib_type *at = a->type;
if (at->finalize)
at->finalize(a);
free(a);
}
2011-03-07 08:02:35 +01:00
int a_remove(attrib ** pa, attrib * a)
2010-08-08 10:06:34 +02:00
{
attrib *head = *pa;
2014-10-18 14:16:26 +02:00
int ok;
2014-10-18 14:16:26 +02:00
assert(a != NULL);
ok = a_unlink(pa, a);
if (ok) {
if (head == a) {
*pa = a->next;
}
2014-10-18 14:16:26 +02:00
a_free(a);
}
2014-10-18 14:16:26 +02:00
return ok;
2010-08-08 10:06:34 +02:00
}
2011-03-07 08:02:35 +01:00
void a_removeall(attrib ** pa, const attrib_type * at)
2010-08-08 10:06:34 +02:00
{
2014-10-18 14:16:26 +02:00
attrib **pnexttype = pa;
if (!at) {
while (*pnexttype) {
attrib *a = *pnexttype;
*pnexttype = a->next;
a_free(a);
}
2010-08-08 10:06:34 +02:00
}
else {
attrib **pnext = NULL;
while (*pnexttype) {
attrib *a = *pnexttype;
if (a->type == at)
break;
pnexttype = &a->nexttype;
pnext = &a->next;
2014-10-18 14:16:26 +02:00
}
if (*pnexttype && (*pnexttype)->type == at) {
attrib *a = *pnexttype;
*pnexttype = a->nexttype;
if (pnext) {
while (*pnext && (*pnext)->type != at)
pnext = &(*pnext)->next;
*pnext = a->nexttype;
}
while (a && a->type == at) {
attrib *ra = a;
a = a->next;
a_free(ra);
}
2014-10-18 14:16:26 +02:00
}
2010-08-08 10:06:34 +02:00
}
}
2011-03-07 08:02:35 +01:00
attrib *a_new(const attrib_type * at)
2010-08-08 10:06:34 +02:00
{
2014-10-18 14:16:26 +02:00
attrib *a = (attrib *)calloc(1, sizeof(attrib));
assert(at != NULL);
a->type = at;
if (at->initialize)
at->initialize(a);
return a;
2010-08-08 10:06:34 +02:00
}
int a_age(attrib ** p, void *owner)
2010-08-08 10:06:34 +02:00
{
2014-10-18 14:16:26 +02:00
attrib **ap = p;
/* Attribute altern, und die Entfernung (age()==0) eines Attributs
* hat Einfluß auf den Besitzer */
2014-10-18 14:16:26 +02:00
while (*ap) {
attrib *a = *ap;
if (a->type->age) {
int result = a->type->age(a, owner);
2014-10-18 14:16:26 +02:00
assert(result >= 0 || !"age() returned a negative value");
if (result == AT_AGE_REMOVE) {
2014-10-18 14:16:26 +02:00
a_remove(p, a);
continue;
}
}
ap = &a->next;
2011-03-07 08:02:35 +01:00
}
2014-10-18 14:16:26 +02:00
return (*p != NULL);
2010-08-08 10:06:34 +02:00
}
static critbit_tree cb_deprecated = { 0 };
typedef struct deprecated_s {
unsigned int hash;
int(*reader)(attrib *, void *, struct gamedata *);
} deprecated_t;
void at_deprecate(const char * name, int(*reader)(attrib *, void *, struct gamedata *))
{
deprecated_t value;
value.hash = __at_hashkey(name);
value.reader = reader;
cb_insert(&cb_deprecated, &value, sizeof(value));
}
static int a_read_i(gamedata *data, attrib ** attribs, void *owner, unsigned int key) {
int retval = AT_READ_OK;
int(*reader)(attrib *, void *, struct gamedata *) = 0;
attrib_type *at = at_find(key);
attrib * na = 0;
if (at) {
reader = at->read;
na = a_new(at);
}
else {
void *match;
if (cb_find_prefix(&cb_deprecated, &key, sizeof(key), &match, 1, 0)>0) {
deprecated_t *value = (deprecated_t *)match;
reader = value->reader;
}
else {
log_error("unknown attribute hash: %u\n", key);
assert(at || !"attribute not registered");
}
}
if (reader) {
int ret = reader(na, owner, data);
if (na) {
switch (ret) {
case AT_READ_DEPR:
case AT_READ_OK:
a_add(attribs, na);
retval = ret;
break;
case AT_READ_FAIL:
a_free(na);
break;
default:
assert(!"invalid return value");
break;
}
}
}
else {
assert(!"error: no registered callback can read attribute");
}
return retval;
}
int a_read(gamedata *data, attrib ** attribs, void *owner) {
struct storage *store = data->store;
int key, retval = AT_READ_OK;
key = -1;
READ_INT(store, &key);
while (key > 0) {
int ret = a_read_i(data, attribs, owner, key);
if (ret == AT_READ_DEPR) {
retval = AT_READ_DEPR;
}
READ_INT(store, &key);
}
return retval;
}
int a_read_orig(gamedata *data, attrib ** attribs, void *owner)
2010-08-08 10:06:34 +02:00
{
2014-10-18 14:16:26 +02:00
int key, retval = AT_READ_OK;
char zText[128];
2010-08-08 10:06:34 +02:00
2014-10-18 14:16:26 +02:00
zText[0] = 0;
key = -1;
READ_TOK(data->store, zText, sizeof(zText));
if (strcmp(zText, "end") == 0) {
2014-10-18 14:16:26 +02:00
return retval;
}
else {
2014-10-18 14:16:26 +02:00
key = __at_hashkey(zText);
}
while (key > 0) {
retval = a_read_i(data, attribs, owner, key);
READ_TOK(data->store, zText, sizeof(zText));
2014-10-18 14:16:26 +02:00
if (!strcmp(zText, "end"))
break;
key = __at_hashkey(zText);
}
return retval;
2010-08-08 10:06:34 +02:00
}
void a_write(struct storage *store, const attrib * attribs, const void *owner) {
const attrib *na = attribs;
while (na) {
if (na->type->write) {
assert(na->type->hashkey || !"attribute not registered");
WRITE_INT(store, na->type->hashkey);
na->type->write(na, owner, store);
na = na->next;
}
else {
na = na->nexttype;
}
}
WRITE_INT(store, 0);
}
void a_write_orig(struct storage *store, const attrib * attribs, const void *owner)
2010-08-08 10:06:34 +02:00
{
2014-10-18 14:16:26 +02:00
const attrib *na = attribs;
while (na) {
if (na->type->write) {
assert(na->type->hashkey || !"attribute not registered");
WRITE_TOK(store, na->type->name);
na->type->write(na, owner, store);
na = na->next;
}
else {
na = na->nexttype;
}
2010-08-08 10:06:34 +02:00
}
2014-10-18 14:16:26 +02:00
WRITE_TOK(store, "end");
2010-08-08 10:06:34 +02:00
}
void attrib_done(void) {
cb_clear(&cb_deprecated);
memset(at_hash, 0, sizeof at_hash);
}