| Index: ensure_dependencies.py | 
| =================================================================== | 
| new file mode 100755 | 
| --- /dev/null | 
| +++ b/ensure_dependencies.py | 
| @@ -0,0 +1,233 @@ | 
| +#!/usr/bin/env python | 
| +# coding: utf-8 | 
| 
 
Sebastian Noack
2014/09/04 10:07:30
I don't find any non-ascii characters below. Also
 
Wladimir Palant
2014/09/04 13:32:12
We specify this in all Python files, UTF-8 is the
 
Felix Dahlke
2014/09/05 08:55:53
What PEP-8 says, specifically, is this:
"Files us
 
Sebastian Noack
2014/09/05 09:29:30
Keep reading ;P
"... non-default encodings should
 
Felix Dahlke
2014/09/05 09:55:01
You left the first part out: "In the standard libr
 
 | 
| + | 
| +# This file is part of the Adblock Plus build tools, | 
| +# Copyright (C) 2006-2014 Eyeo GmbH | 
| +# | 
| +# Adblock Plus is free software: you can redistribute it and/or modify | 
| +# it under the terms of the GNU General Public License version 3 as | 
| +# published by the Free Software Foundation. | 
| +# | 
| +# Adblock Plus is distributed in the hope that it will be useful, | 
| +# but WITHOUT ANY WARRANTY; without even the implied warranty of | 
| +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
| +# GNU General Public License for more details. | 
| +# | 
| +# You should have received a copy of the GNU General Public License | 
| +# along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 
| + | 
| +import sys | 
| +import os | 
| +import re | 
| +import io | 
| +import errno | 
| +import warnings | 
| +import subprocess | 
| +import urlparse | 
| +from collections import OrderedDict | 
| + | 
| +class Mercurial(): | 
| + def istype(self, repodir): | 
| + return os.path.exists(os.path.join(repodir, ".hg")) | 
| + | 
| + def clone(self, source, target): | 
| + if not source.endswith("/"): | 
| + source += "/" | 
| + subprocess.check_call(["hg", "clone", "--quiet", "--noupdate", source, target]) | 
| + | 
| + def get_revision_id(self, repo, rev=None): | 
| + command = ["hg", "id", "--repository", repo, "--id"] | 
| + if rev: | 
| + command.extend(["--rev", rev]) | 
| + | 
| + # Ignore stderr output and return code here: if revision lookup failed we | 
| + # should simply return an empty string. | 
| + result, dummy = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate() | 
| + return result.strip() | 
| + | 
| + def pull(self, repo): | 
| + subprocess.check_call(["hg", "pull", "--repository", repo, "--quiet"]) | 
| + | 
| + def update(self, repo, rev): | 
| + subprocess.check_call(["hg", "update", "--repository", repo, "--quiet", "--check", "--rev", rev]) | 
| + | 
| +class Git(): | 
| + def istype(self, repodir): | 
| + return os.path.exists(os.path.join(repodir, ".git")) | 
| + | 
| + def clone(self, source, target): | 
| + source = source.rstrip("/") | 
| + if not source.endswith(".git"): | 
| + source += ".git" | 
| + subprocess.check_call(["git", "clone", "--quiet", "--no-checkout", source, target]) | 
| + | 
| + def get_revision_id(self, repo, rev="HEAD"): | 
| + command = ["git", "-C", repo, "rev-parse", "--revs-only", rev] | 
| + return subprocess.check_output(command).strip() | 
| + | 
| + def pull(self, repo): | 
| + subprocess.check_call(["git", "-C", repo, "fetch", "--quiet", "--all", "--tags"]) | 
| + | 
| + def update(self, repo, rev): | 
| + subprocess.check_call(["git", "-C", repo, "checkout", "--quiet", rev]) | 
| + | 
| +repo_types = { | 
| + "hg": Mercurial(), | 
| + "git": Git(), | 
| +} | 
| + | 
| +def parse_spec(path, line): | 
| + if "=" not in line: | 
| + warnings.warn("Invalid line in file %s: %s" % (path, line)) | 
| + return None, None | 
| + | 
| + key, value = line.split("=", 1) | 
| + key = key.strip() | 
| + items = value.split() | 
| + if not len(items): | 
| + warnings.warn("No value specified for key %s in file %s" % (key, path)) | 
| + return key, None | 
| + | 
| + result = OrderedDict() | 
| + if not key.startswith("_"): | 
| + result["_source"] = items.pop(0) | 
| + | 
| + for item in items: | 
| + if ":" in item: | 
| + type, value = item.split(":", 1) | 
| + else: | 
| + type, value = ("*", item) | 
| + if type in result: | 
| + warnings.warn("Ignoring duplicate value for type %s (key %s in file %s)" % (type, key, path)) | 
| + else: | 
| + result[type] = value | 
| + return key, result | 
| + | 
| +def read_deps(repodir): | 
| + result = {} | 
| + deps_path = os.path.join(repodir, "dependencies") | 
| + try: | 
| + with io.open(deps_path, "rt", encoding="utf-8") as handle: | 
| + for line in handle: | 
| + # Remove comments and whitespace | 
| + line = re.sub(r"#.*", "", line).strip() | 
| + if not line: | 
| + continue | 
| + | 
| + key, spec = parse_spec(deps_path, line) | 
| + if spec: | 
| + result[key] = spec | 
| + return result | 
| + except IOError, e: | 
| + if e.errno != errno.ENOENT: | 
| + raise | 
| + return None | 
| + | 
| +def safe_join(path, subpath): | 
| + return os.path.join(path, *[f for f in subpath.split("/") if f not in (os.curdir, os.pardir)]) | 
| + | 
| +def get_repo_type(repo): | 
| + for name, repotype in repo_types.iteritems(): | 
| + if repotype.istype(repo): | 
| + return name | 
| + return None | 
| + | 
| +def ensure_repo(parentrepo, target, roots, sourcename): | 
| + if os.path.exists(target): | 
| + return | 
| + | 
| + parenttype = get_repo_type(parentrepo) | 
| + type = None | 
| + for key in roots: | 
| + if key == parenttype or (key in repo_types and type is None): | 
| + type = key | 
| + if type is None: | 
| + raise Exception("No valid source found to create %s" % target) | 
| + | 
| + url = urlparse.urljoin(roots[type], sourcename) | 
| + print "Cloning repository %s into %s" % (url, target) | 
| + repo_types[type].clone(url, target) | 
| + | 
| +def update_repo(target, revisions): | 
| + type = get_repo_type(target) | 
| + if type is None: | 
| + warnings.warn("Type of repository %s unknown, skipping update" % target) | 
| + return | 
| + | 
| + if type in revisions: | 
| + revision = revisions[type] | 
| + elif "*" in revisions: | 
| + revision = revisions["*"] | 
| + else: | 
| + warnings.warn("No revision specified for repository %s (type %s), skipping update" % (target, type)) | 
| + return | 
| + | 
| + resolved_revision = repo_types[type].get_revision_id(target, revision) | 
| + if not resolved_revision: | 
| + print "Revision %s is unknown, downloading remote changes" % revision | 
| + repo_types[type].pull(target) | 
| + resolved_revision = repo_types[type].get_revision_id(target, revision) | 
| + if not resolved_revision: | 
| + raise Exception("Failed to resolve revision %s" % revision) | 
| + | 
| + current_revision = repo_types[type].get_revision_id(target) | 
| + if resolved_revision != current_revision: | 
| + print "Updating repository %s to revision %s" % (target, resolved_revision) | 
| + repo_types[type].update(target, resolved_revision) | 
| + | 
| +def resolve_deps(repodir, level=0): | 
| + config = read_deps(repodir) | 
| + if config is None: | 
| + if level == 0: | 
| + warnings.warn("No dependencies file in directory %s, nothing to do..." % repodir) | 
| + return | 
| + if level >= 10: | 
| + warnings.warn("Too much subrepository nesting, ignoring %s" % repo) | 
| + | 
| + for dir in config: | 
| + if dir.startswith("_"): | 
| + continue | 
| + target = safe_join(repodir, dir) | 
| + ensure_repo(repodir, target, config.get("_root", {}), config[dir]["_source"]) | 
| + update_repo(target, config[dir]) | 
| + resolve_deps(target, level + 1) | 
| + | 
| + if level == 0 and "_self" in config and "*" in config["_self"]: | 
| + source = safe_join(repodir, config["_self"]["*"]) | 
| + try: | 
| + with io.open(source, "rb") as handle: | 
| + sourcedata = handle.read() | 
| + except IOError, e: | 
| + if e.errno != errno.ENOENT: | 
| + raise | 
| + warnings.warn("File %s doesn't exist, skipping self-update" % source) | 
| + return | 
| + | 
| + target = __file__ | 
| + with io.open(target, "rb") as handle: | 
| + targetdata = handle.read() | 
| + | 
| + if sourcedata != targetdata: | 
| + print "Updating %s from %s, don't forget to commit" % (source, target) | 
| + with io.open(target, "wb") as handle: | 
| + handle.write(sourcedata) | 
| + print "Restarting %s" % target | 
| + if __name__ == "__main__": | 
| + os.execv(sys.executable, [sys.executable, target] + sys.argv[1:]) | 
| 
 
Sebastian Noack
2014/09/04 10:07:30
I think you have to call os.exit(0) afterwards. Ot
 
Sebastian Noack
2014/09/04 13:50:17
I just realized that you are using os.execv(), whi
 
 | 
| + else: | 
| + import importlib | 
| 
 
Sebastian Noack
2014/09/04 10:07:30
Is there a case where this script is actually impo
 
Wladimir Palant
2014/09/04 13:32:12
build.py will import it as module. And - no, it sh
 
Sebastian Noack
2014/09/04 13:44:52
I think you didn't get it. When buildtools calls r
 
Wladimir Palant
2014/09/04 14:34:45
I did get it, but I was rather referring to the sc
 
Wladimir Palant
2014/09/04 15:55:38
Actually, this doesn't seem to be that much of an
 
Sebastian Noack
2014/09/04 16:22:00
That is correct. Though this might be a footgun. I
 
 | 
| + me = importlib.import_module(__name__) | 
| + reload(me) | 
| + me.resolve_deps(repodir, level) | 
| + | 
| +def showwarning(message, category, filename, lineno, file=sys.stderr, line=None): | 
| + print >>file, "%s:%i: %s" % (filename, lineno, message) | 
| + | 
| +if __name__ == "__main__": | 
| + warnings.showwarning = showwarning | 
| + | 
| + repos = sys.argv[1:] | 
| + if not len(repos): | 
| + repos = [os.getcwd()] | 
| + for repo in repos: | 
| + resolve_deps(repo) |