continue implementation; first tests with recursion returned IPs but then added cance...
[pingcheck] / src / dns / resolverbase.cpp
CommitLineData
4e7b6ff9
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
c5b4902d
CH
23#include "dns/resolverbase.h"
24#include "dns/dnsmaster.h"
4e7b6ff9
CH
25
26#include <boost/bind.hpp>
27
c5b4902d 28
4e7b6ff9 29ResolverBase::~ResolverBase()
c5b4902d 30{ }
4e7b6ff9
CH
31
32/**
33 * callbacks should be of type
34 * void resolve_callback(const bool was_success,
35 * const int cname_count)
36 */
37void 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
46ResolverBase::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
e18c1337
CH
55void ResolverBase::update_cache( const std::string &hostname,
56 const HostAddressVec &new_results ) const
57{ Cache->update( hostname, new_results ); }
58
59void ResolverBase::update_cache( const std::string &hostname,
60 const std::string &cname ) const
61{ Cache->update( hostname, cname ); }
62
4e7b6ff9
CH
63void ResolverBase::update_cache( const HostAddressVec &new_results ) const
64{ Cache->update( Hostname, new_results ); }
65
ad83004d
CH
66void ResolverBase::update_cache( const std::string &cname ) const
67{ Cache->update( Hostname, cname ); }
68
69void ResolverBase::update_cache_ttl( const uint32_t ttl ) const
70{ Cache->update_ttl( Hostname, ttl ); }
71
e18c1337
CH
72HostAddressVec& ResolverBase::get_cached_ips_recursively(const std::string host)
73 const
4e7b6ff9
CH
74{
75 if (host.empty())
e18c1337 76 return Cache->get_ips_recursive(Hostname);
4e7b6ff9 77 else
e18c1337 78 return Cache->get_ips_recursive(host);
4e7b6ff9
CH
79}
80
81void ResolverBase::schedule_callbacks(const bool was_success,
82 const int cname_count)
83{
84 while ( !CallbackList.empty() )
85 {
86 callback_type callback = CallbackList.front();
87 CallbackList.pop();
88 IoService->post( boost::bind( callback,
89 was_success, cname_count ) );
90 }
91}
92
93// (created using vim -- the world's best text editor)
94