ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/shstr.C
Revision: 1.11
Committed: Tue Sep 5 19:20:16 2006 UTC (17 years, 8 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.10: +1 -1 lines
Log Message:
use slice allocator for shstr

File Contents

# Content
1 /*
2 * shstr.C
3 */
4
5 #include <cstring>
6 #include <cstdlib>
7
8 #include <glib.h>
9
10 #include <tr1/unordered_set>
11
12 #include "shstr.h"
13 #include "util.h"
14
15 typedef std::tr1::unordered_set<const char *, str_hash, str_equal> HT;
16
17 static HT ht;
18
19 static const char *makevec (const char *s)
20 {
21 int len = strlen (s);
22
23 const char *v = (const char *)(2 + (int *)g_slice_alloc (sizeof (int) * 2 + len + 1));
24
25 shstr::length (v) = len;
26 shstr::refcnt (v) = 1;
27
28 memcpy ((char *)v, s, len + 1);
29
30 return v;
31 }
32
33 const char *shstr::null = makevec ("<nil>");
34
35 // what weird misoptimisation is this again?
36 const shstr undead_name ("undead");
37
38 const char *
39 shstr::find (const char *s)
40 {
41 if (!s)
42 return s;
43
44 HT::iterator i = ht.find (s);
45
46 return i != ht.end ()
47 ? *i
48 : 0;
49 }
50
51 const char *
52 shstr::intern (const char *s)
53 {
54 if (!s)
55 return null;
56
57 if (const char *found = find (s))
58 {
59 ++refcnt (found);
60 return found;
61 }
62
63 s = makevec (s);
64 ht.insert (s);
65 return s;
66 }
67
68 // periodically test refcounts == 0 for a few strings
69 // this is the ONLY thing that erases stuff from ht. keep it that way.
70 void
71 shstr::gc ()
72 {
73 static const char *curpos;
74
75 HT::iterator i = curpos ? ht.find (curpos) : ht.begin ();
76
77 if (i == ht.end ())
78 i = ht.begin ();
79
80 // go through all strings roughly once every 4 minutes
81 int n = ht.size () / 256 + 16;
82
83 for (;;)
84 {
85 if (i == ht.end ())
86 {
87 curpos = 0;
88 return;
89 }
90 else if (!--n)
91 break;
92 else if (!refcnt (*i))
93 {
94 HT::iterator o = i++;
95 const char *s = *o;
96 ht.erase (o);
97
98 int len = length (s);
99
100 //printf ("GC %4d %3d %d >%s<%d\n", (int)ht.size (), n, shstr::refcnt (s), s, shstr::length (s));
101 g_slice_free1 (sizeof (int) * 2 + length (s) + 1, -2 + (int *)s);
102 }
103 else
104 ++i;
105 }
106
107 curpos = *i;
108 }
109
110 //TODO: this should of course not be here
111 /* buf_overflow() - we don't want to exceed the buffer size of
112 * buf1 by adding on buf2! Returns true if overflow will occur.
113 */
114
115 int
116 buf_overflow (const char *buf1, const char *buf2, int bufsize)
117 {
118 int len1 = 0, len2 = 0;
119
120 if (buf1)
121 len1 = strlen (buf1);
122 if (buf2)
123 len2 = strlen (buf2);
124 if ((len1 + len2) >= bufsize)
125 return 1;
126 return 0;
127 }
128