我需要解析传统格式。我想要做的是编写一个识别格式的解析器,并将其转换为更容易使用的对象。
我设法解析输入,问题是当我想将它转换回字符串时。总结一下:当我将parse()
的结果作为参数传递给我的compose()
方法时,它不会返回正确的字符串。
这是输出和源代码。当谈到钉住我是一个初学者,有什么我误解的吗?请注意,我的初始字符串中有(126000-147600,3);
,而在组合字符串中,它前面有-
。
输出:
********************************************************************************
-t gmt+1 -n GB_EN -p '39600-61200,0; (126000-147600,3); -(212400-234000,5); 298800; (320400); 385200-406800,0; 471600-493200,0; 558000-579600,0'
********************************************************************************
gmt+1 GB_EN
********************************************************************************
[{'end': '61200', 'interval': '0', 'start': '39600'},
{'end': '147600', 'interval': '3', 'start': '126000'},
{'end': '234000', 'interval': '5', 'inverted': True, 'start': '212400'},
{'start': '298800'},
{'start': '320400'},
{'end': '406800', 'interval': '0', 'start': '385200'},
{'end': '493200', 'interval': '0', 'start': '471600'},
{'end': '579600', 'interval': '0', 'start': '558000'}]
-t gmt+1 -n GB_EN -p '39600-61200,0; -(126000-147600,3); -(212400-234000,5); 298800; -(320400); 385200-406800,0; 471600-493200,0; 558000-579600,0'
Python源代码:
from pypeg2 import *
from pprint import pprint
Timezone = re.compile(r"(?i)gmt[\+\-]\d")
TimeValue = re.compile(r"[\d]+")
class ObjectSerializerMixin(object):
def get_as_object(self):
obj = {}
for attr in ['start', 'end', 'interval', 'inverted']:
if getattr(self, attr, None):
obj[attr] = getattr(self, attr)
return obj
class TimeFixed(str, ObjectSerializerMixin):
grammar = attr('start', TimeValue)
class TimePeriod(Namespace, ObjectSerializerMixin):
grammar = attr('start', TimeValue), '-', attr('end', TimeValue), ',', attr('interval', TimeValue)
class TimePeriodWrapped(Namespace, ObjectSerializerMixin):
grammar = flag("inverted", '-'), "(", attr('start', TimeValue), '-', attr('end', TimeValue), ',', attr('interval', TimeValue), ")"
class TimeFixedWrapped(Namespace, ObjectSerializerMixin):
grammar = flag("inverted", '-'), "(", attr('start', TimeValue), ")"
class TimeList(List):
grammar = csl([TimePeriod, TimeFixed, TimePeriodWrapped, TimeFixedWrapped], separator=";")
def __str__(self):
for a in self:
print(a.get_as_object())
return ''
class AlertExpression(List):
grammar = '-t', blank, attr('timezone', Timezone), blank, '-n', blank, attr('locale'), blank, "-p", optional(blank), "'", attr('timelist', TimeList), "'"
def get_time_objects(self):
for item in self.timelist:
yield item.get_as_object()
def __str__(self):
return '{} {}'.format(self.timezone, self.locale)
if __name__ == '__main__':
s="""-t gmt+1 -n GB_EN -p '39600-61200,0; (126000-147600,3); -(212400-234000,5); 298800; (320400); 385200-406800,0; 471600-493200,0; 558000-579600,0'"""
p = parse(s, AlertExpression)
print("*"*80)
print(s)
print("*"*80)
print(p)
print("*"*80)
pprint(list(p.get_time_objects()))
print(compose(p))
答案 0 :(得分:1)
我很确定这是pypeg2
您可以使用pypeg2示例given here的简化版本验证这一点,但使用与您正在使用的值类似的值:
>>>from pypeg2 import *
>>> class AddNegation:
... grammar = flag("inverted",'-'), blank, "(1000-5000,3)"
...
>>> t = AddNegation()
>>> t.inverted = False
>>> compose(t)
'- (1000-5000,3)'
>>> t.inverted = True
>>> compose(t)
'- (1000-5000,3)'
这用最小的例子证明了标志变量(inverted
)的值对组合没有影响。正如您自己找到的那样,parse
正在按您的意愿运作。
我已快速查看代码和this is where the compose is。该模块全部写在一个__init__.py
文件中,此函数是递归的。据我所知,问题是当标志为False时,-
对象仍然作为str
类型传递给compose(在递归的底层),并简单地添加到组合字符串here。
更新 将错误隔离到this line(1406),错误地解包了flag属性并将字符串'-'
发送回{ {1}}并将其附加到属性的值,该属性的类型为compose()
。
部分解决方法是将该行替换为bool
,类似于上面的子句(因此text.append(self.compose(thing, g))
类型的处理方式与从元组中取消时通常相同),但是然后点击this bug,其中可选属性(标志只是类型Attribute
的特殊情况)在对象中缺少它们时不能正确组合。
作为 的解决方法,您可以转到同一文件的第1350行并替换
Attribute
与
if grammar.subtype == "Flag":
if getattr(thing, grammar.name):
result = self.compose(thing, grammar.thing, attr_of=thing)
else:
result = terminal_indent()
我不确定这是一个非常强大的解决方案,但它的解决方法会让你前进
将这两个变通方法/修复程序应用于 if grammar.subtype == "Flag":
try:
if getattr(thing, grammar.name):
result = self.compose(thing, grammar.thing, attr_of=thing)
else:
result = terminal_indent()
except AttributeError:
#if attribute error missing, insert nothing
result = terminal_indent()
模块文件后,您从pypeg2
获得的输出是
print(compose(p))
根据需要,您可以继续使用-t gmt+1 -n GB_EN -p '39600-61200,0; (126000-147600,3); -(212400-234000,5); 298800; (320400); 385200-406800,0; 471600-493200,0; 558000-579600,0'
模块。