Commit e473ed69 authored by Alain Takoudjou's avatar Alain Takoudjou

slapos softwaretype: fix parse error on '+ =' when using buildout 2

Add a class SlapConfigParser which overrite ConfigParser.write method to fix parse problem when
configuration like:
[section]
foo += bar

is included in buildout file. softwaretype recipe will generate
buildout file with foo + = bar because ConfigParser doesn't reconize +=
delimiter and read key as "foo +", value as "bar".
Then ConfigParser.write method generate

[section]
foo + = bar
...

This is invalid with buildout version 2

/reviewed-on nexedi/slapos!100
parent 82df050e
......@@ -38,6 +38,51 @@ import errno
import zc.buildout
class SlapConfigParser(ConfigParser, object):
"""
This class overrite ConfigParser.write method to fix parse problem when
configuration like:
foo += bar is included in buildout file. softwaretype recipe will generate
buildout file with foo + = bar because ConfigParser doesn't reconize +=
delimiter and read key as "foo +", value as "bar".
Then ConfigParser.write method generate
[section]
foo + = bar
...
This is invalid with buildout version 2.
"""
def write(self, fp):
"""Write an .ini-format representation of the configuration state."""
if sys.version_info[0] > 2:
  • @alain.takoudjou I don't understand why this condition exists. Is there a specific reason to bypass this "+= patch" in Python 3?. All the code in this file is not (yet) compatible with Python 3 anyway.

    Have I missed something?

  • I think it's better to remove the condition now, as we are making python3 compatible scripts. I don't see a reason to keep the condition today.

  • 👍 Ok. I will remove it in a future commit.

Please register or sign in to reply
return super(SlapConfigParser, self).write(fp)
if self._defaults:
fp.write("[%s]\n" % DEFAULTSECT)
for (key, value) in self._defaults.items():
if key.endswith(" +") or key.endswith(" -"):
line = "%s += %s\n" % (key.replace(' +', '').replace(' -', ''),
str(value).replace('\n', '\n\t'))
else:
line = "%s = %s\n" % (key, str(value).replace('\n', '\n\t'))
fp.write(line)
fp.write("\n")
for section in self._sections:
fp.write("[%s]\n" % section)
for (key, value) in self._sections[section].items():
if key == "__name__":
continue
if (value is not None) or (self._optcre == self.OPTCRE):
if key.endswith(" +") or key.endswith(" -"):
key = " += ".join((key.replace(' +', '').replace(' -', ''),
  • Doesn't this replace "-=" with "+=" always ? Also, I think it would be (for once) much more readable and robust with a regex than chaining "replace":

    >>> import re
    >>> re.match(r'^(.*)\s+([+-])$', 'foo +').groups()
    ('foo', '+')
    >>> re.match(r'^(.*)\s+([+-])$', 'foo - + -').groups()
    ('foo - +', '-')
    >>> re.match(r'^(.*)\s+([+-])$', 'foo').groups()
    Traceback (most recent call last):
      File "<stdin>", line 1, in <module>
    AttributeError: 'NoneType' object has no attribute 'groups'

    The last exception is just to show the test to do to detect the absence of such operator. Once you have matched the group, you can fix the operator when generating the line without having to detect it again.

  • Thank you for suggestion it's a better approach, I will apply it.

  • I committed changes here: 6cd15818

  • Thanks, the replacement looks fine to me.

Please register or sign in to reply
str(value).replace('\n', '\n\t')))
else:
key = " = ".join((key, str(value).replace('\n', '\n\t')))
fp.write("%s\n" % key)
fp.write("\n")
class Recipe:
def __init__(self, buildout, name, options):
......@@ -144,7 +189,7 @@ class Recipe:
raise zc.buildout.UserError("The specified buildout config file %r does "
"not exist." % instance_file_path)
buildout = ConfigParser()
buildout = SlapConfigParser()
with open(instance_file_path) as instance_path:
buildout.readfp(instance_path)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment