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