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.25 by root, Tue Jul 10 05:51:37 2007 UTC vs.
Revision 1.27 by root, Mon Oct 22 05:46:44 2007 UTC

28#include <glib.h> 28#include <glib.h>
29#include <tr1/unordered_set> 29#include <tr1/unordered_set>
30 30
31#include "global.h" 31#include "global.h"
32 32
33size_t shstr_alloc;
34
33typedef std::tr1::unordered_set <const char *, str_hash, str_equal, slice_allocator<const char *>, true> HT; 35typedef std::tr1::unordered_set <const char *, str_hash, str_equal, slice_allocator<const char *>, true> HT;
34 36
35static HT ht; 37static HT ht;
36 38
37static const char * 39static const char *
38makevec (const char *s) 40makevec (const char *s)
39{ 41{
40 int len = strlen (s); 42 int len = strlen (s);
41 43
44 shstr_alloc += sizeof (int) * 2 + len + 1;
42 const char *v = (const char *) (2 + (int *)g_slice_alloc (sizeof (int) * 2 + len + 1)); 45 const char *v = (const char *) (2 + (int *)g_slice_alloc (sizeof (int) * 2 + len + 1));
43 46
44 shstr::length (v) = len; 47 shstr::length (v) = len;
45 shstr::refcnt (v) = 1; 48 shstr::refcnt (v) = 1;
46 49
97 auto (i, curpos ? ht.find (curpos) : ht.begin ()); 100 auto (i, curpos ? ht.find (curpos) : ht.begin ());
98 101
99 if (i == ht.end ()) 102 if (i == ht.end ())
100 i = ht.begin (); 103 i = ht.begin ();
101 104
102 // go through all strings roughly once every 4 minutes
103 int n = ht.size () / 256 + 16; 105 int n = ht.size () / 256 + 16;
104 106
105 for (;;) 107 for (;;)
106 { 108 {
107 if (i == ht.end ()) 109 if (i == ht.end ())
117 const char *s = *o; 119 const char *s = *o;
118 120
119 ht.erase (o); 121 ht.erase (o);
120 122
121 //printf ("GC %4d %3d %d >%s<%d\n", (int)ht.size (), n, shstr::refcnt (s), s, shstr::length (s)); 123 //printf ("GC %4d %3d %d >%s<%d\n", (int)ht.size (), n, shstr::refcnt (s), s, shstr::length (s));
124 shstr_alloc -= sizeof (int) * 2 + length (s) + 1;
122 g_slice_free1 (sizeof (int) * 2 + length (s) + 1, -2 + (int *) s); 125 g_slice_free1 (sizeof (int) * 2 + length (s) + 1, -2 + (int *) s);
123 } 126 }
124 else 127 else
125 ++i; 128 ++i;
126 } 129 }
145{ 148{
146 int len1 = 0, len2 = 0; 149 int len1 = 0, len2 = 0;
147 150
148 if (buf1) 151 if (buf1)
149 len1 = strlen (buf1); 152 len1 = strlen (buf1);
153
150 if (buf2) 154 if (buf2)
151 len2 = strlen (buf2); 155 len2 = strlen (buf2);
156
152 if ((len1 + len2) >= bufsize) 157 if ((len1 + len2) >= bufsize)
153 return 1; 158 return 1;
154 159
155 return 0; 160 return 0;
156} 161}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines