我正在使用 https://github.com/igordejanovic/textX 来解析
dhcpd.conf
文件(不,https://pypi.org/project/iscconf/ 对我不起作用,它崩溃了我的dhcpd.conf
文件),专门提取具有固定地址的主机。
记录如下:
host example1 {
option host-name "example1";
ddns-hostname "example1";
fixed-address 192.168.1.181;
}
host example2 {
hardware ethernet aa:bb:ff:20:fa:13;
fixed-address 192.168.1.191;
option host-name "example2";
ddns-hostname "example2";
}
代码:
def get_hosts(s):
grammar = """
config: hosts*=host ;
host: 'host' hostname=ID '{'
(
('hardware ethernet' hardware_ethernet=/[0-9a-fA-F:]+/';')?
'fixed-address' fixed_address=/([0-9]{1,3}\.){3}[0-9]{1,3}/';'
('option host-name' option_host_name=STRING';')?
('ddns-hostname' ddns_hostname=STRING';')?
)#
'}'
;
"""
mm = metamodel_from_str(grammar)
model = mm.model_from_str(s)
for host in model.hosts:
print host.hostname, host.fixed_address
现在,我无法用此语法解析整个
dhcpd.conf
(显然,我遇到语法错误,因为文件中还有许多语法无法解释的其他元素);另一方面,我不想为该文件构建完整的语法,因为我只需要提取特定类型的主机记录。
我当然可以使用正则表达式仅提取主机记录并单独解析它们,但我想知道是否有某种方法可以使
textX
仅从文件中提取 host
记录并忽略其余内容?
textX 作者在这里。我不是SO的常客:)。您可以使用正则表达式匹配和正则表达式前瞻来消耗不需要的内容。这是一个完整的示例,即使存在关键字
host
,也能正确处理中间文本。如果前面没有单词 config
,则规则 host
首先消耗一个字符,并且由于零个或多个运算符而重复此操作。当我们得到一个单词 host
时,我们尝试匹配 host
规则一次或多次并收集所有主机对象,如果该规则至少有一个没有成功(注意 +=
的用法),我们会消耗单词 host
并重复该过程。这可能可以做得更好(性能更高),但你明白了。在执行此类操作时,最好知道 textX 默认情况下会消耗空格,但您可以使用 noskipws
全局或按规则关闭此功能(请参阅 文档)。
from textx import metamodel_from_str
def test_get_hosts():
grammar = r"""
config: ( /(?!host)./ | hosts+=host | 'host' )* ;
host: 'host' hostname=ID '{'
(
('hardware ethernet' hardware_ethernet=/[0-9a-fA-F:]+/';')?
'fixed-address' fixed_address=/([0-9]{1,3}\.){3}[0-9]{1,3}/';'
('option host-name' option_host_name=STRING';')?
('ddns-hostname' ddns_hostname=STRING';')?
)#
'}'
;
"""
conf_file = r"""
host example1 {
option host-name "example1";
ddns-hostname "example1";
fixed-address 192.168.1.181;
}
some arbitrary content in between
with word host but that fails to match host config.
host example2 {
hardware ethernet aa:bb:ff:20:fa:13;
fixed-address 192.168.1.191;
option host-name "example2";
ddns-hostname "example2";
}
"""
mm = metamodel_from_str(grammar)
model = mm.model_from_str(conf_file)
assert len(model.hosts) == 2
for host in model.hosts:
print(host.hostname, host.fixed_address)
if __name__ == "__main__":
test_get_hosts()
编辑:这里还有两个关于
config
规则的想法:
一个简单的:
config: ( hosts+=host | /./ )* ;
并且(可能)性能更高,在尝试之前使用正则表达式引擎消耗尽可能多的资源
host
:
config: ( /(?s:.*?(?=host))/ hosts*=host | 'host' )*
/(?s).*/;