2017-01-30 17:46:41 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
from __future__ import print_function
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import argparse
|
|
|
|
import json
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
|
2017-01-30 17:46:45 +00:00
|
|
|
import semantic_version as semver
|
|
|
|
|
|
|
|
REQ_TO_CON = {">": "<=",
|
|
|
|
"<": ">=",
|
|
|
|
">=": "<",
|
|
|
|
"<=": ">"}
|
|
|
|
|
2017-01-31 21:38:54 +00:00
|
|
|
class Dependency(object):
|
|
|
|
def __init__(self, name, spec, feature=None, inverted=False):
|
|
|
|
self.name = name
|
|
|
|
self.spec = spec
|
|
|
|
self.feature = feature
|
|
|
|
self.inverted = inverted
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
f_part = "/{}".format(self.feature) if self.feature is not None else ""
|
|
|
|
if self.inverted:
|
|
|
|
kind = REQ_TO_CON[self.spec.kind]
|
|
|
|
else:
|
|
|
|
kind = self.spec.kind
|
|
|
|
return "crate({}{}) {} {}".format(self.name, f_part, kind.replace("==", "="), self.spec.spec)
|
|
|
|
|
|
|
|
class Metadata(object):
|
|
|
|
def __init__(self, path):
|
2017-01-31 21:41:45 +00:00
|
|
|
self.name = None
|
|
|
|
self.version = None
|
2017-01-31 21:38:54 +00:00
|
|
|
self._provides = []
|
|
|
|
self._requires = []
|
|
|
|
self._conflicts = []
|
|
|
|
|
|
|
|
# --no-deps is to disable recursive scanning of deps
|
|
|
|
metadata = subprocess.check_output(["cargo", "metadata", "--no-deps",
|
|
|
|
"--manifest-path={}".format(path)])
|
|
|
|
self._parse_metadata(json.loads(metadata))
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def _parse_req(s):
|
|
|
|
if "*" in s:
|
|
|
|
raise NotImplementedError("https://github.com/rbarrois/python-semanticversion/issues/51")
|
|
|
|
spec = semver.Spec(s.replace(" ", ""))
|
|
|
|
specs = spec.specs
|
|
|
|
if len(specs) == 1:
|
|
|
|
req = specs[0]
|
|
|
|
if req.kind in (req.KIND_CARET, req.KIND_TILDE):
|
|
|
|
ver = req.spec
|
|
|
|
lower = semver.Version.coerce(str(ver))
|
|
|
|
if req.kind == req.KIND_CARET:
|
|
|
|
if ver.major == 0:
|
|
|
|
if ver.minor is not None:
|
|
|
|
if ver.patch is None or ver.minor != 0:
|
|
|
|
upper = ver.next_minor()
|
|
|
|
else:
|
|
|
|
upper = ver.next_patch()
|
2017-01-30 17:46:45 +00:00
|
|
|
else:
|
2017-01-31 21:38:54 +00:00
|
|
|
upper = ver.next_major()
|
2017-01-30 17:46:45 +00:00
|
|
|
else:
|
2017-01-31 21:38:54 +00:00
|
|
|
upper = ver.next_major()
|
|
|
|
elif req.kind == req.KIND_TILDE:
|
|
|
|
if ver.minor is None:
|
2017-01-30 17:46:45 +00:00
|
|
|
upper = ver.next_major()
|
2017-01-31 21:38:54 +00:00
|
|
|
else:
|
|
|
|
upper = ver.next_minor()
|
2017-01-30 17:46:45 +00:00
|
|
|
else:
|
2017-01-31 21:38:54 +00:00
|
|
|
assert False
|
|
|
|
return (semver.Spec(">={}".format(lower)).specs[0],
|
|
|
|
semver.Spec("<{}".format(upper)).specs[0])
|
2017-01-30 17:46:45 +00:00
|
|
|
else:
|
2017-01-31 21:38:54 +00:00
|
|
|
return (req, None)
|
|
|
|
elif len(specs) == 2:
|
|
|
|
return (specs[0], specs[1])
|
2017-01-30 17:46:45 +00:00
|
|
|
else:
|
2017-01-31 21:38:54 +00:00
|
|
|
# it's something uber-complicated
|
|
|
|
raise NotImplementedError("More than two ranges are unsupported, "
|
|
|
|
"probably something is wrong with metadata")
|
|
|
|
assert False
|
|
|
|
|
|
|
|
def _parse_metadata(self, metadata):
|
|
|
|
md = metadata["packages"][0]
|
2017-01-31 21:41:45 +00:00
|
|
|
self.name = md["name"]
|
|
|
|
self.version = semver.SpecItem("={}".format(md["version"]))
|
2017-01-31 21:38:54 +00:00
|
|
|
|
|
|
|
# Provides
|
2017-02-03 08:42:57 +00:00
|
|
|
self._provides = [Dependency(self.name, self.version)]
|
2017-01-31 21:38:54 +00:00
|
|
|
for feature in md["features"]:
|
2017-02-03 08:42:57 +00:00
|
|
|
self._provides.append(Dependency(self.name, self.version, feature=feature))
|
2017-01-31 21:38:54 +00:00
|
|
|
|
|
|
|
# Requires, Conflicts
|
|
|
|
self._requires = []
|
|
|
|
self._conflicts = []
|
|
|
|
for dep in md["dependencies"]:
|
|
|
|
if dep["kind"] is not None:
|
|
|
|
# kind: build -> build dependencies
|
|
|
|
# kind: dev -> test dependencies
|
|
|
|
continue
|
|
|
|
req, con = self._parse_req(dep["req"])
|
|
|
|
assert req is not None
|
|
|
|
for feature in dep["features"] or [None]:
|
|
|
|
self._requires.append(Dependency(dep["name"], req, feature=feature))
|
|
|
|
if con is not None:
|
|
|
|
self._conflicts.append(Dependency(dep["name"], con, feature=feature, inverted=True))
|
|
|
|
|
|
|
|
@property
|
|
|
|
def provides(self):
|
|
|
|
return self._provides[:]
|
|
|
|
|
|
|
|
@property
|
|
|
|
def requires(self):
|
|
|
|
return self._requires[:]
|
|
|
|
|
|
|
|
@property
|
|
|
|
def conflicts(self):
|
|
|
|
return self._conflicts[:]
|
2017-01-30 17:46:45 +00:00
|
|
|
|
2017-01-30 22:16:26 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
group = parser.add_mutually_exclusive_group(required=True)
|
|
|
|
group.add_argument("-P", "--provides", action="store_true", help="Print Provides")
|
|
|
|
group.add_argument("-R", "--requires", action="store_true", help="Print Requires")
|
|
|
|
group.add_argument("-C", "--conflicts", action="store_true", help="Print Conflicts")
|
|
|
|
parser.add_argument("file", nargs="*", help="Path(s) to Cargo.toml")
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
files = args.file or sys.stdin.readlines()
|
|
|
|
|
2017-01-31 21:38:54 +00:00
|
|
|
def print_deps(deps):
|
|
|
|
if len(deps) > 0:
|
|
|
|
print("\n".join(str(dep) for dep in deps))
|
|
|
|
|
2017-01-30 22:16:26 +00:00
|
|
|
for f in files:
|
|
|
|
f = f.rstrip()
|
2017-01-31 21:38:54 +00:00
|
|
|
md = Metadata(f)
|
2017-01-30 22:16:26 +00:00
|
|
|
if args.provides:
|
2017-01-31 21:38:54 +00:00
|
|
|
print_deps(md.provides)
|
|
|
|
if args.requires:
|
|
|
|
print_deps(md.requires)
|
|
|
|
if args.conflicts:
|
|
|
|
print_deps(md.conflicts)
|