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

Unified Diff: fetch.py

Issue 14093004: Ensure that we pick up 'git.bat' and 'svn.bat' on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: fix typo on win, reformat, and clarify an unrelated TODO Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fetch.py
diff --git a/fetch.py b/fetch.py
index 80dcce9a2f13a0e7aeefaf8871298a7737154af3..8b7ff013295c067f2e4b1128b5c0c234709b2837 100755
--- a/fetch.py
+++ b/fetch.py
@@ -24,6 +24,8 @@ import subprocess
import sys
import pipes
+from distutils import spawn
+
SCRIPT_PATH = os.path.dirname(os.path.abspath(__file__))
@@ -46,6 +48,9 @@ class Checkout(object):
self.dryrun = dryrun
self.spec = spec
self.root = root
+ self._script_paths = {}
+ self._binary_paths = {}
+ self._binary_subdirs = {}
def exists(self):
pass
@@ -56,31 +61,69 @@ class Checkout(object):
def sync(self):
pass
+ def _find_executable(self, binary_name):
+ if sys.platform == 'win32':
szager1 2013/04/11 21:30:01 This is unnecessary; spawn.find_executable will lo
Dirk Pranke 2013/04/11 21:52:08 Huh, so it does. That's great, as it simplifies th
+ exe_name = binary_name + '.exe'
+ else:
+ exe_name = binary_name
+ path = spawn.find_executable(exe_name)
+ if path:
+ return path
+ return spawn.find_executable(
szager1 2013/04/11 21:30:01 What's the purpose of this call? As far as I can
Dirk Pranke 2013/04/11 21:52:08 I thought that spawn.find_executable() does actual
szager1 2013/04/11 22:18:43 Whoops, should be: spawn.find_executable(binary_n
+ os.path.join(SCRIPT_PATH,
+ self._binary_subdirs[binary_name],
+ exe_name))
+
+ def run_script(self, script, *args, **kwargs):
+ path = self._script_paths.get(script)
+ if not path:
+ path = os.path.join(SCRIPT_PATH, script + '.py')
szager1 2013/04/11 21:30:01 path = os.path.join(SCRIPT_PATH, script) if not sc
Dirk Pranke 2013/04/11 21:52:08 Again, this is too general for my intentions.
+ if not os.path.exists(path):
+ print "Error: could not find '%s.py' in depot_tools" % script
+ return 1
+ self._script_paths[script] = path
+ print 'Running: %s %s' % (script,
+ ' '.join(pipes.quote(arg) for arg in args))
+ if self.dryrun:
+ return 0
+ return subprocess.check_call((sys.executable, path) + args, **kwargs)
+
+ def run_binary(self, binary_name, *args, **kwargs):
+ path = self._binary_paths.get(binary_name)
+ if not path:
+ path = self._find_executable(binary_name)
+ if not path:
+ print "Error: could not find '%s' in PATH" % binary_name
+ return 1
+ self._binary_paths[binary_name] = path
+ print 'Running: %s %s' % (binary_name,
+ ' '.join(pipes.quote(arg) for arg in args))
+ if self.dryrun:
+ return 0
+ return subprocess.check_call((path,) + args, **kwargs)
-class GclientCheckout(Checkout):
- def run_gclient(self, *cmd, **kwargs):
- print 'Running: gclient %s' % ' '.join(pipes.quote(x) for x in cmd)
- if not self.dryrun:
- return subprocess.check_call(
- (sys.executable, os.path.join(SCRIPT_PATH, 'gclient.py')) + cmd,
- **kwargs)
+class GclientCheckout(Checkout):
+ def run_gclient(self, *args, **kwargs):
+ return self.run_script('gclient', *args, **kwargs)
class GitCheckout(Checkout):
+ def __init__(self, *args, **kwargs):
+ super(GitCheckout, self).__init__(*args, **kwargs)
+ self._binary_subdirs['git'] = os.path.join('git-1.8.0_bin', 'bin')
szager1 2013/04/11 21:30:01 if sys.platform == 'win32': self._binary_subdirs
Dirk Pranke 2013/04/11 21:52:08 I'm not sure if you would still want me to make th
szager1 2013/04/11 22:18:43 Done.
- def run_git(self, *cmd, **kwargs):
- print 'Running: git %s' % ' '.join(pipes.quote(x) for x in cmd)
- if not self.dryrun:
- return subprocess.check_call(('git',) + cmd, **kwargs)
+ def run_git(self, *args, **kwargs):
+ return self.run_binary('git', *args, **kwargs)
class SvnCheckout(Checkout):
+ def __init__(self, *args, **kwargs):
+ super(SvnCheckout, self).__init__(*args, **kwargs)
+ self._binary_subdirs['svn'] = 'svn_bin'
szager1 2013/04/11 21:30:01 if sys.platform == 'win32': ...
- def run_svn(self, *cmd, **kwargs):
- print 'Running: svn %s' % ' '.join(pipes.quote(x) for x in cmd)
- if not self.dryrun:
- return subprocess.check_call(('svn',) + cmd, **kwargs)
+ def run_svn(self, *args, **kwargs):
+ return self.run_binary('svn', *args, **kwargs)
class GclientGitSvnCheckout(GclientCheckout, GitCheckout, SvnCheckout):
@@ -110,7 +153,9 @@ class GclientGitSvnCheckout(GclientCheckout, GitCheckout, SvnCheckout):
print 'Please run `svn ls %s`' % svn_spec['svn_url']
return 1
- # TODO(dpranke): Work around issues w/ delta compression on big repos.
+ # TODO(dpranke): This works around issues w/ delta compression on
+ # big repos. We should either not be setting this globally, or
+ # not need it at all, or both.
self.run_git('config', '--global', 'core.deltaBaseCacheLimit', '1G')
# Configure and do the gclient checkout.
« 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