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 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650
|
"""!
@package gcmd
@brief wxGUI command interface
Classes:
- GError
- GWarning
- GMessage
- GException
- Popen (from http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/440554)
- Command
- CommandThread
Functions:
- RunCommand
(C) 2007-2008, 2010-2011 by the GRASS Development Team
This program is free software under the GNU General Public
License (>=v2). Read the file COPYING that comes with GRASS
for details.
@author Jachym Cepicky
@author Martin Landa <landa.martin gmail.com>
"""
import os
import sys
import time
import errno
import signal
import locale
import traceback
import types
import wx
try:
import subprocess
except:
compatPath = os.path.join(globalvar.ETCWXDIR, "compat")
sys.path.append(compatPath)
import subprocess
if subprocess.mswindows:
from win32file import ReadFile, WriteFile
from win32pipe import PeekNamedPipe
import msvcrt
else:
import select
import fcntl
from threading import Thread
import globalvar
grassPath = os.path.join(globalvar.ETCDIR, "python")
sys.path.append(grassPath)
from grass.script import core as grass
import utils
from debug import Debug as Debug
class GError:
def __init__(self, message, parent = None, caption = None, showTraceback = True):
if not caption:
caption = _('Error')
style = wx.OK | wx.ICON_ERROR | wx.CENTRE
exc_type, exc_value, exc_traceback = sys.exc_info()
if exc_traceback:
exception = traceback.format_exc()
reason = exception.splitlines()[-1].split(':', 1)[-1].strip()
if Debug.GetLevel() > 0 and exc_traceback:
sys.stderr.write(exception)
if showTraceback and exc_traceback:
wx.MessageBox(parent = parent,
message = message + '\n\n%s: %s\n\n%s' % \
(_('Reason'),
reason, exception),
caption = caption,
style = style)
else:
wx.MessageBox(parent = parent,
message = message,
caption = caption,
style = style)
class GWarning:
def __init__(self, message, parent = None):
caption = _('Warning')
style = wx.OK | wx.ICON_WARNING | wx.CENTRE
wx.MessageBox(parent = parent,
message = message,
caption = caption,
style = style)
class GMessage:
def __init__(self, message, parent = None):
caption = _('Message')
style = wx.OK | wx.ICON_INFORMATION | wx.CENTRE
wx.MessageBox(parent = parent,
message = message,
caption = caption,
style = style)
class GException(Exception):
def __init__(self, value):
self.value = value
def __str__(self):
return str(self.value)
class Popen(subprocess.Popen):
"""!Subclass subprocess.Popen"""
def __init__(self, *args, **kwargs):
if subprocess.mswindows:
try:
kwargs['args'] = map(utils.EncodeString, kwargs['args'])
except KeyError:
if len(args) > 0:
targs = list(args)
targs[0] = map(utils.EncodeString, args[0])
args = tuple(targs)
subprocess.Popen.__init__(self, *args, **kwargs)
def recv(self, maxsize = None):
return self._recv('stdout', maxsize)
def recv_err(self, maxsize = None):
return self._recv('stderr', maxsize)
def send_recv(self, input = '', maxsize = None):
return self.send(input), self.recv(maxsize), self.recv_err(maxsize)
def get_conn_maxsize(self, which, maxsize):
if maxsize is None:
maxsize = 1024
elif maxsize < 1:
maxsize = 1
return getattr(self, which), maxsize
def _close(self, which):
getattr(self, which).close()
setattr(self, which, None)
def kill(self):
"""!Try to kill running process"""
if subprocess.mswindows:
import win32api
handle = win32api.OpenProcess(1, 0, self.pid)
return (0 != win32api.TerminateProcess(handle, 0))
else:
try:
os.kill(-self.pid, signal.SIGTERM) # kill whole group
except OSError:
pass
if subprocess.mswindows:
def send(self, input):
if not self.stdin:
return None
try:
x = msvcrt.get_osfhandle(self.stdin.fileno())
(errCode, written) = WriteFile(x, input)
except ValueError:
return self._close('stdin')
except (subprocess.pywintypes.error, Exception), why:
if why[0] in (109, errno.ESHUTDOWN):
return self._close('stdin')
raise
return written
def _recv(self, which, maxsize):
conn, maxsize = self.get_conn_maxsize(which, maxsize)
if conn is None:
return None
try:
x = msvcrt.get_osfhandle(conn.fileno())
(read, nAvail, nMessage) = PeekNamedPipe(x, 0)
if maxsize < nAvail:
nAvail = maxsize
if nAvail > 0:
(errCode, read) = ReadFile(x, nAvail, None)
except ValueError:
return self._close(which)
except (subprocess.pywintypes.error, Exception), why:
if why[0] in (109, errno.ESHUTDOWN):
return self._close(which)
raise
if self.universal_newlines:
read = self._translate_newlines(read)
return read
else:
def send(self, input):
if not self.stdin:
return None
if not select.select([], [self.stdin], [], 0)[1]:
return 0
try:
written = os.write(self.stdin.fileno(), input)
except OSError, why:
if why[0] == errno.EPIPE: #broken pipe
return self._close('stdin')
raise
return written
def _recv(self, which, maxsize):
conn, maxsize = self.get_conn_maxsize(which, maxsize)
if conn is None:
return None
flags = fcntl.fcntl(conn, fcntl.F_GETFL)
if not conn.closed:
fcntl.fcntl(conn, fcntl.F_SETFL, flags| os.O_NONBLOCK)
try:
if not select.select([conn], [], [], 0)[0]:
return ''
r = conn.read(maxsize)
if not r:
return self._close(which)
if self.universal_newlines:
r = self._translate_newlines(r)
return r
finally:
if not conn.closed:
fcntl.fcntl(conn, fcntl.F_SETFL, flags)
message = "Other end disconnected!"
def recv_some(p, t = .1, e = 1, tr = 5, stderr = 0):
if tr < 1:
tr = 1
x = time.time()+t
y = []
r = ''
pr = p.recv
if stderr:
pr = p.recv_err
while time.time() < x or r:
r = pr()
if r is None:
if e:
raise Exception(message)
else:
break
elif r:
y.append(r)
else:
time.sleep(max((x-time.time())/tr, 0))
return ''.join(y)
def send_all(p, data):
while len(data):
sent = p.send(data)
if sent is None:
raise Exception(message)
data = buffer(data, sent)
class Command:
"""!Run command in separate thread. Used for commands launched
on the background.
If stdout/err is redirected, write() method is required for the
given classes.
@code
cmd = Command(cmd=['d.rast', 'elevation.dem'], verbose=3, wait=True)
if cmd.returncode == None:
print 'RUNNING?'
elif cmd.returncode == 0:
print 'SUCCESS'
else:
print 'FAILURE (%d)' % cmd.returncode
@endcode
@param cmd command given as list
@param stdin standard input stream
@param verbose verbose level [0, 3] (--q, --v)
@param wait wait for child execution terminated
@param rerr error handling (when CmdError raised).
True for redirection to stderr, False for GUI dialog,
None for no operation (quiet mode)
@param stdout redirect standard output or None
@param stderr redirect standard error output or None
"""
def __init__ (self, cmd, stdin = None,
verbose = None, wait = True, rerr = False,
stdout = None, stderr = None):
Debug.msg(1, "gcmd.Command(): %s" % ' '.join(cmd))
self.cmd = cmd
self.stderr = stderr
#
# set verbosity level
#
verbose_orig = None
if ('--q' not in self.cmd and '--quiet' not in self.cmd) and \
('--v' not in self.cmd and '--verbose' not in self.cmd):
if verbose is not None:
if verbose == 0:
self.cmd.append('--quiet')
elif verbose == 3:
self.cmd.append('--verbose')
else:
verbose_orig = os.getenv("GRASS_VERBOSE")
os.environ["GRASS_VERBOSE"] = str(verbose)
#
# create command thread
#
self.cmdThread = CommandThread(cmd, stdin,
stdout, stderr)
self.cmdThread.start()
if wait:
self.cmdThread.join()
if self.cmdThread.module:
self.cmdThread.module.wait()
self.returncode = self.cmdThread.module.returncode
else:
self.returncode = 1
else:
self.cmdThread.join(0.5)
self.returncode = None
if self.returncode is not None:
Debug.msg (3, "Command(): cmd='%s', wait=%s, returncode=%d, alive=%s" % \
(' '.join(cmd), wait, self.returncode, self.cmdThread.isAlive()))
if rerr is not None and self.returncode != 0:
if rerr is False: # GUI dialog
raise GException("%s '%s'%s%s%s %s%s" % \
(_("Execution failed:"),
' '.join(self.cmd),
os.linesep, os.linesep,
_("Details:"),
os.linesep,
_("Error: ") + self.__GetError()))
elif rerr == sys.stderr: # redirect message to sys
stderr.write("Execution failed: '%s'" % (' '.join(self.cmd)))
stderr.write("%sDetails:%s%s" % (os.linesep,
_("Error: ") + self.__GetError(),
os.linesep))
else:
pass # nop
else:
Debug.msg (3, "Command(): cmd='%s', wait=%s, returncode=?, alive=%s" % \
(' '.join(cmd), wait, self.cmdThread.isAlive()))
if verbose_orig:
os.environ["GRASS_VERBOSE"] = verbose_orig
elif "GRASS_VERBOSE" in os.environ:
del os.environ["GRASS_VERBOSE"]
def __ReadOutput(self, stream):
"""!Read stream and return list of lines
@param stream stream to be read
"""
lineList = []
if stream is None:
return lineList
while True:
line = stream.readline()
if not line:
break
line = line.replace('%s' % os.linesep, '').strip()
lineList.append(line)
return lineList
def __ReadErrOutput(self):
"""!Read standard error output and return list of lines"""
return self.__ReadOutput(self.cmdThread.module.stderr)
def __ProcessStdErr(self):
"""
Read messages/warnings/errors from stderr
@return list of (type, message)
"""
if self.stderr is None:
lines = self.__ReadErrOutput()
else:
lines = self.cmdThread.error.strip('%s' % os.linesep). \
split('%s' % os.linesep)
msg = []
type = None
content = ""
for line in lines:
if len(line) == 0:
continue
if 'GRASS_' in line: # error or warning
if 'GRASS_INFO_WARNING' in line: # warning
type = "WARNING"
elif 'GRASS_INFO_ERROR' in line: # error
type = "ERROR"
elif 'GRASS_INFO_END': # end of message
msg.append((type, content))
type = None
content = ""
if type:
content += line.split(':', 1)[1].strip()
else: # stderr
msg.append((None, line.strip()))
return msg
def __GetError(self):
"""!Get error message or ''"""
if not self.cmdThread.module:
return _("Unable to exectute command: '%s'") % ' '.join(self.cmd)
for type, msg in self.__ProcessStdErr():
if type == 'ERROR':
enc = locale.getdefaultlocale()[1]
if enc:
return unicode(msg, enc)
else:
return msg
return ''
class CommandThread(Thread):
"""!Create separate thread for command. Used for commands launched
on the background."""
def __init__ (self, cmd, stdin = None,
stdout = sys.stdout, stderr = sys.stderr):
"""
@param cmd command (given as list)
@param stdin standard input stream
@param stdout redirect standard output or None
@param stderr redirect standard error output or None
"""
Thread.__init__(self)
self.cmd = cmd
self.stdin = stdin
self.stdout = stdout
self.stderr = stderr
self.module = None
self.error = ''
self._want_abort = False
self.aborted = False
self.setDaemon(True)
# set message formatting
self.message_format = os.getenv("GRASS_MESSAGE_FORMAT")
os.environ["GRASS_MESSAGE_FORMAT"] = "gui"
def __del__(self):
if self.message_format:
os.environ["GRASS_MESSAGE_FORMAT"] = self.message_format
else:
del os.environ["GRASS_MESSAGE_FORMAT"]
def run(self):
"""!Run command"""
if len(self.cmd) == 0:
return
Debug.msg(1, "gcmd.CommandThread(): %s" % ' '.join(self.cmd))
self.startTime = time.time()
# TODO: replace ugly hack bellow
args = self.cmd
if sys.platform == 'win32' and os.path.splitext(self.cmd[0])[1] == '.py':
os.chdir(os.path.join(os.getenv('GISBASE'), 'etc', 'gui', 'scripts'))
args = [sys.executable, self.cmd[0]] + self.cmd[1:]
try:
self.module = Popen(args,
stdin = subprocess.PIPE,
stdout = subprocess.PIPE,
stderr = subprocess.PIPE,
shell = sys.platform == "win32")
except OSError, e:
self.error = str(e)
print >> sys.stderr, e
return 1
if self.stdin: # read stdin if requested ...
self.module.stdin.write(self.stdin)
self.module.stdin.close()
# redirect standard outputs...
self._redirect_stream()
def _redirect_stream(self):
"""!Redirect stream"""
if self.stdout:
# make module stdout/stderr non-blocking
out_fileno = self.module.stdout.fileno()
if not subprocess.mswindows:
flags = fcntl.fcntl(out_fileno, fcntl.F_GETFL)
fcntl.fcntl(out_fileno, fcntl.F_SETFL, flags| os.O_NONBLOCK)
if self.stderr:
# make module stdout/stderr non-blocking
out_fileno = self.module.stderr.fileno()
if not subprocess.mswindows:
flags = fcntl.fcntl(out_fileno, fcntl.F_GETFL)
fcntl.fcntl(out_fileno, fcntl.F_SETFL, flags| os.O_NONBLOCK)
# wait for the process to end, sucking in stuff until it does end
while self.module.poll() is None:
if self._want_abort: # abort running process
self.module.kill()
self.aborted = True
return
if self.stdout:
line = recv_some(self.module, e = 0, stderr = 0)
self.stdout.write(line)
if self.stderr:
line = recv_some(self.module, e = 0, stderr = 1)
self.stderr.write(line)
if len(line) > 0:
self.error = line
# get the last output
if self.stdout:
line = recv_some(self.module, e = 0, stderr = 0)
self.stdout.write(line)
if self.stderr:
line = recv_some(self.module, e = 0, stderr = 1)
self.stderr.write(line)
if len(line) > 0:
self.error = line
def abort(self):
"""!Abort running process, used by main thread to signal an abort"""
self._want_abort = True
def _formatMsg(text):
"""!Format error messages for dialogs
"""
message = ''
for line in text.splitlines():
if len(line) == 0:
continue
elif 'GRASS_INFO_MESSAGE' in line:
message += line.split(':', 1)[1].strip() + '\n'
elif 'GRASS_INFO_WARNING' in line:
message += line.split(':', 1)[1].strip() + '\n'
elif 'GRASS_INFO_ERROR' in line:
message += line.split(':', 1)[1].strip() + '\n'
elif 'GRASS_INFO_END' in line:
return message
else:
message += line.strip() + '\n'
return message
def RunCommand(prog, flags = "", overwrite = False, quiet = False, verbose = False,
parent = None, read = False, stdin = None, getErrorMsg = False, **kwargs):
"""!Run GRASS command
@param prog program to run
@param flags flags given as a string
@param overwrite, quiet, verbose flags
@param parent parent window for error messages
@param read fetch stdout
@param stdin stdin or None
@param getErrorMsg get error messages on failure
@param kwargs program parameters
@return returncode (read == False and getErrorMsg == False)
@return returncode, messages (read == False and getErrorMsg == True)
@return stdout (read == True and getErrorMsg == False)
@return returncode, stdout, messages (read == True and getErrorMsg == True)
@return stdout, stderr
"""
cmdString = ' '.join(grass.make_command(prog, flags, overwrite,
quiet, verbose, **kwargs))
Debug.msg(1, "gcmd.RunCommand(): %s" % cmdString)
kwargs['stderr'] = subprocess.PIPE
if read:
kwargs['stdout'] = subprocess.PIPE
if stdin:
kwargs['stdin'] = subprocess.PIPE
ps = grass.start_command(prog, flags, overwrite, quiet, verbose, **kwargs)
Debug.msg(2, "gcmd.RunCommand(): command started")
if stdin:
ps.stdin.write(stdin)
ps.stdin.close()
ps.stdin = None
Debug.msg(3, "gcmd.RunCommand(): decoding string")
stdout, stderr = map(utils.DecodeString, ps.communicate())
ret = ps.returncode
Debug.msg(1, "gcmd.RunCommand(): get return code %d" % ret)
Debug.msg(3, "gcmd.RunCommand(): print error")
if ret != 0 and parent:
Debug.msg(2, "gcmd.RunCommand(): error %s" % stderr)
if (stderr == None):
Debug.msg(2, "gcmd.RunCommand(): nothing to print ???")
else:
GError(parent = parent,
message = stderr)
Debug.msg(3, "gcmd.RunCommand(): print read error")
if not read:
if not getErrorMsg:
return ret
else:
return ret, _formatMsg(stderr)
if stdout:
Debug.msg(2, "gcmd.RunCommand(): return stdout\n'%s'" % stdout)
else:
Debug.msg(2, "gcmd.RunCommand(): return stdout = None")
if not getErrorMsg:
return stdout
Debug.msg(2, "gcmd.RunCommand(): return ret, stdout")
if read and getErrorMsg:
return ret, stdout, _formatMsg(stderr)
Debug.msg(2, "gcmd.RunCommand(): return result")
return stdout, _formatMsg(stderr)
|