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
|
/* $Id: refstr.c,v 1.3 2009/06/03 01:10:53 ellson Exp $ $Revision: 1.3 $ */
/* vim:set shiftwidth=4 ts=8: */
/**********************************************************
* This software is part of the graphviz package *
* http://www.graphviz.org/ *
* *
* Copyright (c) 1994-2004 AT&T Corp. *
* and is licensed under the *
* Common Public License, Version 1.0 *
* by AT&T Corp. *
* *
* Information and Software Systems Research *
* AT&T Research, Florham Park NJ *
**********************************************************/
#include "libgraph.h"
#include <assert.h>
static unsigned int HTML_BIT;
static unsigned int CNT_BITS;
#ifdef DMALLOC
#include "dmalloc.h"
#endif
typedef struct refstr_t {
Dtlink_t link;
unsigned int refcnt;
char s[1];
} refstr_t;
static Dtdisc_t Refstrdisc = {
offsetof(refstr_t, s[0]),
0,
0,
((Dtmake_f) 0),
((Dtfree_f) 0),
((Dtcompar_f) 0), /* use strcmp */
((Dthash_f) 0),
((Dtmemory_f) 0),
((Dtevent_f) 0)
};
static Dict_t *StringDict;
#ifdef DEBUG
static int refstrprint(Dt_t * d, Void_t * obj, Void_t * env)
{
refstr_t *r = (refstr_t *) obj;
fprintf(stderr, "%s\n", r->s);
return 0;
}
void agrefstrdump(void)
{
dtwalk(StringDict, refstrprint, 0);
}
#endif
/* initialize_strings:
* Create dictionary and masks for HTML strings.
* HTML_BIT must be the most significant bit. We assume 8-bit bytes.
*/
static void initialize_strings(void)
{
StringDict = dtopen(&Refstrdisc, Dttree);
HTML_BIT = ((unsigned int) 1) << (sizeof(unsigned int) * 8 - 1);
CNT_BITS = ~HTML_BIT;
}
char *agstrdup(char *s)
{
refstr_t *key, *r;
if (StringDict == NULL)
initialize_strings();
if (s == NULL)
return s;
key = (refstr_t *) (s - offsetof(refstr_t, s[0]));
r = (refstr_t *) dtsearch(StringDict, key);
if (r)
r->refcnt++;
else {
r = (refstr_t *) malloc(sizeof(refstr_t) + strlen(s));
r->refcnt = 1;
strcpy(r->s, s);
dtinsert(StringDict, r);
}
return r->s;
}
/* agstrdup_html:
* For various purposes, including deparsing, we have to recognize
* strings coming from <...> rather than "...". To do this, we set
* the top bit of the refcnt field. Since the use of html strings
* is localized, we allow the application to make the distinction.
*/
char *agstrdup_html(char *s)
{
refstr_t *key, *r;
if (StringDict == NULL)
initialize_strings();
if (s == NULL)
return s;
key = (refstr_t *) (s - offsetof(refstr_t, s[0]));
r = (refstr_t *) dtsearch(StringDict, key);
if (r)
r->refcnt++;
else {
r = (refstr_t *) malloc(sizeof(refstr_t) + strlen(s));
r->refcnt = 1 | HTML_BIT;
strcpy(r->s, s);
dtinsert(StringDict, r);
}
return r->s;
}
void agstrfree(char *s)
{
refstr_t *key, *r;
if ((StringDict == NULL) || (s == NULL))
return;
key = (refstr_t *) (s - offsetof(refstr_t, s[0]));
r = (refstr_t *) dtsearch(StringDict, key);
if (r) {
r->refcnt--;
if ((r->refcnt && CNT_BITS) == 0) {
dtdelete(StringDict, r);
free(r);
}
} else
agerr(AGERR, "agstrfree lost %s\n", s);
}
/* aghtmlstr:
* Return true if s is an HTML string.
* We assume s points to the datafield s[0] of a refstr.
*/
int aghtmlstr(char *s)
{
refstr_t *key;
if ((StringDict == NULL) || (s == NULL))
return 0;
key = (refstr_t *) (s - offsetof(refstr_t, s[0]));
return (key->refcnt & HTML_BIT);
}
|