gpt4 book ai didi

python - 使用python将具有嵌套循环结构的文件解析为列表结构

转载 作者:行者123 更新时间:2023-12-01 04:34:43 24 4
gpt4 key购买 nike

我正在努力解析 FPGA 仿真文件 (.vwf),特别是在使用一种嵌套循环系统指定输入波形的情况下。文件格式的示例是:

TRANSITION_LIST("ADDR[0]")
{
NODE
{
REPEAT = 1;
LEVEL 0 FOR 100.0;
LEVEL 1 FOR 100.0;
NODE
{
REPEAT = 3;
LEVEL 0 FOR 100.0;
LEVEL 1 FOR 100.0;
NODE
{
REPEAT = 2;
LEVEL 0 FOR 200.0;
LEVEL 1 FOR 200.0;
}
}
LEVEL 0 FOR 100.0;
}
}

因此这意味着名为“ADDR[0]”的 channel 的逻辑值切换如下:

LEVEL 0 FOR 100.0;
LEVEL 1 FOR 100.0;
LEVEL 0 FOR 100.0;
LEVEL 1 FOR 100.0;
LEVEL 0 FOR 200.0;
LEVEL 1 FOR 200.0;
LEVEL 0 FOR 200.0;
LEVEL 1 FOR 200.0;
LEVEL 0 FOR 100.0;
LEVEL 1 FOR 100.0;
LEVEL 0 FOR 200.0;
LEVEL 1 FOR 200.0;
LEVEL 0 FOR 200.0;
LEVEL 1 FOR 200.0;
LEVEL 0 FOR 100.0;
LEVEL 1 FOR 100.0;
LEVEL 0 FOR 200.0;
LEVEL 1 FOR 200.0;
LEVEL 0 FOR 200.0;
LEVEL 1 FOR 200.0;
LEVEL 0 FOR 100.0;

我已经开始尝试将此信息放入一个列表结构中,如下所示:

[[0, 100], [1, 100], [0, 100], [1, 100], [0, 200], [1, 200], [0, 200], [1, 200], [0, 100], [1, 100], [0, 200], [1, 200], [0, 200], [1, 200], [0, 100], [1, 100], [0, 200], [1, 200], [0, 200], [1, 200], [0, 200]]

但是,我正在努力想出如何做到这一点。我尝试过一些我认为有效的方法,但在重新审视它时我发现了我的错误。

import pyparsing as pp


def get_data(LINES):
node_inst = []
total_inst = []
r = []
c = 0

rep_search = pp.Literal('REPEAT = ') + pp.Word(pp.nums)
log_search = pp.Literal('LEVEL') + pp.Word('01') + pp.Literal('FOR') + pp.Word(pp.nums + '.')
bra_search = pp.Literal('}')

for line in LINES:
print(line)
rep = rep_search.searchString(line)
log = log_search.searchString(line)
bra = bra_search.searchString(line)

if rep:
#print(line)
c += 1
if c > 1: # no logic values have been found when c == 1
for R in range(r[-1]):
for n in node_inst:
total_inst.append(n)
node_inst = []
r.append(int(rep[0][-1]))

elif log:
#print(line)
node_inst.append([int(log[0][1]),
int(round(1000 * float(log[0][-1])))])

elif bra:
#print(line)
if node_inst:
for R in range(r[-1]):
for n in node_inst:
total_inst.append(n)
node_inst = []
if r:
del r[-1]

return total_inst

其中 r 本质上是一个列表,用于跟踪重复值,但如果遇到“}”则删除最后一个值。这会产生一些接近的结果,但循环内重复 2 次的任何值都只会重复 2 次,而不是成为重复 3 次循环的一部分。

如有任何帮助或提示,我们将不胜感激。我只是用一些相当粗糙的脚本来绘制空白。与我的代码有关的任何内容都可以更改,但据我所知,输入文件格式不能更改。

最佳答案

类似的事情,请考虑它在很大程度上取决于格式。

import re

class Node:
def __init__(self, parent, items, repeat):
self.parent = parent
self.items = items
self.repeat = repeat

root = Node(None, [], 1)
node = root

with open('levels.txt') as f:
for line in f:
line = line.strip()
if line == 'NODE':
new_node = Node(node, [], 1)
node.items.append(new_node)
node = new_node

if line == '}':
node = node.parent

res = re.match('REPEAT = (\d+)', line)
if res:
node.repeat=int(res.group(1))

res = re.match('LEVEL (\d+) FOR ([\d.]+)', line)
if res:
node.items.append((int(res.group(1)), float(res.group(2))))


def generate(node):
res = []
for i in xrange(node.repeat):
for item in node.items:
if isinstance(item, Node):
res.extend(generate(item))
elif isinstance(item, tuple):
res.append(item)
return res

res = generate(root)

for r in res:
print r

关于python - 使用python将具有嵌套循环结构的文件解析为列表结构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31922510/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com