26 #include "ns3/llc-snap-header.h" 27 #include "ns3/simulator.h" 28 #include "ns3/callback.h" 30 #include "ns3/packet.h" 32 #include "ns3/packet-burst.h" 33 #include "ns3/uinteger.h" 34 #include "ns3/trace-source-accessor.h" 35 #include "ns3/pointer.h" 37 #include "ns3/lte-enb-net-device.h" 41 #include "ns3/ipv4-header.h" 42 #include "ns3/ipv6-header.h" 48 #include <ns3/ipv4-l3-protocol.h> 49 #include <ns3/ipv6-l3-protocol.h> 52 #include <ns3/lte-ue-component-carrier-manager.h> 53 #include <ns3/object-map.h> 54 #include <ns3/object-factory.h> 67 TypeId (
"ns3::LteUeNetDevice")
69 .AddConstructor<LteUeNetDevice> ()
70 .AddAttribute (
"EpcUeNas",
71 "The NAS associated to this UeNetDevice",
74 MakePointerChecker <EpcUeNas> ())
75 .AddAttribute (
"LteUeRrc",
76 "The RRC associated to this UeNetDevice",
79 MakePointerChecker <LteUeRrc> ())
80 .AddAttribute (
"LteUeComponentCarrierManager",
81 "The ComponentCarrierManager associated to this UeNetDevice",
84 MakePointerChecker <LteUeComponentCarrierManager> ())
85 .AddAttribute (
"ComponentCarrierMapUe",
"List of all component Carrier.",
88 MakeObjectMapChecker<ComponentCarrierUe> ())
89 .AddAttribute (
"Imsi",
90 "International Mobile Subscriber Identity assigned to this UE",
93 MakeUintegerChecker<uint64_t> ())
94 .AddAttribute (
"DlEarfcn",
95 "Downlink E-UTRA Absolute Radio Frequency Channel Number (EARFCN) " 96 "as per 3GPP 36.101 Section 5.7.3. ",
100 MakeUintegerChecker<uint32_t> (0, 262143))
101 .AddAttribute (
"CsgId",
102 "The Closed Subscriber Group (CSG) identity that this UE is associated with, " 103 "i.e., giving the UE access to cells which belong to this particular CSG. " 104 "This restriction only applies to initial cell selection and EPC-enabled simulation. " 105 "This does not revoke the UE's access to non-CSG cells. ",
109 MakeUintegerChecker<uint32_t> ())
117 : m_isConstructed (false)
138 for (uint32_t i = 0; i <
m_ccMap.size (); i++)
174 return m_ccMap.at (0)->GetMac ();
190 return m_ccMap.at (0)->GetPhy ();
258 std::map < uint8_t, Ptr<ComponentCarrierUe> >
277 std::map< uint8_t, Ptr<ComponentCarrierUe> >::iterator it;
280 it->second->GetPhy ()->Initialize ();
281 it->second->GetMac ()->Initialize ();
283 m_rrc->Initialize ();
292 NS_LOG_INFO (
"unsupported protocol " << protocolNumber <<
", only IPv4 and IPv6 are supported");
295 return m_nas->Send (packet);
Smart pointer class similar to boost::intrusive_ptr.
#define NS_LOG_FUNCTION(parameters)
If log level LOG_FUNCTION is enabled, this macro will output all input parameters separated by "...
Ptr< LteUeRrc > m_rrc
the RRC
#define NS_OBJECT_ENSURE_REGISTERED(type)
Register an Object subclass with the TypeId system.
virtual ~LteUeNetDevice(void)
virtual void DoDispose(void)
Destructor implementation.
uint32_t GetCsgId() const
Returns the CSG ID the UE is currently a member of.
Ptr< EpcUeNas > GetNas(void) const
Get the NAS.
std::map< uint8_t, Ptr< ComponentCarrierUe > > GetCcMap(void)
Get the ComponentCarrier Map for the UE.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
Ptr< LteEnbNetDevice > m_targetEnb
target ENB
#define NS_LOG_INFO(msg)
Use NS_LOG to output a message of level LOG_INFO.
uint32_t m_csgId
the CSG ID
std::map< uint8_t, Ptr< ComponentCarrierUe > > m_ccMap
CC map.
a polymophic address class
Ptr< EpcUeNas > m_nas
the NAS
static TypeId GetTypeId(void)
Get the type ID.
virtual void DoDispose()
Destructor implementation.
uint64_t GetImsi() const
Get the IMSI.
void SetTargetEnb(Ptr< LteEnbNetDevice > enb)
Set the target eNB where the UE is registered.
virtual void DoInitialize(void)
Initialize() implementation.
Ptr< const AttributeAccessor > MakePointerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
Hold an unsigned integer type.
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void SetCsgId(uint32_t csgId)
Enlist the UE device as a member of a particular CSG.
uint32_t m_dlEarfcn
downlink carrier frequency
Hold objects of type Ptr<T>.
void SetDlEarfcn(uint32_t earfcn)
Ptr< LteUePhy > GetPhy(void) const
Get the Phy.
Ptr< LteUeComponentCarrierManager > GetComponentCarrierManager(void) const
Get the componentn carrier manager.
Ptr< LteEnbNetDevice > GetTargetEnb(void)
Get the target eNB where the UE is registered.
NS_LOG_LOGIC("Net device "<< nd<< " is not bridged")
uint32_t GetDlEarfcn() const
void SetCcMap(std::map< uint8_t, Ptr< ComponentCarrierUe > > ccm)
Set the ComponentCarrier Map for the UE.
Ptr< LteUeMac > GetMac(void) const
Get the MAC.
Ptr< LteUeRrc > GetRrc() const
Get the RRC.
void UpdateConfig()
Propagate attributes and configuration to sub-modules.
Ptr< const AttributeAccessor > MakeObjectMapAccessor(U T::*memberVariable)
MakeAccessorHelper implementation for ObjectVector.
Container for a set of ns3::Object pointers.
LteNetDevice provides basic implementation for all LTE network devices.
virtual bool Send(Ptr< Packet > packet, const Address &dest, uint16_t protocolNumber)
Ptr< const AttributeAccessor > MakeUintegerAccessor(T1 a1)
Create an AttributeAccessor for a class data member, or a lone class get functor or set method...
a unique identifier for an interface.
TypeId SetParent(TypeId tid)
Set the parent TypeId.
static const uint16_t PROT_NUMBER
The protocol number for IPv6 (0x86DD).
bool m_isConstructed
is constructed?
static const uint16_t PROT_NUMBER
Protocol number (0x0800)
Ptr< LteUeComponentCarrierManager > m_componentCarrierManager
the component carrier manager