6039e63b885d5c93cfd4984f40ee10dd7e19fce2
[nepi.git] / src / nepi / resources / omf / omf6_parser.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.util.logger import Logger
22
23 import traceback
24 import xml.etree.ElementTree as ET
25
26 # inherit from BaseXmpp and XMLstream classes
27 class OMF6Parser(Logger): 
28     """
29     .. class:: Class Args :
30       
31         :param jid: Jabber Id (= Xmpp Slice + Date)
32         :type jid: str
33         :param password: Jabber Password (= Xmpp Password)
34         :type password: str
35
36     .. note::
37
38        This class is an XMPP Client with customized method
39
40     """
41
42     def __init__(self):
43         """
44
45         :param jid: Jabber Id (= Xmpp Slice + Date)
46         :type jid: str
47         :param password: Jabber Password (= Xmpp Password)
48         :type password: str
49
50
51         """
52         super(OMF6Parser, self).__init__("OMF6API")
53         self.mailbox={}
54
55         self.init_mailbox()
56
57     def init_mailbox(self):
58         self.mailbox['create'] = []
59         self.mailbox['started'] = []
60         self.mailbox['release'] = []
61   
62     def _check_for_tag(self, root, namespaces, tag):
63         """  Check if an element markup is in the ElementTree
64
65         :param root: Root of the tree
66         :type root: ElementTree Element
67         :param namespaces: Namespaces of the element
68         :type namespaces: str
69         :param tag: Tag that will search in the tree
70         :type tag: str
71
72         """
73         for element in root.iter(namespaces+tag):
74             if element.text:
75                 return element.text
76             else : 
77                 return None
78
79     def _check_for_props(self, root, namespaces):
80         """  Check if an element markup is in the ElementTree
81
82         :param root: Root of the tree
83         :type root: ElementTree Element
84         :param namespaces: Namespaces of the element
85         :type namespaces: str
86
87         """
88         props = {}
89         for properties in root.iter(namespaces+'props'):
90             for element in properties.iter():
91                 if element.tag and element.text:
92                     props[element.tag] = element.text
93         return props
94
95     def _check_for_membership(self, root, namespaces):
96         """  Check if an element markup is in the ElementTree
97
98         :param root: Root of the tree
99         :type root: ElementTree Element
100         :param namespaces: Namespaces of the element
101         :type namespaces: str
102
103         """
104         for element in root.iter(namespaces+'membership'):
105             for elt in element.iter(namespaces+'it'):
106                 ##XXX : change
107                 return elt.text
108
109
110     def _check_output(self, root, namespaces):
111         """ Check the significative element in the answer and display it
112
113         :param root: Root of the tree
114         :type root: ElementTree Element
115         :param namespaces: Namespaces of the tree
116         :type namespaces: str
117
118         """
119         fields = ["TARGET", "REASON", "PATH", "APPID", "VALUE"]
120         response = ""
121         for elt in fields:
122             msg = self._check_for_tag(root, namespaces, elt)
123             if msg is not None:
124                 response = response + " " + msg.text + " :"
125         deb = self._check_for_tag(root, namespaces, "MESSAGE")
126         if deb is not None:
127             msg = response + " " + deb.text
128             self.debug(msg)
129         else :
130             self.info(response)
131
132
133     def _inform_creation_ok(self, root, namespaces):
134         #ET.dump(root)
135         uid = self._check_for_tag(root, namespaces, "uid")
136         cid = self._check_for_tag(root, namespaces, "cid")
137         member = self._check_for_membership(root, namespaces)
138         binary_path = self._check_for_tag(root, namespaces, "binary_path")
139         msg = "CREATION OK -- "
140         if binary_path :
141             msg = msg + "The resource : '"+binary_path
142         if uid :
143             msg = msg + "' is listening to the topics : '"+ uid
144         if member :
145             msg = msg + "' and '"+ member +"'"
146         if cid:
147             self.info(msg)
148             self.mailbox['create'].append([cid, uid ])
149
150     def _inform_creation_failed(self, root, namespaces):
151         reason = self._check_for_tag(root, namespaces, "reason")
152         cid = self._check_for_tag(root, namespaces, "cid")
153         msg = "CREATION FAILED - The reason : "+reason
154         if cid:
155             self.error(msg)
156             self.mailbox['create'].append([cid, uid ])
157
158     def _inform_status(self, root, namespaces):
159         props = self._check_for_props(root, namespaces)
160         uid = self._check_for_tag(root, namespaces, "uid")
161         msg = "STATUS -- "
162         for elt in props.keys():
163             ns, tag = elt.split('}')
164             if tag == "it":
165                 msg = msg + "membership : " + props[elt]+" -- "
166             elif tag == "event":
167                 self.mailbox['started'].append(uid)
168                 msg = msg + "event : " + props[elt]+" -- "
169             else:
170                 msg = msg + tag +" : " + props[elt]+" -- "
171         msg = msg + " STATUS "
172         self.info(msg)
173
174     def _inform_released(self, root, namespaces):
175         #ET.dump(root)
176         parent_id = self._check_for_tag(root, namespaces, "src")
177         child_id = self._check_for_tag(root, namespaces, "res_id")
178         cid = self._check_for_tag(root, namespaces, "cid")
179         if cid :
180             msg = "RELEASED - The resource : '"+child_id+ \
181               "' has been released by : '"+ parent_id
182             self.info(msg)
183             self.mailbox['release'].append(cid)
184
185     def _inform_error(self, root, namespaces):
186         reason = self._check_for_tag(root, namespaces, "reason")
187         msg = "The reason : "+reason
188         self.error(msg)
189
190     def _inform_warn(self, root, namespaces):
191         reason = self._check_for_tag(root, namespaces, "reason")
192         msg = "The reason : "+reason
193         self.warn(msg)
194
195     def _parse_inform(self, root, namespaces):
196         """ Check the significative element in the answer and display it
197
198         :param root: Root of the tree
199         :type root: ElementTree Element
200         :param namespaces: Namespaces of the tree
201         :type namespaces: str
202
203         """
204         itype = self._check_for_tag(root, namespaces, "itype")
205         if itype :
206             method_name = '_inform_'+ itype.replace('.', '_').lower()
207             method = getattr(self, method_name)
208             if method :
209                 method(root, namespaces)
210             else :
211                 msg = "There is no method to parse the response of the type " + itype
212                 self.info(msg)
213                 return
214         
215
216     def check_mailbox(self, itype, attr):
217         if itype == "create":
218             for res in self.mailbox[itype]:
219                 binary, uid = res
220                 if binary == attr:
221                     self.mailbox[itype].remove(res)
222                     return uid
223         else :
224             for res in self.mailbox[itype]:
225                 if attr == res:
226                     self.mailbox[itype].remove(res)
227                     return res
228                
229
230     def handle(self, iq):
231         namespaces = "{http://schema.mytestbed.net/omf/6.0/protocol}"
232         for i in iq['pubsub_event']['items']:
233             root = ET.fromstring(str(i))
234             #ET.dump(root)
235             self._parse_inform(root, namespaces)
236