-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathArrayStrMap.h
244 lines (192 loc) · 6.04 KB
/
ArrayStrMap.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
/*
* Copyright (c) scott.cgi All Rights Reserved.
*
* This source code belongs to project Mojoc, which is a pure C Game Engine hosted on GitHub.
* The Mojoc Game Engine is licensed under the MIT License, and will continue to be iterated with coding passion.
*
* License : https://github.com/scottcgi/Mojoc/blob/master/LICENSE
* GitHub : https://github.com/scottcgi/Mojoc
* CodeStyle: https://github.com/scottcgi/Mojoc/blob/master/Docs/CodeStyle.md
*
* Since : 2013-5-20
* Update : 2019-1-14
* Author : scott.cgi
*/
#ifndef ARRAY_STR_MAP_H
#define ARRAY_STR_MAP_H
#include <stdbool.h>
#include "Engine/Toolkit/Utils/ArrayList.h"
/**
* The actual element store in ArrayStrMap.
*/
typedef struct
{
/**
* ArrayStrMap value's key.
* the key data will copy into ArrayStrMapElement malloc space.
*/
const char* key;
/**
* The length of key, include '\0'.
*/
int keyLength;
/**
* ArrayStrMap value pointer.
* the value data copy into ArrayStrMapElement malloc space.
*/
void* valuePtr;
}
ArrayStrMapElement;
/**
* A list of elements each of which is a k-v pair.
*/
typedef struct
{
/**
* The sizeof ArrayStrMap value type.
*/
int valueTypeSize;
/**
* Store all ArrayStrMapElements.
*/
ArrayList(ArrayStrMapElement*) elementList[1];
}
ArrayStrMap;
/**
* Control ArrayStrMap.
*/
struct AArrayStrMap
{
ArrayStrMap* (*Create) (int valueTypeSize);
void (*Init) (int valueTypeSize, ArrayStrMap* outArrayStrMap);
ArrayStrMap* (*CreateWithCapacity) (int valueTypeSize, int capacity);
void (*InitWithCapacity) (int valueTypeSize, int capacity, ArrayStrMap* outArrayStrMap);
void (*Release) (ArrayStrMap* arrayStrMap);
/**
* Try put key and value of valuePtr into ArrayStrMap.
*
* valuePtr: point to value.
*
* if key not exist in ArrayStrMap
* return valuePtr in ArrayStrMap
* else
* return NULL
*/
void* (*TryPut) (ArrayStrMap* arrayStrMap, const char* key, void* valuePtr);
/**
* Get valuePtr by key, if no key found return defaultValuePtr.
*/
void* (*Get) (ArrayStrMap* arrayStrMap, const char* key, void* defaultValuePtr);
/**
* Try set new value of valuePtr to element by key.
*
* if key exist in ArrayStrMap
* return valuePtr in ArrayStrMap
* else
* return NULL
*/
void* (*TrySet) (ArrayStrMap* arrayStrMap, const char* key, void* valuePtr);
/**
* Remove element by key.
* return true success, false failed.
*/
bool (*TryRemove) (ArrayStrMap* arrayStrMap, const char* key);
/**
* Clear all elements, reset size to 0, and keep memory space.
*/
void (*Clear) (ArrayStrMap* arrayStrMap);
/**
* Insert value of valuePtr at index, the possible index is (-getIndex() - 1).
* return valuePtr in ArrayStrMap.
*/
void* (*InsertAt) (ArrayStrMap* arrayStrMap, const char* key, int index, void* valuePtr);
/**
* Get index of key.
* if negative means not found the element by key, and return (-insertIndex - 1),
* so the insert index is (-getIndex() - 1).
*/
int (*GetIndex) (ArrayStrMap* arrayStrMap, const char* key);
/**
* Get key at index.
*/
const char* (*GetKey) (ArrayStrMap* arrayStrMap, int index);
/**
* Get valuePtr at index.
*/
void* (*GetAt) (ArrayStrMap* arrayStrMap, int index);
/**
* Set value of valuePtr at index.
* return valuePtr in ArrayStrMap.
*/
void* (*SetAt) (ArrayStrMap* arrayStrMap, int index, void* valuePtr);
/**
* Remove element at index.
*/
void (*RemoveAt) (ArrayStrMap* arrayStrMap, int index);
};
extern struct AArrayStrMap AArrayStrMap[1];
/**
* Get key in ArrayStrMapElement by valuePtr and valueTypeSize.
*/
static inline const char* AArrayStrMap_GetKey(void* valuePtr, int valueTypeSize)
{
return (const char*) valuePtr + valueTypeSize;
}
/**
* Marked ArrayStrMap key and value.
*/
#define ArrayStrMap(keyName, ValueType) ArrayStrMap
/**
* Init constant ArrayStrMap.
* example: ArrayStrMap map[1] = AArrayStrMap_Init(ValueType, increase)
*/
#define AArrayStrMap_Init(ValueType, increase) \
{ \
sizeof(ValueType), \
AArrayList_Init(ArrayStrMapElement*, increase), \
}
/**
* Shortcut of ArrayStrMap->TryPut.
*/
#define AArrayStrMap_TryPut(arrayStrMap, key, value) \
AArrayStrMap->TryPut(arrayStrMap, key, &(value))
/**
* Shortcut of AArrayStrMap->Get.
* return value.
*/
#define AArrayStrMap_Get(arrayStrMap, key, ValueType) \
(*(ValueType*) AArrayStrMap->Get(arrayStrMap, key, NULL_PTR))
/**
* Shortcut of AArrayStrMap->Get.
* return valuePtr.
*/
#define AArrayStrMap_GetPtr(arrayStrMap, key, ValueType) \
((ValueType*) AArrayStrMap->Get(arrayStrMap, key, NULL))
/**
* Shortcut of AArrayStrMap->TrySet.
*/
#define AArrayStrMap_TrySet(arrayStrMap, key, value) \
AArrayStrMap->TrySet(arrayStrMap, key, &(value));
/**
* Shortcut of AArrayStrMap->InsertAt.
*/
#define AArrayStrMap_InsertAt(arrayStrMap, key, index, value) \
AArrayStrMap->InsertAt(arrayStrMap, key, index, &(value))
/**
* Shortcut of AArrayStrMap->GetAt.
* return value.
*/
#define AArrayStrMap_GetAt(arrayStrMap, index, ValueType) \
(*(ValueType*) AArrayStrMap->GetAt(arrayStrMap, index))
/**
* Shortcut of AArrayStrMap->GetAt.
* return valuePtr.
*/
#define AArrayStrMap_GetPtrAt(arrayStrMap, index, ValueType) \
((ValueType*) AArrayStrMap->GetAt(arrayStrMap, index))
/**
* Shortcut of AArrayStrMap->SetAt.
*/
#define AArrayStrMap_SetAt(arrayStrMap, index, value) \
AArrayStrMap->SetAt(arrayStrMap, index, &(value))
#endif