-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathmapping.h
114 lines (95 loc) · 3.73 KB
/
mapping.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/* mapping.h - 1992/07/19 */
/* It is usually better to include "lpc_incl.h" instead of including this
directly */
#ifndef _MAPPING_H
#define _MAPPING_H
#define MAP_POINTER_HASH(x) (((POINTER_INT)x) >> 4)
typedef struct mapping_node_s {
struct mapping_node_s *next;
svalue_t values[2];
} mapping_node_t;
#define MNB_SIZE 256
typedef struct mapping_node_block_s {
struct mapping_node_block_s *next;
mapping_node_t nodes[MNB_SIZE];
} mapping_node_block_t;
#define MAX_TABLE_SIZE 32768
#define MAP_HASH_TABLE_SIZE 8 /* must be a power of 2 */
#define FILL_PERCENT 80 /* must not be larger than 99 */
#define MAPSIZE(size) sizeof(mapping_t)
#define MAP_LOCKED 0x80000000
#define MAP_COUNT(m) ((m)->count & ~MAP_LOCKED)
typedef struct mapping_s {
unsigned short ref; /* how many times this map has been
* referenced */
#ifdef DEBUG
int extra_ref;
#endif
mapping_node_t **table; /* the hash table */
unsigned short table_size; /* # of buckets in hash table == power of 2 */
unsigned short unfilled; /* # of buckets among 80% of total buckets that do not have entries */
unsigned int count; /* total # of nodes actually in mapping */
#ifdef PACKAGE_MUDLIB_STATS
statgroup_t stats; /* creators of the mapping */
#endif
} mapping_t;
typedef struct finfo_s {
char *func;
object_t *obj;
svalue_t *extra;
funptr_t *fp;
} finfo_t;
typedef struct vinfo_s {
array_t *v;
int pos, size, w;
} vinfo_t;
typedef struct minfo_s {
mapping_t *map, *newmap;
} minfo_t;
#define mapping_too_large() \
error("Mapping exceeded maximum allowed size of %d.\n",MAX_MAPPING_SIZE);
#ifndef max
#define max(x,y) ((x) > (y)) ? (x) : (y)
#endif
/*
* mapping.c
*/
extern int num_mappings;
extern int total_mapping_size;
extern int total_mapping_nodes;
extern mapping_node_t *locked_map_nodes;
int msameval PROT((svalue_t *, svalue_t *));
int mapping_save_size PROT((mapping_t *));
INLINE mapping_t *mapTraverse PROT((mapping_t *, int (*) (mapping_t *, mapping_node_t *, void *), void *));
INLINE mapping_t *load_mapping_from_aggregate PROT((svalue_t *, int));
INLINE mapping_t *allocate_mapping PROT((int));
INLINE mapping_t *allocate_mapping2 PROT((array_t *, svalue_t *));
INLINE void free_mapping PROT((mapping_t *));
INLINE svalue_t *find_in_mapping PROT((mapping_t *, svalue_t *));
svalue_t *find_string_in_mapping PROT((mapping_t *, char *));
INLINE svalue_t *find_for_insert PROT((mapping_t *, svalue_t *, int));
INLINE void absorb_mapping PROT((mapping_t *, mapping_t *));
INLINE void mapping_delete PROT((mapping_t *, svalue_t *));
INLINE mapping_t *add_mapping PROT((mapping_t *, mapping_t *));
mapping_node_t *new_map_node PROT((void));
int restore_hash_string PROT((char **str, svalue_t *));
int growMap PROT((mapping_t *));
void free_node PROT((mapping_t *, mapping_node_t *));
void unlock_mapping PROT((mapping_t *));
void map_mapping PROT((svalue_t *, int));
void filter_mapping PROT((svalue_t *, int));
INLINE mapping_t *compose_mapping PROT((mapping_t *, mapping_t *, unsigned short));
array_t *mapping_indices PROT((mapping_t *));
array_t *mapping_values PROT((mapping_t *));
array_t *mapping_each PROT((mapping_t *));
char *save_mapping PROT((mapping_t *));
void dealloc_mapping PROT((mapping_t *));
void mark_mapping_node_blocks PROT((void));
mapping_t *mkmapping PROT((array_t *, array_t *));
void add_mapping_pair PROT((mapping_t *, char *, int));
void add_mapping_string PROT((mapping_t *, char *, char *));
void add_mapping_malloced_string PROT((mapping_t *, char *, char *));
void add_mapping_object PROT((mapping_t *, char *, object_t *));
void add_mapping_array PROT((mapping_t *, char *, array_t *));
void add_mapping_shared_string PROT((mapping_t *, char *, char *));
#endif /* _MAPPING_H */