merged PingRotate into PingScheduler; fixed save/load of cache to/from file; started...
[pingcheck] / src / dns / resolverbase.cpp
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 #include "dns/resolverbase.h"
24 #include "dns/dnsmaster.h"
25
26 #include <boost/bind.hpp>
27
28
29 ResolverBase::~ResolverBase()
30 { }
31
32 /**
33  * callbacks should be of type
34  * void resolve_callback(const bool was_success,
35  *                       const int cname_count)
36  */
37 void ResolverBase::async_resolve(const callback_type &callback)
38 {
39     // remember callback
40     CallbackList.push(callback);
41
42     // let subclass do the resolving
43     do_resolve();
44 }
45
46 ResolverBase::ResolverBase(const IoServiceItem &io_serv,
47              const std::string &hostname,
48              const DnsCacheItem &cache )
49     : IoService( io_serv )
50     , Hostname( hostname )
51     , Cache( cache )
52     , CallbackList()
53 {}
54
55 std::string ResolverBase::get_hostname() const
56 {   return Hostname;   }
57
58 std::string ResolverBase::get_skip_cname() const
59 {
60     DnsMasterItem master = DnsMaster::get_instance();
61     std::string first_out_of_date = Cache->get_first_outdated_cname(
62                                       Hostname,
63                                       master->get_resolved_ip_ttl_threshold() );
64     if ( first_out_of_date == Hostname )
65         return "";
66     else
67         // we want to skip this first outdated cname, so return what is 
68         // directly behind it.
69         // If that is not a cname but ips, will return empty here
70         return Cache->get_cname(first_out_of_date).Host;
71 }
72
73 void ResolverBase::update_cache( const std::string &hostname,
74                                  const HostAddressVec &new_ips ) const
75 {   Cache->update( hostname, new_ips );  }
76
77 void ResolverBase::update_cache( const std::string &hostname,
78                                  const Cname &cname ) const
79 {   Cache->update( hostname, cname );  }
80
81 void ResolverBase::update_cache( const HostAddressVec &new_ips ) const
82 {   Cache->update( Hostname, new_ips );  }
83
84 void ResolverBase::update_cache( const Cname &cname ) const
85 {   Cache->update( Hostname, cname );  }
86
87
88 HostAddressVec ResolverBase::get_cached_ips_recursively(const std::string host,
89                                                     bool check_up_to_date) const
90 {
91     if (host.empty())
92         return Cache->get_ips_recursive(Hostname, check_up_to_date);
93     else
94         return Cache->get_ips_recursive(host, check_up_to_date);
95 }
96
97 void ResolverBase::schedule_callbacks(const bool was_success,
98                                       const int cname_count)
99 {
100     while ( !CallbackList.empty() )
101     {
102         callback_type callback = CallbackList.front();
103         CallbackList.pop();
104         IoService->post( boost::bind( callback,
105                                       was_success, cname_count ) );
106     }
107 }
108
109 // (created using vim -- the world's best text editor)
110