Ilya Moiseenko | a121411 | 2011-08-29 13:03:55 -0700 | [diff] [blame] | 1 | /* -*- 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: Ilya Moiseenko <iliamo@cs.ucla.edu> |
| 19 | */ |
| 20 | |
| 21 | #include "ccnx-consumer-helper.h" |
Ilya Moiseenko | 25f7d4d | 2011-09-29 18:41:06 -0700 | [diff] [blame] | 22 | |
| 23 | NS_LOG_COMPONENT_DEFINE ("CcnxConsumerHelper"); |
Ilya Moiseenko | a121411 | 2011-08-29 13:03:55 -0700 | [diff] [blame] | 24 | |
| 25 | namespace ns3 |
| 26 | { |
| 27 | |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 28 | CcnxConsumerHelper::CcnxConsumerHelper (const std::string &prefix) |
Ilya Moiseenko | a121411 | 2011-08-29 13:03:55 -0700 | [diff] [blame] | 29 | { |
| 30 | m_factory.SetTypeId ("ns3::CcnxConsumer"); |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 31 | |
| 32 | CcnxNameComponentsValue prefixValue; |
| 33 | prefixValue.DeserializeFromString (prefix, MakeCcnxNameComponentsChecker ()); |
| 34 | m_factory.Set ("InterestName", prefixValue); |
Ilya Moiseenko | a121411 | 2011-08-29 13:03:55 -0700 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | void |
| 38 | CcnxConsumerHelper::SetAttribute (std::string name, const AttributeValue &value) |
| 39 | { |
| 40 | m_factory.Set (name, value); |
| 41 | } |
| 42 | |
| 43 | ApplicationContainer |
| 44 | CcnxConsumerHelper::Install (Ptr<Node> node) |
| 45 | { |
| 46 | return ApplicationContainer (InstallPriv (node)); |
| 47 | } |
| 48 | |
| 49 | ApplicationContainer |
| 50 | CcnxConsumerHelper::Install (std::string nodeName) |
| 51 | { |
| 52 | Ptr<Node> node = Names::Find<Node> (nodeName); |
| 53 | return ApplicationContainer (InstallPriv (node)); |
| 54 | } |
| 55 | |
| 56 | ApplicationContainer |
| 57 | CcnxConsumerHelper::Install (NodeContainer c) |
| 58 | { |
| 59 | ApplicationContainer apps; |
| 60 | for (NodeContainer::Iterator i = c.Begin (); i != c.End (); ++i) |
| 61 | { |
| 62 | apps.Add (InstallPriv (*i)); |
| 63 | } |
| 64 | |
| 65 | return apps; |
| 66 | } |
| 67 | |
| 68 | Ptr<Application> |
| 69 | CcnxConsumerHelper::InstallPriv (Ptr<Node> node) |
| 70 | { |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 71 | Ptr<CcnxConsumer> app = m_factory.Create<CcnxConsumer> (); |
Ilya Moiseenko | a121411 | 2011-08-29 13:03:55 -0700 | [diff] [blame] | 72 | node->AddApplication (app); |
| 73 | |
| 74 | return app; |
| 75 | } |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 76 | |
Alexander Afanasyev | 152cf11 | 2011-08-29 17:58:32 -0700 | [diff] [blame] | 77 | } |