forked from github/server
f3244cd6c8
Eigentlich keine Änderung. Gleich mal testen.
94 lines
2.7 KiB
C
94 lines
2.7 KiB
C
/* vi: set ts=2:
|
|
*
|
|
*
|
|
* Eressea PB(E)M host Copyright (C) 1998-2003
|
|
* Christian Schlittchen (corwin@amber.kn-bremen.de)
|
|
* Katja Zedel (katze@felidae.kn-bremen.de)
|
|
* Henning Peters (faroul@beyond.kn-bremen.de)
|
|
* Enno Rehling (enno@eressea-pbem.de)
|
|
* Ingo Wilken (Ingo.Wilken@informatik.uni-oldenburg.de)
|
|
*
|
|
* This program may not be used, modified or distributed without
|
|
* prior permission by the authors of Eressea.
|
|
*/
|
|
|
|
#ifndef ATTRIB_H
|
|
#define ATTRIB_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef void (*afun)(void);
|
|
|
|
typedef struct attrib {
|
|
const struct attrib_type * type;
|
|
union {
|
|
afun f;
|
|
void * v;
|
|
int i;
|
|
float flt;
|
|
char c;
|
|
short s;
|
|
short sa[2];
|
|
char ca[4];
|
|
} data;
|
|
/* internal data, do not modify: */
|
|
struct attrib * next; /* next attribute in the list */
|
|
struct attrib * nexttype; /* next attribute of same type */
|
|
} attrib;
|
|
|
|
#define ATF_UNIQUE (1<<0) /* only one per attribute-list */
|
|
#define ATF_PRESERVE (1<<1) /* preserve order in list. append to back */
|
|
#define ATF_USER_DEFINED (1<<2) /* use this to make udf */
|
|
|
|
typedef struct attrib_type {
|
|
const char* name;
|
|
void (*initialize)(struct attrib *);
|
|
void (*finalize)(struct attrib *);
|
|
int (*age)(struct attrib *);
|
|
/* age returns 0 if the attribute needs to be removed, !=0 otherwise */
|
|
void (*write)(const struct attrib *, FILE*);
|
|
int (*read)(struct attrib *, FILE*); /* return AT_READ_OK on success, AT_READ_FAIL if attrib needs removal */
|
|
unsigned int flags;
|
|
/* ---- internal data, do not modify: ---- */
|
|
struct attrib_type * nexthash;
|
|
unsigned int hashkey;
|
|
} attrib_type;
|
|
|
|
extern int a_readdefault(attrib * a, FILE * f);
|
|
extern void a_writedefault(const attrib * a, FILE * f);
|
|
|
|
extern int a_readstring(attrib * a, FILE * f);
|
|
extern void a_writestring(const attrib * a, FILE * f);
|
|
extern void a_finalizestring(attrib * a);
|
|
|
|
extern void at_register(attrib_type * at);
|
|
|
|
extern attrib * a_select(attrib * a, const void * data, boolean(*compare)(const attrib *, const void *));
|
|
extern attrib * a_find(attrib * a, const attrib_type * at);
|
|
extern const attrib * a_findc(const attrib * a, const attrib_type * at);
|
|
extern attrib * a_add(attrib ** pa, attrib * at);
|
|
extern int a_remove(attrib ** pa, attrib * at);
|
|
extern void a_removeall(attrib ** a, const attrib_type * at);
|
|
extern attrib * a_new(const attrib_type * at);
|
|
extern void a_free(attrib * a);
|
|
|
|
extern int a_age(attrib ** attribs);
|
|
extern void a_read(FILE * f, attrib ** attribs);
|
|
extern void a_write(FILE * f, const attrib * attribs);
|
|
|
|
#define DEFAULT_AGE NULL
|
|
#define DEFAULT_INIT NULL
|
|
#define DEFAULT_FINALIZE NULL
|
|
#define DEFAULT_WRITE a_writedefault
|
|
#define DEFAULT_READ a_readdefault
|
|
#define NO_WRITE NULL
|
|
#define NO_READ NULL
|
|
|
|
#define AT_READ_OK 4711
|
|
#define AT_READ_FAIL -4711
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|