ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/shstr.C
Revision: 1.9
Committed: Mon Sep 4 17:16:19 2006 UTC (17 years, 8 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.8: +2 -36 lines
Log Message:
*** empty log message ***

File Contents

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