blob: e5ba0a51b0db4ddf9ef44369ea37985ced93d612 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
""" Handle info.xml files """
import logging
import Bcfg2.Server.Plugin
from Bcfg2.Server.Plugins.Cfg import CfgInfo
LOGGER = logging.getLogger(__name__)
class CfgInfoXML(CfgInfo):
""" CfgInfoXML handles :file:`info.xml` files for
:ref:`server-plugins-generators-cfg` """
#: Handle :file:`info.xml` files
__basenames__ = ['info.xml']
def __init__(self, path):
CfgInfo.__init__(self, path)
self.infoxml = Bcfg2.Server.Plugin.InfoXML(path)
__init__.__doc__ = CfgInfo.__init__.__doc__
def bind_info_to_entry(self, entry, metadata):
mdata = dict()
self.infoxml.pnode.Match(metadata, mdata, entry=entry)
if 'Info' not in mdata:
msg = "Failed to set metadata for file %s" % entry.get('name')
LOGGER.error(msg)
raise Bcfg2.Server.Plugin.PluginExecutionError(msg)
self._set_info(entry, mdata['Info'][None])
bind_info_to_entry.__doc__ = CfgInfo.bind_info_to_entry.__doc__
def handle_event(self, event):
self.infoxml.HandleEvent()
handle_event.__doc__ = CfgInfo.handle_event.__doc__
def _set_info(self, entry, info):
CfgInfo._set_info(self, entry, info)
if '__children__' in info:
for child in info['__children__']:
entry.append(child)
_set_info.__doc__ = CfgInfo._set_info.__doc__
|