123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- // 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 <exceptions/exceptions.h>
- // include this first to check the header is self-contained.
- #include <dns/rrcollator.h>
- #include <dns/name.h>
- #include <dns/rdataclass.h>
- #include <dns/rrclass.h>
- #include <dns/rrtype.h>
- #include <dns/rrttl.h>
- #include <dns/rdata.h>
- #include <dns/rrset.h>
- #include <boost/bind.hpp>
- #include <algorithm>
- namespace isc {
- namespace dns {
- using namespace rdata;
- class RRCollator::Impl {
- public:
- Impl(const AddRRsetCallback& callback) : callback_(callback) {}
- void addRR(const Name& name, const RRClass& rrclass,
- const RRType& rrtype, const RRTTL& rrttl,
- const RdataPtr& rdata);
- RRsetPtr current_rrset_;
- const AddRRsetCallback callback_;
- };
- namespace {
- inline bool
- isSameType(RRType type1, const ConstRdataPtr& rdata1,
- const ConstRRsetPtr& rrset)
- {
- if (type1 != rrset->getType()) {
- return (false);
- }
- if (type1 == RRType::RRSIG()) {
- RdataIteratorPtr rit = rrset->getRdataIterator();
- return (dynamic_cast<const generic::RRSIG&>(*rdata1).typeCovered()
- == dynamic_cast<const generic::RRSIG&>(
- rit->getCurrent()).typeCovered());
- }
- return (true);
- }
- }
- void
- RRCollator::Impl::addRR(const Name& name, const RRClass& rrclass,
- const RRType& rrtype, const RRTTL& rrttl,
- const RdataPtr& rdata)
- {
- if (current_rrset_ && (!isSameType(rrtype, rdata, current_rrset_) ||
- current_rrset_->getClass() != rrclass ||
- current_rrset_->getName() != name)) {
- callback_(current_rrset_);
- current_rrset_.reset();
- }
- if (!current_rrset_) {
- current_rrset_ = RRsetPtr(new RRset(name, rrclass, rrtype, rrttl));
- } else if (current_rrset_->getTTL() != rrttl) {
- // RRs with different TTLs are given. Smaller TTL should win.
- current_rrset_->setTTL(std::min(current_rrset_->getTTL(), rrttl));
- }
- current_rrset_->addRdata(rdata);
- }
- RRCollator::RRCollator(const AddRRsetCallback& callback) :
- impl_(new Impl(callback))
- {}
- RRCollator::~RRCollator() {
- delete impl_;
- }
- AddRRCallback
- RRCollator::getCallback() {
- return (boost::bind(&RRCollator::Impl::addRR, this->impl_,
- _1, _2, _3, _4, _5));
- }
- void
- RRCollator::flush() {
- if (impl_->current_rrset_) {
- impl_->callback_(impl_->current_rrset_);
- impl_->current_rrset_.reset();
- }
- }
- } // end namespace dns
- } // end namespace isc
|