blob: eabe12de031eab148c4461392ad4906987498349 [file] [log] [blame]
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2011-2015 Regents of the University of California.
Alexander Afanasyevcd31abd2013-09-05 20:45:02 -07004 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08005 * This file is part of ndnSIM. See AUTHORS for complete list of ndnSIM authors and
6 * contributors.
Alexander Afanasyevcd31abd2013-09-05 20:45:02 -07007 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08008 * ndnSIM is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation,
10 * either version 3 of the License, or (at your option) any later version.
Alexander Afanasyevcd31abd2013-09-05 20:45:02 -070011 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -080012 * ndnSIM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
Alexander Afanasyevcd31abd2013-09-05 20:45:02 -070015 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -080016 * You should have received a copy of the GNU General Public License along with
17 * ndnSIM, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 **/
Alexander Afanasyevcd31abd2013-09-05 20:45:02 -070019
20#ifndef NDN_CONTENT_STORE_WITH_PROBABILITY_H_
21#define NDN_CONTENT_STORE_WITH_PROBABILITY_H_
22
Spyridon Mastorakis53e922f2014-10-17 17:29:26 -070023#include "ns3/ndnSIM/model/ndn-common.hpp"
Alexander Afanasyevcd31abd2013-09-05 20:45:02 -070024
Alexander Afanasyev0c395372014-12-20 15:54:02 -080025#include "content-store-impl.hpp"
26
27#include "../../utils/trie/multi-policy.hpp"
28#include "custom-policies/probability-policy.hpp"
Alexander Afanasyevcd31abd2013-09-05 20:45:02 -070029#include "ns3/double.h"
30#include "ns3/type-id.h"
31
32namespace ns3 {
33namespace ndn {
34namespace cs {
35
36/**
37 * @ingroup ndn-cs
38 * @brief Special content store realization that honors Freshness parameter in Data packets
39 */
40template<class Policy>
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080041class ContentStoreWithProbability
42 : public ContentStoreImpl<ndnSIM::multi_policy_traits<boost::mpl::
43 vector2<ndnSIM::probability_policy_traits,
44 Policy>>> {
Alexander Afanasyevcd31abd2013-09-05 20:45:02 -070045public:
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080046 typedef ContentStoreImpl<ndnSIM::multi_policy_traits<boost::mpl::
47 vector2<ndnSIM::probability_policy_traits,
48 Policy>>> super;
Alexander Afanasyevcd31abd2013-09-05 20:45:02 -070049
50 typedef typename super::policy_container::template index<0>::type probability_policy_container;
51
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080052 ContentStoreWithProbability(){};
Alexander Afanasyevcd31abd2013-09-05 20:45:02 -070053
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080054 static TypeId
55 GetTypeId();
56
57private:
58 void
59 SetCacheProbability(double probability)
Alexander Afanasyevcd31abd2013-09-05 20:45:02 -070060 {
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080061 this->getPolicy().template get<probability_policy_container>().set_probability(probability);
Alexander Afanasyevcd31abd2013-09-05 20:45:02 -070062 }
63
64 double
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080065 GetCacheProbability() const
Alexander Afanasyevcd31abd2013-09-05 20:45:02 -070066 {
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080067 return this->getPolicy().template get<probability_policy_container>().get_probability();
Alexander Afanasyevcd31abd2013-09-05 20:45:02 -070068 }
69};
70
71//////////////////////////////////////////
72////////// Implementation ////////////////
73//////////////////////////////////////////
74
75template<class Policy>
76TypeId
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080077ContentStoreWithProbability<Policy>::GetTypeId()
Alexander Afanasyevcd31abd2013-09-05 20:45:02 -070078{
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080079 static TypeId tid =
80 TypeId(("ns3::ndn::cs::Probability::" + Policy::GetName()).c_str())
81 .SetGroupName("Ndn")
82 .SetParent<super>()
83 .template AddConstructor<ContentStoreWithProbability<Policy>>()
Alexander Afanasyevcd31abd2013-09-05 20:45:02 -070084
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080085 .AddAttribute("CacheProbability",
86 "Set probability of caching in ContentStore. "
87 "If 1, every content is cached. If 0, no content is cached.",
88 DoubleValue(1.0), //(+)
89 MakeDoubleAccessor(&ContentStoreWithProbability<Policy>::GetCacheProbability,
90 &ContentStoreWithProbability<Policy>::SetCacheProbability),
91 MakeDoubleChecker<double>());
Alexander Afanasyevcd31abd2013-09-05 20:45:02 -070092
93 return tid;
94}
95
Alexander Afanasyevcd31abd2013-09-05 20:45:02 -070096} // namespace cs
97} // namespace ndn
98} // namespace ns3
99
100#endif // NDN_CONTENT_STORE_WITH_PROBABILITY_H_