Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(168)

Side by Side Diff: gclient_utils.py

Issue 8360007: Move code starting the editor into a common function. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« gcl.py ('K') | « gcl.py ('k') | git_cl.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 """Generic utils.""" 5 """Generic utils."""
6 6
7 import errno 7 import errno
8 import logging 8 import logging
9 import os 9 import os
10 import Queue 10 import Queue
11 import re 11 import re
12 import stat 12 import stat
13 import sys 13 import sys
14 import tempfile
14 import threading 15 import threading
15 import time 16 import time
16 17
17 import subprocess2 18 import subprocess2
18 19
19 20
20 class Error(Exception): 21 class Error(Exception):
21 """gclient exception class.""" 22 """gclient exception class."""
22 pass 23 pass
23 24
(...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after
664 logging.info('Caught exception in thread %s' % self.item.name) 665 logging.info('Caught exception in thread %s' % self.item.name)
665 logging.info(str(sys.exc_info())) 666 logging.info(str(sys.exc_info()))
666 work_queue.exceptions.put(sys.exc_info()) 667 work_queue.exceptions.put(sys.exc_info())
667 logging.info('_Worker.run(%s) done' % self.item.name) 668 logging.info('_Worker.run(%s) done' % self.item.name)
668 669
669 work_queue.ready_cond.acquire() 670 work_queue.ready_cond.acquire()
670 try: 671 try:
671 work_queue.ready_cond.notifyAll() 672 work_queue.ready_cond.notifyAll()
672 finally: 673 finally:
673 work_queue.ready_cond.release() 674 work_queue.ready_cond.release()
675
676
677 def GetEditor(git):
678 """Returns the most plausible editor to use."""
679 if git:
680 editor = os.environ.get('GIT_EDITOR')
681 else:
682 editor = os.environ.get('SVN_EDITOR')
683 if not editor:
684 editor = os.environ.get('EDITOR')
685 if not editor:
686 if sys.platform.startswith('win'):
687 editor = 'notepad'
688 else:
689 editor = 'vim'
690 return editor
691
692
693 def RunEditor(content, git):
694 """Opens up the default editor in the system to get the CL description."""
695 file_handle, filename = tempfile.mkstemp(text=True)
696 # Make sure CRLF is handled properly by requiring none.
697 if '\r' in content:
698 print >> sys.stderr, ('!! Please remove \\r from your content !!')
699 fileobj = os.fdopen(file_handle, 'w')
700 # Still remove \r if present.
701 fileobj.write(re.sub('\r?\n', '\n', content))
702 fileobj.close()
703
704 try:
705 cmd = '%s %s' % (GetEditor(git), filename)
706 if sys.platform == 'win32' and os.environ.get('TERM') == 'msys':
707 # Msysgit requires the usage of 'env' to be present.
708 cmd = 'env ' + cmd
709 try:
710 # shell=True to allow the shell to handle all forms of quotes in
711 # $EDITOR.
712 subprocess2.check_call(cmd, shell=True)
713 except subprocess2.CalledProcessError:
714 return None
715 return FileRead(filename)
716 finally:
717 os.remove(filename)
OLDNEW
« gcl.py ('K') | « gcl.py ('k') | git_cl.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698