ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/shstr.C
Revision: 1.14
Committed: Mon Sep 11 23:33:28 2006 UTC (17 years, 8 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.13: +3 -0 lines
Log Message:
- temporarily disabled shstr garbage collection
- use sint64 instead of uint64 in shop code
- implement fully recursive item iterator for object
- add some utility functions

File Contents

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