rename src/nepi/ into just nepi/
[nepi.git] / nepi / resources / ns3 / templates / resource_manager_template.txt
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 <BASE_CLASS_IMPORT>
23
24 @clsinit_copy
25 class <CLASS_NAME>(<BASE_CLASS>):
26     _rtype = "<RTYPE>"
27
28     @classmethod
29     def _register_attributes(cls):
30         <ATTRIBUTES>
31
32     @classmethod
33     def _register_traces(cls):
34         <TRACES>
35
36     def __init__(self, ec, guid):
37         super(<CLASS_NAME>, self).__init__(ec, guid)
38         self._home = "<SHORT-RTYPE>-%s" % self.guid