]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/hashcomp.cpp
6c0ce82b852a62cecb7bf304fdf37bf4eba31de5
[user/henk/code/inspircd.git] / src / hashcomp.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* $Core */
15
16 #include "inspircd.h"
17 #include "hashcomp.h"
18 #include "hash_map.h"
19
20 /******************************************************
21  *
22  * The hash functions of InspIRCd are the centrepoint
23  * of the entire system. If these functions are
24  * inefficient or wasteful, the whole program suffers
25  * as a result. A lot of C programmers in the ircd
26  * scene spend a lot of time debating (arguing) about
27  * the best way to write hash functions to hash irc
28  * nicknames, channels etc.
29  * We are lucky as C++ developers as hash_map does
30  * a lot of this for us. It does intellegent memory
31  * requests, bucketing, search functions, insertion
32  * and deletion etc. All we have to do is write some
33  * overloaded comparison and hash value operators which
34  * cause it to act in an irc-like way. The features we
35  * add to the standard hash_map are:
36  *
37  * Case insensitivity: The hash_map will be case
38  * insensitive.
39  *
40  * Scandanavian Comparisons: The characters [, ], \ will
41  * be considered the lowercase of {, } and |.
42  *
43  ******************************************************/
44
45 /* convert a string to lowercase. Note following special circumstances
46  * taken from RFC 1459. Many "official" server branches still hold to this
47  * rule so i will too;
48  *
49  *  Because of IRC's scandanavian origin, the characters {}| are
50  *  considered to be the lower case equivalents of the characters []\,
51  *  respectively. This is a critical issue when determining the
52  *  equivalence of two nicknames.
53  */
54 void nspace::strlower(char *n)
55 {
56         if (n)
57         {
58                 for (char* t = n; *t; t++)
59                         *t = national_case_insensitive_map[(unsigned char)*t];
60         }
61 }
62
63 #if defined(WINDOWS) && !defined(HASHMAP_DEPRECATED)
64         size_t nspace::hash_compare<std::string, std::less<std::string> >::operator()(const std::string &s) const
65 #else
66         #ifdef HASHMAP_DEPRECATED
67                 size_t CoreExport nspace::insensitive::operator()(const std::string &s) const
68         #else
69                 size_t nspace::hash<std::string>::operator()(const std::string &s) const
70         #endif
71 #endif
72 {
73         /* XXX: NO DATA COPIES! :)
74          * The hash function here is practically
75          * a copy of the one in STL's hash_fun.h,
76          * only with *x replaced with national_case_insensitive_map[*x].
77          * This avoids a copy to use hash<const char*>
78          */
79         register size_t t = 0;
80         for (std::string::const_iterator x = s.begin(); x != s.end(); ++x) /* ++x not x++, as its faster */
81                 t = 5 * t + national_case_insensitive_map[(unsigned char)*x];
82         return t;
83 }
84
85
86 #if defined(WINDOWS) && !defined(HASHMAP_DEPRECATED)
87         size_t nspace::hash_compare<irc::string, std::less<irc::string> >::operator()(const irc::string &s) const
88 #else
89         size_t CoreExport nspace::hash<irc::string>::operator()(const irc::string &s) const
90 #endif
91 {
92         register size_t t = 0;
93         for (irc::string::const_iterator x = s.begin(); x != s.end(); ++x) /* ++x not x++, as its faster */
94                 t = 5 * t + national_case_insensitive_map[(unsigned char)*x];
95         return t;
96 }
97
98 bool irc::StrHashComp::operator()(const std::string& s1, const std::string& s2) const
99 {
100         const unsigned char* n1 = (const unsigned char*)s1.c_str();
101         const unsigned char* n2 = (const unsigned char*)s2.c_str();
102         for (; *n1 && *n2; n1++, n2++)
103                 if (national_case_insensitive_map[*n1] != national_case_insensitive_map[*n2])
104                         return false;
105         return (national_case_insensitive_map[*n1] == national_case_insensitive_map[*n2]);
106 }
107
108 /******************************************************
109  *
110  * This is the implementation of our special irc::string
111  * class which is a case-insensitive equivalent to
112  * std::string which is not only case-insensitive but
113  * can also do scandanavian comparisons, e.g. { = [, etc.
114  *
115  * This class depends on the const array 'national_case_insensitive_map'.
116  *
117  ******************************************************/
118
119 bool irc::irc_char_traits::eq(char c1st, char c2nd)
120 {
121         return national_case_insensitive_map[(unsigned char)c1st] == national_case_insensitive_map[(unsigned char)c2nd];
122 }
123
124 bool irc::irc_char_traits::ne(char c1st, char c2nd)
125 {
126         return national_case_insensitive_map[(unsigned char)c1st] != national_case_insensitive_map[(unsigned char)c2nd];
127 }
128
129 bool irc::irc_char_traits::lt(char c1st, char c2nd)
130 {
131         return national_case_insensitive_map[(unsigned char)c1st] < national_case_insensitive_map[(unsigned char)c2nd];
132 }
133
134 int irc::irc_char_traits::compare(const char* str1, const char* str2, size_t n)
135 {
136         for(unsigned int i = 0; i < n; i++)
137         {
138                 if(national_case_insensitive_map[(unsigned char)*str1] > national_case_insensitive_map[(unsigned char)*str2])
139                         return 1;
140
141                 if(national_case_insensitive_map[(unsigned char)*str1] < national_case_insensitive_map[(unsigned char)*str2])
142                         return -1;
143
144                 if(*str1 == 0 || *str2 == 0)
145                         return 0;
146
147                 str1++;
148                 str2++;
149         }
150         return 0;
151 }
152
153 const char* irc::irc_char_traits::find(const char* s1, int  n, char c)
154 {
155         while(n-- > 0 && national_case_insensitive_map[(unsigned char)*s1] != national_case_insensitive_map[(unsigned char)c])
156                 s1++;
157         return (n >= 0) ? s1 : NULL;
158 }
159
160 irc::tokenstream::tokenstream(const std::string &source) : tokens(source), last_pushed(false)
161 {
162         /* Record starting position and current position */
163         last_starting_position = tokens.begin();
164         n = tokens.begin();
165 }
166
167 irc::tokenstream::~tokenstream()
168 {
169 }
170
171 bool irc::tokenstream::GetToken(std::string &token)
172 {
173         std::string::iterator lsp = last_starting_position;
174
175         while (n != tokens.end())
176         {
177                 /** Skip multi space, converting "  " into " "
178                  */
179                 while ((n+1 != tokens.end()) && (*n == ' ') && (*(n+1) == ' '))
180                         n++;
181
182                 if ((last_pushed) && (*n == ':'))
183                 {
184                         /* If we find a token thats not the first and starts with :,
185                          * this is the last token on the line
186                          */
187                         std::string::iterator curr = ++n;
188                         n = tokens.end();
189                         token = std::string(curr, tokens.end());
190                         return true;
191                 }
192
193                 last_pushed = false;
194
195                 if ((*n == ' ') || (n+1 == tokens.end()))
196                 {
197                         /* If we find a space, or end of string, this is the end of a token.
198                          */
199                         last_starting_position = n+1;
200                         last_pushed = true;
201
202                         std::string strip(lsp, n+1 == tokens.end() ? n+1  : n++);
203                         while ((strip.length()) && (strip.find_last_of(' ') == strip.length() - 1))
204                                 strip.erase(strip.end() - 1);
205
206                         token = strip;
207                         return !token.empty();
208                 }
209
210                 n++;
211         }
212         token.clear();
213         return false;
214 }
215
216 bool irc::tokenstream::GetToken(irc::string &token)
217 {
218         std::string stdstring;
219         bool returnval = GetToken(stdstring);
220         token = assign(stdstring);
221         return returnval;
222 }
223
224 bool irc::tokenstream::GetToken(int &token)
225 {
226         std::string tok;
227         bool returnval = GetToken(tok);
228         token = ConvToInt(tok);
229         return returnval;
230 }
231
232 bool irc::tokenstream::GetToken(long &token)
233 {
234         std::string tok;
235         bool returnval = GetToken(tok);
236         token = ConvToInt(tok);
237         return returnval;
238 }
239
240 irc::sepstream::sepstream(const std::string &source, char seperator) : tokens(source), sep(seperator)
241 {
242         last_starting_position = tokens.begin();
243         n = tokens.begin();
244 }
245
246 bool irc::sepstream::GetToken(std::string &token)
247 {
248         std::string::iterator lsp = last_starting_position;
249
250         while (n != tokens.end())
251         {
252                 if ((*n == sep) || (n+1 == tokens.end()))
253                 {
254                         last_starting_position = n+1;
255                         token = std::string(lsp, n+1 == tokens.end() ? n+1  : n++);
256
257                         while ((token.length()) && (token.find_last_of(sep) == token.length() - 1))
258                                 token.erase(token.end() - 1);
259
260                         if (token.empty())
261                                 n++;
262
263                         return n == tokens.end() ? false : true;
264                 }
265
266                 n++;
267         }
268
269         token = "";
270         return false;
271 }
272
273 const std::string irc::sepstream::GetRemaining()
274 {
275         return std::string(n, tokens.end());
276 }
277
278 bool irc::sepstream::StreamEnd()
279 {
280         return ((n + 1) == tokens.end());
281 }
282
283 irc::sepstream::~sepstream()
284 {
285 }
286
287 std::string irc::hex(const unsigned char *raw, size_t rawsz)
288 {
289         if (!rawsz)
290                 return "";
291
292         /* EWW! This used to be using sprintf, which is WAY inefficient. -Special */
293
294         const char *hex = "0123456789abcdef";
295         static char hexbuf[MAXBUF];
296
297         size_t i, j;
298         for (i = 0, j = 0; j < rawsz; ++j)
299         {
300                 hexbuf[i++] = hex[raw[j] / 16];
301                 hexbuf[i++] = hex[raw[j] % 16];
302         }
303         hexbuf[i] = 0;
304
305         return hexbuf;
306 }
307
308 CoreExport const char* irc::Spacify(const char* n)
309 {
310         static char x[MAXBUF];
311         strlcpy(x,n,MAXBUF);
312         for (char* y = x; *y; y++)
313                 if (*y == '_')
314                         *y = ' ';
315         return x;
316 }
317
318
319 irc::modestacker::modestacker(InspIRCd* Instance, bool add) : ServerInstance(Instance), adding(add)
320 {
321         sequence.clear();
322         sequence.push_back("");
323 }
324
325 void irc::modestacker::Push(char modeletter, const std::string &parameter)
326 {
327         *(sequence.begin()) += modeletter;
328         sequence.push_back(parameter);
329 }
330
331 void irc::modestacker::Push(char modeletter)
332 {
333         this->Push(modeletter,"");
334 }
335
336 void irc::modestacker::PushPlus()
337 {
338         this->Push('+',"");
339 }
340
341 void irc::modestacker::PushMinus()
342 {
343         this->Push('-',"");
344 }
345
346 int irc::modestacker::GetStackedLine(std::deque<std::string> &result, int max_line_size)
347 {
348         if (sequence.empty())
349         {
350                 result.clear();
351                 return 0;
352         }
353
354         int n = 0;
355         int size = 1; /* Account for initial +/- char */
356         int nextsize = 0;
357         result.clear();
358         result.push_back(adding ? "+" : "-");
359
360         if (sequence.size() > 1)
361                 nextsize = sequence[1].length() + 2;
362
363         while (!sequence[0].empty() && (sequence.size() > 1) && (result.size() < ServerInstance->Config->Limits.MaxModes) && ((size + nextsize) < max_line_size))
364         {
365                 result[0] += *(sequence[0].begin());
366                 if (!sequence[1].empty())
367                 {
368                         result.push_back(sequence[1]);
369                         size += nextsize; /* Account for mode character and whitespace */
370                 }
371                 sequence[0].erase(sequence[0].begin());
372                 sequence.erase(sequence.begin() + 1);
373
374                 if (sequence.size() > 1)
375                         nextsize = sequence[1].length() + 2;
376
377                 n++;
378         }
379
380         return n;
381 }
382
383 irc::stringjoiner::stringjoiner(const std::string &seperator, const std::vector<std::string> &sequence, int begin, int end)
384 {
385         if (end < begin)
386                 throw "stringjoiner logic error, this causes problems.";
387
388         for (int v = begin; v < end; v++)
389                 joined.append(sequence[v]).append(seperator);
390         joined.append(sequence[end]);
391 }
392
393 irc::stringjoiner::stringjoiner(const std::string &seperator, const std::deque<std::string> &sequence, int begin, int end)
394 {
395         if (end < begin)
396                 throw "stringjoiner logic error, this causes problems.";
397
398         for (int v = begin; v < end; v++)
399                 joined.append(sequence[v]).append(seperator);
400         joined.append(sequence[end]);
401 }
402
403 irc::stringjoiner::stringjoiner(const std::string &seperator, const char* const* sequence, int begin, int end)
404 {
405         if (end < begin)
406                 throw "stringjoiner logic error, this causes problems.";
407
408         for (int v = begin; v < end; v++)
409                 joined.append(sequence[v]).append(seperator);
410         joined.append(sequence[end]);
411 }
412
413 std::string& irc::stringjoiner::GetJoined()
414 {
415         return joined;
416 }
417
418 irc::portparser::portparser(const std::string &source, bool allow_overlapped) : in_range(0), range_begin(0), range_end(0), overlapped(allow_overlapped)
419 {
420         sep = new irc::commasepstream(source);
421         overlap_set.clear();
422 }
423
424 irc::portparser::~portparser()
425 {
426         delete sep;
427 }
428
429 bool irc::portparser::Overlaps(long val)
430 {
431         if (!overlapped)
432                 return false;
433
434         if (overlap_set.find(val) == overlap_set.end())
435         {
436                 overlap_set[val] = true;
437                 return false;
438         }
439         else
440                 return true;
441 }
442
443 long irc::portparser::GetToken()
444 {
445         if (in_range > 0)
446         {
447                 in_range++;
448                 if (in_range <= range_end)
449                 {
450                         if (!Overlaps(in_range))
451                         {
452                                 return in_range;
453                         }
454                         else
455                         {
456                                 while (((Overlaps(in_range)) && (in_range <= range_end)))
457                                         in_range++;
458
459                                 if (in_range <= range_end)
460                                         return in_range;
461                         }
462                 }
463                 else
464                         in_range = 0;
465         }
466
467         std::string x;
468         sep->GetToken(x);
469
470         if (x.empty())
471                 return 0;
472
473         while (Overlaps(atoi(x.c_str())))
474         {
475                 if (!sep->GetToken(x))
476                         return 0;
477         }
478
479         std::string::size_type dash = x.rfind('-');
480         if (dash != std::string::npos)
481         {
482                 std::string sbegin = x.substr(0, dash);
483                 std::string send = x.substr(dash+1, x.length());
484                 range_begin = atoi(sbegin.c_str());
485                 range_end = atoi(send.c_str());
486
487                 if ((range_begin > 0) && (range_end > 0) && (range_begin < 65536) && (range_end < 65536) && (range_begin < range_end))
488                 {
489                         in_range = range_begin;
490                         return in_range;
491                 }
492                 else
493                 {
494                         /* Assume its just the one port */
495                         return atoi(sbegin.c_str());
496                 }
497         }
498         else
499         {
500                 return atoi(x.c_str());
501         }
502 }
503
504 /*const std::basic_string& SearchAndReplace(std::string& text, const std::string& pattern, const std::string& replace)
505 {
506         std::string replacement;
507         if ((!pattern.empty()) && (!text.empty()))
508         {
509                 for (std::string::size_type n = 0; n != text.length(); ++n)
510                 {
511                         if (text.length() >= pattern.length() && text.substr(n, pattern.length()) == pattern)
512                         {
513                                 replacement.append(replace);
514                                 n = n + pattern.length() - 1;
515                         }
516                         else
517                         {
518                                 replacement += text[n];
519                         }
520                 }
521         }
522         text = replacement;
523         return text;
524 }*/