]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/hashcomp.h
fixed
[user/henk/code/inspircd.git] / include / hashcomp.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef _HASHCOMP_H_
15 #define _HASHCOMP_H_
16
17 #include <cstring>
18 //#include "inspircd_config.h"
19 //#include "socket.h"
20 #include "hash_map.h"
21
22 /*******************************************************
23  * This file contains classes and templates that deal
24  * with the comparison and hashing of 'irc strings'.
25  * An 'irc string' is a string which compares in a
26  * case insensitive manner, and as per RFC 1459 will
27  * treat [ identical to {, ] identical to }, and \
28  * as identical to |.
29  *
30  * Our hashing functions are designed  to accept
31  * std::string and compare/hash them as type irc::string
32  * by converting them internally. This makes them
33  * backwards compatible with other code which is not
34  * aware of irc::string.
35  *******************************************************/
36
37 #ifndef LOWERMAP
38 #define LOWERMAP
39 /** A mapping of uppercase to lowercase, including scandinavian
40  * 'oddities' as specified by RFC1459, e.g. { -> [, and | -> \
41  */
42 unsigned const char lowermap[256] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19,                             /* 0-19 */
43                                 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,                         /* 20-39 */
44                                 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59,                         /* 40-59 */
45                                 60, 61, 62, 63, 64, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111,             /* 60-79 */
46                                 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 94, 95, 96, 97, 98, 99,           /* 80-99 */
47                                 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119,     /* 100-119 */
48                                 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139,     /* 120-139 */
49                                 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159,     /* 140-159 */
50                                 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179,     /* 160-179 */
51                                 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199,     /* 180-199 */
52                                 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219,     /* 200-219 */
53                                 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239,     /* 220-239 */
54                                 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255                          /* 240-255 */
55 };
56 #endif
57
58 /** The irc namespace contains a number of helper classes.
59  */
60 namespace irc
61 {
62
63         /** This class returns true if two strings match.
64          * Case sensitivity is ignored, and the RFC 'character set'
65          * is adhered to
66          */
67         struct StrHashComp
68         {
69                 /** The operator () does the actual comparison in hash_map
70                  */
71                 bool operator()(const std::string& s1, const std::string& s2) const;
72         };
73
74         /** The irc_char_traits class is used for RFC-style comparison of strings.
75          * This class is used to implement irc::string, a case-insensitive, RFC-
76          * comparing string class.
77          */
78         struct irc_char_traits : std::char_traits<char> {
79
80                 /** Check if two chars match.
81                  * @param c1st First character
82                  * @param c2nd Second character
83                  * @return true if the characters are equal
84                  */
85                 static bool eq(char c1st, char c2nd);
86
87                 /** Check if two chars do NOT match.
88                  * @param c1st First character
89                  * @param c2nd Second character
90                  * @return true if the characters are unequal
91                  */
92                 static bool ne(char c1st, char c2nd);
93
94                 /** Check if one char is less than another.
95                  * @param c1st First character
96                  * @param c2nd Second character
97                  * @return true if c1st is less than c2nd
98                  */
99                 static bool lt(char c1st, char c2nd);
100
101                 /** Compare two strings of size n.
102                  * @param str1 First string
103                  * @param str2 Second string
104                  * @param n Length to compare to
105                  * @return similar to strcmp, zero for equal, less than zero for str1
106                  * being less and greater than zero for str1 being greater than str2.
107                  */
108                 static CoreExport int compare(const char* str1, const char* str2, size_t n);
109
110                 /** Find a char within a string up to position n.
111                  * @param s1 String to find in
112                  * @param n Position to search up to
113                  * @param c Character to search for
114                  * @return Pointer to the first occurance of c in s1
115                  */
116                 static CoreExport const char* find(const char* s1, int  n, char c);
117         };
118
119         /** Compose a hex string from raw data.
120          * @param raw The raw data to compose hex from
121          * @pram rawsz The size of the raw data buffer
122          * @return The hex string.
123          */
124         CoreExport std::string hex(const unsigned char *raw, size_t rawsz);
125
126         /** This typedef declares irc::string based upon irc_char_traits.
127          */
128         typedef std::basic_string<char, irc_char_traits, std::allocator<char> > string;
129
130         /** irc::stringjoiner joins string lists into a string, using
131          * the given seperator string.
132          * This class can join a vector of std::string, a deque of
133          * std::string, or a const char* const* array, using overloaded
134          * constructors.
135          */
136         class CoreExport stringjoiner : public classbase
137         {
138          private:
139                 /** Output string
140                  */
141                 std::string joined;
142          public:
143                 /** Join elements of a vector, between (and including) begin and end
144                  * @param seperator The string to seperate values with
145                  * @param sequence One or more items to seperate
146                  * @param begin The starting element in the sequence to be joined
147                  * @param end The ending element in the sequence to be joined
148                  */
149                 stringjoiner(const std::string &seperator, const std::vector<std::string> &sequence, int begin, int end);
150                 /** Join elements of a deque, between (and including) begin and end
151                  * @param seperator The string to seperate values with
152                  * @param sequence One or more items to seperate
153                  * @param begin The starting element in the sequence to be joined
154                  * @param end The ending element in the sequence to be joined
155                  */
156                 stringjoiner(const std::string &seperator, const std::deque<std::string> &sequence, int begin, int end);
157                 /** Join elements of an array of char arrays, between (and including) begin and end
158                  * @param seperator The string to seperate values with
159                  * @param sequence One or more items to seperate
160                  * @param begin The starting element in the sequence to be joined
161                  * @param end The ending element in the sequence to be joined
162                  */
163                 stringjoiner(const std::string &seperator, const char* const* sequence, int begin, int end);
164
165                 /** Get the joined sequence
166                  * @return A reference to the joined string
167                  */
168                 std::string& GetJoined();
169         };
170
171         /** irc::modestacker stacks mode sequences into a list.
172          * It can then reproduce this list, clamped to a maximum of MAXMODES
173          * values per line.
174          */
175         class CoreExport modestacker : public classbase
176         {
177          private:
178                 InspIRCd* ServerInstance;
179                 /** The mode sequence and its parameters
180                  */
181                 std::deque<std::string> sequence;
182                 /** True if the mode sequence is initially adding
183                  * characters, false if it is initially removing
184                  * them
185                  */
186                 bool adding;
187          public:
188                 /** Construct a new modestacker.
189                  * @param add True if the stack is adding modes,
190                  * false if it is removing them
191                  */
192                 modestacker(InspIRCd* Instance, bool add);
193                 /** Push a modeletter and its parameter onto the stack.
194                  * No checking is performed as to if this mode actually
195                  * requires a parameter. If you stack invalid mode
196                  * sequences, they will be tidied if and when they are
197                  * passed to a mode parser.
198                  * @param modeletter The mode letter to insert
199                  * @param parameter The parameter for the mode
200                  */
201                 void Push(char modeletter, const std::string &parameter);
202                 /** Push a modeletter without parameter onto the stack.
203                  * No checking is performed as to if this mode actually
204                  * requires a parameter. If you stack invalid mode
205                  * sequences, they will be tidied if and when they are
206                  * passed to a mode parser.
207                  * @param modeletter The mode letter to insert
208                  */
209                 void Push(char modeletter);
210                 /** Push a '+' symbol onto the stack.
211                  */
212                 void PushPlus();
213                 /** Push a '-' symbol onto the stack.
214                  */
215                 void PushMinus();
216                 /** Return zero or more elements which form the
217                  * mode line. This will be clamped to a max of
218                  * MAXMODES items (MAXMODES-1 mode parameters and
219                  * one mode sequence string), and max_line_size
220                  * characters. As specified below, this function
221                  * should be called in a loop until it returns zero,
222                  * indicating there are no more modes to return.
223                  * @param result The deque to populate. This will
224                  * be cleared before it is used.
225                  * @param max_line_size The maximum size of the line
226                  * to build, in characters, seperate to MAXMODES.
227                  * @return The number of elements in the deque.
228                  * The function should be called repeatedly until it
229                  * returns 0, in case there are multiple lines of
230                  * mode changes to be obtained.
231                  */
232                 int GetStackedLine(std::deque<std::string> &result, int max_line_size = 360);
233         };
234
235         /** irc::tokenstream reads a string formatted as per RFC1459 and RFC2812.
236          * It will split the string into 'tokens' each containing one parameter
237          * from the string.
238          * For instance, if it is instantiated with the string:
239          * "PRIVMSG #test :foo bar baz qux"
240          * then each successive call to tokenstream::GetToken() will return
241          * "PRIVMSG", "#test", "foo bar baz qux", "".
242          * Note that if the whole string starts with a colon this is not taken
243          * to mean the string is all one parameter, and the first item in the
244          * list will be ":item". This is to allow for parsing 'source' fields
245          * from data.
246          */
247         class CoreExport tokenstream : public classbase
248         {
249          private:
250                 /** Original string
251                  */
252                 std::string tokens;
253                 /** Last position of a seperator token
254                  */
255                 std::string::iterator last_starting_position;
256                 /** Current string position
257                  */
258                 std::string::iterator n;
259                 /** True if the last value was an ending value
260                  */
261                 bool last_pushed;
262          public:
263                 /** Create a tokenstream and fill it with the provided data
264                  */
265                 tokenstream(const std::string &source);
266                 ~tokenstream();
267
268                 /** Fetch the next token from the stream as a std::string
269                  * @param token The next token available, or an empty string if none remain
270                  * @return True if tokens are left to be read, false if the last token was just retrieved.
271                  */
272                 bool GetToken(std::string &token);
273
274                 /** Fetch the next token from the stream as an irc::string
275                  * @param token The next token available, or an empty string if none remain
276                  * @return True if tokens are left to be read, false if the last token was just retrieved.
277                  */
278                 bool GetToken(irc::string &token);
279
280                 /** Fetch the next token from the stream as an integer
281                  * @param token The next token available, or undefined if none remain
282                  * @return True if tokens are left to be read, false if the last token was just retrieved.
283                  */
284                 bool GetToken(int &token);
285
286                 /** Fetch the next token from the stream as a long integer
287                  * @param token The next token available, or undefined if none remain
288                  * @return True if tokens are left to be read, false if the last token was just retrieved.
289                  */
290                 bool GetToken(long &token);
291         };
292
293         /** irc::sepstream allows for splitting token seperated lists.
294          * Each successive call to sepstream::GetToken() returns
295          * the next token, until none remain, at which point the method returns
296          * an empty string.
297          */
298         class CoreExport sepstream : public classbase
299         {
300          private:
301                 /** Original string.
302                  */
303                 std::string tokens;
304                 /** Last position of a seperator token
305                  */
306                 std::string::iterator last_starting_position;
307                 /** Current string position
308                  */
309                 std::string::iterator n;
310                 /** Seperator value
311                  */
312                 char sep;
313          public:
314                 /** Create a sepstream and fill it with the provided data
315                  */
316                 sepstream(const std::string &source, char seperator);
317                 virtual ~sepstream();
318
319                 /** Fetch the next token from the stream
320                  * @param token The next token from the stream is placed here
321                  * @return True if tokens still remain, false if there are none left
322                  */
323                 virtual bool GetToken(std::string &token);
324
325                 /** Fetch the entire remaining stream, without tokenizing
326                  * @return The remaining part of the stream
327                  */
328                 virtual const std::string GetRemaining();
329
330                 /** Returns true if the end of the stream has been reached
331                  * @return True if the end of the stream has been reached, otherwise false
332                  */
333                 virtual bool StreamEnd();
334         };
335
336         /** A derived form of sepstream, which seperates on commas
337          */
338         class CoreExport commasepstream : public sepstream
339         {
340          public:
341                 /** Initialize with comma seperator
342                  */
343                 commasepstream(const std::string &source) : sepstream(source, ',')
344                 {
345                 }
346         };
347
348         /** A derived form of sepstream, which seperates on spaces
349          */
350         class CoreExport spacesepstream : public sepstream
351         {
352          public:
353                 /** Initialize with space seperator
354                  */
355                 spacesepstream(const std::string &source) : sepstream(source, ' ')
356                 {
357                 }
358         };
359
360         /** The portparser class seperates out a port range into integers.
361          * A port range may be specified in the input string in the form
362          * "6660,6661,6662-6669,7020". The end of the stream is indicated by
363          * a return value of 0 from portparser::GetToken(). If you attempt
364          * to specify an illegal range (e.g. one where start >= end, or
365          * start or end < 0) then GetToken() will return the first element
366          * of the pair of numbers.
367          */
368         class CoreExport portparser : public classbase
369         {
370          private:
371                 /** Used to split on commas
372                  */
373                 commasepstream* sep;
374                 /** Current position in a range of ports
375                  */
376                 long in_range;
377                 /** Starting port in a range of ports
378                  */
379                 long range_begin;
380                 /** Ending port in a range of ports
381                  */
382                 long range_end;
383                 /** Allow overlapped port ranges
384                  */
385                 bool overlapped;
386                 /** Used to determine overlapping of ports
387                  * without O(n) algorithm being used
388                  */
389                 std::map<long, bool> overlap_set;
390                 /** Returns true if val overlaps an existing range
391                  */
392                 bool Overlaps(long val);
393          public:
394                 /** Create a portparser and fill it with the provided data
395                  * @param source The source text to parse from
396                  * @param allow_overlapped Allow overlapped ranges
397                  */
398                 portparser(const std::string &source, bool allow_overlapped = true);
399                 /** Frees the internal commasepstream object
400                  */
401                 ~portparser();
402                 /** Fetch the next token from the stream
403                  * @return The next port number is returned, or 0 if none remain
404                  */
405                 long GetToken();
406         };
407
408         /** Used to hold a bitfield definition in dynamicbitmask.
409          * You must be allocated one of these by dynamicbitmask::Allocate(),
410          * you should not fill the values yourself!
411          */
412         typedef std::pair<size_t, unsigned char> bitfield;
413
414         /** The irc::dynamicbitmask class is used to maintain a bitmap of
415          * boolean values, which can grow to any reasonable size no matter
416          * how many bitfields are in it.
417          *
418          * It starts off at 32 bits in size, large enough to hold 32 boolean
419          * values, with a memory allocation of 8 bytes. If you allocate more
420          * than 32 bits, the class will grow the bitmap by 8 bytes at a time
421          * for each set of 8 bitfields you allocate with the Allocate()
422          * method.
423          *
424          * This method is designed so that multiple modules can be allocated
425          * bit values in a bitmap dynamically, rather than having to define
426          * costs in a fixed size unsigned integer and having the possibility
427          * of collisions of values in different third party modules.
428          *
429          * IMPORTANT NOTE:
430          *
431          * To use this class, you must derive from it.
432          * This is because each derived instance has its own freebits array
433          * which can determine what bitfields are allocated on a TYPE BY TYPE
434          * basis, e.g. an irc::dynamicbitmask type for Users, and one for
435          * Channels, etc. You should inheret it in a very simple way as follows.
436          * The base class will resize and maintain freebits as required, you are
437          * just required to make the pointer static and specific to this class
438          * type.
439          *
440          * \code
441          * class mydbitmask : public irc::dynamicbitmask
442          * {
443          *  private:
444          *
445          *      static unsigned char* freebits;
446          *
447          *  public:
448          *
449          *      mydbitmask() : irc::dynamicbitmask()
450          *      {
451          *        freebits = new unsigned char[this->bits_size];
452          *        memset(freebits, 0, this->bits_size);
453          *      }
454          *
455          *      ~mydbitmask()
456          *      {
457          *        delete[] freebits;
458          *      }
459          *
460          *      unsigned char* GetFreeBits()
461          *      {
462          *        return freebits;
463          *      }
464          *
465          *      void SetFreeBits(unsigned char* freebt)
466          *      {
467          *        freebits = freebt;
468          *      }
469          * };
470          * \endcode
471          */
472         class CoreExport dynamicbitmask : public classbase
473         {
474          private:
475                 /** Data bits. We start with four of these,
476                  * and we grow the bitfield as we allocate
477                  * more than 32 entries with Allocate().
478                  */
479                 unsigned char* bits;
480          protected:
481                 /** Current set size (size of freebits and bits).
482                  * Both freebits and bits will ALWAYS be the
483                  * same length.
484                  */
485                 unsigned char bits_size;
486          public:
487                 /** Allocate the initial memory for bits and
488                  * freebits and zero the memory.
489                  */
490                 dynamicbitmask();
491
492                 /** Free the memory used by bits and freebits
493                  */
494                 virtual ~dynamicbitmask();
495
496                 /** Allocate an irc::bitfield.
497                  * @return An irc::bitfield which can be used
498                  * with Get, Deallocate and Toggle methods.
499                  * @throw Can throw std::bad_alloc if there is
500                  * no ram left to grow the bitmask.
501                  */
502                 bitfield Allocate();
503
504                 /** Deallocate an irc::bitfield.
505                  * @param An irc::bitfield to deallocate.
506                  * @return True if the bitfield could be
507                  * deallocated, false if it could not.
508                  */
509                 bool Deallocate(bitfield &pos);
510
511                 /** Toggle the value of a bitfield.
512                  * @param pos A bitfield to allocate, previously
513                  * allocated by dyamicbitmask::Allocate().
514                  * @param state The state to set the field to.
515                  */
516                 void Toggle(bitfield &pos, bool state);
517
518                 /** Get the value of a bitfield.
519                  * @param pos A bitfield to retrieve, previously
520                  * allocated by dyamicbitmask::Allocate().
521                  * @return The value of the bitfield.
522                  * @throw Will throw ModuleException if the bitfield
523                  * you provide is outside of the range
524                  * 0 >= bitfield.first < size_bits.
525                  */
526                 bool Get(bitfield &pos);
527
528                 /** Return the size in bytes allocated to the bits
529                  * array.
530                  * Note that the actual allocation is twice this,
531                  * as there are an equal number of bytes allocated
532                  * for the freebits array.
533                  */
534                 unsigned char GetSize();
535
536                 /** Get free bits mask
537                  */
538                 virtual unsigned char* GetFreeBits() { return NULL; }
539
540                 /** Set free bits mask
541                  */
542                 virtual void SetFreeBits(unsigned char* freebits) { freebits = freebits; }
543         };
544
545         /** Turn _ characters in a string into spaces
546          * @param n String to translate
547          * @return The new value with _ translated to space.
548          */
549         CoreExport const char* Spacify(const char* n);
550 }
551
552 /* Define operators for using >> and << with irc::string to an ostream on an istream. */
553 /* This was endless fun. No. Really. */
554 /* It was also the first core change Ommeh made, if anyone cares */
555
556 /** Operator << for irc::string
557  */
558 inline std::ostream& operator<<(std::ostream &os, const irc::string &str) { return os << str.c_str(); }
559
560 /** Operator >> for irc::string
561  */
562 inline std::istream& operator>>(std::istream &is, irc::string &str)
563 {
564         std::string tmp;
565         is >> tmp;
566         str = tmp.c_str();
567         return is;
568 }
569
570 /* Define operators for + and == with irc::string to std::string for easy assignment
571  * and comparison
572  *
573  * Operator +
574  */
575 inline std::string operator+ (std::string& leftval, irc::string& rightval)
576 {
577         return leftval + std::string(rightval.c_str());
578 }
579
580 /* Define operators for + and == with irc::string to std::string for easy assignment
581  * and comparison
582  *
583  * Operator +
584  */
585 inline irc::string operator+ (irc::string& leftval, std::string& rightval)
586 {
587         return leftval + irc::string(rightval.c_str());
588 }
589
590 /* Define operators for + and == with irc::string to std::string for easy assignment
591  * and comparison
592  *
593  * Operator ==
594  */
595 inline bool operator== (const std::string& leftval, const irc::string& rightval)
596 {
597         return (leftval.c_str() == rightval);
598 }
599
600 /* Define operators for + and == with irc::string to std::string for easy assignment
601  * and comparison
602  *
603  * Operator ==
604  */
605 inline bool operator== (const irc::string& leftval, const std::string& rightval)
606 {
607         return (leftval == rightval.c_str());
608 }
609
610 /* Define operators != for irc::string to std::string for easy comparison
611  */
612 inline bool operator!= (const irc::string& leftval, const std::string& rightval)
613 {
614         return !(leftval == rightval.c_str());
615 }
616
617 /* Define operators != for std::string to irc::string for easy comparison
618  */
619 inline bool operator!= (const std::string& leftval, const irc::string& rightval)
620 {
621         return !(leftval.c_str() == rightval);
622 }
623
624 template<std::size_t N>
625 static inline bool operator == (std::string const &lhs, char const (&rhs)[N])
626 {
627         return lhs.length() == N - 1 && !std::memcmp(lhs.data(), rhs, N - 1);
628 }
629
630 template<std::size_t N>
631 static inline bool operator != (std::string const &lhs, char const (&rhs)[N])
632 {
633         return !(lhs == rhs);
634 }
635
636 /** Assign an irc::string to a std::string.
637  */
638 inline std::string assign(const irc::string &other) { return other.c_str(); }
639
640 /** Assign a std::string to an irc::string.
641  */
642 inline irc::string assign(const std::string &other) { return other.c_str(); }
643
644 /** Trim the leading and trailing spaces from a std::string.
645  */
646 inline std::string& trim(std::string &str)
647 {
648         std::string::size_type start = str.find_first_not_of(" ");
649         std::string::size_type end = str.find_last_not_of(" ");
650         if (start == std::string::npos || end == std::string::npos)
651                 str = "";
652         else
653                 str = str.substr(start, end-start+1);
654
655         return str;
656 }
657
658 /** Hashing stuff is totally different on vc++'s hash_map implementation, so to save a buttload of
659  * #ifdefs we'll just do it all at once
660  */
661 BEGIN_HASHMAP_NAMESPACE
662
663         /** Hashing function to hash irc::string
664          */
665 #ifdef WINDOWS
666         template<> class CoreExport hash_compare<irc::string, std::less<irc::string> >
667         {
668         public:
669                 enum { bucket_size = 4, min_buckets = 8 }; /* Got these numbers from the CRT source, if anyone wants to change them feel free. */
670
671                 /** Compare two irc::string values for hashing in hash_map
672                  */
673                 bool operator()(const irc::string & s1, const irc::string & s2) const
674                 {
675                         if(s1.length() != s2.length()) return true;
676                         return (irc::irc_char_traits::compare(s1.c_str(), s2.c_str(), s1.length()) < 0);
677                 }
678
679                 /** Hash an irc::string value for hash_map
680                  */
681                 size_t operator()(const irc::string & s) const;
682         };
683
684         template<> class CoreExport hash_compare<std::string, std::less<std::string> >
685         {
686         public:
687                 enum { bucket_size = 4, min_buckets = 8 }; /* Again, from the CRT source */
688
689                 /** Compare two std::string values for hashing in hash_map
690                  */
691                 bool operator()(const std::string & s1, const std::string & s2) const
692                 {
693                         if(s1.length() != s2.length()) return true;
694                         return (irc::irc_char_traits::compare(s1.c_str(), s2.c_str(), s1.length()) < 0);
695                 }
696
697                 /** Hash a std::string using RFC1459 case sensitivity rules
698                 * @param s A string to hash
699                 * @return The hash value
700                 */
701                 size_t operator()(const std::string & s) const;
702         };
703 #else
704
705         template<> struct hash<irc::string>
706         {
707                 /** Hash an irc::string using RFC1459 case sensitivity rules
708                  * @param s A string to hash
709                  * @return The hash value
710                  */
711                 size_t operator()(const irc::string &s) const;
712         };
713
714         /* XXX FIXME: Implement a hash function overriding std::string's that works with TR1! */
715
716 #ifdef HASHMAP_DEPRECATED
717         struct insensitive
718 #else
719         template<> struct hash<std::string>
720 #endif
721         {
722                 size_t operator()(const std::string &s) const;
723         };
724
725 #endif
726
727         /** Convert a string to lower case respecting RFC1459
728         * @param n A string to lowercase
729         */
730         void strlower(char *n);
731
732 END_HASHMAP_NAMESPACE
733
734 #endif
735