4013a3cd98c07a1c99d1223b5d779fbc1c70d33c
[nepi.git] / src / nepi / resources / ns3 / ns3simulator.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 as published by
7 #    the Free Software Foundation, either version 3 of the License, or
8 #    (at your option) any later version.
9 #
10 #    This program is distributed in the hope that it will be useful,
11 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #    GNU General Public License for more details.
14 #
15 #    You should have received a copy of the GNU General Public License
16 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 #
18 # Author: Alina Quereilhac <alina.quereilhac@inria.fr>
19
20 class NS3Simulator(object):
21
22     @property
23     def client(self):
24         return self._client
25
26     def create(self, clazzname, *args):
27         return self.client.create(clazzname, *args)
28
29     def invoke(self, uuid, operation, *args):
30         return self.client.invoke(uuid, operation, *args)
31
32     def set(self, uuid, name, value):
33         return self.client.set(uuid, name, value)
34
35     def get(self, uuid, name):
36         return self.client.get(uuid, name)
37
38     def trace(self, *args):
39         return self.client.trace(*args)
40
41     def start(self):
42         return self.client.start()
43
44     def stop(self, time = None):
45         return self.client.stop(time)
46
47     def shutdown(self):
48         return self.client.shutdown()
49