A Discrete-Event Network Simulator
API
Loading...
Searching...
No Matches
zigbee-helper.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2023 Tokushima University, Japan
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 * Author:
7 * Alberto Gallegos Ramonet <alramonet@is.tokushima-u.ac.jp>
8 */
9
10#include "zigbee-helper.h"
11
12#include "ns3/log.h"
13#include "ns3/names.h"
14#include "ns3/net-device.h"
15#include "ns3/node.h"
16#include "ns3/zigbee-stack.h"
17
18namespace ns3
19{
20
21NS_LOG_COMPONENT_DEFINE("ZigbeeHelper");
22
24{
25 NS_LOG_FUNCTION(this);
26 m_stackFactory.SetTypeId("ns3::zigbee::ZigbeeStack");
27}
28
29void
31{
32 NS_LOG_FUNCTION(this);
33 m_stackFactory.Set(n1, v1);
34}
35
38{
39 NS_LOG_FUNCTION(this);
40
41 zigbee::ZigbeeStackContainer zigbeeStackContainer;
42
43 for (uint32_t i = 0; i < c.GetN(); ++i)
44 {
45 Ptr<NetDevice> device = c.Get(i);
46
47 NS_ASSERT_MSG(device, "NetDevice not found in the node " << i);
48
49 NS_LOG_LOGIC("Installing Zigbee on node " << device->GetNode()->GetId());
50
52 zigbeeStackContainer.Add(zigbeeStack);
53 device->GetNode()->AggregateObject(zigbeeStack);
54 zigbeeStack->SetNetDevice(device);
55 }
56 return zigbeeStackContainer;
57}
58
59} // namespace ns3
Hold a value for an Attribute.
Definition attribute.h:59
holds a vector of ns3::NetDevice pointers
uint32_t GetN() const
Get the number of Ptr<NetDevice> stored in this container.
Ptr< NetDevice > Get(uint32_t i) const
Get the Ptr<NetDevice> stored in this container at a given index.
Ptr< Object > Create() const
Create an Object instance of the configured TypeId.
void Set(const std::string &name, const AttributeValue &value, Args &&... args)
Set an attribute to be set during construction.
void SetTypeId(TypeId tid)
Set the TypeId of the Objects to be created by this factory.
Smart pointer class similar to boost::intrusive_ptr.
zigbee::ZigbeeStackContainer Install(NetDeviceContainer c)
Install the Zigbee stack on top of an existing LrWpanNetDevice.
ObjectFactory m_stackFactory
Zigbee stack object factory.
void SetDeviceAttribute(std::string n1, const AttributeValue &v1)
Set an attribute on each ns3::ZigbeeStack created by ZigbeeHelper::Install.
Holds a vector of ns3::ZigbeeStack pointers.
void Add(ZigbeeStackContainer other)
Append the contents of another ZigbeeStackContainer to the end of this container.
Zigbee protocol stack to device interface.
#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:75
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Definition log.h:191
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
Definition log.h:271
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by ",...
Every class exported by the ns3 library is enclosed in the ns3 namespace.