Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(8)

Unified Diff: src/sixlowpan/helper/sixlowpan-helper.cc

Issue 10945044: 6LoWPAN module (Closed)
Patch Set: Updated Changes, release notes and authors. Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/sixlowpan/helper/sixlowpan-helper.h ('k') | src/sixlowpan/model/sixlowpan-header.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/sixlowpan/helper/sixlowpan-helper.cc
===================================================================
new file mode 100644
--- /dev/null
+++ b/src/sixlowpan/helper/sixlowpan-helper.cc
@@ -0,0 +1,83 @@
+/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
+/*
+ * Copyright (c) 2011 Universita' di Firenze, Italy
+ *
+ * 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: Tommaso Pecorella <tommaso.pecorella@unifi.it>
+ */
+
+#include "sixlowpan-helper.h"
+#include "ns3/log.h"
+#include "ns3/sixlowpan-net-device.h"
+#include "ns3/node.h"
+#include "ns3/names.h"
+
+NS_LOG_COMPONENT_DEFINE ("SixLowPanHelper")
+ ;
+
+namespace ns3 {
+
+SixLowPanHelper::SixLowPanHelper ()
+{
+ NS_LOG_FUNCTION (this);
+ m_deviceFactory.SetTypeId ("ns3::SixLowPanNetDevice");
+}
+
+void SixLowPanHelper::SetDeviceAttribute (std::string n1,
+ const AttributeValue &v1)
+{
+ NS_LOG_FUNCTION (this);
+ m_deviceFactory.Set (n1, v1);
+}
+
+NetDeviceContainer SixLowPanHelper::Install (const NetDeviceContainer c)
+{
+ NS_LOG_FUNCTION (this);
+
+ NetDeviceContainer devs;
+
+ for (uint32_t i = 0; i < c.GetN (); ++i)
+ {
+ Ptr<NetDevice> device = c.Get (i);
+ NS_ASSERT_MSG (device != 0, "No NetDevice found in the node " << int(i) );
+
+ Ptr<Node> node = device->GetNode ();
+ NS_LOG_LOGIC ("**** Install 6LoWPAN on node " << node->GetId ());
+
+ Ptr<SixLowPanNetDevice> dev = m_deviceFactory.Create<SixLowPanNetDevice> ();
+ devs.Add (dev);
+ node->AddDevice (dev);
+ dev->SetNetDevice (device);
+ }
+ return devs;
+}
+
+int64_t SixLowPanHelper::AssignStreams (NetDeviceContainer c, int64_t stream)
+{
+ int64_t currentStream = stream;
+ Ptr<NetDevice> netDevice;
+ for (NetDeviceContainer::Iterator i = c.Begin (); i != c.End (); ++i)
+ {
+ netDevice = (*i);
+ Ptr<SixLowPanNetDevice> dev = DynamicCast<SixLowPanNetDevice> (netDevice);
+ if (dev)
+ {
+ currentStream += dev->AssignStreams (currentStream);
+ }
+ }
+ return (currentStream - stream);
+}
+
+} // namespace ns3
« no previous file with comments | « src/sixlowpan/helper/sixlowpan-helper.h ('k') | src/sixlowpan/model/sixlowpan-header.h » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b