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 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
|
/**
* @file
* @brief API: cgraph.h, cghdr.h
* @ingroup cgraph_utils
*/
/*************************************************************************
* Copyright (c) 2011 AT&T Intellectual Property
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-v10.html
*
* Contributors: Details at https://graphviz.org
*************************************************************************/
#include <assert.h>
#include <cgraph/cghdr.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <util/alloc.h>
#include <util/unreachable.h>
/*
* reference counted strings.
*/
typedef struct {
uint64_t refcnt: sizeof(uint64_t) * 8 - 1;
uint64_t is_html: 1;
char s[];
} refstr_t;
_Static_assert(
offsetof(refstr_t, s) % 2 == 0,
"refstr_t.s is not at an even offset, breaking lib/cgraph/id.c code");
/// compare a string to a reference-counted string for equality
///
/// @param a Content of the first string
/// @param is_html Whether the first string was an HTML-like string
/// @param b The second reference-counted string
/// @return True if the two were equal
static bool refstr_eq(const char *a, bool is_html, const refstr_t *b) {
if (is_html != b->is_html) {
return false;
}
return strcmp(a, b->s) == 0;
}
/// a string dictionary
typedef struct {
refstr_t **buckets; ///< backing store of elements
size_t size; ///< number of elements in the dictionary
size_t capacity_exp; ///< log₂ size of `buckets`
} strdict_t;
static strdict_t *Refdict_default;
/// derive a hash value from the given data
///
/// @param key Start of data to read
/// @param len Number of bytes to read
/// @param extra An extra byte to include in the hash
/// @return A hash digest suitable for dictionary indexing
static uint64_t hash(const void *key, size_t len, uint8_t extra) {
assert(key != NULL || len == 0);
// The following implementation is based on the `MurmurHash64A` variant of the
// public domain MurmurHash by Austin Appleby. More information on this at
// https://github.com/aappleby/smhasher/. Relevant changes made to Austin’s
// original implementation:
// • Our implementation is alignment-agnostic. No assumption is made about
// the initial alignment of `key`.
// • Our implementation uses `unsigned char` pointers, avoiding Undefined
// Behavior when the input pointer originated from a non-`uint64_t`
// object. This is written in a style that allows contemporary compilers
// to optimize code back into wider 8-byte accesses where possible.
// • Our implementation supports an extra byte to be considered to have
// followed the main data. See calls to this function for why this `extra`
// parameter exists.
static const uint64_t seed = 0;
const uint64_t m = UINT64_C(0xc6a4a7935bd1e995);
const unsigned r = 47;
uint64_t h = seed ^ (len * m);
const unsigned char *data = key;
const unsigned char *end = data + len / sizeof(uint64_t) * sizeof(uint64_t);
while (data != end) {
uint64_t k;
memcpy(&k, data, sizeof(k));
data += sizeof(k);
k *= m;
k ^= k >> r;
k *= m;
h ^= k;
h *= m;
}
const unsigned char *data2 = data;
// accumulate extra byte
h ^= (uint64_t)extra << 56;
switch (len & 7) {
case 7:
h ^= (uint64_t)data2[6] << 48; // fall through
case 6:
h ^= (uint64_t)data2[5] << 40; // fall through
case 5:
h ^= (uint64_t)data2[4] << 32; // fall through
case 4:
h ^= (uint64_t)data2[3] << 24; // fall through
case 3:
h ^= (uint64_t)data2[2] << 16; // fall through
case 2:
h ^= (uint64_t)data2[1] << 8; // fall through
case 1:
h ^= (uint64_t)data2[0];
break;
default:
// nothing required
break;
}
h *= m;
h ^= h >> r;
h *= m;
h ^= h >> r;
return h;
}
/// create a new string dictionary
static strdict_t *strdict_new(void) { return gv_alloc(sizeof(strdict_t)); }
/// derive hash for a given reference-counted string
///
/// @param s The reference-counted string’s `s` member
/// @param is_html Is this an HTML-like string?
/// @return A hash digest suitable for dictionary indexing
static size_t strdict_hash(const char *s, bool is_html) {
assert(s != NULL);
return (size_t)hash(s, strlen(s), is_html);
}
/// a sentinel, marking a dictionary bucket from which an element has been
/// deleted
static refstr_t *const TOMBSTONE = (refstr_t *)-1;
/// add a reference-counted string to a dictionary
static void strdict_add(strdict_t *dict, refstr_t *r) {
assert(dict != NULL);
assert(r != NULL);
assert(r != TOMBSTONE);
// a watermark ratio at which the set capacity should be expanded
static const size_t OCCUPANCY_THRESHOLD_PERCENT = 70;
// do we need to expand the backing store?
size_t capacity = dict->buckets == NULL ? 0 : (size_t)1 << dict->capacity_exp;
const bool grow = 100 * dict->size >= OCCUPANCY_THRESHOLD_PERCENT * capacity;
if (grow) {
const size_t new_c = capacity == 0 ? 10 : dict->capacity_exp + 1;
refstr_t **new_b = gv_calloc((size_t)1 << new_c, sizeof(refstr_t *));
// Construct a new dictionary and copy everything into it. Note we need to
// rehash because capacity (and hence modulo wraparound behavior) has
// changed. This conveniently flushes out the tombstones too.
strdict_t new_d = {.buckets = new_b, .capacity_exp = new_c};
for (size_t i = 0; i < capacity; ++i) {
// skip empty buckets
if (dict->buckets[i] == NULL) {
continue;
}
// skip deleted buckets
if (dict->buckets[i] == TOMBSTONE) {
continue;
}
strdict_add(&new_d, dict->buckets[i]);
}
// replace ourselves with this new dictionary
free(dict->buckets);
*dict = new_d;
}
assert(dict->buckets != NULL);
capacity = (size_t)1 << dict->capacity_exp;
assert(capacity > dict->size);
const size_t h = strdict_hash(r->s, r->is_html != 0);
for (size_t i = 0; i < capacity; ++i) {
const size_t candidate = (h + i) % capacity;
// if we found an empty bucket or a previously deleted bucket, we can insert
if (dict->buckets[candidate] == NULL ||
dict->buckets[candidate] == TOMBSTONE) {
dict->buckets[candidate] = r;
++dict->size;
return;
}
}
UNREACHABLE();
}
/// lookup a reference-counted string in a dictionary
///
/// @param dict String dictionary to search
/// @param s String content to search for
/// @param is_html Is this an HTML-like string?
/// @return Found reference-counted string, or null if not found
static refstr_t *strdict_find(strdict_t *dict, const char *s, bool is_html) {
assert(dict != NULL);
assert(s != NULL);
const size_t h = strdict_hash(s, is_html);
const size_t capacity = dict->buckets == NULL
? 0 : (size_t)1 << dict->capacity_exp;
for (size_t i = 0; i < capacity; ++i) {
const size_t candidate = (h + i) % capacity;
// if we found an empty bucket, the sought item does not exist
if (dict->buckets[candidate] == NULL) {
return NULL;
}
// if we found a previously deleted slot, skip over it
if (dict->buckets[candidate] == TOMBSTONE) {
continue;
}
// is this the string we are searching for?
if (refstr_eq(s, is_html, dict->buckets[candidate])) {
return dict->buckets[candidate];
}
}
// not found
return NULL;
}
/// remove a reference-counted string from a dictionary
static void strdict_remove(strdict_t *dict, const refstr_t *key) {
assert(dict != NULL);
assert(key != NULL);
assert(key != TOMBSTONE);
const size_t h = strdict_hash(key->s, key->is_html != 0);
const size_t capacity = dict->buckets == NULL
? 0 : (size_t)1 << dict->capacity_exp;
for (size_t i = 0; i < capacity; ++i) {
const size_t candidate = (h + i) % capacity;
// if we found an empty bucket, the sought item does not exist
if (dict->buckets[candidate] == NULL) {
return;
}
// if we found a previously deleted bucket, skip over it
if (dict->buckets[candidate] == TOMBSTONE) {
continue;
}
// is this the string we are searching for?
if (refstr_eq(key->s, key->is_html != 0, dict->buckets[candidate])) {
assert(dict->size > 0);
free(dict->buckets[candidate]);
dict->buckets[candidate] = TOMBSTONE;
--dict->size;
return;
}
}
}
/// destroy a string dictionary
static void strdict_free(strdict_t **dict) {
assert(dict != NULL);
if (*dict != NULL && (*dict)->buckets != NULL) {
for (size_t i = 0; i < (size_t)1 << (*dict)->capacity_exp; ++i) {
if ((*dict)->buckets[i] != TOMBSTONE) {
free((*dict)->buckets[i]);
}
}
free((*dict)->buckets);
}
free(*dict);
*dict = NULL;
}
/* refdict:
* Return a pointer to the string dictionary associated with g.
* If necessary, create it.
*/
static strdict_t **refdict(Agraph_t *g) {
strdict_t **dictref;
if (g)
dictref = (strdict_t **)&g->clos->strdict;
else
dictref = &Refdict_default;
if (*dictref == NULL) {
*dictref = strdict_new();
}
return dictref;
}
int agstrclose(Agraph_t * g)
{
strdict_free(refdict(g));
return 0;
}
static char *refstrbind(strdict_t *strdict, const char *s, bool is_html) {
refstr_t *r;
r = strdict_find(strdict, s, is_html);
if (r)
return r->s;
else
return NULL;
}
char *agstrbind(Agraph_t *g, const char *s) {
// did this string originate from `agstrdup_html(g, …)`?
if (s != NULL) {
strdict_t *const strdict = *refdict(g);
refstr_t *const ref = strdict_find(strdict, s, true);
if (ref != NULL && ref->s == s) {
// create this copy as HTML-like
return agstrbind_html(g, s);
}
}
return agstrbind_text(g, s);
}
char *agstrbind_html(Agraph_t *g, const char *s) {
return refstrbind(*refdict(g), s, true);
}
char *agstrbind_text(Agraph_t * g, const char *s)
{
return refstrbind(*refdict(g), s, false);
}
static char *agstrdup_internal(Agraph_t *g, const char *s, bool is_html) {
refstr_t *r;
size_t sz;
if (s == NULL)
return NULL;
strdict_t *strdict = *refdict(g);
r = strdict_find(strdict, s, is_html);
if (r)
r->refcnt++;
else {
sz = sizeof(refstr_t) + strlen(s) + 1;
if (g)
r = gv_calloc(sz, sizeof(char));
else {
r = malloc(sz);
if (sz > 0 && r == NULL) {
return NULL;
}
}
r->refcnt = 1;
r->is_html = is_html;
strcpy(r->s, s);
strdict_add(strdict, r);
}
return r->s;
}
char *agstrdup_text(Agraph_t *g, const char *s) {
return agstrdup_internal(g, s, false);
}
char *agstrdup_html(Agraph_t *g, const char *s) {
return agstrdup_internal(g, s, true);
}
char *agstrdup(Agraph_t *g, const char *s) {
// did this string originate from `agstrdup_html(g, …)`?
if (s != NULL) {
strdict_t *const strdict = *refdict(g);
refstr_t *const ref = strdict_find(strdict, s, true);
if (ref != NULL && ref->s == s) {
// create this copy as HTML-like
return agstrdup_html(g, s);
}
}
// otherwise, create the copy as regular text
return agstrdup_text(g, s);
}
int agstrfree(Agraph_t *g, const char *s, bool is_html) {
refstr_t *r;
if (s == NULL)
return FAILURE;
strdict_t *strdict = *refdict(g);
r = strdict_find(strdict, s, is_html);
if (r && r->s == s) {
r->refcnt--;
if (r->refcnt == 0) {
strdict_remove(strdict, r);
}
}
if (r == NULL)
return FAILURE;
return SUCCESS;
}
/* aghtmlstr:
* Return true if s is an HTML string.
* We assume s is within a refstr.
*/
int aghtmlstr(const char *s)
{
const refstr_t *key;
if (s == NULL)
return 0;
key = (const refstr_t *)(s - offsetof(refstr_t, s));
return key->is_html != 0;
}
#ifdef DEBUG
static int refstrprint(const refstr_t *r) {
fprintf(stderr, "%s\n", r->s);
return 0;
}
void agrefstrdump(Agraph_t * g)
{
const strdict_t *d = *refdict(g);
for (size_t i = 0;
d != NULL && d->buckets != NULL && i < (size_t)1 << d->capacity_exp;
++i) {
refstrprint(d->buckets[i]);
}
}
#endif
|