Skip to content
Snippets Groups Projects
Commit 2cbe9af3 authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

Factorize removing comments and empty lines from string


This will also be used for verifying the file storage directory.

Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarBernardo Dal Seno <bdalseno@google.com>
parent 5506d7a9
No related branches found
No related tags found
No related merge requests found
...@@ -29,6 +29,7 @@ import binascii ...@@ -29,6 +29,7 @@ import binascii
from ganeti import compat from ganeti import compat
from ganeti import http from ganeti import http
from ganeti import utils
from cStringIO import StringIO from cStringIO import StringIO
...@@ -305,13 +306,7 @@ def ParsePasswordFile(contents): ...@@ -305,13 +306,7 @@ def ParsePasswordFile(contents):
""" """
users = {} users = {}
for line in contents.splitlines(): for line in utils.FilterEmptyLinesAndComments(contents):
line = line.strip()
# Ignore empty lines and comments
if not line or line.startswith("#"):
continue
parts = line.split(None, 2) parts = line.split(None, 2)
if len(parts) < 2: if len(parts) < 2:
# Invalid line # Invalid line
......
...@@ -589,3 +589,21 @@ def Truncate(text, length): ...@@ -589,3 +589,21 @@ def Truncate(text, length):
return text return text
else: else:
return text[:length - len(_ASCII_ELLIPSIS)] + _ASCII_ELLIPSIS return text[:length - len(_ASCII_ELLIPSIS)] + _ASCII_ELLIPSIS
def FilterEmptyLinesAndComments(text):
"""Filters empty lines and comments from a line-based string.
Whitespace is also removed from the beginning and end of all lines.
@type text: string
@param text: Input string
@rtype: generator
"""
for line in text.splitlines():
line = line.strip()
# Ignore empty lines and comments
if line and not line.startswith("#"):
yield line
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment