blob: 58f7215c9ad3cb263a8e9edf1a27038393d84ae3 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
import os
import sys
import copy
import logging
import lxml.etree
import Bcfg2.Server.Plugin
logger = logging.getLogger('Bcfg2.Plugins.Properties')
class PropertyFile(Bcfg2.Server.Plugin.StructFile):
"""Class for properties files."""
def write(self):
""" Write the data in this data structure back to the property
file """
if self.validate_data():
try:
open(self.name,
"wb").write(lxml.etree.tostring(self.xdata,
pretty_print=True))
return True
except IOError:
err = sys.exc_info()[1]
logger.error("Failed to write %s: %s" % (self.name, err))
return False
else:
return False
def validate_data(self):
""" ensure that the data in this object validates against the
XML schema for this property file (if a schema exists) """
schemafile = self.name.replace(".xml", ".xsd")
if os.path.exists(schemafile):
try:
schema = lxml.etree.XMLSchema(file=schemafile)
except:
logger.error("Failed to process schema for %s" % self.name)
return False
else:
# no schema exists
return True
if not schema.validate(self.xdata):
logger.error("Data for %s fails to validate; run bcfg2-lint for "
"more details" % self.name)
return False
else:
return True
class PropDirectoryBacked(Bcfg2.Server.Plugin.DirectoryBacked):
__child__ = PropertyFile
class Properties(Bcfg2.Server.Plugin.Plugin,
Bcfg2.Server.Plugin.Connector):
"""
The properties plugin maps property
files into client metadata instances.
"""
name = 'Properties'
version = '$Revision$'
def __init__(self, core, datastore):
Bcfg2.Server.Plugin.Plugin.__init__(self, core, datastore)
Bcfg2.Server.Plugin.Connector.__init__(self)
try:
self.store = PropDirectoryBacked(self.data, core.fam)
except OSError:
e = sys.exc_info()[1]
self.logger.error("Error while creating Properties store: %s %s" %
(e.strerror, e.filename))
raise Bcfg2.Server.Plugin.PluginInitError
def get_additional_data(self, _):
return copy.deepcopy(self.store.entries)
|