 |
Kea
1.5.0
|
Go to the documentation of this file.
7 #ifndef MASTER_LOADER_CALLBACKS_H
8 #define MASTER_LOADER_CALLBACKS_H
13 #include <boost/function.hpp>
14 #include <boost/shared_ptr.hpp>
38 typedef boost::function<void(
const Name& name,
const RRClass& rrclass,
61 typedef boost::function<void(
const std::string& source_name,
77 if (error_.empty() || warning_.empty()) {
79 "Empty function passed as callback");
94 void error(
const std::string& source_name,
size_t source_line,
95 const std::string& reason)
const
97 error_(source_name, source_line, reason);
111 void warning(
const std::string& source_name,
size_t source_line,
112 const std::string& reason)
const
114 warning_(source_name, source_line, reason);
134 #endif // MASTER_LOADER_CALLBACKS_H
void warning(const std::string &source_name, size_t source_line, const std::string &reason) const
Call callback for potential problems.
Defines the logger used by the top-level component of kea-dhcp-ddns.
#define isc_throw(type, stream)
A shortcut macro to insert known values into exception arguments.
Set of issue callbacks for a loader.
A generic exception that is thrown if a parameter given to a method or function is considered invalid...
The Name class encapsulates DNS names.
static MasterLoaderCallbacks getNullCallbacks()
Return a callbacks instance with null callbacks.
boost::function< void(const Name &name, const RRClass &rrclass, const RRType &rrtype, const RRTTL &rrttl, const rdata::RdataPtr &rdata)> AddRRCallback
Type of callback to add a RR.
The RRTTL class encapsulates TTLs used in DNS resource records.
boost::function< void(const std::string &source_name, size_t source_line, const std::string &reason)> IssueCallback
Type of one callback to report problems.
boost::shared_ptr< Rdata > RdataPtr
The RdataPtr type is a pointer-like type, pointing to an object of some concrete derived class of Rda...
The RRType class encapsulates DNS resource record types.
void error(const std::string &source_name, size_t source_line, const std::string &reason) const
Call callback for serious errors.
The RRClass class encapsulates DNS resource record classes.
MasterLoaderCallbacks(const IssueCallback &error, const IssueCallback &warning)
Constructor.