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

Side by Side Diff: gclient.py

Issue 11316213: gclient grep: support pathspec arguments (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 8 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """Meta checkout manager supporting both Subversion and GIT. 6 """Meta checkout manager supporting both Subversion and GIT.
7 7
8 Files 8 Files
9 .gclient : Current client configuration, written by 'config' command. 9 .gclient : Current client configuration, written by 'config' command.
10 Format is a Python script defining 'solutions', a list whose 10 Format is a Python script defining 'solutions', a list whose
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after
634 # Skip file only checkout. 634 # Skip file only checkout.
635 scm = gclient_scm.GetScmName(parsed_url) 635 scm = gclient_scm.GetScmName(parsed_url)
636 if not options.scm or scm in options.scm: 636 if not options.scm or scm in options.scm:
637 cwd = os.path.normpath(os.path.join(self.root.root_dir, self.name)) 637 cwd = os.path.normpath(os.path.join(self.root.root_dir, self.name))
638 # Pass in the SCM type as an env variable 638 # Pass in the SCM type as an env variable
639 env = os.environ.copy() 639 env = os.environ.copy()
640 if scm: 640 if scm:
641 env['GCLIENT_SCM'] = scm 641 env['GCLIENT_SCM'] = scm
642 if parsed_url: 642 if parsed_url:
643 env['GCLIENT_URL'] = parsed_url 643 env['GCLIENT_URL'] = parsed_url
644 if options.prepend_dir: 644 if options.prepend_dir and scm == 'git':
645 print_stdout = False 645 print_stdout = False
646 def filter_fn(line): 646 def filter_fn(line):
647 """Git-specific path marshaling. It is optimized for git-grep."""
648
649 def mod_path(git_pathspec):
650 match = re.match('^(\S+?:)?([^\0]+)$', git_pathspec)
M-A Ruel 2012/11/28 02:20:33 Then concatenate the two strings to make it clear
651 modified_path = os.path.join(self.name, match.group(2))
652 branch = match.group(1) or ''
653 return '%s%s' % (branch, modified_path)
654
655 match = re.match('^Binary file ([^\0]+) matches$', line)
656 if match:
657 print 'Binary file %s matches' % mod_path(match.group(1))
658 return
659
647 items = line.split('\0') 660 items = line.split('\0')
648 if len(items) == 1: 661 if len(items) == 2 and items[1]:
649 match = re.match('Binary file (.*) matches$', line) 662 print '%s : %s' % (mod_path(items[0]), items[1])
650 if match: 663 elif len(items) >= 2:
651 print 'Binary file %s matches' % os.path.join(
652 self.name, match.group(1))
653 else:
654 print line
655 elif len(items) == 2 and items[1]:
656 print '%s : %s' % (os.path.join(self.name, items[0]), items[1])
657 else:
658 # Multiple null bytes or a single trailing null byte indicate 664 # Multiple null bytes or a single trailing null byte indicate
659 # git is likely displaying filenames only (such as with -l) 665 # git is likely displaying filenames only (such as with -l)
660 print '\n'.join(os.path.join(self.name, f) for f in items if f) 666 print '\n'.join(mod_path(path) for path in items if path)
667 else:
668 print line
661 else: 669 else:
662 print_stdout = True 670 print_stdout = True
663 filter_fn = None 671 filter_fn = None
664 672
665 if os.path.isdir(cwd): 673 if os.path.isdir(cwd):
666 try: 674 try:
667 gclient_utils.CheckCallAndFilter( 675 gclient_utils.CheckCallAndFilter(
668 args, cwd=cwd, env=env, print_stdout=print_stdout, 676 args, cwd=cwd, env=env, print_stdout=print_stdout,
669 filter_fn=filter_fn, 677 filter_fn=filter_fn,
670 ) 678 )
(...skipping 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after
1739 except (gclient_utils.Error, subprocess2.CalledProcessError), e: 1747 except (gclient_utils.Error, subprocess2.CalledProcessError), e:
1740 print >> sys.stderr, 'Error: %s' % str(e) 1748 print >> sys.stderr, 'Error: %s' % str(e)
1741 return 1 1749 return 1
1742 1750
1743 1751
1744 if '__main__' == __name__: 1752 if '__main__' == __name__:
1745 fix_encoding.fix_encoding() 1753 fix_encoding.fix_encoding()
1746 sys.exit(Main(sys.argv[1:])) 1754 sys.exit(Main(sys.argv[1:]))
1747 1755
1748 # vim: ts=2:sw=2:tw=80:et: 1756 # vim: ts=2:sw=2:tw=80:et:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698