A Discrete-Event Network Simulator
API
ss-manager.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2007,2008,2009 INRIA, UDcast
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation;
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, write to the Free Software
15  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16  *
17  * Authors: Jahanzeb Farooq <jahanzeb.farooq@sophia.inria.fr>
18  * Mohamed Amine Ismail <amine.ismail@sophia.inria.fr>
19  * <amine.ismail@UDcast.com>
20  */
21 
22 #ifndef SS_MANAGER_H
23 #define SS_MANAGER_H
24 
25 #include "cid.h"
26 #include "ss-record.h"
27 
28 #include <stdint.h>
29 
30 namespace ns3
31 {
32 
38 class SSManager : public Object
39 {
40  public:
45  static TypeId GetTypeId();
46  SSManager();
47  ~SSManager() override;
53  SSRecord* CreateSSRecord(const Mac48Address& macAddress);
59  SSRecord* GetSSRecord(const Mac48Address& macAddress) const;
68  SSRecord* GetSSRecord(Cid cid) const;
73  std::vector<SSRecord*>* GetSSRecords() const;
79  bool IsInRecord(const Mac48Address& macAddress) const;
85  bool IsRegistered(const Mac48Address& macAddress) const;
90  void DeleteSSRecord(Cid cid);
96  Mac48Address GetMacAddress(Cid cid) const;
101  uint32_t GetNSSs() const;
106  uint32_t GetNRegisteredSSs() const;
107 
108  private:
109  std::vector<SSRecord*>* m_ssRecords;
110 };
111 
112 } // namespace ns3
113 
114 #endif /* SS_MANAGER_H */
Cid class.
Definition: cid.h:37
an EUI-48 address
Definition: mac48-address.h:46
A base class which provides memory management and object aggregation.
Definition: object.h:89
this class manages a list of SSrecords
Definition: ss-manager.h:39
static TypeId GetTypeId()
Get the type ID.
Definition: ss-manager.cc:38
uint32_t GetNRegisteredSSs() const
Get number of registered SSs.
Definition: ss-manager.cc:175
bool IsInRecord(const Mac48Address &macAddress) const
Check if address is in record.
Definition: ss-manager.cc:116
SSRecord * GetSSRecord(const Mac48Address &macAddress) const
Get SS record.
Definition: ss-manager.cc:68
std::vector< SSRecord * > * GetSSRecords() const
Get SS records.
Definition: ss-manager.cc:110
SSRecord * CreateSSRecord(const Mac48Address &macAddress)
Create SS record.
Definition: ss-manager.cc:60
bool IsRegistered(const Mac48Address &macAddress) const
Check if address is registered.
Definition: ss-manager.cc:129
uint32_t GetNSSs() const
Get number of SSs.
Definition: ss-manager.cc:169
void DeleteSSRecord(Cid cid)
Delete SS record.
Definition: ss-manager.cc:137
Mac48Address GetMacAddress(Cid cid) const
Get MAC address by CID.
Definition: ss-manager.cc:163
std::vector< SSRecord * > * m_ssRecords
the SS records
Definition: ss-manager.h:109
~SSManager() override
Definition: ss-manager.cc:49
This class is used by the base station to store some information related to subscriber station in the...
Definition: ss-record.h:46
a unique identifier for an interface.
Definition: type-id.h:59
Every class exported by the ns3 library is enclosed in the ns3 namespace.