README moves to markdown
[nepi.git] / src / nepi / resources / ns3 / ns3simulation.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 class NS3Simulation(object):
20     @property
21     def client(self):
22         return self._client
23
24     def create(self, *args, **kwargs):
25         return self.client.create(*args, **kwargs)
26
27     def factory(self, *args, **kwargs):
28         return self.client.factory(*args, **kwargs)
29
30     def invoke(self, *args, **kwargs):
31         return self.client.invoke(*args, **kwargs)
32
33     def ns3_set(self, *args, **kwargs):
34         return self.client.set(*args, **kwargs)
35
36     def ns3_get(self, *args, **kwargs):
37         return self.client.get(*args, **kwargs)
38
39     def flush(self, *args, **kwargs):
40         return self.client.flush(*args, **kwargs)
41
42     def start(self, *args, **kwargs):
43         return self.client.start(*args, **kwargs)
44
45     def stop(self, *args, **kwargs):
46         return self.client.stop(*args, **kwargs)
47
48     def shutdown(self, *args, **kwargs):
49         return self.client.shutdown(*args, **kwargs)
50