|
""" |
|
Requirements file parsing |
|
""" |
|
|
|
from __future__ import absolute_import |
|
|
|
import optparse |
|
import os |
|
import re |
|
import shlex |
|
import sys |
|
|
|
from pip._vendor.six.moves.urllib import parse as urllib_parse |
|
|
|
from pip._internal.cli import cmdoptions |
|
from pip._internal.exceptions import ( |
|
InstallationError, |
|
RequirementsFileParseError, |
|
) |
|
from pip._internal.models.search_scope import SearchScope |
|
from pip._internal.network.utils import raise_for_status |
|
from pip._internal.utils.encoding import auto_decode |
|
from pip._internal.utils.typing import MYPY_CHECK_RUNNING |
|
from pip._internal.utils.urls import get_url_scheme |
|
|
|
if MYPY_CHECK_RUNNING: |
|
from optparse import Values |
|
from typing import ( |
|
Any, Callable, Dict, Iterator, List, NoReturn, Optional, Text, Tuple, |
|
) |
|
|
|
from pip._internal.index.package_finder import PackageFinder |
|
from pip._internal.network.session import PipSession |
|
|
|
ReqFileLines = Iterator[Tuple[int, Text]] |
|
|
|
LineParser = Callable[[Text], Tuple[str, Values]] |
|
|
|
|
|
__all__ = ['parse_requirements'] |
|
|
|
SCHEME_RE = re.compile(r'^(http|https|file):', re.I) |
|
COMMENT_RE = re.compile(r'(^|\s+)#.*$') |
|
|
|
|
|
|
|
|
|
|
|
ENV_VAR_RE = re.compile(r'(?P<var>\$\{(?P<name>[A-Z0-9_]+)\})') |
|
|
|
SUPPORTED_OPTIONS = [ |
|
cmdoptions.index_url, |
|
cmdoptions.extra_index_url, |
|
cmdoptions.no_index, |
|
cmdoptions.constraints, |
|
cmdoptions.requirements, |
|
cmdoptions.editable, |
|
cmdoptions.find_links, |
|
cmdoptions.no_binary, |
|
cmdoptions.only_binary, |
|
cmdoptions.prefer_binary, |
|
cmdoptions.require_hashes, |
|
cmdoptions.pre, |
|
cmdoptions.trusted_host, |
|
cmdoptions.use_new_feature, |
|
] |
|
|
|
|
|
SUPPORTED_OPTIONS_REQ = [ |
|
cmdoptions.install_options, |
|
cmdoptions.global_options, |
|
cmdoptions.hash, |
|
] |
|
|
|
|
|
SUPPORTED_OPTIONS_REQ_DEST = [str(o().dest) for o in SUPPORTED_OPTIONS_REQ] |
|
|
|
|
|
class ParsedRequirement(object): |
|
def __init__( |
|
self, |
|
requirement, |
|
is_editable, |
|
comes_from, |
|
constraint, |
|
options=None, |
|
line_source=None, |
|
): |
|
|
|
self.requirement = requirement |
|
self.is_editable = is_editable |
|
self.comes_from = comes_from |
|
self.options = options |
|
self.constraint = constraint |
|
self.line_source = line_source |
|
|
|
|
|
class ParsedLine(object): |
|
def __init__( |
|
self, |
|
filename, |
|
lineno, |
|
comes_from, |
|
args, |
|
opts, |
|
constraint, |
|
): |
|
|
|
self.filename = filename |
|
self.lineno = lineno |
|
self.comes_from = comes_from |
|
self.opts = opts |
|
self.constraint = constraint |
|
|
|
if args: |
|
self.is_requirement = True |
|
self.is_editable = False |
|
self.requirement = args |
|
elif opts.editables: |
|
self.is_requirement = True |
|
self.is_editable = True |
|
|
|
self.requirement = opts.editables[0] |
|
else: |
|
self.is_requirement = False |
|
|
|
|
|
def parse_requirements( |
|
filename, |
|
session, |
|
finder=None, |
|
comes_from=None, |
|
options=None, |
|
constraint=False, |
|
): |
|
|
|
"""Parse a requirements file and yield ParsedRequirement instances. |
|
|
|
:param filename: Path or url of requirements file. |
|
:param session: PipSession instance. |
|
:param finder: Instance of pip.index.PackageFinder. |
|
:param comes_from: Origin description of requirements. |
|
:param options: cli options. |
|
:param constraint: If true, parsing a constraint file rather than |
|
requirements file. |
|
""" |
|
line_parser = get_line_parser(finder) |
|
parser = RequirementsFileParser(session, line_parser, comes_from) |
|
|
|
for parsed_line in parser.parse(filename, constraint): |
|
parsed_req = handle_line( |
|
parsed_line, |
|
options=options, |
|
finder=finder, |
|
session=session |
|
) |
|
if parsed_req is not None: |
|
yield parsed_req |
|
|
|
|
|
def preprocess(content): |
|
|
|
"""Split, filter, and join lines, and return a line iterator |
|
|
|
:param content: the content of the requirements file |
|
""" |
|
lines_enum = enumerate(content.splitlines(), start=1) |
|
lines_enum = join_lines(lines_enum) |
|
lines_enum = ignore_comments(lines_enum) |
|
lines_enum = expand_env_variables(lines_enum) |
|
return lines_enum |
|
|
|
|
|
def handle_requirement_line( |
|
line, |
|
options=None, |
|
): |
|
|
|
|
|
|
|
line_comes_from = '{} {} (line {})'.format( |
|
'-c' if line.constraint else '-r', line.filename, line.lineno, |
|
) |
|
|
|
assert line.is_requirement |
|
|
|
if line.is_editable: |
|
|
|
|
|
return ParsedRequirement( |
|
requirement=line.requirement, |
|
is_editable=line.is_editable, |
|
comes_from=line_comes_from, |
|
constraint=line.constraint, |
|
) |
|
else: |
|
if options: |
|
|
|
cmdoptions.check_install_build_global(options, line.opts) |
|
|
|
|
|
req_options = {} |
|
for dest in SUPPORTED_OPTIONS_REQ_DEST: |
|
if dest in line.opts.__dict__ and line.opts.__dict__[dest]: |
|
req_options[dest] = line.opts.__dict__[dest] |
|
|
|
line_source = 'line {} of {}'.format(line.lineno, line.filename) |
|
return ParsedRequirement( |
|
requirement=line.requirement, |
|
is_editable=line.is_editable, |
|
comes_from=line_comes_from, |
|
constraint=line.constraint, |
|
options=req_options, |
|
line_source=line_source, |
|
) |
|
|
|
|
|
def handle_option_line( |
|
opts, |
|
filename, |
|
lineno, |
|
finder=None, |
|
options=None, |
|
session=None, |
|
): |
|
|
|
|
|
if options: |
|
|
|
if opts.require_hashes: |
|
options.require_hashes = opts.require_hashes |
|
if opts.features_enabled: |
|
options.features_enabled.extend( |
|
f for f in opts.features_enabled |
|
if f not in options.features_enabled |
|
) |
|
|
|
|
|
if finder: |
|
find_links = finder.find_links |
|
index_urls = finder.index_urls |
|
if opts.index_url: |
|
index_urls = [opts.index_url] |
|
if opts.no_index is True: |
|
index_urls = [] |
|
if opts.extra_index_urls: |
|
index_urls.extend(opts.extra_index_urls) |
|
if opts.find_links: |
|
|
|
|
|
|
|
value = opts.find_links[0] |
|
req_dir = os.path.dirname(os.path.abspath(filename)) |
|
relative_to_reqs_file = os.path.join(req_dir, value) |
|
if os.path.exists(relative_to_reqs_file): |
|
value = relative_to_reqs_file |
|
find_links.append(value) |
|
|
|
search_scope = SearchScope( |
|
find_links=find_links, |
|
index_urls=index_urls, |
|
) |
|
finder.search_scope = search_scope |
|
|
|
if opts.pre: |
|
finder.set_allow_all_prereleases() |
|
|
|
if opts.prefer_binary: |
|
finder.set_prefer_binary() |
|
|
|
if session: |
|
for host in opts.trusted_hosts or []: |
|
source = 'line {} of {}'.format(lineno, filename) |
|
session.add_trusted_host(host, source=source) |
|
|
|
|
|
def handle_line( |
|
line, |
|
options=None, |
|
finder=None, |
|
session=None, |
|
): |
|
|
|
"""Handle a single parsed requirements line; This can result in |
|
creating/yielding requirements, or updating the finder. |
|
|
|
:param line: The parsed line to be processed. |
|
:param options: CLI options. |
|
:param finder: The finder - updated by non-requirement lines. |
|
:param session: The session - updated by non-requirement lines. |
|
|
|
Returns a ParsedRequirement object if the line is a requirement line, |
|
otherwise returns None. |
|
|
|
For lines that contain requirements, the only options that have an effect |
|
are from SUPPORTED_OPTIONS_REQ, and they are scoped to the |
|
requirement. Other options from SUPPORTED_OPTIONS may be present, but are |
|
ignored. |
|
|
|
For lines that do not contain requirements, the only options that have an |
|
effect are from SUPPORTED_OPTIONS. Options from SUPPORTED_OPTIONS_REQ may |
|
be present, but are ignored. These lines may contain multiple options |
|
(although our docs imply only one is supported), and all our parsed and |
|
affect the finder. |
|
""" |
|
|
|
if line.is_requirement: |
|
parsed_req = handle_requirement_line(line, options) |
|
return parsed_req |
|
else: |
|
handle_option_line( |
|
line.opts, |
|
line.filename, |
|
line.lineno, |
|
finder, |
|
options, |
|
session, |
|
) |
|
return None |
|
|
|
|
|
class RequirementsFileParser(object): |
|
def __init__( |
|
self, |
|
session, |
|
line_parser, |
|
comes_from, |
|
): |
|
|
|
self._session = session |
|
self._line_parser = line_parser |
|
self._comes_from = comes_from |
|
|
|
def parse(self, filename, constraint): |
|
|
|
"""Parse a given file, yielding parsed lines. |
|
""" |
|
for line in self._parse_and_recurse(filename, constraint): |
|
yield line |
|
|
|
def _parse_and_recurse(self, filename, constraint): |
|
|
|
for line in self._parse_file(filename, constraint): |
|
if ( |
|
not line.is_requirement and |
|
(line.opts.requirements or line.opts.constraints) |
|
): |
|
|
|
if line.opts.requirements: |
|
req_path = line.opts.requirements[0] |
|
nested_constraint = False |
|
else: |
|
req_path = line.opts.constraints[0] |
|
nested_constraint = True |
|
|
|
|
|
if SCHEME_RE.search(filename): |
|
|
|
req_path = urllib_parse.urljoin(filename, req_path) |
|
|
|
elif not SCHEME_RE.search(req_path): |
|
|
|
req_path = os.path.join( |
|
os.path.dirname(filename), req_path, |
|
) |
|
|
|
for inner_line in self._parse_and_recurse( |
|
req_path, nested_constraint, |
|
): |
|
yield inner_line |
|
else: |
|
yield line |
|
|
|
def _parse_file(self, filename, constraint): |
|
|
|
_, content = get_file_content( |
|
filename, self._session, comes_from=self._comes_from |
|
) |
|
|
|
lines_enum = preprocess(content) |
|
|
|
for line_number, line in lines_enum: |
|
try: |
|
args_str, opts = self._line_parser(line) |
|
except OptionParsingError as e: |
|
|
|
msg = 'Invalid requirement: {}\n{}'.format(line, e.msg) |
|
raise RequirementsFileParseError(msg) |
|
|
|
yield ParsedLine( |
|
filename, |
|
line_number, |
|
self._comes_from, |
|
args_str, |
|
opts, |
|
constraint, |
|
) |
|
|
|
|
|
def get_line_parser(finder): |
|
|
|
def parse_line(line): |
|
|
|
|
|
|
|
parser = build_parser() |
|
defaults = parser.get_default_values() |
|
defaults.index_url = None |
|
if finder: |
|
defaults.format_control = finder.format_control |
|
|
|
args_str, options_str = break_args_options(line) |
|
|
|
if sys.version_info < (2, 7, 3): |
|
|
|
options_str = options_str.encode('utf8') |
|
|
|
|
|
opts, _ = parser.parse_args( |
|
shlex.split(options_str), defaults) |
|
|
|
return args_str, opts |
|
|
|
return parse_line |
|
|
|
|
|
def break_args_options(line): |
|
|
|
"""Break up the line into an args and options string. We only want to shlex |
|
(and then optparse) the options, not the args. args can contain markers |
|
which are corrupted by shlex. |
|
""" |
|
tokens = line.split(' ') |
|
args = [] |
|
options = tokens[:] |
|
for token in tokens: |
|
if token.startswith('-') or token.startswith('--'): |
|
break |
|
else: |
|
args.append(token) |
|
options.pop(0) |
|
return ' '.join(args), ' '.join(options) |
|
|
|
|
|
class OptionParsingError(Exception): |
|
def __init__(self, msg): |
|
|
|
self.msg = msg |
|
|
|
|
|
def build_parser(): |
|
|
|
""" |
|
Return a parser for parsing requirement lines |
|
""" |
|
parser = optparse.OptionParser(add_help_option=False) |
|
|
|
option_factories = SUPPORTED_OPTIONS + SUPPORTED_OPTIONS_REQ |
|
for option_factory in option_factories: |
|
option = option_factory() |
|
parser.add_option(option) |
|
|
|
|
|
|
|
def parser_exit(self, msg): |
|
|
|
raise OptionParsingError(msg) |
|
|
|
|
|
parser.exit = parser_exit |
|
|
|
return parser |
|
|
|
|
|
def join_lines(lines_enum): |
|
|
|
"""Joins a line ending in '\' with the previous line (except when following |
|
comments). The joined line takes on the index of the first line. |
|
""" |
|
primary_line_number = None |
|
new_line = [] |
|
for line_number, line in lines_enum: |
|
if not line.endswith('\\') or COMMENT_RE.match(line): |
|
if COMMENT_RE.match(line): |
|
|
|
line = ' ' + line |
|
if new_line: |
|
new_line.append(line) |
|
assert primary_line_number is not None |
|
yield primary_line_number, ''.join(new_line) |
|
new_line = [] |
|
else: |
|
yield line_number, line |
|
else: |
|
if not new_line: |
|
primary_line_number = line_number |
|
new_line.append(line.strip('\\')) |
|
|
|
|
|
if new_line: |
|
assert primary_line_number is not None |
|
yield primary_line_number, ''.join(new_line) |
|
|
|
|
|
|
|
|
|
def ignore_comments(lines_enum): |
|
|
|
""" |
|
Strips comments and filter empty lines. |
|
""" |
|
for line_number, line in lines_enum: |
|
line = COMMENT_RE.sub('', line) |
|
line = line.strip() |
|
if line: |
|
yield line_number, line |
|
|
|
|
|
def expand_env_variables(lines_enum): |
|
|
|
"""Replace all environment variables that can be retrieved via `os.getenv`. |
|
|
|
The only allowed format for environment variables defined in the |
|
requirement file is `${MY_VARIABLE_1}` to ensure two things: |
|
|
|
1. Strings that contain a `$` aren't accidentally (partially) expanded. |
|
2. Ensure consistency across platforms for requirement files. |
|
|
|
These points are the result of a discussion on the `github pull |
|
request #3514 <https://github.com/pypa/pip/pull/3514>`_. |
|
|
|
Valid characters in variable names follow the `POSIX standard |
|
<http://pubs.opengroup.org/onlinepubs/9699919799/>`_ and are limited |
|
to uppercase letter, digits and the `_` (underscore). |
|
""" |
|
for line_number, line in lines_enum: |
|
for env_var, var_name in ENV_VAR_RE.findall(line): |
|
value = os.getenv(var_name) |
|
if not value: |
|
continue |
|
|
|
line = line.replace(env_var, value) |
|
|
|
yield line_number, line |
|
|
|
|
|
def get_file_content(url, session, comes_from=None): |
|
|
|
"""Gets the content of a file; it may be a filename, file: URL, or |
|
http: URL. Returns (location, content). Content is unicode. |
|
Respects # -*- coding: declarations on the retrieved files. |
|
|
|
:param url: File path or url. |
|
:param session: PipSession instance. |
|
:param comes_from: Origin description of requirements. |
|
""" |
|
scheme = get_url_scheme(url) |
|
|
|
if scheme in ['http', 'https']: |
|
|
|
resp = session.get(url) |
|
raise_for_status(resp) |
|
return resp.url, resp.text |
|
|
|
elif scheme == 'file': |
|
if comes_from and comes_from.startswith('http'): |
|
raise InstallationError( |
|
'Requirements file {} references URL {}, ' |
|
'which is local'.format(comes_from, url) |
|
) |
|
|
|
path = url.split(':', 1)[1] |
|
path = path.replace('\\', '/') |
|
match = _url_slash_drive_re.match(path) |
|
if match: |
|
path = match.group(1) + ':' + path.split('|', 1)[1] |
|
path = urllib_parse.unquote(path) |
|
if path.startswith('/'): |
|
path = '/' + path.lstrip('/') |
|
url = path |
|
|
|
try: |
|
with open(url, 'rb') as f: |
|
content = auto_decode(f.read()) |
|
except IOError as exc: |
|
raise InstallationError( |
|
'Could not open requirements file: {}'.format(exc) |
|
) |
|
return url, content |
|
|
|
|
|
_url_slash_drive_re = re.compile(r'/*([a-z])\|', re.I) |
|
|