]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/hashcomp.h
2d6be15a9be097d09d40c2f0e362fde5bf3991fa
[user/henk/code/inspircd.git] / include / hashcomp.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 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 using namespace std;
37 using irc::sockets::insp_aton;
38 using irc::sockets::insp_ntoa;
39 using irc::sockets::insp_inaddr;
40
41 #ifndef LOWERMAP
42 #define LOWERMAP
43 /** A mapping of uppercase to lowercase, including scandinavian
44  * 'oddities' as specified by RFC1459, e.g. { -> [, and | -> \
45  */
46 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 */
47                                 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39,                         /* 20-39 */
48                                 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59,                         /* 40-59 */
49                                 60, 61, 62, 63, 64, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111,             /* 60-79 */
50                                 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 94, 95, 96, 97, 98, 99,           /* 80-99 */
51                                 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119,     /* 100-119 */
52                                 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139,     /* 120-139 */
53                                 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159,     /* 140-159 */
54                                 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179,     /* 160-179 */
55                                 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199,     /* 180-199 */
56                                 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219,     /* 200-219 */
57                                 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239,     /* 220-239 */
58                                 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255                          /* 240-255 */
59 };
60 #endif
61
62 /** Because of weirdness in g++, before 3.x this was namespace std. It's now __gnu_cxx.
63  * This is a #define'd alias.
64  */
65 namespace nspace
66 {
67         /** Convert a string to lower case respecting RFC1459
68          * @param n A string to lowercase
69          */
70         void strlower(char *n);
71
72         /** Hashing function to hash insp_inaddr structs
73          */
74         template<> struct hash<insp_inaddr>
75         {
76                 /** Hash an insp_inaddr
77                  * @param a An insp_inaddr to hash
78                  * @return The hash value
79                  */
80                 size_t operator()(const insp_inaddr &a) const;
81         };
82
83         /** Hashing function to hash std::string without respect to case
84          */
85         template<> struct hash<std::string>
86         {
87                 /** Hash a std::string using RFC1459 case sensitivity rules
88                  * @param s A string to hash
89                  * @return The hash value
90                  */
91                 size_t operator()(const string &s) const;
92         };
93 }
94
95 /** The irc namespace contains a number of helper classes.
96  */
97 namespace irc
98 {
99
100         /** This class returns true if two strings match.
101          * Case sensitivity is ignored, and the RFC 'character set'
102          * is adhered to
103          */
104         struct StrHashComp
105         {
106                 /** The operator () does the actual comparison in hash_map
107                  */
108                 bool operator()(const std::string& s1, const std::string& s2) const;
109         };
110
111
112         /** This class returns true if two insp_inaddr structs match.
113          * Checking is done by copying both into a size_t then doing a
114          * numeric comparison of the two.
115          */
116         struct InAddr_HashComp
117         {
118                 /** The operator () does the actual comparison in hash_map
119                  */
120                 bool operator()(const insp_inaddr &s1, const insp_inaddr &s2) const;
121         };
122
123         /** irc::stringjoiner joins string lists into a string, using
124          * the given seperator string.
125          * This class can join a vector of std::string, a deque of
126          * std::string, or a const char** array, using overloaded
127          * constructors.
128          */
129         class stringjoiner
130         {
131          private:
132                 /** Output string
133                  */
134                 std::string joined;
135          public:
136                 /** Join elements of a vector, between (and including) begin and end
137                  * @param seperator The string to seperate values with
138                  * @param sequence One or more items to seperate
139                  * @param begin The starting element in the sequence to be joined
140                  * @param end The ending element in the sequence to be joined
141                  */
142                 stringjoiner(const std::string &seperator, const std::vector<std::string> &sequence, int begin, int end);
143                 /** Join elements of a deque, 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::deque<std::string> &sequence, int begin, int end);
150                 /** Join elements of an array of char arrays, 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 char** sequence, int begin, int end);
157
158                 /** Get the joined sequence
159                  * @return A reference to the joined string
160                  */
161                 std::string& GetJoined();
162         };
163
164         /** irc::modestacker stacks mode sequences into a list.
165          * It can then reproduce this list, clamped to a maximum of MAXMODES
166          * values per line.
167          */
168         class modestacker
169         {
170          private:
171                 /** The mode sequence and its parameters
172                  */
173                 std::deque<std::string> sequence;
174                 /** True if the mode sequence is initially adding
175                  * characters, false if it is initially removing
176                  * them
177                  */
178                 bool adding;
179          public:
180                 /** Construct a new modestacker.
181                  * @param add True if the stack is adding modes,
182                  * false if it is removing them
183                  */
184                 modestacker(bool add);
185                 /** Push a modeletter and its parameter onto the stack.
186                  * No checking is performed as to if this mode actually
187                  * requires a parameter. If you stack invalid mode
188                  * sequences, they will be tidied if and when they are
189                  * passed to a mode parser.
190                  * @param modeletter The mode letter to insert
191                  * @param parameter The parameter for the mode
192                  */
193                 void Push(char modeletter, const std::string &parameter);
194                 /** Push a modeletter without parameter onto the stack.
195                  * No checking is performed as to if this mode actually
196                  * requires a parameter. If you stack invalid mode
197                  * sequences, they will be tidied if and when they are
198                  * passed to a mode parser.
199                  * @param modeletter The mode letter to insert
200                  */
201                 void Push(char modeletter);
202                 /** Push a '+' symbol onto the stack.
203                  */
204                 void PushPlus();
205                 /** Push a '-' symbol onto the stack.
206                  */
207                 void PushMinus();
208                 /** Return zero or more elements which form the
209                  * mode line. This will be clamped to a max of
210                  * MAXMODES+1 items (MAXMODES mode parameters and
211                  * one mode sequence string).
212                  * @param result The deque to populate. This will
213                  * be cleared before it is used.
214                  * @return The number of elements in the deque
215                  */
216                 int GetStackedLine(std::deque<std::string> &result);
217         };
218
219         /** irc::tokenstream reads a string formatted as per RFC1459 and RFC2812.
220          * It will split the string into 'tokens' each containing one parameter
221          * from the string.
222          * For instance, if it is instantiated with the string:
223          * "PRIVMSG #test :foo bar baz qux"
224          * then each successive call to tokenstream::GetToken() will return
225          * "PRIVMSG", "#test", "foo bar baz qux", "".
226          * Note that if the whole string starts with a colon this is not taken
227          * to mean the string is all one parameter, and the first item in the
228          * list will be ":item". This is to allow for parsing 'source' fields
229          * from data.
230          */
231         class tokenstream
232         {
233          private:
234                 /** Original string
235                  */
236                 std::string tokens;
237                 /** Last position of a seperator token
238                  */
239                 std::string::iterator last_starting_position;
240                 /** Current string position
241                  */
242                 std::string::iterator n;
243                 /** True if the last value was an ending value
244                  */
245                 bool last_pushed;
246          public:
247                 /** Create a tokenstream and fill it with the provided data
248                  */
249                 tokenstream(const std::string &source);
250                 ~tokenstream();
251
252                 /** Fetch the next token from the stream
253                  * @return The next token is returned, or an empty string if none remain
254                  */
255                 const std::string GetToken();
256         };
257
258         /** irc::sepstream allows for splitting token seperated lists.
259          * Each successive call to sepstream::GetToken() returns
260          * the next token, until none remain, at which point the method returns
261          * an empty string.
262          */
263         class sepstream : public classbase
264         {
265          private:
266                 /** Original string
267                  */
268                 std::string tokens;
269                 /** Last position of a seperator token
270                  */
271                 std::string::iterator last_starting_position;
272                 /** Current string position
273                  */
274                 std::string::iterator n;
275                 /** Seperator value
276                  */
277                 char sep;
278          public:
279                 /** Create a sepstream and fill it with the provided data
280                  */
281                 sepstream(const std::string &source, char seperator);
282                 virtual ~sepstream();
283
284                 /** Fetch the next token from the stream
285                  * @return The next token is returned, or an empty string if none remain
286                  */
287                 virtual const std::string GetToken();
288         };
289
290         /** A derived form of sepstream, which seperates on commas
291          */
292         class commasepstream : public sepstream
293         {
294          public:
295                 commasepstream(const std::string &source) : sepstream(source, ',')
296                 {
297                 }
298         };
299
300         /** A derived form of sepstream, which seperates on spaces
301          */
302         class spacesepstream : public sepstream
303         {
304          public:
305                 spacesepstream(const std::string &source) : sepstream(source, ' ')
306                 {
307                 }
308         };
309
310         /** The portparser class seperates out a port range into integers.
311          * A port range may be specified in the input string in the form
312          * "6660,6661,6662-6669,7020". The end of the stream is indicated by
313          * a return value of 0 from portparser::GetToken(). If you attempt
314          * to specify an illegal range (e.g. one where start >= end, or
315          * start or end < 0) then GetToken() will return the first element
316          * of the pair of numbers.
317          */
318         class portparser : public classbase
319         {
320          private:
321                 /** Used to split on commas
322                  */
323                 commasepstream* sep;
324                 /** Current position in a range of ports
325                  */
326                 long in_range;
327                 /** Starting port in a range of ports
328                  */
329                 long range_begin;
330                 /** Ending port in a range of ports
331                  */
332                 long range_end;
333                 /** Allow overlapped port ranges
334                  */
335                 bool overlapped;
336                 /** Used to determine overlapping of ports
337                  * without O(n) algorithm being used
338                  */
339                 std::map<long, bool> overlap_set;
340                 /** Returns true if val overlaps an existing range
341                  */
342                 bool Overlaps(long val);
343          public:
344                 /** Create a portparser and fill it with the provided data
345                  * @param source The source text to parse from
346                  * @param allow_overlapped Allow overlapped ranges
347                  */
348                 portparser(const std::string &source, bool allow_overlapped = true);
349                 /** Frees the internal commasepstream object
350                  */
351                 ~portparser();
352                 /** Fetch the next token from the stream
353                  * @return The next port number is returned, or 0 if none remain
354                  */
355                 long GetToken();
356         };
357
358         /** Used to hold a bitfield definition in dynamicbitmask.
359          * You must be allocated one of these by dynamicbitmask::Allocate(),
360          * you should not fill the values yourself!
361          */
362         typedef std::pair<size_t, unsigned char> bitfield;
363
364         /** The irc::dynamicbitmask class is used to maintain a bitmap of
365          * boolean values, which can grow to any reasonable size no matter
366          * how many bitfields are in it.
367          *
368          * It starts off at 32 bits in size, large enough to hold 32 boolean
369          * values, with a memory allocation of 8 bytes. If you allocate more
370          * than 32 bits, the class will grow the bitmap by 8 bytes at a time
371          * for each set of 8 bitfields you allocate with the Allocate()
372          * method.
373          *
374          * This method is designed so that multiple modules can be allocated
375          * bit values in a bitmap dynamically, rather than having to define
376          * costs in a fixed size unsigned integer and having the possibility
377          * of collisions of values in different third party modules.
378          *
379          * IMPORTANT NOTE:
380          *
381          * To use this class, you must derive from it.
382          * This is because each derived instance has its own freebits array
383          * which can determine what bitfields are allocated on a TYPE BY TYPE
384          * basis, e.g. an irc::dynamicbitmask type for userrecs, and one for
385          * chanrecs, etc. You should inheret it in a very simple way as follows.
386          * The base class will resize and maintain freebits as required, you are
387          * just required to make the pointer static and specific to this class
388          * type.
389          *
390          * \code
391          * class mydbitmask : public irc::dynamicbitmask
392          * {
393          *  private:
394          *
395          *      static unsigned char* freebits;
396          *
397          *  public:
398          *
399          *      mydbitmask() : irc::dynamicbitmask()
400          *      {
401          *          freebits = new unsigned char[this->bits_size];
402          *          memset(freebits, 0, this->bits_size);
403          *      }
404          *
405          *      ~mydbitmask()
406          *      {
407          *          delete[] freebits;
408          *      }
409          *
410          *      unsigned char* GetFreeBits()
411          *      {
412          *          return freebits;
413          *      }
414          *
415          *      void SetFreeBits(unsigned char* freebt)
416          *      {
417          *          freebits = freebt;
418          *      }
419          * };
420          * \endcode
421          */
422         class dynamicbitmask : public classbase
423         {
424          private:
425                 /** Data bits. We start with four of these,
426                  * and we grow the bitfield as we allocate
427                  * more than 32 entries with Allocate().
428                  */
429                 unsigned char* bits;
430          protected:
431                 /** Current set size (size of freebits and bits).
432                  * Both freebits and bits will ALWAYS be the
433                  * same length.
434                  */
435                 unsigned char bits_size;
436          public:
437                 /** Allocate the initial memory for bits and
438                  * freebits and zero the memory.
439                  */
440                 dynamicbitmask();
441
442                 /** Free the memory used by bits and freebits
443                  */
444                 virtual ~dynamicbitmask();
445
446                 /** Allocate an irc::bitfield.
447                  * @return An irc::bitfield which can be used
448                  * with Get, Deallocate and Toggle methods.
449                  * @throw Can throw std::bad_alloc if there is
450                  * no ram left to grow the bitmask.
451                  */
452                 bitfield Allocate();
453
454                 /** Deallocate an irc::bitfield.
455                  * @param An irc::bitfield to deallocate.
456                  * @return True if the bitfield could be
457                  * deallocated, false if it could not.
458                  */
459                 bool Deallocate(bitfield &pos);
460
461                 /** Toggle the value of a bitfield.
462                  * @param pos A bitfield to allocate, previously
463                  * allocated by dyamicbitmask::Allocate().
464                  * @param state The state to set the field to.
465                  */
466                 void Toggle(bitfield &pos, bool state);
467
468                 /** Get the value of a bitfield.
469                  * @param pos A bitfield to retrieve, previously
470                  * allocated by dyamicbitmask::Allocate().
471                  * @return The value of the bitfield.
472                  * @throw Will throw ModuleException if the bitfield
473                  * you provide is outside of the range
474                  * 0 >= bitfield.first < size_bits.
475                  */
476                 bool Get(bitfield &pos);
477
478                 /** Return the size in bytes allocated to the bits
479                  * array.
480                  * Note that the actual allocation is twice this,
481                  * as there are an equal number of bytes allocated
482                  * for the freebits array.
483                  */
484                 unsigned char GetSize();
485
486                 virtual unsigned char* GetFreeBits() { return NULL; }
487
488                 virtual void SetFreeBits(unsigned char* freebits) { }
489         };
490
491         /** The irc_char_traits class is used for RFC-style comparison of strings.
492          * This class is used to implement irc::string, a case-insensitive, RFC-
493          * comparing string class.
494          */
495         struct irc_char_traits : std::char_traits<char> {
496
497                 /** Check if two chars match
498                  */
499                 static bool eq(char c1st, char c2nd);
500
501                 /** Check if two chars do NOT match
502                  */
503                 static bool ne(char c1st, char c2nd);
504
505                 /** Check if one char is less than another
506                  */
507                 static bool lt(char c1st, char c2nd);
508
509                 /** Compare two strings of size n
510                  */
511                 static int compare(const char* str1, const char* str2, size_t n);
512
513                 /** Find a char within a string up to position n
514                  */
515                 static const char* find(const char* s1, int  n, char c);
516         };
517
518         std::string hex(const unsigned char *raw, size_t rawsz);
519
520         /** This typedef declares irc::string based upon irc_char_traits
521          */
522         typedef basic_string<char, irc_char_traits, allocator<char> > string;
523
524         const char* Spacify(const char* n);
525 }
526
527 /* Define operators for using >> and << with irc::string to an ostream on an istream. */
528 /* This was endless fun. No. Really. */
529 /* It was also the first core change Ommeh made, if anyone cares */
530 std::ostream& operator<<(std::ostream &os, const irc::string &str);
531 std::istream& operator>>(std::istream &is, irc::string &str);
532
533 /* Define operators for + and == with irc::string to std::string for easy assignment
534  * and comparison - Brain
535  */
536 std::string operator+ (std::string& leftval, irc::string& rightval);
537 irc::string operator+ (irc::string& leftval, std::string& rightval);
538 bool operator== (std::string& leftval, irc::string& rightval);
539 bool operator== (irc::string& leftval, std::string& rightval);
540
541 std::string assign(const irc::string &other);
542 irc::string assign(const std::string &other);
543
544 namespace nspace
545 {
546         /** Hashing function to hash irc::string
547          */
548         template<> struct hash<irc::string>
549         {
550                 size_t operator()(const irc::string &s) const;
551         };
552 }
553
554 #endif