]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/numeric.h
Add Numeric::Numeric
[user/henk/code/inspircd.git] / include / numeric.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2016 Attila Molnar <attilamolnar@hush.com>
5  *
6  * This file is part of InspIRCd.  InspIRCd is free software: you can
7  * redistribute it and/or modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation, version 2.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13  * details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19
20 #pragma once
21
22 #include "numerics.h"
23
24 namespace Numeric
25 {
26         class Numeric;
27 }
28
29 class Numeric::Numeric
30 {
31         /** Numeric number
32          */
33         unsigned int numeric;
34
35         /** Parameters of the numeric
36          */
37         std::vector<std::string> params;
38
39  public:
40         /** Constructor
41          * @param num Numeric number (RPL_*, ERR_*)
42          */
43         Numeric(unsigned int num)
44                 : numeric(num)
45         {
46         }
47
48         /** Add a parameter to the numeric. The parameter will be converted to a string first with ConvToStr().
49          * @param x Parameter to add
50          */
51         template <typename T>
52         Numeric& push(const T& x)
53         {
54                 params.push_back(ConvToStr(x));
55                 return *this;
56         }
57
58         /** Get the number of the numeric as an unsigned integer
59          * @return Numeric number as an unsigned integer
60          */
61         unsigned int GetNumeric() const { return numeric; }
62
63         /** Get the parameters of the numeric
64          * @return Parameters of the numeric as a const vector of strings
65          */
66         const std::vector<std::string>& GetParams() const { return params; }
67
68         /** Get the parameters of the numeric
69          * @return Parameters of the numeric as a vector of strings
70          */
71         std::vector<std::string>& GetParams() { return params; }
72 };
73
74 namespace Numerics
75 {
76         /** ERR_NOSUCHNICK numeric
77          */
78         class NoSuchNick : public Numeric::Numeric
79         {
80          public:
81                 NoSuchNick(const std::string& nick)
82                         : Numeric(ERR_NOSUCHNICK)
83                 {
84                         push(nick);
85                         push("No such nick/channel");
86                 }
87         };
88 }