src/devices/csma-cd/backoff.cc
author Emmanuelle Laprise <emmanuelle.laprise@bluekazoo.ca>
Fri, 27 Jul 2007 21:17:14 +0200
changeset 977 09bf4e458015
permissions -rw-r--r--
a csma/cd NetDevice subclass and a test script

/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/*
 * Copyright (c) 2007, Emmanuelle Laprise
 * All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation;
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * Author: Emmanuelle Laprise <emmanuelle.laprise@bluekazoo.ca>
 */

#include "backoff.h"

namespace ns3 {

Backoff::Backoff() 
{
  m_slotTime = MicroSeconds(1);
  m_minSlots = 1;
  m_maxSlots = 1000;
  m_ceiling = 10;
  m_maxRetries = 1000;

  ResetBackoffTime();
}

Backoff::Backoff(Time slotTime, uint32_t minSlots, uint32_t maxSlots,
                 uint32_t ceiling, uint32_t maxRetries)
{
  m_slotTime = slotTime;
  m_minSlots = minSlots;
  m_maxSlots = maxSlots;
  m_ceiling = ceiling;
  m_maxRetries = maxRetries;
}  

Time
Backoff::GetBackoffTime (void)
{
  Time backoff;
  uint32_t ceiling;

  if ((m_ceiling > 0) &&(m_numBackoffRetries > m_ceiling))
    ceiling = m_ceiling;
  else
    ceiling = m_numBackoffRetries;

  uint32_t minSlot = m_minSlots;
  uint32_t maxSlot = (uint32_t)pow(2, ceiling) - 1;
  if (maxSlot > m_maxSlots)
    maxSlot = m_maxSlots;

  uint32_t backoffSlots = 
    (uint32_t)UniformVariable::GetSingleValue(minSlot, maxSlot);

  backoff = Scalar(backoffSlots) * m_slotTime;
  return (backoff);
}

void Backoff::ResetBackoffTime (void)
{
  m_numBackoffRetries = 0;
}

bool Backoff::MaxRetriesReached(void) {
  return (m_numBackoffRetries >= m_maxRetries);
}

void Backoff::IncrNumRetries(void) {
  m_numBackoffRetries++;
}

} // namespace ns3