Abstract base class for the Association Manager, which manages scanning and association for single link devices and ML discovery and setup for multi-link devices. More...
#include "wifi-assoc-manager.h"
Classes | |
struct | ApInfoCompare |
Struct providing a function call operator to compare two ApInfo objects. More... | |
struct | RnrLinkInfo |
Struct to identify a specific TBTT Information field of a Neighbor AP Information field in a Reduced Neighbor Report element. More... | |
Public Member Functions | |
~WifiAssocManager () override | |
virtual bool | Compare (const StaWifiMac::ApInfo &lhs, const StaWifiMac::ApInfo &rhs) const =0 |
Compare two ApInfo objects for the purpose of keeping a sorted list of ApInfo objects. More... | |
virtual void | NotifyApInfo (const StaWifiMac::ApInfo &&apInfo) |
STA wifi MAC received a Beacon frame or Probe Response frame while scanning and notifies us the AP information contained in the received frame. More... | |
virtual void | NotifyChannelSwitched (uint8_t linkId)=0 |
Notify that the given link has completed channel switching. More... | |
void | SetStaWifiMac (Ptr< StaWifiMac > mac) |
Set the pointer to the STA wifi MAC. More... | |
void | StartScanning (WifiScanParams &&scanParams) |
Request the Association Manager to start a scanning procedure according to the given scanning parameters. More... | |
Public Member Functions inherited from ns3::Object | |
Object () | |
Constructor. More... | |
~Object () override | |
Destructor. More... | |
void | AggregateObject (Ptr< Object > other) |
Aggregate two Objects together. More... | |
void | Dispose () |
Dispose of this Object. More... | |
AggregateIterator | GetAggregateIterator () const |
Get an iterator to the Objects aggregated to this one. More... | |
TypeId | GetInstanceTypeId () const override |
Get the most derived TypeId for this Object. More... | |
template<typename T > | |
Ptr< T > | GetObject () const |
Get a pointer to the requested aggregated Object. More... | |
template<> | |
Ptr< Object > | GetObject () const |
Specialization of () for objects of type ns3::Object. More... | |
template<typename T > | |
Ptr< T > | GetObject (TypeId tid) const |
Get a pointer to the requested aggregated Object by TypeId. More... | |
template<> | |
Ptr< Object > | GetObject (TypeId tid) const |
Specialization of (TypeId tid) for objects of type ns3::Object. More... | |
void | Initialize () |
Invoke DoInitialize on all Objects aggregated to this one. More... | |
bool | IsInitialized () const |
Check if the object has been initialized. More... | |
Public Member Functions inherited from ns3::SimpleRefCount< Object, ObjectBase, ObjectDeleter > | |
SimpleRefCount () | |
Default constructor. More... | |
SimpleRefCount (const SimpleRefCount &o[[maybe_unused]]) | |
Copy constructor. More... | |
uint32_t | GetReferenceCount () const |
Get the reference count of the object. More... | |
SimpleRefCount & | operator= (const SimpleRefCount &o[[maybe_unused]]) |
Assignment operator. More... | |
void | Ref () const |
Increment the reference count. More... | |
void | Unref () const |
Decrement the reference count. More... | |
Public Member Functions inherited from ns3::ObjectBase | |
virtual | ~ObjectBase () |
Virtual destructor. More... | |
void | GetAttribute (std::string name, AttributeValue &value) const |
Get the value of an attribute, raising fatal errors if unsuccessful. More... | |
bool | GetAttributeFailSafe (std::string name, AttributeValue &value) const |
Get the value of an attribute without raising errors. More... | |
void | SetAttribute (std::string name, const AttributeValue &value) |
Set a single attribute, raising fatal errors if unsuccessful. More... | |
bool | SetAttributeFailSafe (std::string name, const AttributeValue &value) |
Set a single attribute without raising errors. More... | |
bool | TraceConnect (std::string name, std::string context, const CallbackBase &cb) |
Connect a TraceSource to a Callback with a context. More... | |
bool | TraceConnectWithoutContext (std::string name, const CallbackBase &cb) |
Connect a TraceSource to a Callback without a context. More... | |
bool | TraceDisconnect (std::string name, std::string context, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected with a context. More... | |
bool | TraceDisconnectWithoutContext (std::string name, const CallbackBase &cb) |
Disconnect from a TraceSource a Callback previously connected without a context. More... | |
Static Public Member Functions | |
static std::list< WifiAssocManager::RnrLinkInfo > | GetAllAffiliatedAps (const ReducedNeighborReport &rnr) |
Find all the APs affiliated to the same AP MLD as the reporting AP that sent the given RNR element. More... | |
static std::optional< WifiAssocManager::RnrLinkInfo > | GetNextAffiliatedAp (const ReducedNeighborReport &rnr, std::size_t nbrApInfoId) |
Search the given RNR element for APs affiliated to the same AP MLD as the reporting AP. More... | |
static TypeId | GetTypeId () |
Get the type ID. More... | |
Static Public Member Functions inherited from ns3::Object | |
static TypeId | GetTypeId () |
Register this type. More... | |
Static Public Member Functions inherited from ns3::ObjectBase | |
static TypeId | GetTypeId () |
Get the type ID. More... | |
Protected Types | |
using | OptMleConstRef = std::optional< std::reference_wrapper< const MultiLinkElement > > |
typedef for an optional const reference to a MultiLinkElement object More... | |
using | OptRnrConstRef = std::optional< std::reference_wrapper< const ReducedNeighborReport > > |
typedef for an optional const reference to a ReducedNeighborReport object More... | |
using | SortedList = std::set< StaWifiMac::ApInfo, ApInfoCompare > |
typedef for the sorted list of ApInfo objects More... | |
Protected Member Functions | |
WifiAssocManager () | |
Constructor (protected as this is an abstract base class) More... | |
virtual bool | CanBeInserted (const StaWifiMac::ApInfo &apInfo) const =0 |
Allow subclasses to choose whether the given ApInfo shall be considered and hence inserted in the sorted list of ApInfo objects. More... | |
virtual bool | CanBeReturned (const StaWifiMac::ApInfo &apInfo) const =0 |
Allow subclasses to choose whether the given ApInfo shall be returned or discarded when the STA wifi MAC requests information on the best AP. More... | |
bool | CanSetupMultiLink (OptMleConstRef &mle, OptRnrConstRef &rnr) |
Check whether 11be Multi-Link setup can be established with the current best AP. More... | |
void | DoDispose () override |
Destructor implementation. More... | |
const WifiScanParams & | GetScanParams () const |
std::list< StaWifiMac::ApInfo::SetupLinksInfo > & | GetSetupLinks (const StaWifiMac::ApInfo &apInfo) |
Get a reference to the list of the links to setup with the given AP. More... | |
const SortedList & | GetSortedList () const |
bool | MatchScanParams (const StaWifiMac::ApInfo &apInfo) const |
Check whether the given AP information match the current scanning parameters. More... | |
void | ScanningTimeout () |
Extract the best AP to associate with from the sorted list and return it, if any, to the STA wifi MAC along with the notification that scanning is completed. More... | |
Protected Member Functions inherited from ns3::Object | |
Object (const Object &o) | |
Copy an Object. More... | |
virtual void | DoInitialize () |
Initialize() implementation. More... | |
virtual void | NotifyNewAggregate () |
Notify all Objects aggregated to this one of a new Object being aggregated. More... | |
Protected Member Functions inherited from ns3::ObjectBase | |
void | ConstructSelf (const AttributeConstructionList &attributes) |
Complete construction of ObjectBase; invoked by derived classes. More... | |
virtual void | NotifyConstructionCompleted () |
Notifier called once the ObjectBase is fully constructed. More... | |
Protected Attributes | |
std::set< uint8_t > | m_allowedLinks |
"Only Beacon and Probe Response frames received on a link belonging to the this set are processed More... | |
Ptr< StaWifiMac > | m_mac |
pointer to the STA wifi MAC More... | |
Private Member Functions | |
virtual void | DoStartScanning ()=0 |
Start a scanning procedure. More... | |
Private Attributes | |
SortedList | m_apList |
sorted list of candidate APs More... | |
std::unordered_map< Mac48Address, SortedList::const_iterator, WifiAddressHash > | m_apListIt |
hash table to help locate ApInfo objects in the sorted list based on the BSSID More... | |
WifiScanParams | m_scanParams |
scanning parameters More... | |
Additional Inherited Members | |
Related Functions inherited from ns3::ObjectBase | |
static TypeId | GetObjectIid () |
Ensure the TypeId for ObjectBase gets fully configured to anchor the inheritance tree properly. More... | |
Abstract base class for the Association Manager, which manages scanning and association for single link devices and ML discovery and setup for multi-link devices.
Definition at line 40 of file wifi-assoc-manager.h.
|
protected |
typedef for an optional const reference to a MultiLinkElement object
Definition at line 223 of file wifi-assoc-manager.h.
|
protected |
typedef for an optional const reference to a ReducedNeighborReport object
Definition at line 221 of file wifi-assoc-manager.h.
|
protected |
typedef for the sorted list of ApInfo objects
Definition at line 167 of file wifi-assoc-manager.h.
|
override |
Definition at line 91 of file wifi-assoc-manager.cc.
References NS_LOG_FUNCTION.
|
protected |
Constructor (protected as this is an abstract base class)
Definition at line 85 of file wifi-assoc-manager.cc.
|
protectedpure virtual |
Allow subclasses to choose whether the given ApInfo shall be considered and hence inserted in the sorted list of ApInfo objects.
apInfo | the apInfo object to insert |
Implemented in ns3::WifiDefaultAssocManager.
Referenced by NotifyApInfo().
|
protectedpure virtual |
Allow subclasses to choose whether the given ApInfo shall be returned or discarded when the STA wifi MAC requests information on the best AP.
apInfo | the apInfo object to return |
Implemented in ns3::WifiDefaultAssocManager.
Referenced by ScanningTimeout().
|
protected |
Check whether 11be Multi-Link setup can be established with the current best AP.
[out] | mle | const reference to the Multi-Link Element present in the Beacon/Probe Response received from the best AP, if any |
[out] | rnr | const reference to the Reduced Neighbor Report Element present in the Beacon/Probe Response received from the best AP, if any. |
Definition at line 260 of file wifi-assoc-manager.cc.
References ns3::EnumValue< T >::Get(), ns3::WifiMac::GetEhtConfiguration(), ns3::WifiMac::GetNLinks(), GetSortedList(), m_apList, m_mac, NS_ASSERT, NS_LOG_DEBUG, and NS_LOG_FUNCTION.
Referenced by ns3::WifiDefaultAssocManager::EndScanning().
|
pure virtual |
Compare two ApInfo objects for the purpose of keeping a sorted list of ApInfo objects.
lhs | left hand side ApInfo object |
rhs | right hand side ApInfo object |
Implemented in ns3::WifiDefaultAssocManager.
|
overrideprotectedvirtual |
Destructor implementation.
This method is called by Dispose() or by the Object's destructor, whichever comes first.
Subclasses are expected to implement their real destruction code in an overridden version of this method and chain up to their parent's implementation once they are done. i.e, for simplicity, the destructor of every subclass should be empty and its content should be moved to the associated DoDispose() method.
It is safe to call GetObject() from within this method.
Reimplemented from ns3::Object.
Reimplemented in ns3::WifiDefaultAssocManager.
Definition at line 97 of file wifi-assoc-manager.cc.
References m_mac, and NS_LOG_FUNCTION.
Referenced by ns3::WifiDefaultAssocManager::DoDispose().
|
privatepure virtual |
Start a scanning procedure.
This method needs to schedule a call to ScanningTimeout when the scanning procedure is completed.
Implemented in ns3::WifiDefaultAssocManager.
Referenced by StartScanning().
|
static |
Find all the APs affiliated to the same AP MLD as the reporting AP that sent the given RNR element.
rnr | the given RNR element |
Definition at line 361 of file wifi-assoc-manager.cc.
References GetNextAffiliatedAp().
Referenced by ns3::WifiDefaultAssocManager::EndScanning().
|
static |
Search the given RNR element for APs affiliated to the same AP MLD as the reporting AP.
The search starts at the given Neighbor AP Information field.
rnr | the given RNR element |
nbrApInfoId | the index of the given Neighbor AP Information field |
Definition at line 328 of file wifi-assoc-manager.cc.
References ns3::ReducedNeighborReport::GetMldId(), ns3::ReducedNeighborReport::GetNNbrApInfoFields(), ns3::ReducedNeighborReport::GetNTbttInformationFields(), ns3::ReducedNeighborReport::HasMldParameters(), and NS_LOG_FUNCTION.
Referenced by GetAllAffiliatedAps().
|
protected |
Definition at line 117 of file wifi-assoc-manager.cc.
References m_scanParams.
Referenced by ns3::WifiDefaultAssocManager::DoStartScanning().
|
protected |
Get a reference to the list of the links to setup with the given AP.
This method allows subclasses to modify such a list.
apInfo | the info about the given AP |
Definition at line 254 of file wifi-assoc-manager.cc.
References ns3::StaWifiMac::ApInfo::m_setupLinks.
Referenced by ns3::WifiDefaultAssocManager::ChannelSwitchTimeout(), and ns3::WifiDefaultAssocManager::EndScanning().
|
protected |
Definition at line 111 of file wifi-assoc-manager.cc.
References m_apList.
Referenced by CanSetupMultiLink(), ns3::WifiDefaultAssocManager::ChannelSwitchTimeout(), ns3::WifiDefaultAssocManager::DoStartScanning(), and ns3::WifiDefaultAssocManager::EndScanning().
|
static |
Get the type ID.
Definition at line 69 of file wifi-assoc-manager.cc.
References m_allowedLinks, and ns3::TypeId::SetParent().
|
protected |
Check whether the given AP information match the current scanning parameters.
apInfo | the given AP information |
Definition at line 123 of file wifi-assoc-manager.cc.
References ns3::WifiScanParams::Channel::band, third::channel, ns3::WifiScanParams::channelList, ns3::Ssid::IsBroadcast(), ns3::Ssid::IsEqual(), ns3::StaWifiMac::ApInfo::m_bssid, ns3::StaWifiMac::ApInfo::m_channel, ns3::StaWifiMac::ApInfo::m_frame, ns3::StaWifiMac::ApInfo::m_linkId, m_scanParams, NS_ASSERT, NS_LOG_DEBUG, NS_LOG_FUNCTION, ns3::WifiScanParams::Channel::number, ns3::WifiScanParams::ssid, and ns3::WIFI_PHY_BAND_UNSPECIFIED.
Referenced by NotifyApInfo(), and StartScanning().
|
virtual |
STA wifi MAC received a Beacon frame or Probe Response frame while scanning and notifies us the AP information contained in the received frame.
Note that the given ApInfo object is moved to the sorted list of ApInfo objects.
apInfo | the AP information contained in the received frame |
Definition at line 201 of file wifi-assoc-manager.cc.
References CanBeInserted(), m_allowedLinks, m_apList, m_apListIt, MatchScanParams(), NS_ASSERT_MSG, and NS_LOG_FUNCTION.
|
pure virtual |
Notify that the given link has completed channel switching.
linkId | the ID of the given link |
Implemented in ns3::WifiDefaultAssocManager.
|
protected |
Extract the best AP to associate with from the sorted list and return it, if any, to the STA wifi MAC along with the notification that scanning is completed.
Definition at line 232 of file wifi-assoc-manager.cc.
References CanBeReturned(), m_apList, m_apListIt, ns3::StaWifiMac::ApInfo::m_bssid, m_mac, NS_LOG_FUNCTION, and ns3::StaWifiMac::ScanningTimeout().
Referenced by ns3::WifiDefaultAssocManager::ChannelSwitchTimeout(), ns3::WifiDefaultAssocManager::EndScanning(), and ns3::WifiDefaultAssocManager::NotifyChannelSwitched().
void ns3::WifiAssocManager::SetStaWifiMac | ( | Ptr< StaWifiMac > | mac | ) |
Set the pointer to the STA wifi MAC.
mac | the pointer to the STA wifi MAC |
Definition at line 104 of file wifi-assoc-manager.cc.
References m_mac, third::mac, and NS_LOG_FUNCTION.
void ns3::WifiAssocManager::StartScanning | ( | WifiScanParams && | scanParams | ) |
Request the Association Manager to start a scanning procedure according to the given scanning parameters.
At subclass' discretion, stored information about APs matching the given scanning parameters may be used and scanning not performed.
scanParams | the scanning parameters |
Definition at line 175 of file wifi-assoc-manager.cc.
References DoStartScanning(), m_allowedLinks, m_apList, m_apListIt, m_scanParams, MatchScanParams(), and NS_LOG_FUNCTION.
|
protected |
"Only Beacon and Probe Response frames received on a link belonging to the this set are processed
Definition at line 237 of file wifi-assoc-manager.h.
Referenced by GetTypeId(), NotifyApInfo(), and StartScanning().
|
private |
sorted list of candidate APs
Definition at line 248 of file wifi-assoc-manager.h.
Referenced by CanSetupMultiLink(), GetSortedList(), NotifyApInfo(), ScanningTimeout(), and StartScanning().
|
private |
hash table to help locate ApInfo objects in the sorted list based on the BSSID
Definition at line 250 of file wifi-assoc-manager.h.
Referenced by NotifyApInfo(), ScanningTimeout(), and StartScanning().
|
protected |
pointer to the STA wifi MAC
Definition at line 236 of file wifi-assoc-manager.h.
Referenced by CanSetupMultiLink(), DoDispose(), ns3::WifiDefaultAssocManager::DoStartScanning(), ns3::WifiDefaultAssocManager::EndScanning(), ScanningTimeout(), and SetStaWifiMac().
|
private |
scanning parameters
Definition at line 247 of file wifi-assoc-manager.h.
Referenced by GetScanParams(), MatchScanParams(), and StartScanning().