README moves to markdown
[nepi.git] / nepi / resources / ns3 / classes / aloha_noack_net_device.py
1 #
2 #    NEPI, a framework to manage network experiments
3 #    Copyright (C) 2014 INRIA
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, see <http://www.gnu.org/licenses/>.
16 #
17
18 from nepi.execution.attribute import Attribute, Flags, Types
19 from nepi.execution.trace import Trace, TraceAttr
20 from nepi.execution.resource import ResourceManager, clsinit_copy, \
21         ResourceState
22 from nepi.resources.ns3.ns3netdevice import NS3BaseNetDevice 
23
24 @clsinit_copy
25 class NS3AlohaNoackNetDevice(NS3BaseNetDevice):
26     _rtype = "ns3::AlohaNoackNetDevice"
27
28     @classmethod
29     def _register_attributes(cls):
30         
31         attr_address = Attribute("Address",
32             "The MAC address of this device.",
33             type = Types.String,
34             default = "12:34:56:78:90:12",  
35             allowed = None,
36             range = None,    
37             flags = Flags.Reserved | Flags.Construct)
38
39         cls._register_attribute(attr_address)
40
41         attr_mtu = Attribute("Mtu",
42             "The Maximum Transmission Unit",
43             type = Types.Integer,
44             default = "1500",  
45             allowed = None,
46             range = None,    
47             flags = Flags.Reserved | Flags.Construct)
48
49         cls._register_attribute(attr_mtu)
50
51
52
53     @classmethod
54     def _register_traces(cls):
55         
56         mactx = Trace("MacTx", "Trace source indicating a packet has arrived for transmission by this device")
57
58         cls._register_trace(mactx)
59
60         mactxdrop = Trace("MacTxDrop", "Trace source indicating a packet has been dropped by the device before transmission")
61
62         cls._register_trace(mactxdrop)
63
64         macpromiscrx = Trace("MacPromiscRx", "A packet has been received by this device, has been passed up from the physical layer and is being forwarded up the local protocol stack.  This is a promiscuous trace,")
65
66         cls._register_trace(macpromiscrx)
67
68         macrx = Trace("MacRx", "A packet has been received by this device, has been passed up from the physical layer and is being forwarded up the local protocol stack.  This is a non-promiscuous trace,")
69
70         cls._register_trace(macrx)
71
72
73
74     def __init__(self, ec, guid):
75         super(NS3AlohaNoackNetDevice, self).__init__(ec, guid)
76         self._home = "ns3-aloha-noack-net-device-%s" % self.guid