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.12 by root, Thu Sep 7 07:52:58 2006 UTC vs.
Revision 1.13 by root, Sun Sep 10 16:00:23 2006 UTC

1
1/* 2/*
2 * shstr.C 3 * shstr.C
3 */ 4 */
4 5
5#include <cstring> 6#include <cstring>
10#include <tr1/unordered_set> 11#include <tr1/unordered_set>
11 12
12#include "shstr.h" 13#include "shstr.h"
13#include "util.h" 14#include "util.h"
14 15
15typedef std::tr1::unordered_set<const char *, str_hash, str_equal> HT; 16typedef
17std::tr1::unordered_set < const char *,
18 str_hash,
19 str_equal >
20 HT;
16 21
17static HT ht; 22static HT
23 ht;
18 24
19static const char *makevec (const char *s) 25static const char *
26makevec (const char *s)
20{ 27{
28 int
21 int len = strlen (s); 29 len = strlen (s);
22 30
31 const char *
23 const char *v = (const char *)(2 + (int *)g_slice_alloc (sizeof (int) * 2 + len + 1)); 32 v = (const char *) (2 + (int *) g_slice_alloc (sizeof (int) * 2 + len + 1));
24 33
25 shstr::length (v) = len; 34 shstr::length (v) = len;
26 shstr::refcnt (v) = 1; 35 shstr::refcnt (v) = 1;
27 36
28 memcpy ((char *)v, s, len + 1); 37 memcpy ((char *) v, s, len + 1);
29 38
30 return v; 39 return v;
31} 40}
32 41
42const char *
33const char *shstr::null = makevec ("<nil>"); 43 shstr::null = makevec ("<nil>");
34 44
35// what weird misoptimisation is this again? 45// what weird misoptimisation is this again?
36const shstr undead_name ("undead"); 46const shstr undead_name ("undead");
37 47
38const char * 48const char *
41 if (!s) 51 if (!s)
42 return s; 52 return s;
43 53
44 HT::iterator i = ht.find (s); 54 HT::iterator i = ht.find (s);
45 55
46 return i != ht.end () 56 return i != ht.end ()? *i : 0;
47 ? *i
48 : 0;
49} 57}
50 58
51const char * 59const char *
52shstr::intern (const char *s) 60shstr::intern (const char *s)
53{ 61{
91 break; 99 break;
92 else if (!refcnt (*i)) 100 else if (!refcnt (*i))
93 { 101 {
94 HT::iterator o = i++; 102 HT::iterator o = i++;
95 const char *s = *o; 103 const char *s = *o;
104
96 ht.erase (o); 105 ht.erase (o);
97 106
98 //printf ("GC %4d %3d %d >%s<%d\n", (int)ht.size (), n, shstr::refcnt (s), s, shstr::length (s)); 107 //printf ("GC %4d %3d %d >%s<%d\n", (int)ht.size (), n, shstr::refcnt (s), s, shstr::length (s));
99 g_slice_free1 (sizeof (int) * 2 + length (s) + 1, -2 + (int *)s); 108 g_slice_free1 (sizeof (int) * 2 + length (s) + 1, -2 + (int *) s);
100 } 109 }
101 else 110 else
102 ++i; 111 ++i;
103 } 112 }
104 113
105 curpos = *i; 114 curpos = *i;
106} 115}
107 116
108//TODO: this should of course not be here 117//TODO: this should of course not be here
118
109/* buf_overflow() - we don't want to exceed the buffer size of 119/* buf_overflow() - we don't want to exceed the buffer size of
110 * buf1 by adding on buf2! Returns true if overflow will occur. 120 * buf1 by adding on buf2! Returns true if overflow will occur.
111 */ 121 */
112 122
113int 123int
114buf_overflow (const char *buf1, const char *buf2, int bufsize) 124buf_overflow (const char *buf1, const char *buf2, int bufsize)
115{ 125{
116 int len1 = 0, len2 = 0; 126 int len1 = 0, len2 = 0;
117 127
118 if (buf1) 128 if (buf1)
119 len1 = strlen (buf1); 129 len1 = strlen (buf1);
120 if (buf2) 130 if (buf2)
121 len2 = strlen (buf2); 131 len2 = strlen (buf2);
122 if ((len1 + len2) >= bufsize) 132 if ((len1 + len2) >= bufsize)
123 return 1;
124 return 0; 133 return 1;
134 return 0;
125} 135}
126

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines