-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyConfig.py
284 lines (235 loc) · 6.95 KB
/
pyConfig.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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
from asciimatics.widgets import Frame, Layout, Text, Button, Label
from asciimatics.scene import Scene
from asciimatics.screen import Screen
from xmltodict import parse, unparse
from dict_deep import deep_set, deep_del
import sys
import os
import yaml
import json
import traceback
filename = ""
textContent = ""
filecontent = None
currentcontent = None
screen = None
frame = None
path = []
class SelectorFrame(Frame):
global filename
global textContent
global path
def __init__(self, screen):
super(SelectorFrame, self).__init__(screen,
screen.height * 2 // 3,
screen.width * 2 // 3,
hover_focus=True,
can_scroll=False,
title=filename,
reduce_cpu=True)
self.layout = Layout([1], fill_frame=True)
self.add_layout(self.layout)
self.data = {"text": textContent}
def addButton(self, content):
callback = createButtonCallback(content)
self.layout.add_widget(
Button(content, callback))
def addText(self, content):
self.layout.add_widget(
Text(path[-2], "text", self.textChange))
def addLabel(self, content):
self.layout.add_widget(
Label(content))
def addBack(self):
self.layout.add_widget(
Button("Back" if len(path) > 0 else "Exit", back))
def addSave(self):
self.layout.add_widget(Button("Save", saveChange))
def textChange(self):
self.save()
def addInsert(self):
self.layout.add_widget(
Button("Insert", insert))
def addFieldName(self):
self.layout.add_widget(
Text("New Field Name", "text", self.textChange))
def addFieldButton(self):
self.layout.add_widget(
Button("Insert", saveField))
def addDeleteButton(self):
self.layout.add_widget(
Button("Delete", deleteField))
def deleteField():
global filecontent
global path
content = filecontent
for p in path[:-2]:
content = content[p]
if isinstance(content[path[-2]], list):
print(str(path[-1]))
print(content[path[-2]])
print(path[:-2])
deep_set(filecontent, path[:-1],
[x for x in content[path[-2]] if str(x) != str(path[-1])])
elif isinstance(content, dict):
deep_del(filecontent, path[:-1])
saveToFile()
path.pop()
back()
def saveField():
global frame
if len(path) == 0:
filecontent[frame.data["text"]] = ""
path.append(frame.data["text"])
else:
path.append(frame.data["text"])
deep_set(filecontent, path, "")
createButtonCallback(frame.data["text"])()
def saveToFile():
global filename
global filecontent
with open(filename, 'w') as file:
if filename.endswith("yml"):
yaml.dump(filecontent, file)
elif filename.endswith("json"):
json.dump(filecontent, file)
elif filename.endswith("xml"):
file.write(unparse(filecontent))
def saveChange():
global frame
global path
global filecontent
global currentcontent
if isinstance(currentcontent, list):
currentcontent = [x for x in currentcontent if x != path[-1]]
currentcontent.append(frame.data["text"])
deep_set(filecontent, path[:-1], currentcontent)
else:
deep_set(filecontent, path[:-1], frame.data["text"])
saveToFile()
back()
def back():
global path
if len(path) == 0:
os._exit(0)
try:
tag = path[-2]
path = path[:-2]
createButtonCallback(tag)()
except:
path = []
loop(filecontent)
def insert():
global path
global filecontent
global currentcontent
currentcontent = filecontent
for p in path:
currentcontent = currentcontent[p]
if isinstance(currentcontent, list):
insertValue()
elif isinstance(currentcontent, dict):
insertField()
def createButtonCallback(tag):
def changecurrentcontent():
global path
path.append(tag)
global filecontent
global currentcontent
currentcontent = filecontent
try:
for p in path:
currentcontent = currentcontent[p]
loop(currentcontent)
except:
if isinstance(currentcontent, list):
edit(tag)
else:
edit(currentcontent)
return changecurrentcontent
def main(wrapperScreen):
global screen
global filecontent
global currentcontent
global filename
screen = wrapperScreen
if len(sys.argv) == 1:
print("No FileName")
back()
filename = sys.argv[1]
try:
if filename.endswith("yml"):
with open(filename) as file:
filecontent = yaml.load(file, Loader=yaml.FullLoader)
elif filename.endswith("json"):
with open(filename) as file:
filecontent = json.loads(file.read())
elif filename.endswith("xml"):
with open(filename, encoding='utf-8') as file:
filecontent = parse(file.read())
currentcontent = filecontent
loop(filecontent)
except Exception as e:
print("error opening file")
print(e)
back()
def loop(content):
toDraw = []
try:
items = content.items()
except (AttributeError, TypeError):
if isinstance(content, list):
for c in content:
toDraw.append({"label": c})
else:
toDraw.append({"label": content})
else:
for item in items:
toDraw.append({"label": item[0]})
drawButtons(toDraw)
def edit(content):
drawEdit(content)
def insertValue():
global path
path.append("")
drawEdit("")
def insertField():
drawInsertField()
def drawButtons(content):
global screen
global path
global frame
frame = SelectorFrame(screen)
frame.addLabel(str(">".join(path)))
for c in content:
frame.addButton(c["label"])
if isinstance(currentcontent, list) or isinstance(currentcontent, dict):
frame.addInsert()
frame.addBack()
frame.fix()
screen.play([Scene([frame], -1)])
def drawEdit(content):
global screen
global path
global textContent
global frame
textContent = content
frame = SelectorFrame(screen)
frame.addLabel(str(">".join(path)))
frame.addText(content)
frame.addDeleteButton()
frame.addSave()
frame.addBack()
frame.fix()
screen.play([Scene([frame], -1)])
def drawInsertField():
global frame
frame = SelectorFrame(screen)
frame.addLabel(str(">".join(path)))
frame.addFieldName()
frame.addFieldButton()
frame.addBack()
frame.fix()
screen.play([Scene([frame], -1)])
while True:
Screen.wrapper(main)