ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/shstr.C
(Generate patch)

Comparing deliantra/server/common/shstr.C (file contents):
Revision 1.8 by root, Mon Sep 4 11:07:59 2006 UTC vs.
Revision 1.15 by root, Tue Sep 12 00:26:16 2006 UTC

1
1/* 2/*
2 * shstr.C 3 * shstr.C
3 */ 4 */
4 5
5#include <cstring> 6#include <cstring>
6#include <cstdlib> 7#include <cstdlib>
7 8
9#include <glib.h>
10
8#include <tr1/unordered_set> 11#include <tr1/unordered_set>
9 12
10#include "shstr.h" 13#include "shstr.h"
14#include "util.h"
11 15
12struct hash 16typedef
17std::tr1::unordered_set < const char *,
18 str_hash,
19 str_equal >
20 HT;
21
22static HT
23 ht;
24
25static const char *
26makevec (const char *s)
13{ 27{
14 std::size_t operator ()(const char *s) const 28 int
15 { 29 len = strlen (s);
16 unsigned long hash = 0;
17 unsigned int i = 0;
18 30
19 /* use the one-at-a-time hash function, which supposedly is 31 const char *
20 * better than the djb2-like one used by perl5.005, but
21 * certainly is better then the bug used here before.
22 * see http://burtleburtle.net/bob/hash/doobs.html
23 */
24 while (*s)
25 {
26 hash += *s++;
27 hash += hash << 10;
28 hash ^= hash >> 6;
29 }
30
31 hash += hash << 3;
32 hash ^= hash >> 11;
33 hash += hash << 15;
34
35 return hash;
36 }
37};
38
39struct equal
40{
41 bool operator ()(const char *a, const char *b) const
42 {
43 return !strcmp (a, b);
44 }
45};
46
47typedef std::tr1::unordered_set<const char *, hash, equal> HT;
48
49static HT ht;
50
51static const char *makevec (const char *s)
52{
53 int len = strlen (s);
54
55 const char *v = (const char *)(2 + (int *)malloc (sizeof (int) * 2 + len + 1)); 32 v = (const char *) (2 + (int *) g_slice_alloc (sizeof (int) * 2 + len + 1));
56 33
57 shstr::length (v) = len; 34 shstr::length (v) = len;
58 shstr::refcnt (v) = 1; 35 shstr::refcnt (v) = 1;
59 36
60 memcpy ((char *)v, s, len + 1); 37 memcpy ((char *) v, s, len + 1);
61 38
62 return v; 39 return v;
63} 40}
64 41
42const char *
65const char *shstr::null = makevec ("<nil>"); 43 shstr::null = makevec ("<nil>");
66 44
67// what weird misoptimisation is this again? 45// what weird misoptimisation is this again?
68const shstr undead_name ("undead"); 46const shstr undead_name ("undead");
47
48shstr skill_names[NUM_SKILLS];
69 49
70const char * 50const char *
71shstr::find (const char *s) 51shstr::find (const char *s)
72{ 52{
73 if (!s) 53 if (!s)
74 return s; 54 return s;
75 55
76 HT::iterator i = ht.find (s); 56 HT::iterator i = ht.find (s);
77 57
78 return i != ht.end () 58 return i != ht.end ()? *i : 0;
79 ? *i
80 : 0;
81} 59}
82 60
83const char * 61const char *
84shstr::intern (const char *s) 62shstr::intern (const char *s)
85{ 63{
100// periodically test refcounts == 0 for a few strings 78// periodically test refcounts == 0 for a few strings
101// this is the ONLY thing that erases stuff from ht. keep it that way. 79// this is the ONLY thing that erases stuff from ht. keep it that way.
102void 80void
103shstr::gc () 81shstr::gc ()
104{ 82{
83return; //D
84//D currently disabled: some datastructures might still store them
85//D but their pointers will become invalidated
105 static const char *curpos; 86 static const char *curpos;
106 87
107 HT::iterator i = curpos ? ht.find (curpos) : ht.begin (); 88 HT::iterator i = curpos ? ht.find (curpos) : ht.begin ();
108 89
109 if (i == ht.end ()) 90 if (i == ht.end ())
123 break; 104 break;
124 else if (!refcnt (*i)) 105 else if (!refcnt (*i))
125 { 106 {
126 HT::iterator o = i++; 107 HT::iterator o = i++;
127 const char *s = *o; 108 const char *s = *o;
109
128 ht.erase (o); 110 ht.erase (o);
129 111
130 //printf ("GC %4d %3d %d >%s<%d\n", (int)ht.size (), n, shstr::refcnt (s), s, shstr::length (s)); 112 //printf ("GC %4d %3d %d >%s<%d\n", (int)ht.size (), n, shstr::refcnt (s), s, shstr::length (s));
131 free (-2 + (int *)s); 113 g_slice_free1 (sizeof (int) * 2 + length (s) + 1, -2 + (int *) s);
132 } 114 }
133 else 115 else
134 ++i; 116 ++i;
135 } 117 }
136 118
137 curpos = *i; 119 curpos = *i;
138} 120}
139 121
140//TODO: this should of course not be here 122//TODO: this should of course not be here
123
141/* buf_overflow() - we don't want to exceed the buffer size of 124/* buf_overflow() - we don't want to exceed the buffer size of
142 * buf1 by adding on buf2! Returns true if overflow will occur. 125 * buf1 by adding on buf2! Returns true if overflow will occur.
143 */ 126 */
144 127
145int 128int
146buf_overflow (const char *buf1, const char *buf2, int bufsize) 129buf_overflow (const char *buf1, const char *buf2, int bufsize)
147{ 130{
148 int len1 = 0, len2 = 0; 131 int len1 = 0, len2 = 0;
149 132
150 if (buf1) 133 if (buf1)
151 len1 = strlen (buf1); 134 len1 = strlen (buf1);
152 if (buf2) 135 if (buf2)
153 len2 = strlen (buf2); 136 len2 = strlen (buf2);
154 if ((len1 + len2) >= bufsize) 137 if ((len1 + len2) >= bufsize)
155 return 1;
156 return 0; 138 return 1;
139 return 0;
157} 140}
158

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines