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.13 by root, Sun Sep 10 16:00:23 2006 UTC vs.
Revision 1.16 by root, Tue Sep 12 00:53:56 2006 UTC

8 8
9#include <glib.h> 9#include <glib.h>
10 10
11#include <tr1/unordered_set> 11#include <tr1/unordered_set>
12 12
13#include "shstr.h"
14#include "util.h" 13#include "global.h"
15 14
16typedef 15typedef std::tr1::unordered_set<const char *, str_hash, str_equal> HT;
17std::tr1::unordered_set < const char *,
18 str_hash,
19 str_equal >
20 HT;
21 16
22static HT 17static HT ht;
23 ht;
24 18
25static const char * 19static const char *
26makevec (const char *s) 20makevec (const char *s)
27{ 21{
28 int 22 int
37 memcpy ((char *) v, s, len + 1); 31 memcpy ((char *) v, s, len + 1);
38 32
39 return v; 33 return v;
40} 34}
41 35
42const char *
43 shstr::null = makevec ("<nil>"); 36const char *shstr::null = makevec ("<nil>");
44
45// what weird misoptimisation is this again?
46const shstr undead_name ("undead");
47 37
48const char * 38const char *
49shstr::find (const char *s) 39shstr::find (const char *s)
50{ 40{
51 if (!s) 41 if (!s)
76// periodically test refcounts == 0 for a few strings 66// periodically test refcounts == 0 for a few strings
77// this is the ONLY thing that erases stuff from ht. keep it that way. 67// this is the ONLY thing that erases stuff from ht. keep it that way.
78void 68void
79shstr::gc () 69shstr::gc ()
80{ 70{
71return; //D
72//D currently disabled: some datastructures might still store them
73//D but their pointers will become invalidated
81 static const char *curpos; 74 static const char *curpos;
82 75
83 HT::iterator i = curpos ? ht.find (curpos) : ht.begin (); 76 HT::iterator i = curpos ? ht.find (curpos) : ht.begin ();
84 77
85 if (i == ht.end ()) 78 if (i == ht.end ())
112 } 105 }
113 106
114 curpos = *i; 107 curpos = *i;
115} 108}
116 109
110shstr skill_names[NUM_SKILLS];
111
112// what weird misoptimisation is this again?
113const shstr undead_name ("undead");
114
117//TODO: this should of course not be here 115//TODO: this should of course not be here
118 116
119/* buf_overflow() - we don't want to exceed the buffer size of 117/* buf_overflow() - we don't want to exceed the buffer size of
120 * buf1 by adding on buf2! Returns true if overflow will occur. 118 * buf1 by adding on buf2! Returns true if overflow will occur.
121 */ 119 */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines