Ticket #29: Phasing out AccessConfiguration.
[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_PORT, dict(name = DC.DEPLOYMENT_PORT,
202                 help = "Port on the Host",
203                 type = Attribute.INTEGER,
204                 value = 22,
205                 flags = Attribute.DesignOnly,
206                 validation_function = validation.is_integer
207         )),
208         (DC.ROOT_DIRECTORY, dict(name = DC.ROOT_DIRECTORY,
209                 help = "Root directory for storing process files",
210                 type = Attribute.STRING,
211                 value = ".",
212                 flags = Attribute.DesignOnly,
213                 validation_function = validation.is_string # TODO: validation.is_path
214         )),
215         (DC.USE_AGENT, dict(name = DC.USE_AGENT,
216                 help = "Use -A option for forwarding of the authentication agent, if ssh access is used", 
217                 type = Attribute.BOOL,
218                 value = False,
219                 flags = Attribute.DesignOnly,
220                 validation_function = validation.is_bool
221         )),
222         (DC.LOG_LEVEL, dict(name = DC.LOG_LEVEL,
223                 help = "Log level for instance",
224                 type = Attribute.ENUM,
225                 value = DC.ERROR_LEVEL,
226                 allowed = [
227                     DC.ERROR_LEVEL,
228                     DC.DEBUG_LEVEL
229                 ],
230                 flags = Attribute.DesignOnly,
231                 validation_function = validation.is_enum
232         )),
233         (DC.RECOVER, dict(name = DC.RECOVER,
234                 help = "Do not intantiate testbeds, rather, reconnect to already-running instances. Used to recover from a dead controller.", 
235                 type = Attribute.BOOL,
236                 value = False,
237                 flags = Attribute.DesignOnly,
238                 validation_function = validation.is_bool
239         )),
240     )
241     
242     STANDARD_TESTBED_ATTRIBUTES += DEPLOYMENT_ATTRIBUTES
243     
244     del DC
245     
246
247     def __init__(self, testbed_id, version):
248         self._version = version
249         self._testbed_id = testbed_id
250         metadata_module = self._load_versioned_metadata_module()
251         self._metadata = metadata_module.VersionedMetadataInfo()
252
253     @property
254     def create_order(self):
255         return self._metadata.create_order
256
257     @property
258     def configure_order(self):
259         return self._metadata.configure_order
260
261     @property
262     def preconfigure_order(self):
263         return self._metadata.preconfigure_order
264
265     def testbed_attributes(self):
266         attributes = AttributesMap()
267
268         # standard attributes
269         self._add_standard_attributes(attributes, None, True, False,
270             self.STANDARD_TESTBED_ATTRIBUTES)
271         
272         # custom attributes - they override standard ones
273         for attr_info in self._metadata.testbed_attributes.values():
274             name = attr_info["name"]
275             help = attr_info["help"]
276             type = attr_info["type"] 
277             value = attr_info["value"] if "value" in attr_info else None
278             range = attr_info["range"] if "range" in attr_info else None
279             allowed = attr_info["allowed"] if "allowed" in attr_info else None
280             flags =  attr_info["flags"] if "flags" in attr_info \
281                     else Attribute.NoFlags
282             validation_function = attr_info["validation_function"]
283             attributes.add_attribute(name, help, type, value, 
284                     range, allowed, flags, validation_function)
285         
286         return attributes
287
288     def build_design_factories(self):
289         from nepi.core.design import Factory
290         factories = list()
291         for factory_id, info in self._metadata.factories_info.iteritems():
292             help = info["help"]
293             category = info["category"]
294             allow_addresses = info.get("allow_addresses", False)
295             allow_routes = info.get("allow_routes", False)
296             has_addresses = info.get("has_addresses", False)
297             has_routes = info.get("has_routes", False)
298             factory = Factory(factory_id, 
299                     allow_addresses, has_addresses,
300                     allow_routes, has_routes,
301                     help, category)
302             
303             # standard attributes
304             self._add_standard_attributes(factory, info, True, True,
305                 self.STANDARD_BOX_ATTRIBUTES)
306             
307             # custom attributes - they override standard ones
308             self._add_attributes(factory, info, "factory_attributes")
309             self._add_attributes(factory, info, "box_attributes", True)
310             
311             self._add_design_traces(factory, info)
312             self._add_design_connector_types(factory, info)
313             factories.append(factory)
314         return factories
315
316     def build_execute_factories(self):
317         from nepi.core.execute import Factory
318         factories = list()
319         for factory_id, info in self._metadata.factories_info.iteritems():
320             create_function = info.get("create_function")
321             start_function = info.get("start_function")
322             stop_function = info.get("stop_function")
323             status_function = info.get("status_function")
324             configure_function = info.get("configure_function")
325             preconfigure_function = info.get("preconfigure_function")
326             allow_addresses = info.get("allow_addresses", False)
327             allow_routes = info.get("allow_routes", False)
328             has_addresses = info.get("has_addresses", False)
329             has_routes = info.get("has_routes", False)
330             factory = Factory(factory_id, create_function, start_function,
331                     stop_function, status_function, 
332                     configure_function, preconfigure_function,
333                     allow_addresses, has_addresses,
334                     allow_routes, has_routes)
335                     
336             # standard attributes
337             self._add_standard_attributes(factory, info, False, True,
338                 self.STANDARD_BOX_ATTRIBUTES)
339             
340             # custom attributes - they override standard ones
341             self._add_attributes(factory, info, "factory_attributes")
342             self._add_attributes(factory, info, "box_attributes", True)
343             
344             self._add_execute_traces(factory, info)
345             self._add_execute_connector_types(factory, info)
346             factories.append(factory)
347         return factories
348
349     def _load_versioned_metadata_module(self):
350         mod_name = "nepi.testbeds.%s.metadata_v%s" % (self._testbed_id.lower(),
351                 self._version)
352         if not mod_name in sys.modules:
353             __import__(mod_name)
354         return sys.modules[mod_name]
355
356     def _add_standard_attributes(self, factory, info, design, box, STANDARD_ATTRIBUTES):
357         if design:
358             attr_bundle = STANDARD_ATTRIBUTES
359         else:
360             # Only add non-DesignOnly attributes
361             def nonDesign(attr_info):
362                 return not (attr_info[1].get('flags',Attribute.NoFlags) & Attribute.DesignOnly)
363             attr_bundle = filter(nonDesign, STANDARD_ATTRIBUTES)
364         self._add_attributes(factory, info, None, box, 
365             attr_bundle = STANDARD_ATTRIBUTES)
366
367     def _add_attributes(self, factory, info, attr_key, box_attributes = False, attr_bundle = ()):
368         if not attr_bundle and info and attr_key in info:
369             attr_bundle = [ (attr_id, self._metadata.attributes[attr_id])
370                             for attr_id in info[attr_key] ]
371         for attr_id, attr_info in attr_bundle:
372             name = attr_info["name"]
373             help = attr_info["help"]
374             type = attr_info["type"] 
375             value = attr_info["value"] if "value" in attr_info else None
376             range = attr_info["range"] if "range" in attr_info else None
377             allowed = attr_info["allowed"] if "allowed" in attr_info \
378                     else None
379             flags = attr_info["flags"] if "flags" in attr_info \
380                     and attr_info["flags"] != None \
381                     else Attribute.NoFlags
382             validation_function = attr_info["validation_function"]
383             if box_attributes:
384                 factory.add_box_attribute(name, help, type, value, range, 
385                         allowed, flags, validation_function)
386             else:
387                 factory.add_attribute(name, help, type, value, range, 
388                         allowed, flags, validation_function)
389
390     def _add_design_traces(self, factory, info):
391         if "traces" in info:
392             for trace in info["traces"]:
393                 trace_info = self._metadata.traces[trace]
394                 trace_id = trace_info["name"]
395                 help = trace_info["help"]
396                 factory.add_trace(trace_id, help)
397
398     def _add_execute_traces(self, factory, info):
399         if "traces" in info:
400             for trace in info["traces"]:
401                 trace_info = self._metadata.traces[trace]
402                 trace_id = trace_info["name"]
403                 factory.add_trace(trace_id)
404
405     def _add_design_connector_types(self, factory, info):
406         from nepi.core.design import ConnectorType
407         if "connector_types" in info:
408             connections = dict()
409             for connection in self._metadata.connections:
410                 from_ = connection["from"]
411                 to = connection["to"]
412                 can_cross = connection["can_cross"]
413                 if from_ not in connections:
414                     connections[from_] = list()
415                 if to not in connections:
416                     connections[to] = list()
417                 connections[from_].append((to, can_cross))
418                 connections[to].append((from_, can_cross))
419             for connector_id in info["connector_types"]:
420                 connector_type_info = self._metadata.connector_types[
421                         connector_id]
422                 name = connector_type_info["name"]
423                 help = connector_type_info["help"]
424                 max = connector_type_info["max"]
425                 min = connector_type_info["min"]
426                 testbed_id = self._testbed_id
427                 factory_id = factory.factory_id
428                 connector_type = ConnectorType(testbed_id, factory_id, name, 
429                         help, max, min)
430                 for (to, can_cross) in connections[(testbed_id, factory_id, 
431                         name)]:
432                     (testbed_id_to, factory_id_to, name_to) = to
433                     connector_type.add_allowed_connection(testbed_id_to, 
434                             factory_id_to, name_to, can_cross)
435                 factory.add_connector_type(connector_type)
436
437     def _add_execute_connector_types(self, factory, info):
438         from nepi.core.execute import ConnectorType
439         if "connector_types" in info:
440             from_connections = dict()
441             to_connections = dict()
442             for connection in self._metadata.connections:
443                 from_ = connection["from"]
444                 to = connection["to"]
445                 can_cross = connection["can_cross"]
446                 init_code = connection["init_code"] \
447                         if "init_code" in connection else None
448                 compl_code = connection["compl_code"] \
449                         if "compl_code" in connection else None
450                 if from_ not in from_connections:
451                     from_connections[from_] = list()
452                 if to not in to_connections:
453                     to_connections[to] = list()
454                 from_connections[from_].append((to, can_cross, init_code, 
455                     compl_code))
456                 to_connections[to].append((from_, can_cross, init_code,
457                     compl_code))
458             for connector_id in info["connector_types"]:
459                 connector_type_info = self._metadata.connector_types[
460                         connector_id]
461                 name = connector_type_info["name"]
462                 max = connector_type_info["max"]
463                 min = connector_type_info["min"]
464                 testbed_id = self._testbed_id
465                 factory_id = factory.factory_id
466                 connector_type = ConnectorType(testbed_id, factory_id, name, 
467                         max, min)
468                 connector_key = (testbed_id, factory_id, name)
469                 if connector_key in to_connections:
470                     for (from_, can_cross, init_code, compl_code) in \
471                             to_connections[connector_key]:
472                         (testbed_id_from, factory_id_from, name_from) = from_
473                         connector_type.add_from_connection(testbed_id_from, 
474                                 factory_id_from, name_from, can_cross, 
475                                 init_code, compl_code)
476                 if connector_key in from_connections:
477                     for (to, can_cross, init_code, compl_code) in \
478                             from_connections[(testbed_id, factory_id, name)]:
479                         (testbed_id_to, factory_id_to, name_to) = to
480                         connector_type.add_to_connection(testbed_id_to, 
481                                 factory_id_to, name_to, can_cross, init_code,
482                                 compl_code)
483                 factory.add_connector_type(connector_type)
484