From e1fed0648f76d4ecfab71745104874a0e4238656 Mon Sep 17 00:00:00 2001 From: Richard Whitehouse Date: Tue, 25 Jan 2011 04:12:25 +0000 Subject: [PATCH] Created helper class based on ns3::BridgeHelper to create MOOSE Bridges. --- .../bridge/helper/moose-bridge-helper.cc | 72 ++++++++++++++++ .../bridge/helper/moose-bridge-helper.h | 84 +++++++++++++++++++ 2 files changed, 156 insertions(+) create mode 100644 code/src/devices/bridge/helper/moose-bridge-helper.cc create mode 100644 code/src/devices/bridge/helper/moose-bridge-helper.h diff --git a/code/src/devices/bridge/helper/moose-bridge-helper.cc b/code/src/devices/bridge/helper/moose-bridge-helper.cc new file mode 100644 index 0000000..c2abb44 --- /dev/null +++ b/code/src/devices/bridge/helper/moose-bridge-helper.cc @@ -0,0 +1,72 @@ +/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ +/* + * Copyright (c) + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation; + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * Author: Richard Whitehouse node, NetDeviceContainer c) +{ + NS_LOG_FUNCTION_NOARGS (); + NS_LOG_LOGIC ("**** Install MOOSE bridge device on node " << node->GetId ()); + + NetDeviceContainer devs; + Ptr dev = m_deviceFactory.Create (); + devs.Add (dev); + node->AddDevice (dev); + + for (NetDeviceContainer::Iterator i = c.Begin (); i != c.End (); ++i) + { + NS_LOG_LOGIC ("**** Add MooseBridgePort "<< *i); + dev->AddBridgePort (*i); + } + return devs; +} + +NetDeviceContainer +MooseBridgeHelper::Install (std::string nodeName, NetDeviceContainer c) +{ + NS_LOG_FUNCTION_NOARGS (); + Ptr node = Names::Find (nodeName); + return Install (node, c); +} + +} // namespace ns3 + diff --git a/code/src/devices/bridge/helper/moose-bridge-helper.h b/code/src/devices/bridge/helper/moose-bridge-helper.h new file mode 100644 index 0000000..731f5e8 --- /dev/null +++ b/code/src/devices/bridge/helper/moose-bridge-helper.h @@ -0,0 +1,84 @@ +/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ +/* + * Copyright (c) 2008 INRIA + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation; + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * Author: Richard Whitehouse + * Author: Gustavo Carneiro + */ +#ifndef MOOSE_BRIDGE_HELPER_H +#define MOOSE_BRIDGE_HELPER_H + +#include "ns3/net-device-container.h" +#include "ns3/object-factory.h" +#include + +namespace ns3 { + +class Node; +class AttributeValue; + +/** + * \brief Add capability to bridge multiple LAN segments (IEEE 802.1D bridging) using MOOSE semantics. + */ +class MooseBridgeHelper +{ +public: + /* + * Construct a BridgeHelper + */ + MooseBridgeHelper (); + /** + * Set an attribute on each ns3::MooseBridgeNetDevice created by + * MooseBridgeHelper::Install + * + * \param n1 the name of the attribute to set + * \param v1 the value of the attribute to set + */ + void SetDeviceAttribute (std::string n1, const AttributeValue &v1); + /** + * This method creates an ns3::MooseBridgeNetDevice with the attributes + * configured by MooseBridgeHelper::SetDeviceAttribute, adds the device + * to the node, and attaches the given NetDevices as ports of the + * bridge. + * + * \param node The node to install the device in + * \param c Container of NetDevices to add as bridge ports + * \returns A container holding the added net device. + */ + NetDeviceContainer Install (Ptr node, NetDeviceContainer c); + /** + * This method creates an ns3::MooseBridgeNetDevice with the attributes + * configured by MooseBridgeHelper::SetDeviceAttribute, adds the device + * to the node, and attaches the given NetDevices as ports of the + * bridge. + * + * \param nodeName The name of the node to install the device in + * \param c Container of NetDevices to add as bridge ports + * \returns A container holding the added net device. + */ + NetDeviceContainer Install (std::string nodeName, NetDeviceContainer c); +private: + ObjectFactory m_deviceFactory; +}; + +} // namespace ns3 + + +#endif /* MOOSE_BRIDGE_HELPER_H */ -- 2.34.1