/* -*-  Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
/*
 * Copyright (c) 2005,2006 INRIA
 *
 * 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: Federico Maguolo <maguolof@dei.unipd.it>
 */
#ifndef MARF_MAC_STATIONS_H
#define MARF_MAC_STATIONS_H

#include "mac-stations.h"

namespace ns3 {

class MarfMacStations : public MacStations {
public:
  MarfMacStations (WifiMode defaultTxMode, 
                   uint32_t timerThreshold, 
		   uint32_t successThreshold, 
		   uint32_t minRtsWnd, 
		   uint32_t maxRtsWnd, 
		   bool rtsFailsAsDataFails,
		   bool turnOffRtsAfterRateDecrease,
		   bool turnOnRtsAfterRateIncrease);
  virtual ~MarfMacStations ();

private:
  virtual class MacStation *CreateStation (void);
  uint32_t m_timerThreshold;
  uint32_t m_successThreshold;
  uint32_t m_minRtsWnd;
  uint32_t m_maxRtsWnd;
  bool m_rtsFailsAsDataFails;
  bool m_turnOffRtsAfterRateDecrease;
  bool m_turnOnRtsAfterRateIncrease;
};


class MarfMacStation : public MacStation
{
public:
  MarfMacStation (MarfMacStations *stations,
                 int minTimerTimeout,
                 int minSuccessThreshold,
		 int minRtsWnd,
		 int maxRtsWnd,
		 bool rtsFailsAsDataFails,
		 bool turnOffRtsAfterRateDecrease,
		 bool turnOnRtsAfterRateIncrease);
  virtual ~MarfMacStation ();

  virtual void ReportRxOk (double rxSnr, WifiMode txMode);
  virtual void ReportRtsFailed (void);
  virtual void ReportDataFailed (void);
  virtual void ReportRtsOk (double ctsSnr, WifiMode ctsMode, double rtsSnr);
  virtual void ReportDataOk (double ackSnr, WifiMode ackMode, double dataSnr);
  virtual void ReportFinalRtsFailed (void);
  virtual void ReportFinalDataFailed (void);
  virtual bool NeedRts (Ptr<const Packet> packet);

private:
  virtual MarfMacStations *GetStations (void) const;
  virtual WifiMode DoGetDataMode (uint32_t size);
  virtual WifiMode DoGetRtsMode (void);

  uint32_t m_timer;
  uint32_t m_success;
  uint32_t m_failed;
  bool m_recovery;
  bool m_justModifyRate;
  uint32_t m_retry;
  
  uint32_t m_timerTimeout;
  uint32_t m_successThreshold;

  uint32_t m_rate;
  bool m_rtsOn;
  uint32_t m_rtsWnd;
  uint32_t m_minRtsWnd;
  uint32_t m_maxRtsWnd;
  uint32_t m_rtsCounter;
  bool m_haveASuccess;
  
  MarfMacStations *m_stations;
  bool m_rtsFailsAsDataFails;
  bool m_turnOffRtsAfterRateDecrease;
  bool m_turnOnRtsAfterRateIncrease;
  
  uint32_t GetMaxRate (void);
  uint32_t GetMinRate (void);
  void CheckRts (void);
  void IncreaseRtsWnd (void);
  void ResetRtsWnd (void);
  void TurnOffRts (void);
  void TurnOnRts (void);

  bool NeedRecoveryFallback (void);
  bool NeedNormalFallback (void);
  
protected:
  
  uint32_t GetTimerTimeout (void);
  uint32_t GetSuccessThreshold (void);
  
  void SetTimerTimeout (uint32_t timerTimeout);
  void SetSuccessThreshold (uint32_t successThreshold);
};

} // namespace ns3

#endif /* MARF_MAC_STATIONS_H */
