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 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
|
/******
gbucket.c
GameSpy Stats/Tracking SDK
Copyright 1999-2007 GameSpy Industries, Inc
devsupport@gamespy.com
******/
/********
INCLUDES
********/
#include "../common/gsCommon.h"
#include "gbucket.h"
#include "../hashtable.h"
#include <ctype.h>
#ifdef __cplusplus
extern "C" {
#endif
/********
TYPEDEFS
********/
struct bucketset_s
{
HashTable buckets;
};
typedef struct bucket_s
{
char *name;
BucketType type;
int nvals; //for averaging
union
{
int ival;
double fval;
char *sval;
} vals;
} bucket_t;
typedef struct dumpdata_s
{
char *data;
unsigned int maxlen;
unsigned int len;
} dumpdata_t;
/********
PROTOTYPES
********/
static void DumpMap(void *elem, void *clientData);
static void BucketFree(void *elem);
static int BucketCompare(const void *entry1, const void *entry2);
static int BucketHash(const void *elem, int numbuckets);
static void *DoSet(bucket_t *pbucket, void *value);
static void *DoGet(bucket_t *pbucket);
static bucket_t *DoFind(bucketset_t set, char *name);
/********
VARS
********/
bucketset_t g_buckets;
/****************************************************************************/
/* PUBLIC FUNCTIONS */
/****************************************************************************/
bucketset_t NewBucketSet(void)
{
bucketset_t set;
set = (bucketset_t)gsimalloc(sizeof (struct bucketset_s));
assert(set);
set->buckets = TableNew(sizeof(bucket_t),32,BucketHash, BucketCompare, BucketFree);
g_buckets = set;
return set;
}
void FreeBucketSet(bucketset_t set)
{
assert(set);
assert(set->buckets);
TableFree(set->buckets);
gsifree(set);
}
char *DumpBucketSet(bucketset_t set)
{
dumpdata_t data;
if (set == NULL)
set = g_buckets;
assert(set);
data.data = (char *)gsimalloc(128); //alloc an initial buffer
data.data[0] = 0;
data.len = 0;
data.maxlen = 128;
TableMap(set->buckets,DumpMap, &data);
return data.data;
}
void *BucketNew(bucketset_t set, char *name, BucketType type, void *initialvalue)
{
bucket_t bucket;
if (set == NULL)
set = g_buckets;
assert(set);
bucket.name = goastrdup(name);
bucket.type = type;
bucket.vals.sval = NULL;
bucket.nvals = 1;
DoSet(&bucket, initialvalue);
TableEnter(set->buckets,&bucket);
return DoGet(DoFind(set, name));
}
void *BucketSet(bucketset_t set, char *name,void *value)
{
bucket_t *pbucket = DoFind(set, name);
if (!pbucket)
return NULL;
pbucket->nvals = 0;
return DoSet(pbucket,value);
}
void *BucketGet(bucketset_t set, char *name)
{
return DoGet(DoFind(set,name));
}
void *BucketAdd(bucketset_t set, char *name, void *value)
{
bucket_t *pbucket = DoFind(set, name);
if (!pbucket)
return NULL;
if (pbucket->type == bt_int)
return DoSet(pbucket, bint( (*(int *)DoGet(pbucket)) + (*(int *)value)));
if (pbucket->type == bt_float)
return DoSet(pbucket, bfloat( (*(double *)DoGet(pbucket)) + (*(double *)value)));
//else, string -- just concat
return BucketConcat(set, name, value);
}
void *BucketSub(bucketset_t set, char *name, void *value)
{
bucket_t *pbucket = DoFind(set, name);
if (!pbucket)
return NULL;
if (pbucket->type == bt_int)
return DoSet(pbucket, bint( (*(int *)DoGet(pbucket)) - (*(int *)value)));
if (pbucket->type == bt_float)
return DoSet(pbucket, bfloat( (*(double *)DoGet(pbucket)) - (*(double *)value)));
//else, string -- just ignore
return DoGet(pbucket);
}
void *BucketMult(bucketset_t set, char *name, void *value)
{
bucket_t *pbucket = DoFind(set, name);
if (!pbucket)
return NULL;
if (pbucket->type == bt_int)
return DoSet(pbucket, bint( (*(int *)DoGet(pbucket)) * (*(int *)value)));
if (pbucket->type == bt_float)
return DoSet(pbucket, bfloat( (*(double *)DoGet(pbucket)) * (*(double *)value)));
//else, string -- just ignore
return DoGet(pbucket);
}
void *BucketDiv(bucketset_t set, char *name, void *value)
{
bucket_t *pbucket = DoFind(set, name);
if (!pbucket)
return NULL;
if (pbucket->type == bt_int)
return DoSet(pbucket, bint( (*(int *)DoGet(pbucket)) / (*(int *)value)));
if (pbucket->type == bt_float)
return DoSet(pbucket, bfloat( (*(double *)DoGet(pbucket)) / (*(double *)value)));
//else, string -- just ignore
return DoGet(pbucket);
}
void *BucketConcat(bucketset_t set, char *name, void *value)
{
bucket_t *pbucket = DoFind(set, name);
char *temp, *s;
if (!pbucket)
return NULL;
assert(pbucket->type == bt_string);
s = DoGet(pbucket);
temp = (char *)gsimalloc(strlen(s) + strlen(value) + 1);
strcpy(temp,s);
strcat(temp, value);
DoSet(pbucket, temp);
gsifree(temp);
return DoGet(pbucket);
}
#define AVG(cur, new, num) (((cur * num) + new) / (++num))
void *BucketAvg(bucketset_t set, char *name, void *value)
{
bucket_t *pbucket = DoFind(set, name);
if (!pbucket)
return NULL;
if (pbucket->type == bt_int)
return DoSet(pbucket, bint( AVG((*(int *)DoGet(pbucket)), (*(int *)value), pbucket->nvals)));
if (pbucket->type == bt_float)
return DoSet(pbucket, bfloat( AVG((*(double *)DoGet(pbucket)), (*(double *)value), pbucket->nvals)));
//else, string -- just ignore
return DoGet(pbucket);
}
/* Note: these are NOT thread safe! */
void *bint(int i)
{
static int j;
j=i;
return &j;
}
void *bfloat(double f)
{
static double g;
g=f;
return &g;
}
/***********
* UTILITY FUNCTIONS
**********/
static void DumpMap(void *elem, void *clientData)
{
bucket_t *bucket = (bucket_t *)elem;
dumpdata_t *data = (dumpdata_t *)clientData;
unsigned int minlen;
//find out if we need to resize!
minlen = strlen(bucket->name) + 3;
if (bucket->type == bt_int || bucket->type == bt_float)
minlen += data->len + 16;
else if (bucket->type == bt_string)
minlen += data->len + strlen(bucket->vals.sval);
if (data->maxlen <= minlen)
{
if (data->maxlen == 0)
data->maxlen = minlen * 2;
else
data->maxlen *= 2;
data->data = gsirealloc(data->data, data->maxlen);
}
switch (bucket->type)
{
case bt_int:
data->len += (unsigned int)sprintf(data->data + data->len,"\\%s\\%d",bucket->name,bucket->vals.ival);
break;
case bt_float:
data->len += (unsigned int)sprintf(data->data + data->len,"\\%s\\%f",bucket->name,bucket->vals.fval);
break;
case bt_string:
data->len += (unsigned int)sprintf(data->data + data->len,"\\%s\\%s",bucket->name,bucket->vals.sval);
break;
}
}
static char *stripchars(char *s)
{
char *p = s;
while (*s)
{
if (*s == '\\')
*s = '/';
s++;
}
return p;
}
static void *DoSet(bucket_t *pbucket, void *value)
{
if (pbucket->type == bt_int)
pbucket->vals.ival = *(int*)value;
else if (pbucket->type == bt_float)
pbucket->vals.fval = *(double *)value;
else if (pbucket->type == bt_string)
{
if (pbucket->vals.sval != NULL)
gsifree(pbucket->vals.sval);
pbucket->vals.sval = (value == NULL ? NULL : stripchars(goastrdup((char *)value)));
}
return DoGet(pbucket);
}
static void *DoGet(bucket_t *pbucket)
{
if (!pbucket)
return NULL;
if (pbucket->type == bt_string)
return pbucket->vals.sval;
else //since it's a union, we can return any member
return &pbucket->vals.sval;
}
static bucket_t *DoFind(bucketset_t set, char *name)
{
bucket_t tbucket;
if (set == NULL)
set = g_buckets;
assert(set);
tbucket.name = name;
return (bucket_t *)TableLookup(set->buckets,&tbucket);
}
/* NonTermHash
* ----------
* The hash code is computed using a method called "linear congruence."
* This hash function has the additional feature of being case-insensitive,
*/
#define MULTIPLIER -1664117991
static int BucketHash(const void *elem, int numbuckets)
{
unsigned int i;
unsigned int len;
unsigned int hashcode = 0;
char *s = ((bucket_t *)elem)->name;
len = strlen(s);
for (i = 0; i < len ; i++) {
hashcode = (unsigned int)((int)hashcode * MULTIPLIER + tolower(s[i]));
}
return (int)(hashcode % numbuckets);
}
/* CaseInsensitiveCompare
* ----------------------
* Comparison function passed to qsort to sort an array of
* strings in alphabetical order. It uses strcasecmp which is
* identical to strcmp, except that it doesn't consider case of the
* characters when comparing them, thus it sorts case-insensitively.
*/
static int CaseInsensitiveCompare(const void *entry1, const void *entry2)
{
return strcasecmp(*(char **)entry1,*(char **)entry2);
}
/* keyval
* Compares two buckets (case insensative)
*/
static int BucketCompare(const void *entry1, const void *entry2)
{
return CaseInsensitiveCompare(&((bucket_t *)entry1)->name,
&((bucket_t *)entry2)->name);
}
/* KeyValFree
* Frees the memory INSIDE a Bucket structure
*/
static void BucketFree(void *elem)
{
gsifree(((bucket_t *)elem)->name);
if (((bucket_t *)elem)->type == bt_string && ((bucket_t *)elem)->vals.sval != NULL)
gsifree(((bucket_t *)elem)->vals.sval);
}
#ifdef __cplusplus
}
#endif
|