rename src/nepi/ into just nepi/
[nepi.git] / nepi / resources / ns3 / ns3mobilitymodel.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 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
18
19 from nepi.execution.resource import clsinit_copy
20 from nepi.resources.ns3.ns3base import NS3Base
21
22 # TODO: 
23 #       - mobility.SetPositionAllocator ("ns3::GridPositionAllocator",
24 #       - set hook for Position - SetPosition(Vector)
25
26 @clsinit_copy
27 class NS3BaseMobilityModel(NS3Base):
28     _rtype = "abstract::ns3::MobilityModel"
29
30     def _configure_object(self):
31         # Set initial position
32         position = self.get("Position")
33         if position:
34             self.simulation.ns3_set(self.uuid, "Position", position)
35
36     @property
37     def _rms_to_wait(self):
38         rms = set()
39         rms.add(self.simulation)
40         return rms
41
42     def _connect_object(self):
43         pass