fe92e05de2a2d2efcf9a876b1aae444466d81f3e
[nepi.git] / src / nepi / core / metadata.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3
4 from nepi.core.attributes import Attribute, AttributesMap
5 import sys
6 import getpass
7 from nepi.util import validation
8 from nepi.util.constants import ATTR_NEPI_TESTBED_ENVIRONMENT_SETUP, DeploymentConfiguration
9
10 class VersionedMetadataInfo(object):
11     @property
12     def connector_types(self):
13         """ dictionary of dictionaries with allowed connection information.
14             connector_id: dict({
15                 "help": help text, 
16                 "name": connector type name,
17                 "max": maximum number of connections allowed (-1 for no limit),
18                 "min": minimum number of connections allowed
19             }),
20         """
21         raise NotImplementedError
22
23     @property
24     def connections(self):
25         """ array of dictionaries with allowed connection information.
26         dict({
27             "from": (testbed_id1, factory_id1, connector_type_name1),
28             "to": (testbed_id2, factory_id2, connector_type_name2),
29             "init_code": connection function to invoke for connection initiation
30             "compl_code": connection function to invoke for connection 
31                 completion
32             "can_cross": whether the connection can be done across testbed 
33                             instances
34          }),
35         """
36         raise NotImplementedError
37
38     @property
39     def attributes(self):
40         """ dictionary of dictionaries of all available attributes.
41             attribute_id: dict({
42                 "name": attribute name,
43                 "help": help text,
44                 "type": attribute type, 
45                 "value": default attribute value,
46                 "range": (maximum, minimun) values else None if not defined,
47                 "allowed": array of posible values,
48                 "flags": attributes flags,
49                 "validation_function": validation function for the attribute
50             })
51         """
52         raise NotImplementedError
53
54     @property
55     def traces(self):
56         """ dictionary of dictionaries of all available traces.
57             trace_id: dict({
58                 "name": trace name,
59                 "help": help text
60             })
61         """
62         raise NotImplementedError
63
64     @property
65     def create_order(self):
66         """ list of factory ids that indicates the order in which the elements
67         should be instantiated.
68         """
69         raise NotImplementedError
70
71     @property
72     def configure_order(self):
73         """ list of factory ids that indicates the order in which the elements
74         should be configured.
75         """
76         raise NotImplementedError
77
78     @property
79     def preconfigure_order(self):
80         """ list of factory ids that indicates the order in which the elements
81         should be preconfigured.
82         
83         Default: same as configure_order
84         """
85         return self.configure_order
86
87     @property
88     def factories_info(self):
89         """ dictionary of dictionaries of factory specific information
90             factory_id: dict({
91                 "allow_addresses": whether the box allows adding IP addresses,
92                 "allow_routes": wether the box allows adding routes,
93                 "has_addresses": whether the box allows obtaining IP addresses,
94                 "has_routes": wether the box allows obtaining routes,
95                 "help": help text,
96                 "category": category the element belongs to,
97                 "create_function": function for element instantiation,
98                 "start_function": function for element starting,
99                 "stop_function": function for element stoping,
100                 "status_function": function for retrieving element status,
101                 "preconfigure_function": function for element preconfiguration,
102                     (just after connections are made, 
103                     just before netrefs are resolved)
104                 "configure_function": function for element configuration,
105                 "factory_attributes": list of references to attribute_ids,
106                 "box_attributes": list of regerences to attribute_ids,
107                 "traces": list of references to trace_id
108                 "connector_types": list of references to connector_types
109            })
110         """
111         raise NotImplementedError
112
113     @property
114     def testbed_attributes(self):
115         """ dictionary of attributes for testbed instance configuration
116             attributes_id = dict({
117                 "name": attribute name,
118                 "help": help text,
119                 "type": attribute type, 
120                 "value": default attribute value,
121                 "range": (maximum, minimun) values else None if not defined,
122                 "allowed": array of posible values,
123                 "flags": attributes flags,
124                 "validation_function": validation function for the attribute
125              })
126             ]
127         """
128         raise NotImplementedError
129
130 class Metadata(object):
131     STANDARD_BOX_ATTRIBUTES = (
132         ("label", dict(
133             name = "label",
134             validation_function = validation.is_string,
135             type = Attribute.STRING,
136             flags = Attribute.DesignOnly,
137             help = "A unique identifier for referring to this box",
138         )),
139     )
140     
141     # Shorthand for DeploymentConfiguration
142     # Syntactic sugar to shorten stuff
143     DC = DeploymentConfiguration
144
145     STANDARD_TESTBED_ATTRIBUTES = (
146         ("home_directory", dict(
147             name = "homeDirectory",
148             validation_function = validation.is_string,
149             help = "Path to the directory where traces and other files will be stored",
150             type = Attribute.STRING,
151             value = "",
152             flags = Attribute.DesignOnly,
153         )),
154     )
155     
156     DEPLOYMENT_ATTRIBUTES = (
157         # TESTBED DEPLOYMENT ATTRIBUTES
158         (DC.DEPLOYMENT_ENVIRONMENT_SETUP, dict(
159                 name = DC.DEPLOYMENT_ENVIRONMENT_SETUP,
160                 validation_function = validation.is_string,
161                 help = "Shell commands to run before spawning TestbedController processes",
162                 type = Attribute.STRING,
163                 flags = Attribute.DesignOnly,
164         )),
165         (DC.DEPLOYMENT_MODE, dict(name = DC.DEPLOYMENT_MODE,
166                 help = "Instance execution mode",
167                 type = Attribute.ENUM,
168                 value = DC.MODE_SINGLE_PROCESS,
169                 allowed = [
170                     DC.MODE_DAEMON,
171                     DC.MODE_SINGLE_PROCESS
172                 ],
173                 flags = Attribute.DesignOnly,
174                 validation_function = validation.is_enum
175         )),
176         (DC.DEPLOYMENT_COMMUNICATION, dict(name = DC.DEPLOYMENT_COMMUNICATION,
177                 help = "Instance communication mode",
178                 type = Attribute.ENUM,
179                 value = DC.ACCESS_LOCAL,
180                 allowed = [
181                     DC.ACCESS_LOCAL,
182                     DC.ACCESS_SSH
183                 ],
184                 flags = Attribute.DesignOnly,
185                 validation_function = validation.is_enum
186         )),
187         (DC.DEPLOYMENT_HOST, dict(name = DC.DEPLOYMENT_HOST,
188                 help = "Host where the testbed will be executed",
189                 type = Attribute.STRING,
190                 value = "localhost",
191                 flags = Attribute.DesignOnly,
192                 validation_function = validation.is_string
193         )),
194         (DC.DEPLOYMENT_USER, dict(name = DC.DEPLOYMENT_USER,
195                 help = "User on the Host to execute the testbed",
196                 type = Attribute.STRING,
197                 value = getpass.getuser(),
198                 flags = Attribute.DesignOnly,
199                 validation_function = validation.is_string
200         )),
201         (DC.DEPLOYMENT_KEY, dict(name = DC.DEPLOYMENT_KEY,
202                 help = "Path to SSH key to use for connecting",
203                 type = Attribute.STRING,
204                 flags = Attribute.DesignOnly,
205                 validation_function = validation.is_string
206         )),
207         (DC.DEPLOYMENT_PORT, dict(name = DC.DEPLOYMENT_PORT,
208                 help = "Port on the Host",
209                 type = Attribute.INTEGER,
210                 value = 22,
211                 flags = Attribute.DesignOnly,
212                 validation_function = validation.is_integer
213         )),
214         (DC.ROOT_DIRECTORY, dict(name = DC.ROOT_DIRECTORY,
215                 help = "Root directory for storing process files",
216                 type = Attribute.STRING,
217                 value = ".",
218                 flags = Attribute.DesignOnly,
219                 validation_function = validation.is_string # TODO: validation.is_path
220         )),
221         (DC.USE_AGENT, dict(name = DC.USE_AGENT,
222                 help = "Use -A option for forwarding of the authentication agent, if ssh access is used", 
223                 type = Attribute.BOOL,
224                 value = False,
225                 flags = Attribute.DesignOnly,
226                 validation_function = validation.is_bool
227         )),
228         (DC.LOG_LEVEL, dict(name = DC.LOG_LEVEL,
229                 help = "Log level for instance",
230                 type = Attribute.ENUM,
231                 value = DC.ERROR_LEVEL,
232                 allowed = [
233                     DC.ERROR_LEVEL,
234                     DC.DEBUG_LEVEL
235                 ],
236                 flags = Attribute.DesignOnly,
237                 validation_function = validation.is_enum
238         )),
239         (DC.RECOVER, dict(name = DC.RECOVER,
240                 help = "Do not intantiate testbeds, rather, reconnect to already-running instances. Used to recover from a dead controller.", 
241                 type = Attribute.BOOL,
242                 value = False,
243                 flags = Attribute.DesignOnly,
244                 validation_function = validation.is_bool
245         )),
246     )
247     
248     STANDARD_TESTBED_ATTRIBUTES += DEPLOYMENT_ATTRIBUTES
249     
250     del DC
251     
252
253     def __init__(self, testbed_id, version):
254         self._version = version
255         self._testbed_id = testbed_id
256         metadata_module = self._load_versioned_metadata_module()
257         self._metadata = metadata_module.VersionedMetadataInfo()
258
259     @property
260     def create_order(self):
261         return self._metadata.create_order
262
263     @property
264     def configure_order(self):
265         return self._metadata.configure_order
266
267     @property
268     def preconfigure_order(self):
269         return self._metadata.preconfigure_order
270
271     def testbed_attributes(self):
272         attributes = AttributesMap()
273
274         # standard attributes
275         self._add_standard_attributes(attributes, None, True, False,
276             self.STANDARD_TESTBED_ATTRIBUTES)
277         
278         # custom attributes - they override standard ones
279         for attr_info in self._metadata.testbed_attributes.values():
280             name = attr_info["name"]
281             help = attr_info["help"]
282             type = attr_info["type"] 
283             value = attr_info["value"] if "value" in attr_info else None
284             range = attr_info["range"] if "range" in attr_info else None
285             allowed = attr_info["allowed"] if "allowed" in attr_info else None
286             flags =  attr_info["flags"] if "flags" in attr_info \
287                     else Attribute.NoFlags
288             validation_function = attr_info["validation_function"]
289             attributes.add_attribute(name, help, type, value, 
290                     range, allowed, flags, validation_function)
291         
292         return attributes
293
294     def build_design_factories(self):
295         from nepi.core.design import Factory
296         factories = list()
297         for factory_id, info in self._metadata.factories_info.iteritems():
298             help = info["help"]
299             category = info["category"]
300             allow_addresses = info.get("allow_addresses", False)
301             allow_routes = info.get("allow_routes", False)
302             has_addresses = info.get("has_addresses", False)
303             has_routes = info.get("has_routes", False)
304             factory = Factory(factory_id, 
305                     allow_addresses, has_addresses,
306                     allow_routes, has_routes,
307                     help, category)
308             
309             # standard attributes
310             self._add_standard_attributes(factory, info, True, True,
311                 self.STANDARD_BOX_ATTRIBUTES)
312             
313             # custom attributes - they override standard ones
314             self._add_attributes(factory, info, "factory_attributes")
315             self._add_attributes(factory, info, "box_attributes", True)
316             
317             self._add_design_traces(factory, info)
318             self._add_design_connector_types(factory, info)
319             factories.append(factory)
320         return factories
321
322     def build_execute_factories(self):
323         from nepi.core.execute import Factory
324         factories = list()
325         for factory_id, info in self._metadata.factories_info.iteritems():
326             create_function = info.get("create_function")
327             start_function = info.get("start_function")
328             stop_function = info.get("stop_function")
329             status_function = info.get("status_function")
330             configure_function = info.get("configure_function")
331             preconfigure_function = info.get("preconfigure_function")
332             allow_addresses = info.get("allow_addresses", False)
333             allow_routes = info.get("allow_routes", False)
334             has_addresses = info.get("has_addresses", False)
335             has_routes = info.get("has_routes", False)
336             factory = Factory(factory_id, create_function, start_function,
337                     stop_function, status_function, 
338                     configure_function, preconfigure_function,
339                     allow_addresses, has_addresses,
340                     allow_routes, has_routes)
341                     
342             # standard attributes
343             self._add_standard_attributes(factory, info, False, True,
344                 self.STANDARD_BOX_ATTRIBUTES)
345             
346             # custom attributes - they override standard ones
347             self._add_attributes(factory, info, "factory_attributes")
348             self._add_attributes(factory, info, "box_attributes", True)
349             
350             self._add_execute_traces(factory, info)
351             self._add_execute_connector_types(factory, info)
352             factories.append(factory)
353         return factories
354
355     def _load_versioned_metadata_module(self):
356         mod_name = "nepi.testbeds.%s.metadata_v%s" % (self._testbed_id.lower(),
357                 self._version)
358         if not mod_name in sys.modules:
359             __import__(mod_name)
360         return sys.modules[mod_name]
361
362     def _add_standard_attributes(self, factory, info, design, box, STANDARD_ATTRIBUTES):
363         if design:
364             attr_bundle = STANDARD_ATTRIBUTES
365         else:
366             # Only add non-DesignOnly attributes
367             def nonDesign(attr_info):
368                 return not (attr_info[1].get('flags',Attribute.NoFlags) & Attribute.DesignOnly)
369             attr_bundle = filter(nonDesign, STANDARD_ATTRIBUTES)
370         self._add_attributes(factory, info, None, box, 
371             attr_bundle = STANDARD_ATTRIBUTES)
372
373     def _add_attributes(self, factory, info, attr_key, box_attributes = False, attr_bundle = ()):
374         if not attr_bundle and info and attr_key in info:
375             attr_bundle = [ (attr_id, self._metadata.attributes[attr_id])
376                             for attr_id in info[attr_key] ]
377         for attr_id, attr_info in attr_bundle:
378             name = attr_info["name"]
379             help = attr_info["help"]
380             type = attr_info["type"] 
381             value = attr_info["value"] if "value" in attr_info else None
382             range = attr_info["range"] if "range" in attr_info else None
383             allowed = attr_info["allowed"] if "allowed" in attr_info \
384                     else None
385             flags = attr_info["flags"] if "flags" in attr_info \
386                     and attr_info["flags"] != None \
387                     else Attribute.NoFlags
388             validation_function = attr_info["validation_function"]
389             if box_attributes:
390                 factory.add_box_attribute(name, help, type, value, range, 
391                         allowed, flags, validation_function)
392             else:
393                 factory.add_attribute(name, help, type, value, range, 
394                         allowed, flags, validation_function)
395
396     def _add_design_traces(self, factory, info):
397         if "traces" in info:
398             for trace in info["traces"]:
399                 trace_info = self._metadata.traces[trace]
400                 trace_id = trace_info["name"]
401                 help = trace_info["help"]
402                 factory.add_trace(trace_id, help)
403
404     def _add_execute_traces(self, factory, info):
405         if "traces" in info:
406             for trace in info["traces"]:
407                 trace_info = self._metadata.traces[trace]
408                 trace_id = trace_info["name"]
409                 factory.add_trace(trace_id)
410
411     def _add_design_connector_types(self, factory, info):
412         from nepi.core.design import ConnectorType
413         if "connector_types" in info:
414             connections = dict()
415             for connection in self._metadata.connections:
416                 from_ = connection["from"]
417                 to = connection["to"]
418                 can_cross = connection["can_cross"]
419                 if from_ not in connections:
420                     connections[from_] = list()
421                 if to not in connections:
422                     connections[to] = list()
423                 connections[from_].append((to, can_cross))
424                 connections[to].append((from_, can_cross))
425             for connector_id in info["connector_types"]:
426                 connector_type_info = self._metadata.connector_types[
427                         connector_id]
428                 name = connector_type_info["name"]
429                 help = connector_type_info["help"]
430                 max = connector_type_info["max"]
431                 min = connector_type_info["min"]
432                 testbed_id = self._testbed_id
433                 factory_id = factory.factory_id
434                 connector_type = ConnectorType(testbed_id, factory_id, name, 
435                         help, max, min)
436                 for (to, can_cross) in connections[(testbed_id, factory_id, 
437                         name)]:
438                     (testbed_id_to, factory_id_to, name_to) = to
439                     connector_type.add_allowed_connection(testbed_id_to, 
440                             factory_id_to, name_to, can_cross)
441                 factory.add_connector_type(connector_type)
442
443     def _add_execute_connector_types(self, factory, info):
444         from nepi.core.execute import ConnectorType
445         if "connector_types" in info:
446             from_connections = dict()
447             to_connections = dict()
448             for connection in self._metadata.connections:
449                 from_ = connection["from"]
450                 to = connection["to"]
451                 can_cross = connection["can_cross"]
452                 init_code = connection["init_code"] \
453                         if "init_code" in connection else None
454                 compl_code = connection["compl_code"] \
455                         if "compl_code" in connection else None
456                 if from_ not in from_connections:
457                     from_connections[from_] = list()
458                 if to not in to_connections:
459                     to_connections[to] = list()
460                 from_connections[from_].append((to, can_cross, init_code, 
461                     compl_code))
462                 to_connections[to].append((from_, can_cross, init_code,
463                     compl_code))
464             for connector_id in info["connector_types"]:
465                 connector_type_info = self._metadata.connector_types[
466                         connector_id]
467                 name = connector_type_info["name"]
468                 max = connector_type_info["max"]
469                 min = connector_type_info["min"]
470                 testbed_id = self._testbed_id
471                 factory_id = factory.factory_id
472                 connector_type = ConnectorType(testbed_id, factory_id, name, 
473                         max, min)
474                 connector_key = (testbed_id, factory_id, name)
475                 if connector_key in to_connections:
476                     for (from_, can_cross, init_code, compl_code) in \
477                             to_connections[connector_key]:
478                         (testbed_id_from, factory_id_from, name_from) = from_
479                         connector_type.add_from_connection(testbed_id_from, 
480                                 factory_id_from, name_from, can_cross, 
481                                 init_code, compl_code)
482                 if connector_key in from_connections:
483                     for (to, can_cross, init_code, compl_code) in \
484                             from_connections[(testbed_id, factory_id, name)]:
485                         (testbed_id_to, factory_id_to, name_to) = to
486                         connector_type.add_to_connection(testbed_id_to, 
487                                 factory_id_to, name_to, can_cross, init_code,
488                                 compl_code)
489                 factory.add_connector_type(connector_type)
490