simplified dns (no self-made recursion); merge PingScheduler and PingRotate; make...
[pingcheck] / src / dns / dnscache.h
CommitLineData
96779587
CH
1/*
2 The software in this package is distributed under the GNU General
3 Public License version 2 (with a special exception described below).
4
5 A copy of GNU General Public License (GPL) is included in this distribution,
6 in the file COPYING.GPL.
7
8 As a special exception, if other files instantiate templates or use macros
9 or inline functions from this file, or you compile this file and link it
10 with other works to produce a work based on this file, this file
11 does not by itself cause the resulting work to be covered
12 by the GNU General Public License.
13
14 However the source code for this file must still be made available
15 in accordance with section (3) of the GNU General Public License.
16
17 This exception does not invalidate any other reasons why a work based
18 on this file might be covered by the GNU General Public License.
19
20 Christian Herdtweck, Intra2net AG 2015
21 */
22
23#ifndef DNS_CACHE_H
24#define DNS_CACHE_H
25
26#include <map>
27
28#include <boost/shared_ptr.hpp>
29#include <boost/asio/deadline_timer.hpp>
30#include <boost/system/error_code.hpp>
23f51766
CH
31#include <boost/archive/xml_oarchive.hpp>
32#include <boost/archive/xml_iarchive.hpp>
33#include <boost/serialization/access.hpp>
34#include <boost/serialization/nvp.hpp>
35#include <boost/serialization/split_member.hpp>
36#include <boost/serialization/string.hpp>
96779587
CH
37
38#include "host/pinger.h" // for IoserviceItem
39#include "dns/hostaddress.h"
dbe986b9 40#include "dns/timetolive.h"
96779587 41
4e7b6ff9 42typedef std::vector<HostAddress> HostAddressVec;
ad83004d 43typedef std::map<std::string, HostAddressVec> ip_map_type;
23f51766
CH
44
45// -----------------------------------------------------------------------------
46// CNAME
47// -----------------------------------------------------------------------------
48
49struct Cname
50{ // all public:
51 std::string Host;
52 TimeToLive Ttl;
53
54 Cname();
55 Cname(const std::string &host, const uint32_t ttl);
56
57 // serialization
58 friend class boost::serialization::access;
59 template<class Archive>
60 void save(Archive & ar, const unsigned int version) const
61 {
62 ar & BOOST_SERIALIZATION_NVP(Host);
63 ar & BOOST_SERIALIZATION_NVP(Ttl);
64 }
65 template<class Archive>
66 void load(Archive & ar, const unsigned int version)
67 {
68 ar & BOOST_SERIALIZATION_NVP(Host);
69 ar & BOOST_SERIALIZATION_NVP(Ttl);
70 }
71 BOOST_SERIALIZATION_SPLIT_MEMBER()
72};
dbe986b9
CH
73typedef std::map<std::string, Cname> cname_map_type;
74
96779587 75
23f51766
CH
76// -----------------------------------------------------------------------------
77// DnsCache
78// -----------------------------------------------------------------------------
79
96779587
CH
80class DnsCache
81{
82public:
83 DnsCache( const IoServiceItem &io_serv,
84 const std::string &cache_file );
85 ~DnsCache();
86
87 // accessed from ResolverBase subclasses
ad83004d 88 void update(const std::string &hostname, const HostAddressVec &new_data);
dbe986b9
CH
89 void update(const std::string &hostname, const Cname &cname);
90 void update(const std::string &hostname, const uint32_t ttl);
23f51766
CH
91
92 // retrieval
dbe986b9 93 HostAddressVec get_ips(const std::string &hostname,
23f51766
CH
94 const bool check_up_to_date=false);
95 Cname get_cname(const std::string &hostname,
96 const bool check_up_to_date=false);
dbe986b9 97 HostAddressVec get_ips_recursive(const std::string &hostname,
23f51766
CH
98 const bool check_up_to_date=false);
99 std::string get_first_outdated_cname(const std::string &hostname,
100 const uint32_t ttl_thresh);
96779587
CH
101
102// variables
103private:
ad83004d
CH
104 ip_map_type IpCache;
105 cname_map_type CnameCache;
96779587
CH
106 boost::asio::deadline_timer SaveTimer;
107 std::string CacheFile;
108 bool HasChanged;
109
23f51766 110// internal functions
96779587
CH
111private:
112 void schedule_save(const boost::system::error_code &error);
113 void save_to_cachefile();
114 void load_from_cachefile();
115
116};
117
118typedef boost::shared_ptr<DnsCache> DnsCacheItem;
119
120#endif
121
122// (created using vim -- the world's best text editor)
123