2010-12-27 10:45:41 +00:00
|
|
|
// Copyright (C) 2010 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.
|
|
|
|
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
#include <nsas/nsas_entry_compare.h>
|
|
|
|
#include <nsas/hash_table.h>
|
|
|
|
#include <nsas/hash_deleter.h>
|
2010-12-28 08:50:44 +00:00
|
|
|
#include "message_cache.h"
|
|
|
|
#include "cache_entry_key.h"
|
2010-12-27 10:45:41 +00:00
|
|
|
|
|
|
|
using namespace isc::nsas;
|
2010-12-28 08:50:44 +00:00
|
|
|
using namespace isc::dns;
|
2011-01-19 19:42:59 +08:00
|
|
|
using namespace std;
|
2010-12-27 10:45:41 +00:00
|
|
|
|
|
|
|
namespace isc {
|
|
|
|
namespace cache {
|
|
|
|
|
|
|
|
MessageCache::MessageCache(boost::shared_ptr<RRsetCache> rrset_cache,
|
2010-12-28 08:50:44 +00:00
|
|
|
uint32_t cache_size, uint16_t message_class):
|
|
|
|
message_class_(message_class),
|
2010-12-27 10:45:41 +00:00
|
|
|
rrset_cache_(rrset_cache),
|
|
|
|
message_table_(new NsasEntryCompare<MessageEntry>, cache_size),
|
|
|
|
message_lru_((3 * cache_size),
|
|
|
|
new HashDeleter<MessageEntry>(message_table_))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2010-12-28 08:50:44 +00:00
|
|
|
MessageCache::lookup(const isc::dns::Name& qname,
|
|
|
|
const isc::dns::RRType& qtype,
|
|
|
|
isc::dns::Message& response)
|
2010-12-27 10:45:41 +00:00
|
|
|
{
|
2011-01-07 10:03:17 +08:00
|
|
|
std::string entry_name = genCacheEntryName(qname, qtype);
|
|
|
|
HashKey entry_key = HashKey(entry_name, RRClass(message_class_));
|
2010-12-31 10:58:34 +00:00
|
|
|
MessageEntryPtr msg_entry = message_table_.get(entry_key);
|
2010-12-28 08:50:44 +00:00
|
|
|
if(msg_entry) {
|
2011-01-05 06:55:52 +00:00
|
|
|
message_lru_.touch(msg_entry);
|
|
|
|
return msg_entry->genMessage(time(NULL), response);
|
2010-12-28 08:50:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2010-12-27 10:45:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2010-12-31 10:58:34 +00:00
|
|
|
MessageCache::update(const Message& msg) {
|
|
|
|
QuestionIterator iter = msg.beginQuestion();
|
2011-01-07 10:03:17 +08:00
|
|
|
std::string entry_name = genCacheEntryName((*iter)->getName(), (*iter)->getType());
|
|
|
|
HashKey entry_key = HashKey(entry_name, RRClass(message_class_));
|
2011-01-05 06:55:52 +00:00
|
|
|
|
|
|
|
// The simplest way to update is removing the old message entry directly.
|
|
|
|
// We have find the existed message entry, since we need to delete it
|
|
|
|
// from lru list too.
|
2011-01-07 10:03:17 +08:00
|
|
|
// TODO, but there should be a better way, since we here have to remove and
|
|
|
|
// add the message entry, maybe there is one way to touch it once.
|
2011-01-05 06:55:52 +00:00
|
|
|
MessageEntryPtr old_msg_entry = message_table_.get(entry_key);
|
|
|
|
if (old_msg_entry) {
|
|
|
|
message_table_.remove(entry_key);
|
|
|
|
message_lru_.remove(old_msg_entry);
|
|
|
|
}
|
|
|
|
|
2010-12-31 10:58:34 +00:00
|
|
|
MessageEntryPtr msg_entry(new MessageEntry(msg, rrset_cache_));
|
2011-01-19 19:42:59 +08:00
|
|
|
message_lru_.add(msg_entry);
|
2011-01-07 10:03:17 +08:00
|
|
|
return message_table_.add(msg_entry, entry_key, true);
|
2010-12-27 10:45:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MessageCache::dump(const std::string&) {
|
2010-12-31 10:58:34 +00:00
|
|
|
//TODO
|
2010-12-27 10:45:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
MessageCache::load(const std::string&) {
|
2010-12-31 10:58:34 +00:00
|
|
|
//TODO
|
2010-12-27 10:45:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
MessageCache::resize(uint32_t) {
|
2010-12-31 10:58:34 +00:00
|
|
|
//TODO
|
2010-12-27 10:45:41 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace cache
|
|
|
|
} // namespace isc
|
|
|
|
|