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

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: be much more careful about finding scripts and binaries 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..496e23f5e98f16fecafdddf70a69aa86bc283178 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,8 @@ class Checkout(object):
self.dryrun = dryrun
self.spec = spec
self.root = root
+ self._script_paths = {}
+ self._binary_paths = {}
def exists(self):
pass
@@ -56,31 +60,57 @@ class Checkout(object):
def sync(self):
pass
+ @staticmethod
+ def _find_executable(binary_name):
+ exe_name = binary_name + '.exe' if sys.platform == 'win32' else binary_name
+ path = spawn.find_executable(exe_name)
+ if path:
+ return path
+ return spawn.find_executable(os.path.join(SCRIPT_PATH, binary_name + '_bin',
agable 2013/04/11 18:21:09 Isn't git installed to depot_tools\git-1.8.0_bin\
+ 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')
+ 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 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 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):
« 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