summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Plugins/Properties.py
blob: 61e80bfe3e7bfcee16e7849c24678ff3e70f29d4 (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
import copy, lxml.etree
import Bcfg2.Server.Plugin

class Properties(Bcfg2.Server.Plugin.XMLFileBacked):
    '''Class for properties files'''
    def Index(self):
        '''Build data into an xml object'''
        try:
            self.data = lxml.etree.XML(self.data)
        except lxml.etree.XMLSyntaxError:
            logger.error("Failed to parse %s" % self.name)

class PropDirectoryBacked(Bcfg2.Server.Plugin.DirectoryBacked):
    __child__ = Properties

class Properties(Bcfg2.Server.Plugin.Plugin,
                 Bcfg2.Server.Plugin.Connector):
    '''The properties plugin maps property files into client metadata instances'''
    name = 'Properties'
    version = '$Revision: $'
    experimental = True


    def __init__(self, core, datastore):
        Bcfg2.Server.Plugin.Plugin.__init__(self, core, datastore)
        Bcfg2.Server.Plugin.Connector.__init__(self)
        self.store = PropDirectoryBacked(self.data, core.fam)

    def get_additional_metadata(self, _):
        return ((), copy.deepcopy(self.store.entries))