]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_ircv3_servertime.cpp
Implement support for millisecond level server-time accuracy.
[user/henk/code/inspircd.git] / src / modules / m_ircv3_servertime.cpp
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 #include "inspircd.h"
21 #include "modules/ircv3.h"
22 #include "modules/ircv3_servertime.h"
23
24 class ServerTimeTag : public IRCv3::ServerTime::Manager, public IRCv3::CapTag<ServerTimeTag>
25 {
26         time_t lasttime;
27         long lasttimens;
28         std::string lasttimestring;
29
30         void RefreshTimeString()
31         {
32                 const time_t currtime = ServerInstance->Time();
33                 const long currtimens = ServerInstance->Time_ns();
34                 if (currtime != lasttime || currtimens != lasttimens)
35                 {
36                         lasttime = currtime;
37                         lasttimens = currtimens;
38
39                         // Cache the string so it's not recreated every time a message is sent.
40                         lasttimestring = IRCv3::ServerTime::FormatTime(currtime, (currtimens ? currtimens / 1000000 : 0));
41                 }
42         }
43
44  public:
45         ServerTimeTag(Module* mod)
46                 : IRCv3::ServerTime::Manager(mod)
47                 , IRCv3::CapTag<ServerTimeTag>(mod, "server-time", "time")
48                 , lasttime(0)
49                 , lasttimens(0)
50         {
51                 tagprov = this;
52         }
53
54         const std::string* GetValue(const ClientProtocol::Message& msg)
55         {
56                 RefreshTimeString();
57                 return &lasttimestring;
58         }
59 };
60
61 class ModuleIRCv3ServerTime : public Module
62 {
63         ServerTimeTag tag;
64
65  public:
66         ModuleIRCv3ServerTime()
67                 : tag(this)
68         {
69         }
70
71         Version GetVersion() CXX11_OVERRIDE
72         {
73                 return Version("Provides the server-time IRCv3 extension", VF_VENDOR);
74         }
75 };
76
77 MODULE_INIT(ModuleIRCv3ServerTime)