Skip to content
Snippets Groups Projects
Commit 9e6b86a8 authored by Yuya Nishihara's avatar Yuya Nishihara
Browse files

dispatch: indent run() function

I'll add KeyboardInterrupt handling there.
parent d50d922c
No related branches found
No related tags found
No related merge requests found
......@@ -104,8 +104,4 @@
def run():
"""run the command in sys.argv"""
initstdio()
with tracing.log('parse args into request'):
req = request(pycompat.sysargv[1:])
err = None
try:
......@@ -111,11 +107,6 @@
try:
status = dispatch(req)
except error.StdioError as e:
err = e
status = -1
# In all cases we try to flush stdio streams.
if util.safehasattr(req.ui, b'fout'):
assert req.ui is not None # help pytype
assert req.ui.fout is not None # help pytype
initstdio()
with tracing.log('parse args into request'):
req = request(pycompat.sysargv[1:])
err = None
try:
......@@ -121,6 +112,6 @@
try:
req.ui.fout.flush()
except IOError as e:
status = dispatch(req)
except error.StdioError as e:
err = e
status = -1
......@@ -124,17 +115,13 @@
err = e
status = -1
if util.safehasattr(req.ui, b'ferr'):
assert req.ui is not None # help pytype
assert req.ui.ferr is not None # help pytype
try:
if err is not None and err.errno != errno.EPIPE:
req.ui.ferr.write(
b'abort: %s\n' % encoding.strtolocal(err.strerror)
)
req.ui.ferr.flush()
# There's not much we can do about an I/O error here. So (possibly)
# change the status code and move on.
except IOError:
status = -1
# In all cases we try to flush stdio streams.
if util.safehasattr(req.ui, b'fout'):
assert req.ui is not None # help pytype
assert req.ui.fout is not None # help pytype
try:
req.ui.fout.flush()
except IOError as e:
err = e
status = -1
......@@ -140,5 +127,21 @@
_silencestdio()
if util.safehasattr(req.ui, b'ferr'):
assert req.ui is not None # help pytype
assert req.ui.ferr is not None # help pytype
try:
if err is not None and err.errno != errno.EPIPE:
req.ui.ferr.write(
b'abort: %s\n' % encoding.strtolocal(err.strerror)
)
req.ui.ferr.flush()
# There's not much we can do about an I/O error here. So (possibly)
# change the status code and move on.
except IOError:
status = -1
_silencestdio()
finally:
pass
sys.exit(status & 255)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment