blob: 67030d10c272116c57efd13ecfa77cbe9936a294 [file] [log] [blame]
Alexander Afanasyevc3cc0b32012-12-12 18:41:20 -08001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2011 University of California, Los Angeles
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
18 * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
19 */
20
21#include "content-store-with-freshness.h"
22
23#include "../../utils/trie/random-policy.h"
24#include "../../utils/trie/lru-policy.h"
25#include "../../utils/trie/fifo-policy.h"
26
27#define NS_OBJECT_ENSURE_REGISTERED_TEMPL(type, templ) \
28 static struct X ## type ## templ ## RegistrationClass \
29 { \
30 X ## type ## templ ## RegistrationClass () { \
31 ns3::TypeId tid = type<templ>::GetTypeId (); \
32 tid.GetParent (); \
33 } \
34 } x_ ## type ## templ ## RegistrationVariable
35
36namespace ns3 {
37namespace ndn {
38
39using namespace ndnSIM;
40
41namespace cs {
42
43// explicit instantiation and registering
44/**
45 * @brief ContentStore with freshness and LRU cache replacement policy
46 **/
47template class ContentStoreWithFreshness<lru_policy_traits>;
48
49/**
50 * @brief ContentStore with freshness and random cache replacement policy
51 **/
52template class ContentStoreWithFreshness<random_policy_traits>;
53
54/**
55 * @brief ContentStore with freshness and FIFO cache replacement policy
56 **/
57template class ContentStoreWithFreshness<fifo_policy_traits>;
58
59NS_OBJECT_ENSURE_REGISTERED_TEMPL(ContentStoreWithFreshness, lru_policy_traits);
60NS_OBJECT_ENSURE_REGISTERED_TEMPL(ContentStoreWithFreshness, random_policy_traits);
61NS_OBJECT_ENSURE_REGISTERED_TEMPL(ContentStoreWithFreshness, fifo_policy_traits);
62
63
64#ifdef DOXYGEN
65// /**
66// * \brief Content Store with freshness implementing LRU cache replacement policy
67// */
68class Freshness::Lru : public ContentStoreWithFreshness<lru_policy_traits> { };
69
70/**
71 * \brief Content Store with freshness implementing FIFO cache replacement policy
72 */
73class Freshness::Fifo : public ContentStoreWithFreshness<fifo_policy_traits> { };
74
75/**
76 * \brief Content Store with freshness implementing Random cache replacement policy
77 */
78class Freshness::Random : public ContentStoreWithFreshness<random_policy_traits> { };
79
80#endif
81
82
83} // namespace cs
84} // namespace ndn
85} // namespace ns3