vproc.py
7.27 KB
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
#!/usr/bin/python
# encoding:utf-8
#######################################################
# author: liuh 2018-10-24
# version: v1.0
# copy to device /usr/local/bin/vproc
#######################################################
import sys
import getopt
import os
import shutil
import time
#######################config#####################
ROOT_PATH="/root/UserApp/vproc"
# ROOT_PATH="./vproc"
version="v1.1"
##################################################
def usage():
print("""
useage: vproc command [options]
there are vproc commands:
read read a key's value
write write a key's value
clean remove group of items
watch display items in the command line
write command options:
[+]-k any, --key=any | status item key.
[+]-v any, --value=any | status item value.
example:
vproc write --key=vaserver.va0.cameraname --value=camera1
vproc write --key=vaserver.va0.playok --value=1
read command options:
[+]-k any, --key=any | status item key.
example:
vproc read --key=vaserver.va0.cameraname
if executed write command example, it would be print camera1
clean command options:
[+]-p any, --path=any | the items's group key path
example:
vproc clean --path=vaserver.va0
if executed write command example, the dir:VPROC_ROOT/vaserver/va0 would be remove.
watch command options:
[+]-p any, --path=any | monitoring item groups path that need to be displayed
example:
vproc watch --path=vaserver.va0
if executed write command example, the display string:
vaserver:
---- va0:
---- cameraname: camera1
---- playok: 1
""")
def write_single_status(key, value):
paths = key.split('.')
paths_len = len(paths)
if(paths_len<2):
print("invalid key path, must be greater than 2 level")
sys.exit(-1)
if(paths_len>50):
print("invalid key path, level too deep")
sys.exit(-1)
fullpath = ROOT_PATH
for path in (paths[:-1]):
fullpath = fullpath+ "/" + path
if not os.path.exists(fullpath):
os.makedirs(fullpath)
fullpath = fullpath+"/"+paths[-1]
with open(fullpath, 'w') as f:
f.write(value)
def read_single_status(key):
paths = key.split('.')
paths_len = len(paths)
if(paths_len<2):
print("invalid key path, must be greater than 2 level")
sys.exit(-1)
fullpath = ROOT_PATH
for path in paths:
fullpath = fullpath+ "/" + path
if not os.path.exists(fullpath):
return ""
str=""
with open(fullpath, 'r') as f:
strs=f.readlines()
if(len(strs)>0):
str = strs[0]
return str
def remove_items(key_path):
paths = key_path.split('.')
paths_len = len(paths)
if(paths_len<1):
print("invalid key path, must be greater than 1 level")
sys.exit(-1)
fullpath = ROOT_PATH
for path in paths:
fullpath = fullpath+ "/" + path
if(os.path.exists(fullpath)):
if(os.path.isfile(fullpath)):
os.remove(fullpath)
# print("remove {}".format(fullpath))
if(os.path.isdir(fullpath)):
shutil.rmtree(fullpath)
# print("rmdir {}".format(fullpath))
else:
print("no suck file or dir: {}".format(fullpath))
def print_item(path):
key = ""
for node in path.split("/")[2:]:
if(node != "."):
key = key + node + "."
key = key[0: len(key)-1]
s=""
with open(path, 'r') as f:
strs=f.readlines()
if(len(strs)>0):
s= strs[0]
print("{}:\t\t\t\t\t\t{}".format(key, s))
def watch_items(key_paths):
for key_path in key_paths:
watch_root = ROOT_PATH
midpath = ""
paths = key_path.split('.')
paths_len = len(paths)
if(paths_len>0):
for path in paths:
watch_root = watch_root+ "/" + path
midpath = midpath+ path + "/"
if(os.path.isfile(watch_root)):
print_item(watch_root)
else:
filepaths = []
if not os.path.exists(watch_root):
print("no suck file or dir: {}".format(watch_root))
for parent_dir, dirnames, filenames in os.walk(watch_root):
for file in filenames:
file_full_name = os.path.join(parent_dir, file)
filepaths.append(file_full_name)
for path in filepaths:
print_item(path)
def main():
argc = len(sys.argv)
if argc < 3 or (sys.argv[1]!= "read" and sys.argv[1]!= "write" and sys.argv[1]!= "clean" and sys.argv[1]!= "watch"):
usage()
sys.exit(-1)
try:
options,args = getopt.getopt(sys.argv[2:],"-h-k:-v:-p:",["help","key=","value=", "path="])
except getopt.GetoptError:
print("error: invalid args")
sys.exit(-1)
keys=[]
values=[]
key_path=[]
if(sys.argv[1] == "write"):
for name,value in options:
if name in ("-h","--help"):
usage()
if name in ("-k","--key"):
keys.append(value)
if name in ("-v","--value"):
values.append(value)
keys_len = len(keys)
values_len = len(values)
if keys_len != values_len:
print("invalid args, keys count is {}, values count is {}".format(keys_len, values_len))
sys.exit(-1)
for index in range(len(keys)):
write_single_status(keys[index], values[index])
sys.exit(0)
if(sys.argv[1] == "read"):
for name,value in options:
if name in ("-h","--help"):
usage()
if name in ("-k","--key"):
keys.append(value)
if name in ("-v","--value"):
values.append(value)
for index in range(len(keys)):
readvalue = read_single_status(keys[index])
if(len(values)>0):
if(index < len(values)-1):
defaultvalue = values[index]
else:
defaultvalue = values[0]
if(readvalue == "" and len(values)>0):
print(defaultvalue)
else:
print(readvalue)
sys.exit(0)
if(sys.argv[1] == "clean"):
for name,value in options:
if name in ("-h","--help"):
usage()
if name in ("-p","--path"):
key_path.append(value)
for index in range(len(key_path)):
remove_items(key_path[index])
sys.exit(0)
if(sys.argv[1] == "watch"):
for name,value in options:
if name in ("-h","--help"):
usage()
if name in ("-p","--path"):
key_path.append(value)
while True:
try:
os.system("clear")
os.system("date")
watch_items(key_path)
time.sleep(1)
except KeyboardInterrupt, e:
print ''
print "bye"
sys.exit(0)
sys.exit(0)
if __name__ == '__main__':
main()