move pcucontrol package into pcucontrol module.
[pcucontrol.git] / pcucontrol / util / command.py
1 import os
2 from select import select 
3 import subprocess
4 import signal
5 import time
6 import traceback
7 import fcntl
8
9 DEBUG= 0
10
11 class ExceptionTimeout(Exception): pass
12 class ExceptionReadTimeout(Exception): pass
13 COMMAND_TIMEOUT = 60
14 ssh_options = { 'StrictHostKeyChecking':'no', 
15                                 'BatchMode':'yes', 
16                                 'PasswordAuthentication':'no',
17                                 'ConnectTimeout':'%s' % COMMAND_TIMEOUT}
18
19 class Sopen(subprocess.Popen):
20         def kill(self, sig = signal.SIGTERM):
21                 try:
22                         # NOTE: this also kills parent... so doesn't work like I want.
23                         # NOTE: adding 'exec' before the cmd removes the extra sh, and
24                         #               partially addresses this problem.
25                         #os.killpg(os.getpgid(self.pid), signal.SIGKILL)
26                         os.kill(self.pid, sig)
27                 except OSError:
28                         # no such process, due to it already exiting...
29                         pass
30
31
32 def read_t(stream, count=1, timeout=COMMAND_TIMEOUT*2):
33         if count == 1:
34                 retstr = ""
35
36                 while True:
37                         lin, lout, lerr = select([stream], [], [], timeout)
38                         if len(lin) == 0:
39                                 print "timeout!"
40                                 raise ExceptionReadTimeout("TIMEOUT reading from command")
41
42                         try:
43                                 outbytes = stream.read(count)
44                         except IOError, err:
45                                 print 'no content yet.'
46                                 # due to no content.
47                                 # the select timeout should catch this.
48                                 continue
49
50                         if not outbytes:
51                                 break
52                         retstr += outbytes
53
54                 return retstr
55         else:
56                 lin, lout, lerr = select([stream], [], [], timeout)
57                 if len(lin) == 0:
58                         raise ExceptionReadTimeout("TIMEOUT reading from command")
59
60                 return stream.read(count)
61
62 class CMD:
63         def __init__(self):
64                 pass
65
66         def run_noexcept(self, cmd, timeout=COMMAND_TIMEOUT*2):
67
68                 try:
69                         return CMD.run(self,cmd,timeout)
70                 except ExceptionTimeout:
71                         print traceback.print_exc()
72                         return ("", "ScriptTimeout")
73                 except ExceptionReadTimeout:
74                         print traceback.print_exc()
75                         return ("", "RunningScriptTimeout")
76                 except KeyboardInterrupt:
77                         print "Interrupted, exiting..."
78                         sys.exit(1)
79                 except Exception, err:
80                         #from monitor.common import email_exception
81                         #email_exception()
82                         return ("", str(err))
83                         
84         def system(self, cmd, timeout=COMMAND_TIMEOUT*2):
85                 (o,e) = self.run(cmd, timeout)
86                 self.output = o
87                 self.error = e
88                 if self.s.returncode is None:
89                         self.s.wait()
90                 return self.s.returncode
91
92         def run(self, cmd, timeout=COMMAND_TIMEOUT*2):
93
94                 s = Sopen(cmd, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=True)
95                 self.s = s
96                 (f_in, f_out, f_err) = (s.stdin, s.stdout, s.stderr)
97                 lout, lin, lerr = select([f_out], [], [f_err], timeout)
98                 if len(lin) == 0 and len(lout) == 0 and len(lerr) == 0:
99                         # Reached a timeout!  Nuke process so it does not hang.
100                         print "TIMEOUT!!!!!!!!!!!!!!!!!!!"
101                         s.kill(signal.SIGKILL)
102                         raise ExceptionTimeout("TIMEOUT Running: %s" % cmd)
103                 else:
104                         #print "RETURNING"
105                         #print len(lin), len(lout), len(lerr)
106                         pass
107
108                 o_value = ""
109                 e_value = ""
110
111                 #o_value = f_out.read()
112                 flags = fcntl.fcntl(f_out, fcntl.F_GETFL)
113                 fcntl.fcntl(f_out, fcntl.F_SETFL, flags | os.O_NONBLOCK)
114
115                 try:
116                         o_value = read_t(f_out,1,30)
117                 except ExceptionReadTimeout:
118                         s.kill(signal.SIGKILL)
119                         raise ExceptionReadTimeout("TIMEOUT: failed to read from cmd: %s" % cmd)
120                         
121                 e_value = f_err.read()
122
123                 o_value = o_value.strip()
124                 e_value = e_value.strip()
125
126                 f_out.close()
127                 f_in.close()
128                 f_err.close()
129                 s.kill(signal.SIGKILL)
130
131                 return (o_value, e_value)
132
133         def runargs(self, args, timeout=COMMAND_TIMEOUT*2):
134
135                 #print "CMD.run(%s)" % " ".join(args)
136                 s = Sopen(args, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=True)
137                 self.s = s
138                 (f_in, f_out, f_err) = (s.stdin, s.stdout, s.stderr)
139                 lout, lin, lerr = select([f_out], [], [f_err], timeout)
140                 if len(lin) == 0 and len(lout) == 0 and len(lerr) == 0:
141                         # Reached a timeout!  Nuke process so it does not hang.
142                         s.kill(signal.SIGKILL)
143                         raise ExceptionTimeout("TIMEOUT Running: %s" % cmd)
144                 o_value = f_out.read()
145                 e_value = ""
146                 if o_value == "":       # An error has occured
147                         e_value = f_err.read()
148
149                 o_value = o_value.strip()
150                 e_value = e_value.strip()
151
152                 f_out.close()
153                 f_in.close()
154                 f_err.close()
155                 s.kill(signal.SIGKILL)
156
157                 return (o_value, e_value)
158
159
160 class SSH(CMD):
161         def __init__(self, user, host, port=22, options = ssh_options):
162                 self.options = options
163                 self.user = user
164                 self.host = host
165                 self.port = port
166                 return
167
168         def __options_to_str(self):
169                 options = ""
170                 for o,v in self.options.iteritems():
171                         options = options + "-o %s=%s " % (o,v)
172                 return options
173
174         def run(self, cmd, timeout=COMMAND_TIMEOUT*2):
175                 cmd = "ssh -p %s %s %s@%s '%s'" % (self.port, self.__options_to_str(), 
176                                                                         self.user, self.host, cmd)
177                 #print "SSH.run(%s)" % cmd
178                 return CMD.run(self, cmd, timeout)
179
180         def get_file(self, rmt_filename, local_filename=None):
181                 if local_filename == None:
182                         local_filename = "./"
183                 cmd = "scp -P %s -B %s %s@%s:%s %s" % (self.port, self.__options_to_str(), 
184                                                                         self.user, self.host, 
185                                                                         rmt_filename, local_filename)
186                 # output :
187                 #       errors will be on stderr,
188                 #   success will have a blank stderr...
189                 return CMD.run_noexcept(self, cmd)
190
191         def run_noexcept(self, cmd):
192                 cmd = "ssh -p %s %s %s@%s '%s'" % (self.port, self.__options_to_str(), 
193                                                                         self.user, self.host, cmd)
194                 #print "SSH.run_noexcept(%s)" % cmd
195                 return CMD.run_noexcept(self, cmd)
196
197         def run_noexcept2(self, cmd, timeout=COMMAND_TIMEOUT*2):
198                 cmd = "exec ssh -p %s %s %s@%s %s" % (self.port, self.__options_to_str(), 
199                                                                         self.user, self.host, cmd)
200                 #print cmd
201                 r = CMD.run_noexcept(self, cmd, timeout)
202                 self.ret = -1
203
204                 return r
205
206         def system2(self, cmd, timeout=COMMAND_TIMEOUT*2):
207                 cmd = "ssh -p %s %s %s@%s %s" % (self.port, self.__options_to_str(), 
208                                                                         self.user, self.host, cmd)
209                 #print "SSH.system2(%s)" % cmd
210                 return CMD.system(self, cmd, timeout)
211
212         def runE(self, cmd):
213                 cmd = "ssh -p %s %s %s@%s '%s'" % (self.port, self.__options_to_str(), 
214                                                                         self.user, self.host, cmd)
215                 if ( DEBUG == 1 ):
216                         print cmd,
217                 (f_in, f_out, f_err) = os.popen3(cmd)
218
219                 value = f_out.read()
220                 if value == "": # An error has occured
221                         value = f_err.read()
222                         value = value.strip()
223
224                 if ( DEBUG == 1 ):
225                         print " == %s" % value
226                 f_out.close()
227                 f_in.close()
228                 f_err.close()
229                 return value.strip()
230                 
231 class MyTimer:
232         def __init__(self):
233                 self.start = time.time()
234
235         def end(self):
236                 self.end = time.time()
237                 t = self.end-self.start
238                 return t
239
240         def diff(self):
241                 self.end = time.time()
242                 t = self.end-self.start
243                 self.start = self.end
244                 return t