blob: 1bf4b5948f9459219cc955b86dcf29d5f85a34ef [file] [log] [blame]
Alexander Afanasyevad3757f2012-04-17 10:27:59 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2011 UCLA
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#ifndef CCNX_GLOBAL_ROUTING_HELPER_H
22#define CCNX_GLOBAL_ROUTING_HELPER_H
23
24#include "ns3/ptr.h"
25
26namespace ns3 {
27
28class Node;
Alexander Afanasyevce810142012-04-17 15:50:36 -070029class NodeContainer;
Alexander Afanasyevad3757f2012-04-17 10:27:59 -070030class Channel;
31
Alexander Afanasyevce810142012-04-17 15:50:36 -070032/**
33 * @ingroup ccnx
34 * @brief Helper for CcnxGlobalRouter interface
35 */
Alexander Afanasyevad3757f2012-04-17 10:27:59 -070036class CcnxGlobalRoutingHelper
37{
38public:
Alexander Afanasyevce810142012-04-17 15:50:36 -070039 /**
40 * @brief Install CcnxGlobalRouter interface on a node
41 *
42 * Note that CcnxGlobalRouter will also be installed on all connected nodes and channels
43 *
44 * @param node Node to install CcnxGlobalRouter interface
45 */
Alexander Afanasyevad3757f2012-04-17 10:27:59 -070046 void
47 Install (Ptr<Node> node);
Alexander Afanasyevad3757f2012-04-17 10:27:59 -070048
Alexander Afanasyevce810142012-04-17 15:50:36 -070049
50 /**
51 * @brief Install CcnxGlobalRouter interface on nodes
52 *
53 * Note that CcnxGlobalRouter will also be installed on all connected nodes and channels
54 *
55 * @param nodes NodeContainer to install CcnxGlobalRouter interface
56 */
57 void
58 Install (const NodeContainer &nodes);
59
60 /**
61 * @brief Install CcnxGlobalRouter interface on all nodes
62 */
63 void
64 InstallAll ();
65
66 /**
67 * @brief Add `prefix' as origin on `node'
68 * @param prefix Prefix that is originated by node, e.g., node is a producer for this prefix
69 * @param node Pointer to a node
70 */
Alexander Afanasyevad3757f2012-04-17 10:27:59 -070071 void
72 AddOrigin (const std::string &prefix, Ptr<Node> node);
73
Alexander Afanasyevce810142012-04-17 15:50:36 -070074 /**
Alexander Afanasyev06d3a612012-04-17 22:25:40 -070075 * @brief Add `prefix' as origin on all `nodes'
76 * @param prefix Prefix that is originated by nodes
77 * @param nodes NodeContainer
78 */
79 void
80 AddOrigins (const std::string &prefix, const NodeContainer &nodes);
81
82 /**
Alexander Afanasyevce810142012-04-17 15:50:36 -070083 * @brief Add `prefix' as origin on node `nodeName'
84 * @param prefix Prefix that is originated by node, e.g., node is a producer for this prefix
85 * @param nodeName Name of the node that is associated with Ptr<Node> using ns3::Names
86 */
Alexander Afanasyevad3757f2012-04-17 10:27:59 -070087 void
88 AddOrigin (const std::string &prefix, const std::string &nodeName);
89
Alexander Afanasyevce810142012-04-17 15:50:36 -070090 /**
91 * @brief Calculate for every node shortest path trees and install routes to all prefix origins
92 */
Alexander Afanasyevad3757f2012-04-17 10:27:59 -070093 void
94 CalculateRoutes ();
Alexander Afanasyevce810142012-04-17 15:50:36 -070095
96private:
97 void
98 Install (Ptr<Channel> channel);
Alexander Afanasyevad3757f2012-04-17 10:27:59 -070099};
100
101}
102
103#endif // CCNX_GLOBAL_ROUTING_HELPER_H