20 #include "ns3/abort.h"
21 #include "ns3/assert.h"
23 #include "ns3/simulation-singleton.h"
225 for (uint32_t i = 0; i <
N_BITS; ++i)
252 uint32_t maskBits = mask.
Get();
253 uint32_t netBits = net.
Get();
254 uint32_t addrBits = addr.
Get();
259 "Ipv4AddressGeneratorImpl::Init (): Inconsistent network and mask");
261 "Ipv4AddressGeneratorImpl::Init (): Inconsistent address and mask");
274 "Ipv4AddressGeneratorImpl::Init(): Address overflow");
311 uint32_t addrBits = addr.
Get();
314 "Ipv4AddressGeneratorImpl::InitAddress(): Address overflow");
343 "Ipv4AddressGeneratorImpl::NextAddress(): Address overflow");
366 "Ipv4AddressGeneratorImpl::Add(): Allocating the broadcast address is not a good idea");
368 std::list<Entry>::iterator i;
378 if (addr >= (*i).addrLow && addr <= (*i).addrHigh)
381 "Ipv4AddressGeneratorImpl::Add(): Address Collision: " <<
Ipv4Address(addr));
385 "Ipv4AddressGeneratorImpl::Add(): Address Collision: " <<
Ipv4Address(addr));
394 if (addr < (*i).addrLow - 1)
405 if (addr == (*i).addrHigh + 1)
412 if (addr == (*j).addrLow)
415 "Address Collision: "
419 NS_FATAL_ERROR(
"Ipv4AddressGeneratorImpl::Add(): Address Collision: "
427 (*i).addrHigh = addr;
437 if (addr == (*i).addrLow - 1)
460 "Ipv4AddressGeneratorImpl::IsAddressAllocated(): Don't check for the broadcast address...");
466 if (addr >= (*i).addrLow && addr <= (*i).addrHigh)
468 NS_LOG_LOGIC(
"Ipv4AddressGeneratorImpl::IsAddressAllocated(): Address Collision: "
483 "Ipv4AddressGeneratorImpl::IsNetworkAllocated(): network address and mask don't match "
496 "Ipv4AddressGeneratorImpl::IsNetworkAllocated(): Network already allocated: "
497 <<
address <<
" " << low <<
"-" << high);
527 uint32_t maskBits = mask.
Get();
529 for (uint32_t i = 0; i <
N_BITS; ++i)
533 uint32_t index =
N_BITS - i;
535 "Ipv4AddressGenerator::MaskToIndex(): Illegal Mask");
540 NS_ASSERT_MSG(
false,
"Ipv4AddressGenerator::MaskToIndex(): Impossible");
static Ipv4Address NextAddress(const Ipv4Mask mask)
Allocate the next Ipv4Address for the configured network and mask.
static void InitAddress(const Ipv4Address addr, const Ipv4Mask mask)
Set the address for the given mask.
static void TestMode()
Used to turn off fatal errors and assertions, for testing.
static Ipv4Address NextNetwork(const Ipv4Mask mask)
Get the next network according to the given Ipv4Mask.
static void Reset()
Reset the networks and Ipv4Address to zero.
static bool AddAllocated(const Ipv4Address addr)
Add the Ipv4Address to the list of IPv4 entries.
static bool IsAddressAllocated(const Ipv4Address addr)
Check the Ipv4Address allocation in the list of IPv4 entries.
static Ipv4Address GetNetwork(const Ipv4Mask mask)
Get the current network of the given Ipv4Mask.
static void Init(const Ipv4Address net, const Ipv4Mask mask, const Ipv4Address addr="0.0.0.1")
Initialise the base network, mask and address for the generator.
static bool IsNetworkAllocated(const Ipv4Address addr, const Ipv4Mask mask)
Check if a network has already allocated addresses.
static Ipv4Address GetAddress(const Ipv4Mask mask)
Get the Ipv4Address that will be allocated upon NextAddress ()
This class holds the allocated addresses.
uint32_t addrHigh
the highest allocated address
uint32_t addrLow
the lowest allocated address
This class holds the state for a given network.
uint32_t addrMax
the maximum address
uint32_t mask
the network mask
uint32_t network
the network
Implementation class of Ipv4AddressGenerator This generator assigns addresses sequentially from a pro...
uint32_t MaskToIndex(Ipv4Mask mask) const
Create an index number for the network mask.
Ipv4Address GetNetwork(const Ipv4Mask mask) const
Get the current network of the given Ipv4Mask.
Ipv4Address GetAddress(const Ipv4Mask mask) const
Get the Ipv4Address that will be allocated upon NextAddress ()
virtual ~Ipv4AddressGeneratorImpl()
Ipv4AddressGeneratorImpl()
void Init(const Ipv4Address net, const Ipv4Mask mask, const Ipv4Address addr)
Initialise the base network, mask and address for the generator.
bool IsNetworkAllocated(const Ipv4Address addr, const Ipv4Mask mask)
Check if a network has already allocated addresses.
bool AddAllocated(const Ipv4Address addr)
Add the Ipv4Address to the list of IPv4 entries.
static const uint32_t N_BITS
the number of bits in the address
void InitAddress(const Ipv4Address addr, const Ipv4Mask mask)
Set the address for the given mask.
NetworkState m_netTable[N_BITS]
the available networks
std::list< Entry > m_entries
contained of allocated addresses
void TestMode()
Used to turn off fatal errors and assertions, for testing.
static const uint32_t MOST_SIGNIFICANT_BIT
MSB set to 1.
bool IsAddressAllocated(const Ipv4Address addr)
Check the Ipv4Address allocation in the list of IPv4 entries.
void Reset()
Reset the networks and Ipv4Address to zero.
bool m_test
test mode (if true)
Ipv4Address NextAddress(const Ipv4Mask mask)
Allocate the next Ipv4Address for the configured network and mask.
Ipv4Address NextNetwork(const Ipv4Mask mask)
Get the next network according to the given Ipv4Mask.
Ipv4 addresses are stored in host order in this class.
Ipv4Address CombineMask(const Ipv4Mask &mask) const
Combine this address with a network mask.
uint32_t Get() const
Get the host-order 32-bit IP address.
a class to represent an Ipv4 address mask
uint32_t Get() const
Get the host-order 32-bit IP mask.
static T * Get()
Get a pointer to the singleton instance.
#define NS_ASSERT_MSG(condition, message)
At runtime, in debugging builds, if this condition is not true, the program prints the message to out...
#define NS_ABORT_MSG_UNLESS(cond, msg)
Abnormal program termination if a condition is false, with a message.
#define NS_FATAL_ERROR(msg)
Report a fatal error with a message and terminate.
#define NS_LOG_COMPONENT_DEFINE(name)
Define a Log component with a specific name.
#define NS_LOG_LOGIC(msg)
Use NS_LOG to output a message of level LOG_LOGIC.
#define NS_LOG_FUNCTION_NOARGS()
Output the name of the function.
#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.