-
Notifications
You must be signed in to change notification settings - Fork 3
/
cli.py
executable file
·98 lines (80 loc) · 2.53 KB
/
cli.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
#!/usr/bin/env python
import sys,subprocess,os
arguments = None
def get_stdout(pi):
result = pi.communicate()
if len(result[0])>0:
return result[0]
else:
return result[1] #some error has occured
def killall(process):
cnt=0
pid =is_process_running(process)
while pid!=0:
execute_shell('kill ' + str(pid))
pid =is_process_running(process)
cnt+=1
return cnt
def pkillall(process):
cnt=0
pid =is_process_running(process)
while pid!=0:
execute_shell('pkill ' + str(pid))
pid =is_process_running(process)
cnt+=1
return cnt
def execute_shell(command, error=''):
return execute(command, wait=True, shellexec=True, errorstring=error)
def execute_shellnowait(command, error=''):
return execute(command, wait=False, shellexec=True, errorstring=error)
def execute(command='', errorstring='', wait=True, shellexec=False, ags=None):
try:
if (shellexec):
p=subprocess.Popen(command, shell=True,stdout=subprocess.PIPE,stderr=subprocess.PIPE)
#print 'verb: ' + str(arguments.verbose)
if arguments.verbose: print 'command: ' + command
else:
p=subprocess.Popen(args=ags)
if arguments.verbose: print 'command: ' + ags[0]
if wait:
p.wait()
result=get_stdout(p)
return result
else:
if arguments.verbose: print 'not waiting'
return p
except subprocess.CalledProcessError as e:
print 'error occured:' + errorstring
return errorstring
except Exception as ea:
print 'Exception occured:' + ea.message
return errorstring
#show_message("Error occured: " + ea.message)
def is_process_running(name):
cmd='ps aux |grep ' + name + ' |grep -v grep'
s=execute_shell(cmd)
#return len(s)>0
if len(s)==0:
return 0
else:
t=s.split()
return int(t[1])
def check_sysfile(filename):
if os.path.exists('/usr/sbin/' + filename):
return '/usr/sbin/' + filename
elif os.path.exists('/usr/bin/' + filename):
return '/usr/bin/' + filename
elif os.path.exists('/sbin/' + filename):
return '/sbin/' + filename
else:
return ''
def get_sysctl(setting):
result = execute_shell('sysctl ' + setting)
if '=' in result:
return result.split('=')[1].lstrip()
else:
return result
def set_sysctl(setting,value):
return execute_shell('sysctl -w ' + setting + '=' + value)
def writelog(message):
if arguments.verbose: print message