// Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC") // // Permission to use, copy, modify, and/or distribute this software for any // purpose with or without fee is hereby granted, provided that the above // copyright notice and this permission notice appear in all copies. // // THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY // AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR // PERFORMANCE OF THIS SOFTWARE. #include #include #include #include #include #include #include #include namespace isc { namespace datasrc { namespace { void logError(const isc::dns::Name& name, const isc::dns::RRClass& rrclass, bool* ok, const std::string& source, size_t line, const std::string& reason) { LOG_ERROR(logger, DATASRC_MASTER_LOAD_ERROR).arg(source).arg(line). arg(name).arg(rrclass).arg(reason); if (ok != NULL) { *ok = false; } } void logWarning(const isc::dns::Name& name, const isc::dns::RRClass& rrclass, const std::string& source, size_t line, const std::string& reason) { LOG_WARN(logger, DATASRC_MASTER_LOAD_WARN).arg(source).arg(line). arg(name).arg(rrclass).arg(reason); } void addRR(const isc::dns::Name& name, const isc::dns::RRClass& rrclass, const isc::dns::RRType& type, const isc::dns::RRTTL& ttl, const isc::dns::rdata::RdataPtr& data, ZoneUpdater* updater) { // We get description of one RR. The updater takes RRset, so we // wrap it up and push there. It should collate the RRsets of the // same name and type together, since the addRRset should "merge". isc::dns::BasicRRset rrset(name, rrclass, type, ttl); rrset.addRdata(data); updater->addRRset(rrset); } } isc::dns::MasterLoaderCallbacks createMasterLoaderCallbacks(const isc::dns::Name& name, const isc::dns::RRClass& rrclass, bool* ok) { return (isc::dns::MasterLoaderCallbacks(boost::bind(&logError, name, rrclass, ok, _1, _2, _3), boost::bind(&logWarning, name, rrclass, _1, _2, _3))); } isc::dns::AddRRCallback createMasterLoaderAddCallback(ZoneUpdater& updater) { return (boost::bind(addRR, _1, _2, _3, _4, _5, &updater)); } } }