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