-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.py
76 lines (50 loc) · 1.2 KB
/
utils.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
import argparse
import sys
from collections import OrderedDict
ignoreEvn = ['PATH']
serviceOrder = [
'image',
'container_name',
'restart',
'command',
'networks',
'labels',
'logging',
'ports',
'environment',
'volumes',
]
def customOrder(data: dict, items: list):
new_data = OrderedDict()
for i in items:
try:
new_data[i] = data[i]
except:
pass
for j in data.keys():
if j not in items:
new_data[j] = data[j]
return new_data
def find(source: dict, path: str):
splited_path = path.split('.')
d = source.copy()
for key in splited_path:
try:
d = d[key]
except:
return None
return d if d else None
def find_and_set(source: dict, source_path: str, dest: dict, dest_path: str):
splited_dest_path = dest_path.split('.')
found = find(source, source_path)
if found == None:
return False
counter = 1
for key in splited_dest_path:
if counter == len(splited_dest_path):
dest[key] = found
else:
dest[key] = {}
dest = dest[key]
counter += 1
return True