-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaud_parser2.py
204 lines (159 loc) · 5.24 KB
/
maud_parser2.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
from maud_parse_value2 import parse_single_maud_value
import collections
def parse_datablock(texte, debug=False):
block_key = texte[0]
texte = texte[1:]
data = collections.OrderedDict()
parser = True
while len(texte) and parser not in [parse_datablock, None]:
while len(texte) and not len(texte[0]):
texte = texte[1:]
if len(texte):
parser = get_parser(texte[0], debug)
if parser not in [parse_datablock, None]:
key, value, texte = parser(texte, debug)
data[key] = value
while len(texte) and not len(texte[0]):
texte = texte[1:]
return block_key, data, texte
def parse_cifloop(texte, debug=False):
ligne = texte[0]
key = texte[1]
value = []
i = 2
while len(texte[i]):
value.append(texte[i])
i += 1
texte = texte[i:]
while len(texte) and not len(texte[0]):
texte = texte[1:]
return key, value, texte
def parse_custom_object(texte, debug=False):
ligne0 = texte[0]
_key = ligne0[15:]
_end_key = "#end_custom_object_{}".format(_key)
data = collections.OrderedDict()
texte = texte[1:]
parser = None
while len(texte) and not (texte[0] == _end_key):
while len(texte) and not len(texte[0]):
texte = texte[1:]
if len(texte):
# print(_end_key)
parser = get_parser(texte[0], debug)
if parser is not None:
key, value, texte = parser(texte, debug)
data[key] = value
# print(_end_key)
texte = texte[1:]
while len(texte) and not len(texte[0]):
texte = texte[1:]
# return _key, data, texte
return ligne0, data, texte
def parse_subordinateobject(texte, debug=False):
ligne0 = texte[0]
_key = ligne0[19:]
_end_key = "#end_subordinateObject_{}".format(_key)
ligne2 = texte[2]
key = ligne2.split(" ")[0]
data = collections.OrderedDict()
data[key] = " ".join(ligne2.split(" ")[1:])
texte = texte[2:]
parser = None
while len(texte) and not (texte[0] == _end_key):
while len(texte) and not len(texte[0]):
texte = texte[1:]
if len(texte):
parser = get_parser(texte[0], debug)
if parser is not None:
key, value, texte = parser(texte, debug)
data[key] = value
texte = texte[1:]
while len(texte) and not len(texte[0]):
texte = texte[1:]
# return key, data, texte
return ligne0, data, texte
def parse_value(texte, debug=False):
ligne = texte[0]
key = ligne.split(" ")[0]
value = " ".join(ligne.split(" ")[1:])
parsed_value = parse_single_maud_value(ligne)
texte = texte[1:]
while len(texte) and not len(texte[0]):
texte = texte[1:]
return parsed_value["v_name"]["value"], parsed_value, texte
def get_parser(ligne, debug=False):
if ligne.startswith("data_"):
if debug:
print("parsed data_: {}".format(ligne))
return parse_datablock
elif ligne.startswith("loop_"):
if debug:
print("parsed loop_: {}".format(ligne))
return parse_cifloop
elif ligne.startswith("#subordinateObject_"):
if debug:
print("parsed subordinateObject_: {}".format(ligne))
return parse_subordinateobject
elif ligne.startswith("#custom_object_"):
if debug:
print("parsed custom_object_: {}".format(ligne))
return parse_custom_object
elif ligne.startswith("_"):
if debug:
print("parsed value_: {}".format(ligne))
return parse_value
else:
if debug:
print("not parsed: {}".format(ligne))
return None
def parse_maud(texte, debug=False):
data = collections.OrderedDict()
while len(texte):
while len(texte) and not len(texte[0]):
# print("ligne vide : {}".format(texte[0]))
texte = texte[1:]
if len(texte):
parser = get_parser(texte[0], debug)
if parser is not None:
key, value, texte = parser(texte, debug)
data[key] = value
else:
print("error with line:\n {}".format(texte[0]))
print("for information, next lines:\n{}".format(texte[:3]))
texte = []
return data
def maud_parser(fichier, debug=False):
f = open(fichier)
raw_data = f.read()
raw_data = raw_data.replace("\r", "")
raw_data = raw_data.split("\n")
data = parse_maud(raw_data, debug)
return data
if __name__ == "__main__":
import pprint
fichier = "data/A01_texture.par"
data = maud_parser(fichier, debug=True)
print("\n")
# pprint.pprint(data)
print("\n")
fichier = "data/y2o3.par"
data = maud_parser(fichier, debug=True)
print("\n")
pprint.pprint(data)
print("\n")
fichier = "data/cif_loop.par"
data = maud_parser(fichier, debug=True)
print("\n")
pprint.pprint(data)
print("\n")
fichier = "data/cif_data.par"
data = maud_parser(fichier, debug=True)
print("\n")
pprint.pprint(data)
print("\n")
fichier = "data/cif_subordinateObject.par"
data = maud_parser(fichier, debug=True)
print("\n")
pprint.pprint(data)
print("\n")