A Discrete-Event Network Simulator
API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
sixlowpan-helper.cc
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2011 Universita' di Firenze, Italy
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: Tommaso Pecorella <tommaso.pecorella@unifi.it>
19  */
20 
21 #include "sixlowpan-helper.h"
22 #include "ns3/log.h"
23 #include "ns3/sixlowpan-net-device.h"
24 #include "ns3/node.h"
25 #include "ns3/names.h"
26 
27 NS_LOG_COMPONENT_DEFINE ("SixLowPanHelper");
28 
29 namespace ns3 {
30 
32 {
33  NS_LOG_FUNCTION (this);
34  m_deviceFactory.SetTypeId ("ns3::SixLowPanNetDevice");
35 }
36 
38  const AttributeValue &v1)
39 {
40  NS_LOG_FUNCTION (this);
41  m_deviceFactory.Set (n1, v1);
42 }
43 
45 {
46  NS_LOG_FUNCTION (this);
47 
48  NetDeviceContainer devs;
49 
50  for (uint32_t i = 0; i < c.GetN (); ++i)
51  {
52  Ptr<NetDevice> device = c.Get (i);
53  NS_ASSERT_MSG (device != 0, "No NetDevice found in the node " << int(i) );
54 
55  Ptr<Node> node = device->GetNode ();
56  NS_LOG_LOGIC ("**** Install 6LoWPAN on node " << node->GetId ());
57 
59  devs.Add (dev);
60  node->AddDevice (dev);
61  dev->SetNetDevice (device);
62  }
63  return devs;
64 }
65 
67 {
68  int64_t currentStream = stream;
69  Ptr<NetDevice> netDevice;
70  for (NetDeviceContainer::Iterator i = c.Begin (); i != c.End (); ++i)
71  {
72  netDevice = (*i);
73  Ptr<SixLowPanNetDevice> dev = DynamicCast<SixLowPanNetDevice> (netDevice);
74  if (dev)
75  {
76  currentStream += dev->AssignStreams (currentStream);
77  }
78  }
79  return (currentStream - stream);
80 }
81 
82 } // namespace ns3
Iterator Begin(void) const
Get an iterator which refers to the first NetDevice in the container.
smart pointer class similar to boost::intrusive_ptr
Definition: ptr.h:60
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr stored in this container at a given index.
Hold a value for an Attribute.
Definition: attribute.h:56
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition: log.h:170
void SetTypeId(TypeId tid)
uint32_t GetN(void) const
Get the number of Ptr stored in this container.
Ptr< Object > Create(void) const
void Add(NetDeviceContainer other)
Append the contents of another NetDeviceContainer to the end of this container.
holds a vector of ns3::NetDevice pointers
ObjectFactory m_deviceFactory
Object factory.
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
Definition: log.h:233
NetDeviceContainer Install(NetDeviceContainer c)
Install the SixLoWPAN stack on top of an existing NetDevice.
Shim performing 6LoWPAN compression, decompression and fragmentation.
void Set(std::string name, const AttributeValue &value)
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
Definition: assert.h:84
void SetDeviceAttribute(std::string n1, const AttributeValue &v1)
Set an attribute on each ns3::SixlowpanNetDevice created by SixlowpanHelper::Install.
uint32_t AddDevice(Ptr< NetDevice > device)
Definition: node.cc:120
uint32_t GetId(void) const
Definition: node.cc:106
int64_t AssignStreams(NetDeviceContainer c, int64_t stream)
Assign a fixed random variable stream number to the random variables used by this model...
std::vector< Ptr< NetDevice > >::const_iterator Iterator
NetDevice container iterator.
Iterator End(void) const
Get an iterator which indicates past-the-last NetDevice in the container.