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

Comparing deliantra/server/include/shstr.h (file contents):
Revision 1.27 by root, Wed Dec 31 18:29:44 2008 UTC vs.
Revision 1.28 by root, Thu Jan 1 11:41:17 2009 UTC

73 bool contains (const char *substring) const 73 bool contains (const char *substring) const
74 { 74 {
75 return strstr (s, substring); 75 return strstr (s, substring);
76 } 76 }
77 77
78 //TODO: case sensitive should be eradicated
79 bool eq_nc (const char *otherstring) const
80 {
81 return !strcasecmp (s, otherstring);
82 }
83
78 shstr_tmp () 84 shstr_tmp ()
79 : s (null ()) 85 : s (null ())
80 { 86 {
81 } 87 }
82 88
118inline int strlen (const shstr_tmp &sh) 124inline int strlen (const shstr_tmp &sh)
119{ 125{
120 return sh.length (); 126 return sh.length ();
121} 127}
122 128
123// undefined external reference to catch people using strcmp when they shouldn't
124int strcmp (const shstr_tmp &a, const shstr_tmp &b);
125
126static std::ostream &operator <<(std::ostream &o, shstr_tmp sh) 129static std::ostream &operator <<(std::ostream &o, shstr_tmp sh)
127{ 130{
128 o.write (sh.s, sh.length ()); 131 o.write (sh.s, sh.length ());
129 132
130 return o; 133 return o;
206// temporary passing, basically a non-refcounted shstr 209// temporary passing, basically a non-refcounted shstr
207struct shstr_cmp 210struct shstr_cmp
208{ 211{
209 const char *s; 212 const char *s;
210 213
214 // initialies to the non-matching string (as opposed to the null string)
215 shstr_cmp ()
216 {
217 s = 0;
218 }
219
211 explicit shstr_cmp (const char *str) 220 shstr_cmp (const char *str)
212 : s (shstr::find (str)) 221 : s (shstr::find (str))
213 { 222 {
214 } 223 }
215 224
216 shstr_cmp (shstr_tmp sh) 225 shstr_cmp (shstr_tmp sh)
232inline bool operator ==(const shstr_tmp &a, const shstr_cmp &b) 241inline bool operator ==(const shstr_tmp &a, const shstr_cmp &b)
233{ 242{
234 return a.s == b.s; 243 return a.s == b.s;
235} 244}
236 245
237#define def(str) extern const shstr shstr_ ## str; 246#define def2(id,str) extern const shstr shstr_ ## id;
247#define def(id) def2(id, # id)
238# include "shstrinc.h" 248# include "shstrinc.h"
239#undef def 249#undef def
250#undef def2
251
252// undefined external reference to catch people using str* functions when they shouldn't
253//template<class any> void strcmp (const shstr_tmp &a, any b);
254//template<class any> void strstr (const shstr_tmp &a, any b);
240 255
241#endif 256#endif
242 257

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines