blob: ccb5267a1f7d21efd42de8f8c190a7459c8f7524 [file] [log] [blame]
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2013 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 * : Saran Tarnoi <saran.tarnoi@gmail.com>
20 */
21
Alexander Afanasyev0c395372014-12-20 15:54:02 -080022#include "ndn-link-control-helper.hpp"
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -070023
24#include "ns3/assert.h"
25#include "ns3/names.h"
26#include "ns3/point-to-point-net-device.h"
27#include "ns3/point-to-point-channel.h"
28#include "ns3/channel.h"
29#include "ns3/log.h"
Alexander Afanasyev3f7dd872014-12-31 14:10:33 -080030#include "ns3/error-model.h"
31#include "ns3/string.h"
32#include "ns3/boolean.h"
33#include "ns3/double.h"
34#include "ns3/pointer.h"
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -070035
Alexander Afanasyev3f7dd872014-12-31 14:10:33 -080036#include "model/ndn-l3-protocol.hpp"
37#include "model/ndn-net-device-face.hpp"
38
39#include "fw/forwarder.hpp"
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -070040
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080041NS_LOG_COMPONENT_DEFINE("ndn.LinkControlHelper");
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -070042
43namespace ns3 {
44namespace ndn {
45
46void
Alexander Afanasyev3f7dd872014-12-31 14:10:33 -080047LinkControlHelper::setErrorRate(Ptr<Node> node1, Ptr<Node> node2, double errorRate)
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -070048{
Alexander Afanasyev3f7dd872014-12-31 14:10:33 -080049 NS_LOG_FUNCTION(node1 << node2 << errorRate);
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -070050
Alexander Afanasyev3f7dd872014-12-31 14:10:33 -080051 NS_ASSERT(node1 != nullptr && node2 != nullptr);
52 NS_ASSERT(errorRate <= 1.0);
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080053
54 Ptr<ndn::L3Protocol> ndn1 = node1->GetObject<ndn::L3Protocol>();
55 Ptr<ndn::L3Protocol> ndn2 = node2->GetObject<ndn::L3Protocol>();
56
Alexander Afanasyev3f7dd872014-12-31 14:10:33 -080057 NS_ASSERT(ndn1 != nullptr && ndn2 != nullptr);
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -070058
59 // iterate over all faces to find the right one
Alexander Afanasyev3f7dd872014-12-31 14:10:33 -080060 for (const auto& face : ndn1->getForwarder()->getFaceTable()) {
61 shared_ptr<ndn::NetDeviceFace> ndFace = std::dynamic_pointer_cast<NetDeviceFace>(face);
62 if (ndFace == nullptr)
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080063 continue;
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -070064
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080065 Ptr<PointToPointNetDevice> nd1 = ndFace->GetNetDevice()->GetObject<PointToPointNetDevice>();
Alexander Afanasyev3f7dd872014-12-31 14:10:33 -080066 if (nd1 == nullptr)
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080067 continue;
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -070068
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080069 Ptr<Channel> channel = nd1->GetChannel();
Alexander Afanasyev3f7dd872014-12-31 14:10:33 -080070 if (channel == nullptr)
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080071 continue;
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -070072
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080073 Ptr<PointToPointChannel> ppChannel = DynamicCast<PointToPointChannel>(channel);
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -070074
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080075 Ptr<NetDevice> nd2 = ppChannel->GetDevice(0);
76 if (nd2->GetNode() == node1)
77 nd2 = ppChannel->GetDevice(1);
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -070078
Alexander Afanasyev3f7dd872014-12-31 14:10:33 -080079 ObjectFactory errorFactory("ns3::RateErrorModel");
80 errorFactory.Set("ErrorUnit", StringValue("ERROR_UNIT_PACKET"));
81 errorFactory.Set("ErrorRate", DoubleValue(errorRate));
82 if (errorRate <= 0) {
83 errorFactory.Set("IsEnabled", BooleanValue(false));
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -070084 }
Alexander Afanasyev3f7dd872014-12-31 14:10:33 -080085
86 nd1->SetAttribute("ReceiveErrorModel", PointerValue(errorFactory.Create<ErrorModel>()));
87 nd2->SetAttribute("ReceiveErrorModel", PointerValue(errorFactory.Create<ErrorModel>()));
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080088 }
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -070089}
Alexander Afanasyev3f7dd872014-12-31 14:10:33 -080090
91void
92LinkControlHelper::FailLink(Ptr<Node> node1, Ptr<Node> node2)
93{
94 setErrorRate(node1, node2, 1.0);
95}
96
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -070097void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080098LinkControlHelper::FailLinkByName(const std::string& node1, const std::string& node2)
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -070099{
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800100 FailLink(Names::Find<Node>(node1), Names::Find<Node>(node2));
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -0700101}
102
103void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800104LinkControlHelper::UpLink(Ptr<Node> node1, Ptr<Node> node2)
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -0700105{
Alexander Afanasyev3f7dd872014-12-31 14:10:33 -0800106 setErrorRate(node1, node2, -0.1); // this will ensure error model is disabled
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -0700107}
108
109void
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800110LinkControlHelper::UpLinkByName(const std::string& node1, const std::string& node2)
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -0700111{
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800112 UpLink(Names::Find<Node>(node1), Names::Find<Node>(node2));
Alexander Afanasyev0fb80b92013-07-20 08:20:50 -0700113}
Alexander Afanasyev3f7dd872014-12-31 14:10:33 -0800114
115} // namespace ndn
116} // namespace ns3