blob: aa7c8c907da15bfd0949438c901d6a0219d1e5f2 [file] [log] [blame]
Ilya Moiseenkoa1214112011-08-29 13:03:55 -07001/* -*- 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#ifndef CCNX_CONSUMER_HELPER_H
22#define CCNX_CONSUMER_HELPER_H
23
Ilya Moiseenkoa1214112011-08-29 13:03:55 -070024#include "ns3/object-factory.h"
Ilya Moiseenkoa1214112011-08-29 13:03:55 -070025#include "ns3/attribute.h"
Ilya Moiseenkoa1214112011-08-29 13:03:55 -070026#include "ns3/node-container.h"
27#include "ns3/application-container.h"
Alexander Afanasyev07827182011-12-13 01:07:32 -080028#include "ns3/ptr.h"
Ilya Moiseenkoa1214112011-08-29 13:03:55 -070029
30namespace ns3
31{
32/**
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070033 * \brief A helper to make it easier to instantiate an ns3::CcnxConsumer Application
34 * on a set of nodes.
35 */
Ilya Moiseenkoa1214112011-08-29 13:03:55 -070036
37class CcnxConsumerHelper
38{
39public:
40
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070041 /**
42 * \brief Create an CcnxConsumerHelper to make it easier to work with CcnxConsumer Apps
43 *
44 * \param prefix Prefix which will be requested by the consumer applications
45 */
46 CcnxConsumerHelper (const std::string &prefix);
Alexander Afanasyev120bf312011-12-19 01:24:47 -080047
48 /**
49 * @brief Set the prefix consumer will be requesting
50 */
51 void
52 SetPrefix (const std::string &prefix);
53
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070054 /**
55 * \brief Helper function used to set the underlying application attributes.
56 *
57 * \param name the name of the application attribute to set
58 * \param value the value of the application attribute to set
59 */
60 void SetAttribute (std::string name, const AttributeValue &value);
Ilya Moiseenkoa1214112011-08-29 13:03:55 -070061
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070062 /**
63 * Install an ns3::CcnxConsumer on each node of the input container
64 * configured with all the attributes set with SetAttribute.
65 *
66 * \param c NodeContainer of the set of nodes on which an CcnxConsumer
67 * will be installed.
68 * \returns Container of Ptr to the applications installed.
69 */
70 ApplicationContainer Install (NodeContainer c);
Ilya Moiseenkoa1214112011-08-29 13:03:55 -070071
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070072 /**
73 * Install an ns3::CcnxConsumer on the node configured with all the
74 * attributes set with SetAttribute.
75 *
76 * \param node The node on which an CcnxConsumer will be installed.
77 * \returns Container of Ptr to the applications installed.
78 */
79 ApplicationContainer Install (Ptr<Node> node);
Ilya Moiseenkoa1214112011-08-29 13:03:55 -070080
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070081 /**
82 * Install an ns3::CcnxConsumer on the node configured with all the
83 * attributes set with SetAttribute.
84 *
85 * \param nodeName The node on which an CcnxConsumer will be installed.
86 * \returns Container of Ptr to the applications installed.
87 */
88 ApplicationContainer Install (std::string nodeName);
Ilya Moiseenkoa1214112011-08-29 13:03:55 -070089
90private:
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070091 /**
92 * \internal
93 * Install an ns3::CcnxConsumer on the node configured with all the
94 * attributes set with SetAttribute.
95 *
96 * \param node The node on which an CcnxConsumer will be installed.
97 * \returns Ptr to the application installed.
98 */
99 Ptr<Application> InstallPriv (Ptr<Node> node);
100 ObjectFactory m_factory;
101};
Ilya Moiseenkoa1214112011-08-29 13:03:55 -0700102
Ilya Moiseenkoa1214112011-08-29 13:03:55 -0700103}
104
105#endif
106