blob: 1aa50b02b8ef4153d64376b85c64a123a9a11f9d [file] [log] [blame]
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -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 *
Alexander Afanasyev996b4872012-07-17 17:07:56 -070018 * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
19 * Ilya Moiseenko <iliamo@cs.ucla.edu>
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070020 */
21
Alexander Afanasyev996b4872012-07-17 17:07:56 -070022#ifndef NDNSIM_FLOODING_H
23#define NDNSIM_FLOODING_H
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070024
Alexander Afanasyev996b4872012-07-17 17:07:56 -070025#include "nacks.h"
Alexander Afanasyev042b4a72012-11-09 17:47:48 -080026#include "ns3/log.h"
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070027
Alexander Afanasyev996b4872012-07-17 17:07:56 -070028namespace ns3 {
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070029namespace ndn {
30namespace fw {
Alexander Afanasyev996b4872012-07-17 17:07:56 -070031
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070032/**
Alexander Afanasyev79206512013-07-27 16:49:12 -070033 * @ingroup ndn-fw
34 * @brief Simple flooding strategy
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080035 *
Alexander Afanasyev79206512013-07-27 16:49:12 -070036 * Interests will be forwarded to all available faces available for a route (FIB entry).
37 * If there are no available GREEN or YELLOW faces, interests is dropped.
38 *
39 * Usage example:
40 * @code
41 * ndnHelper.SetForwardingStrategy ("ns3::ndn::fw::Flooding");
42 * ...
43 * ndnHelper.Install (nodes);
44 * @endcode
Alexander Afanasyev4fa5e842011-11-21 13:38:39 -080045 */
Alexander Afanasyev996b4872012-07-17 17:07:56 -070046class Flooding :
47 public Nacks
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070048{
Alexander Afanasyev042b4a72012-11-09 17:47:48 -080049private:
50 typedef Nacks super;
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080051
Alexander Afanasyev042b4a72012-11-09 17:47:48 -080052public:
53 static TypeId
54 GetTypeId ();
55
56 /**
57 * @brief Helper function to retrieve logging name for the forwarding strategy
58 */
59 static std::string
60 GetLogName ();
61
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080062 /**
63 * @brief Default constructor
64 */
Alexander Afanasyev996b4872012-07-17 17:07:56 -070065 Flooding ();
Alexander Afanasyev4fa5e842011-11-21 13:38:39 -080066
Alexander Afanasyev996b4872012-07-17 17:07:56 -070067protected:
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070068 // inherited from Nacks/ForwardingStrategy
Alexander Afanasyev4fa5e842011-11-21 13:38:39 -080069 virtual bool
Alexander Afanasyev31cb4692012-08-17 13:08:20 -070070 DoPropagateInterest (Ptr<Face> inFace,
Alexander Afanasyevb989b122013-07-10 17:15:46 -070071 Ptr<const Interest> interest,
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070072 Ptr<pit::Entry> pitEntry);
Alexander Afanasyevbed75692012-04-06 13:01:25 -070073
Alexander Afanasyev042b4a72012-11-09 17:47:48 -080074protected:
75 static LogComponent g_log;
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070076};
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070077
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070078} // namespace fw
79} // namespace ndn
Alexander Afanasyev996b4872012-07-17 17:07:56 -070080} // namespace ns3
81
82#endif // NDNSIM_FLOODING