A Discrete-Event Network Simulator
API
data-rate.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 //
3 // Copyright (c) 2006 Georgia Tech Research Corporation
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License version 2 as
7 // published by the Free Software Foundation;
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 //
18 // Author: Rajib Bhattacharjea<raj.b@gatech.edu>
19 //
20 
21 #ifndef DATA_RATE_H
22 #define DATA_RATE_H
23 
24 #include <string>
25 #include <iostream>
26 #include <stdint.h>
27 #include "ns3/nstime.h"
28 #include "ns3/attribute.h"
29 #include "ns3/attribute-helper.h"
30 #include "ns3/deprecated.h"
31 
32 namespace ns3 {
33 
88 class DataRate
89 {
90 public:
91  DataRate ();
100  DataRate (uint64_t bps);
119  DataRate (std::string rate);
120 
126  bool operator < (const DataRate& rhs) const;
127 
133  bool operator <= (const DataRate& rhs) const;
134 
140  bool operator > (const DataRate& rhs) const;
141 
147  bool operator >= (const DataRate& rhs) const;
148 
154  bool operator == (const DataRate& rhs) const;
155 
161  bool operator != (const DataRate& rhs) const;
162 
170  Time CalculateBytesTxTime (uint32_t bytes) const;
171 
179  Time CalculateBitsTxTime (uint32_t bits) const;
180 
192  double CalculateTxTime (uint32_t bytes) const;
193 
198  uint64_t GetBitRate () const;
199 
200 private:
201 
216  static bool DoParse (const std::string s, uint64_t *v);
217 
218  // Uses DoParse
219  friend std::istream &operator >> (std::istream &is, DataRate &rate);
220 
221  uint64_t m_bps;
222 };
223 
231 std::ostream &operator << (std::ostream &os, const DataRate &rate);
232 
240 std::istream &operator >> (std::istream &is, DataRate &rate);
241 
243 
244 
253 double operator* (const DataRate& lhs, const Time& rhs);
262 double operator* (const Time& lhs, const DataRate& rhs);
263 
264 
265 } // namespace ns3
266 
267 #endif /* DATA_RATE_H */
std::istream & operator>>(std::istream &is, Angles &a)
initialize a struct Angles from input
Definition: angles.cc:48
Simulation virtual time values and global simulation resolution.
Definition: nstime.h:102
Time CalculateBytesTxTime(uint32_t bytes) const
Calculate transmission time.
Definition: data-rate.cc:235
bool operator<(const DataRate &rhs) const
Definition: data-rate.cc:199
bool operator>(const DataRate &rhs) const
Definition: data-rate.cc:209
uint64_t m_bps
data rate [bps]
Definition: data-rate.h:221
static bool DoParse(const std::string s, uint64_t *v)
Parse a string representing a DataRate into an uint64_t.
Definition: data-rate.cc:34
Class for representing data rates.
Definition: data-rate.h:88
NS_DEPRECATED double CalculateTxTime(uint32_t bytes) const
Calculate transmission time.
Definition: data-rate.cc:229
int64x64_t operator*(const int64x64_t &lhs, const int64x64_t &rhs)
Multiplication operator.
Definition: int64x64.h:108
friend std::istream & operator>>(std::istream &is, DataRate &rate)
Stream extraction operator.
Definition: data-rate.cc:272
std::ostream & operator<<(std::ostream &os, const Angles &a)
print a struct Angles to output
Definition: angles.cc:42
Every class exported by the ns3 library is enclosed in the ns3 namespace.
uint64_t GetBitRate() const
Get the underlying bitrate.
Definition: data-rate.cc:249
Time CalculateBitsTxTime(uint32_t bits) const
Calculate transmission time.
Definition: data-rate.cc:242
#define NS_DEPRECATED
Mark a function as deprecated.
Definition: deprecated.h:60
bool operator<=(const DataRate &rhs) const
Definition: data-rate.cc:204
bool operator>=(const DataRate &rhs) const
Definition: data-rate.cc:214
bool operator!=(const DataRate &rhs) const
Definition: data-rate.cc:224
bool operator==(const DataRate &rhs) const
Definition: data-rate.cc:219
#define ATTRIBUTE_HELPER_HEADER(type)
Declare the attribute value, accessor and checkers for class type.