Bug fix: in netns DesignOnly attributes should not be set in the python objects
[nepi.git] / src / nepi / testbeds / ns3 / execute.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 from nepi.core import testbed_impl
5 from nepi.core.attributes import Attribute
6 from constants import TESTBED_ID
7 from nepi.util.constants import TIME_NOW, \
8     TESTBED_STATUS_STARTED
9 import os
10 import sys
11 import threading
12 import random
13 import socket
14 import weakref
15
16 class TestbedController(testbed_impl.TestbedController):
17     from nepi.util.tunchannel_impl import TunChannel
18     
19     LOCAL_FACTORIES = {
20         'ns3::Nepi::TunChannel' : TunChannel,
21     }
22     
23     LOCAL_TYPES = tuple(LOCAL_FACTORIES.values())
24
25     def __init__(self, testbed_version):
26         super(TestbedController, self).__init__(TESTBED_ID, testbed_version)
27         self._ns3 = None
28         self._home_directory = None
29         self._traces = dict()
30         self._simulator_thread = None
31         self._condition = None
32
33     @property
34     def home_directory(self):
35         return self._home_directory
36
37     @property
38     def ns3(self):
39         return self._ns3
40
41     def do_setup(self):
42         self._home_directory = self._attributes.\
43             get_attribute_value("homeDirectory")
44         self._ns3 = self._load_ns3_module()
45         
46         # create home...
47         home = os.path.normpath(self.home_directory)
48         if not os.path.exists(home):
49             os.makedirs(home, 0755)
50         
51         super(TestbedController, self).do_setup()
52
53     def start(self):
54         super(TestbedController, self).start()
55         self._condition = threading.Condition()
56         self._simulator_thread = threading.Thread(target = self._simulator_run,
57                 args = [self._condition])
58         self._simulator_thread.start()
59
60     def stop(self, time = TIME_NOW):
61         super(TestbedController, self).stop(time)
62         #self.ns3.Simulator.Stop()
63         self._stop_simulation(time)
64
65     def set(self, guid, name, value, time = TIME_NOW):
66         super(TestbedController, self).set(guid, name, value, time)
67         # TODO: take on account schedule time for the task
68         factory_id = self._create[guid]
69         factory = self._factories[factory_id]
70         if factory.box_attributes.is_attribute_design_only(name):
71             return
72         element = self._elements[guid]
73         if factory_id in self.LOCAL_FACTORIES:
74             setattr(element, name, value)
75         elif factory.box_attributes.is_attribute_invisible(name):
76             return
77         else:
78             ns3_value = self._to_ns3_value(guid, name, value)
79             self._set_attribute(name, ns3_value, element)
80
81     def get(self, guid, name, time = TIME_NOW):
82         value = super(TestbedController, self).get(guid, name, time)
83         # TODO: take on account schedule time for the task
84         factory_id = self._create[guid]
85         factory = self._factories[factory_id]
86         element = self._elements[guid]
87         if factory_id in self.LOCAL_FACTORIES:
88             if hasattr(element, name):
89                 return getattr(element, name)
90             else:
91                 return value
92         if factory.box_attributes.is_attribute_design_only(name) or \
93                 factory.box_attributes.is_attribute_invisible(name):
94             return value
95         TypeId = self.ns3.TypeId()
96         typeid = TypeId.LookupByName(factory_id)
97         info = TypeId.AttributeInfo()
98         if not typeid or not typeid.LookupAttributeByName(name, info):
99             raise AttributeError("Invalid attribute %s for element type %d" % \
100                 (name, guid))
101         checker = info.checker
102         ns3_value = checker.Create() 
103         self._get_attribute(name, ns3_value, element)
104         value = ns3_value.SerializeToString(checker)
105         attr_type = factory.box_attributes.get_attribute_type(name)
106         if attr_type == Attribute.INTEGER:
107             return int(value)
108         if attr_type == Attribute.DOUBLE:
109             return float(value)
110         if attr_type == Attribute.BOOL:
111             return value == "true"
112         return value
113
114     def action(self, time, guid, action):
115         raise NotImplementedError
116
117     def trace_filename(self, guid, trace_id):
118         # TODO: Need to be defined inside a home!!!! with and experiment id_code
119         filename = self._traces[guid][trace_id]
120         return os.path.join(self.home_directory, filename)
121
122     def follow_trace(self, guid, trace_id, filename):
123         if guid not in self._traces:
124             self._traces[guid] = dict()
125         self._traces[guid][trace_id] = filename
126
127     def shutdown(self):
128         for element in self._elements.itervalues():
129             if isinstance(element, self.LOCAL_TYPES):
130                 # graceful shutdown of locally-implemented objects
131                 element.Cleanup()
132         self._elements.clear()
133         if self.ns3:
134             #self.ns3.Simulator.Stop()
135             self._stop_simulation("0s")
136             if self._simulator_thread:
137                 self._simulator_thread.join()
138             self.ns3.Simulator.Destroy()
139         self._ns3 = None
140         sys.stdout.flush()
141         sys.stderr.flush()
142
143     def _simulator_run(self, condition):
144         # Run simulation
145         self.ns3.Simulator.Run()
146         # Signal condition on simulation end to notify waiting threads
147         condition.acquire()
148         condition.notifyAll()
149         condition.release()
150
151     def _schedule_event(self, condition, func, *args):
152         """Schedules event on running experiment"""
153         def execute_event(condition, has_event_occurred, func, *args):
154             # exec func
155             try:
156                 func(*args)
157             finally:
158                 # flag event occured
159                 has_event_occurred[0] = True
160                 # notify condition indicating attribute was set
161                 condition.acquire()
162                 condition.notifyAll()
163                 condition.release()
164
165         # contextId is defined as general context
166         contextId = long(0xffffffff)
167         # delay 0 means that the event is expected to execute inmediately
168         delay = self.ns3.Seconds(0)
169         # flag to indicate that the event occured
170         # because bool is an inmutable object in python, in order to create a
171         # bool flag, a list is used as wrapper
172         has_event_occurred = [False]
173         condition.acquire()
174         if not self.ns3.Simulator.IsFinished():
175             self.ns3.Simulator.ScheduleWithContext(contextId, delay, execute_event,
176                  condition, has_event_occurred, func, *args)
177             while not has_event_occurred[0] and not self.ns3.Simulator.IsFinished():
178                 condition.wait()
179                 condition.release()
180
181     def _set_attribute(self, name, ns3_value, element):
182         if self.status() == TESTBED_STATUS_STARTED:
183             # schedule the event in the Simulator
184             self._schedule_event(self._condition, self._set_ns3_attribute, 
185                     name, ns3_value, element)
186         else:
187             self._set_ns3_attribute(name, ns3_value, element)
188
189     def _get_attribute(self, name, ns3_value, element):
190         if self.status() == TESTBED_STATUS_STARTED:
191             # schedule the event in the Simulator
192             self._schedule_event(self._condition, self._get_ns3_attribute, 
193                     name, ns3_value, element)
194         else:
195             self._get_ns3_attribute(name, ns3_value, element)
196
197     def _set_ns3_attribute(self, name, ns3_value, element):
198         element.SetAttribute(name, ns3_value)
199
200     def _get_ns3_attribute(self, name, ns3_value, element):
201         element.GetAttribute(name, ns3_value)
202
203     def _stop_simulation(self, time):
204         if self.status() == TESTBED_STATUS_STARTED:
205             # schedule the event in the Simulator
206             self._schedule_event(self._condition, self._stop_ns3_simulation, 
207                     time)
208         else:
209             self._stop_ns3_simulation(time)
210
211     def _stop_simulation(self, time = TIME_NOW):
212         if not self.ns3:
213             return
214         if time == TIME_NOW:
215             self.ns3.Simulator.Stop()
216         else:
217             self.ns3.Simulator.Stop(self.ns3.Time(time))
218
219     def _to_ns3_value(self, guid, name, value):
220         factory_id = self._create[guid]
221         TypeId = self.ns3.TypeId()
222         typeid = TypeId.LookupByName(factory_id)
223         info = TypeId.AttributeInfo()
224         if not typeid.LookupAttributeByName(name, info):
225             raise RuntimeError("Attribute %s doesn't belong to element %s" \
226                    % (name, factory_id))
227         str_value = str(value)
228         if isinstance(value, bool):
229             str_value = str_value.lower()
230         checker = info.checker
231         ns3_value = checker.Create()
232         ns3_value.DeserializeFromString(str_value, checker)
233         return ns3_value
234
235     def _load_ns3_module(self):
236         import ctypes
237         import imp
238
239         simu_impl_type = self._attributes.get_attribute_value(
240                 "SimulatorImplementationType")
241         checksum = self._attributes.get_attribute_value("ChecksumEnabled")
242         stop_time = self._attributes.get_attribute_value("StopTime")
243
244         bindings = os.environ["NEPI_NS3BINDINGS"] \
245                 if "NEPI_NS3BINDINGS" in os.environ else None
246         libfile = os.environ["NEPI_NS3LIBRARY"] \
247                 if "NEPI_NS3LIBRARY" in os.environ else None
248
249         if libfile:
250             ctypes.CDLL(libfile, ctypes.RTLD_GLOBAL)
251
252         path = [ os.path.dirname(__file__) ] + sys.path
253         if bindings:
254             path = [ bindings ] + path
255
256         try:
257             module = imp.find_module ('ns3', path)
258             mod = imp.load_module ('ns3', *module)
259         except ImportError:
260             # In some environments, ns3 per-se does not exist,
261             # only the low-level _ns3
262             module = imp.find_module ('_ns3', path)
263             mod = imp.load_module ('_ns3', *module)
264             sys.modules["ns3"] = mod # install it as ns3 too
265             
266             # When using _ns3, we have to make sure we destroy
267             # the simulator when the process finishes
268             import atexit
269             atexit.register(mod.Simulator.Destroy)
270     
271         if simu_impl_type:
272             value = mod.StringValue(simu_impl_type)
273             mod.GlobalValue.Bind ("SimulatorImplementationType", value)
274         if checksum:
275             value = mod.BooleanValue(checksum)
276             mod.GlobalValue.Bind ("ChecksumEnabled", value)
277         if stop_time:
278             value = mod.Time(stop_time)
279             mod.Simulator.Stop (value)
280         return mod
281
282     def _get_construct_parameters(self, guid):
283         params = self._get_parameters(guid)
284         construct_params = dict()
285         factory_id = self._create[guid]
286         TypeId = self.ns3.TypeId()
287         typeid = TypeId.LookupByName(factory_id)
288         for name, value in params.iteritems():
289             info = self.ns3.TypeId.AttributeInfo()
290             found = typeid.LookupAttributeByName(name, info)
291             if found and \
292                 (info.flags & TypeId.ATTR_CONSTRUCT == TypeId.ATTR_CONSTRUCT):
293                 construct_params[name] = value
294         return construct_params
295
296
297