OLD | NEW |
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 Loading... |
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) |
OLD | NEW |