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.17 by root, Tue Sep 12 19:20:06 2006 UTC vs.
Revision 1.22 by root, Thu May 17 21:32:08 2007 UTC

1/*
2 * CrossFire, A Multiplayer game
3 *
4 * Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 *
20 * The authors can be reached via e-mail at <crossfire@schmorp.de>
21 */
1 22
2/* 23/*
3 * shstr.C 24 * shstr.C
4 */ 25 */
5 26
6#include <cstring> 27#include <cstring>
7#include <cstdlib> 28#include <cstdlib>
8
9#include <glib.h> 29#include <glib.h>
10
11#include <tr1/unordered_set> 30#include <tr1/unordered_set>
12 31
13#include "global.h" 32#include "global.h"
14 33
15typedef std::tr1::unordered_set<const char *, str_hash, str_equal> HT; 34typedef std::tr1::unordered_set <const char *, str_hash, str_equal, slice_allocator<const char *>, true> HT;
16 35
17static HT ht; 36static HT ht;
18 37
19static const char * 38static const char *
20makevec (const char *s) 39makevec (const char *s)
21{ 40{
22 int len = strlen (s); 41 int len = strlen (s);
23 42
24 const char *v = (const char *) (2 + (int *) g_slice_alloc (sizeof (int) * 2 + len + 1)); 43 const char *v = (const char *) (2 + (int *)g_slice_alloc (sizeof (int) * 2 + len + 1));
25 44
26 shstr::length (v) = len; 45 shstr::length (v) = len;
27 shstr::refcnt (v) = 1; 46 shstr::refcnt (v) = 1;
28 47
29 memcpy ((char *) v, s, len + 1); 48 memcpy ((char *) v, s, len + 1);
45shstr::find (const char *s) 64shstr::find (const char *s)
46{ 65{
47 if (!s) 66 if (!s)
48 return s; 67 return s;
49 68
50 HT::iterator i = ht.find (s); 69 auto (i, ht.find (s));
51 70
52 return i != ht.end ()? *i : 0; 71 return i != ht.end ()? *i : 0;
53} 72}
54 73
55const char * 74const char *
72// periodically test refcounts == 0 for a few strings 91// periodically test refcounts == 0 for a few strings
73// this is the ONLY thing that erases stuff from ht. keep it that way. 92// this is the ONLY thing that erases stuff from ht. keep it that way.
74void 93void
75shstr::gc () 94shstr::gc ()
76{ 95{
77return; //D
78//D currently disabled: some datastructures might still store them
79//D but their pointers will become invalidated
80 static const char *curpos; 96 static const char *curpos;
81 97
82 HT::iterator i = curpos ? ht.find (curpos) : ht.begin (); 98 auto (i, curpos ? ht.find (curpos) : ht.begin ());
83 99
84 if (i == ht.end ()) 100 if (i == ht.end ())
85 i = ht.begin (); 101 i = ht.begin ();
86 102
87 // go through all strings roughly once every 4 minutes 103 // go through all strings roughly once every 4 minutes
96 } 112 }
97 else if (!--n) 113 else if (!--n)
98 break; 114 break;
99 else if (!refcnt (*i)) 115 else if (!refcnt (*i))
100 { 116 {
101 HT::iterator o = i++; 117 auto (o, i++);
102 const char *s = *o; 118 const char *s = *o;
103 119
104 ht.erase (o); 120 ht.erase (o);
105 121
106 //printf ("GC %4d %3d %d >%s<%d\n", (int)ht.size (), n, shstr::refcnt (s), s, shstr::length (s)); 122 //printf ("GC %4d %3d %d >%s<%d\n", (int)ht.size (), n, shstr::refcnt (s), s, shstr::length (s));
121//TODO: this should of course not be here 137//TODO: this should of course not be here
122 138
123/* buf_overflow() - we don't want to exceed the buffer size of 139/* buf_overflow() - we don't want to exceed the buffer size of
124 * buf1 by adding on buf2! Returns true if overflow will occur. 140 * buf1 by adding on buf2! Returns true if overflow will occur.
125 */ 141 */
126
127int 142int
128buf_overflow (const char *buf1, const char *buf2, int bufsize) 143buf_overflow (const char *buf1, const char *buf2, int bufsize)
129{ 144{
130 int len1 = 0, len2 = 0; 145 int len1 = 0, len2 = 0;
131 146
133 len1 = strlen (buf1); 148 len1 = strlen (buf1);
134 if (buf2) 149 if (buf2)
135 len2 = strlen (buf2); 150 len2 = strlen (buf2);
136 if ((len1 + len2) >= bufsize) 151 if ((len1 + len2) >= bufsize)
137 return 1; 152 return 1;
153
138 return 0; 154 return 0;
139} 155}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines