merged ex_shutdown into nepi-3-dev
[nepi.git] / src / nepi / resources / omf / channel.py
1 #
2 #    NEPI, a framework to manage network experiments
3 #    Copyright (C) 2013 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 #         Julien Tribino <julien.tribino@inria.fr>
20
21 from nepi.execution.resource import ResourceManager, clsinit_copy, \
22         ResourceState, reschedule_delay, failtrap
23 from nepi.execution.attribute import Attribute, Flags 
24
25 from nepi.resources.omf.omf_resource import ResourceGateway, OMFResource
26 from nepi.resources.omf.omf_api import OMFAPIFactory
27
28
29 @clsinit_copy
30 class OMFChannel(OMFResource):
31     """
32     .. class:: Class Args :
33       
34         :param ec: The Experiment controller
35         :type ec: ExperimentController
36         :param guid: guid of the RM
37         :type guid: int
38         :param creds: Credentials to communicate with the rm (XmppClient for OMF)
39         :type creds: dict
40
41     .. note::
42
43        This class is used only by the Experiment Controller through the Resource Factory
44
45     """
46     _rtype = "OMFChannel"
47     _authorized_connections = ["OMFWifiInterface", "OMFNode"]
48
49     @classmethod
50     def _register_attributes(cls):
51         """Register the attributes of an OMF channel
52         
53         """
54         channel = Attribute("channel", "Name of the application")
55         cls._register_attribute(channel)
56
57     def __init__(self, ec, guid):
58         """
59         :param ec: The Experiment controller
60         :type ec: ExperimentController
61         :param guid: guid of the RM
62         :type guid: int
63         :param creds: Credentials to communicate with the rm (XmppClient for OMF)
64         :type creds: dict
65
66         """
67         super(OMFChannel, self).__init__(ec, guid)
68
69         self._nodes_guid = list()
70
71         self._omf_api = None
72
73     @property
74     def exp_id(self):
75         return self.ec.exp_id
76
77     def valid_connection(self, guid):
78         """ Check if the connection with the guid in parameter is possible.
79         Only meaningful connections are allowed.
80
81         :param guid: Guid of the current RM
82         :type guid: int
83         :rtype:  Boolean
84
85         """
86         rm = self.ec.get_resource(guid)
87         
88         if rm.rtype() in self._authorized_connections:
89             msg = "Connection between %s %s and %s %s accepted" % (
90                     self.rtype(), self._guid, rm.rtype(), guid)
91             self.debug(msg)
92             return True
93
94         msg = "Connection between %s %s and %s %s refused" % (
95                 self.rtype(), self._guid, rm.rtype(), guid)
96         self.debug(msg)
97         
98         return False
99
100     def _get_target(self, conn_set):
101         """
102         Get the couples (host, interface) that uses this channel
103
104         :param conn_set: Connections of the current Guid
105         :type conn_set: set
106         :rtype: list
107         :return: self._nodes_guid
108
109         """
110         res = []
111         for elt in conn_set:
112             rm_iface = self.ec.get_resource(elt)
113             for conn in rm_iface.connections:
114                 rm_node = self.ec.get_resource(conn)
115                 if rm_node.rtype() == "OMFNode" and rm_node.get('hostname'):
116                     if rm_iface.state < ResourceState.PROVISIONED or \
117                             rm_node.state < ResourceState.READY:
118                         return "reschedule"
119                     couple = [rm_node.get('hostname'), rm_iface.get('alias')]
120                     #print couple
121                     res.append(couple)
122         return res
123
124     @failtrap
125     def deploy(self):
126         """ Deploy the RM. It means : Get the xmpp client and send messages 
127         using OMF 5.4 protocol to configure the channel.
128         It becomes DEPLOYED after sending messages to configure the channel
129
130         """
131         if not self._omf_api :
132             self._omf_api = OMFAPIFactory.get_api(self.get('xmppSlice'), 
133                 self.get('xmppHost'), self.get('xmppPort'), 
134                 self.get('xmppPassword'), exp_id = self.exp_id)
135
136         if not self._omf_api :
137             msg = "Credentials are not initialzed. XMPP Connections impossible"
138             self.error(msg)
139             raise RuntimeError, msg
140
141         if not self.get('channel'):
142             msg = "Channel's value is not initialized"
143             self.error(msg)
144             raise RuntimeError, msg
145
146         self._nodes_guid = self._get_target(self._connections)
147
148         if self._nodes_guid == "reschedule" :
149             self.ec.schedule("2s", self.deploy)
150         else:
151             try:
152                 for couple in self._nodes_guid:
153                     #print "Couple node/alias : " + couple[0] + "  ,  " + couple[1]
154                     attrval = self.get('channel')
155                     attrname = "net/%s/%s" % (couple[1], 'channel')
156                     self._omf_api.configure(couple[0], attrname, attrval)
157             except AttributeError:
158                 msg = "Credentials are not initialzed. XMPP Connections impossible"
159                 self.error(msg)
160                 raise
161
162             super(OMFChannel, self).deploy()
163
164     def release(self):
165         """ Clean the RM at the end of the experiment and release the API
166
167         """
168         try:
169             if self._omf_api :
170                 OMFAPIFactory.release_api(self.get('xmppSlice'), 
171                     self.get('xmppHost'), self.get('xmppPort'), 
172                     self.get('xmppPassword'), exp_id = self.exp_id)
173         except:
174             import traceback
175             err = traceback.format_exc()
176             self.error(err)
177
178         super(OMFChannel, self).release()
179