| | """Backing implementation for InstallRequirement's various constructors |
| | |
| | The idea here is that these formed a major chunk of InstallRequirement's size |
| | so, moving them and support code dedicated to them outside of that class |
| | helps creates for better understandability for the rest of the code. |
| | |
| | These are meant to be used elsewhere within pip to create instances of |
| | InstallRequirement. |
| | """ |
| |
|
| | from __future__ import annotations |
| |
|
| | import copy |
| | import logging |
| | import os |
| | import re |
| | from collections.abc import Collection |
| | from dataclasses import dataclass |
| |
|
| | from pip._vendor.packaging.markers import Marker |
| | from pip._vendor.packaging.requirements import InvalidRequirement, Requirement |
| | from pip._vendor.packaging.specifiers import Specifier |
| |
|
| | from pip._internal.exceptions import InstallationError |
| | from pip._internal.models.index import PyPI, TestPyPI |
| | from pip._internal.models.link import Link |
| | from pip._internal.models.wheel import Wheel |
| | from pip._internal.req.req_file import ParsedRequirement |
| | from pip._internal.req.req_install import InstallRequirement |
| | from pip._internal.utils.filetypes import is_archive_file |
| | from pip._internal.utils.misc import is_installable_dir |
| | from pip._internal.utils.packaging import get_requirement |
| | from pip._internal.utils.urls import path_to_url |
| | from pip._internal.vcs import is_url, vcs |
| |
|
| | __all__ = [ |
| | "install_req_from_editable", |
| | "install_req_from_line", |
| | "parse_editable", |
| | ] |
| |
|
| | logger = logging.getLogger(__name__) |
| | operators = Specifier._operators.keys() |
| |
|
| |
|
| | def _strip_extras(path: str) -> tuple[str, str | None]: |
| | m = re.match(r"^(.+)(\[[^\]]+\])$", path) |
| | extras = None |
| | if m: |
| | path_no_extras = m.group(1).rstrip() |
| | extras = m.group(2) |
| | else: |
| | path_no_extras = path |
| |
|
| | return path_no_extras, extras |
| |
|
| |
|
| | def convert_extras(extras: str | None) -> set[str]: |
| | if not extras: |
| | return set() |
| | return get_requirement("placeholder" + extras.lower()).extras |
| |
|
| |
|
| | def _set_requirement_extras(req: Requirement, new_extras: set[str]) -> Requirement: |
| | """ |
| | Returns a new requirement based on the given one, with the supplied extras. If the |
| | given requirement already has extras those are replaced (or dropped if no new extras |
| | are given). |
| | """ |
| | match: re.Match[str] | None = re.fullmatch( |
| | |
| | r"([\w\t .-]+)(\[[^\]]*\])?(.*)", |
| | str(req), |
| | flags=re.ASCII, |
| | ) |
| | |
| | assert ( |
| | match is not None |
| | ), f"regex match on requirement {req} failed, this should never happen" |
| | pre: str | None = match.group(1) |
| | post: str | None = match.group(3) |
| | assert ( |
| | pre is not None and post is not None |
| | ), f"regex group selection for requirement {req} failed, this should never happen" |
| | extras: str = "[{}]".format(",".join(sorted(new_extras)) if new_extras else "") |
| | return get_requirement(f"{pre}{extras}{post}") |
| |
|
| |
|
| | def _parse_direct_url_editable(editable_req: str) -> tuple[str | None, str, set[str]]: |
| | try: |
| | req = Requirement(editable_req) |
| | except InvalidRequirement: |
| | pass |
| | else: |
| | if req.url: |
| | |
| | |
| | if req.marker: |
| | name = f"{req.name} ; {req.marker}" |
| | else: |
| | name = req.name |
| | return (name, req.url, req.extras) |
| |
|
| | raise ValueError |
| |
|
| |
|
| | def _parse_pip_syntax_editable(editable_req: str) -> tuple[str | None, str, set[str]]: |
| | url = editable_req |
| |
|
| | |
| | url_no_extras, extras = _strip_extras(url) |
| |
|
| | if os.path.isdir(url_no_extras): |
| | |
| | url_no_extras = path_to_url(url_no_extras) |
| |
|
| | if url_no_extras.lower().startswith("file:"): |
| | package_name = Link(url_no_extras).egg_fragment |
| | if extras: |
| | return ( |
| | package_name, |
| | url_no_extras, |
| | get_requirement("placeholder" + extras.lower()).extras, |
| | ) |
| | else: |
| | return package_name, url_no_extras, set() |
| |
|
| | for version_control in vcs: |
| | if url.lower().startswith(f"{version_control}:"): |
| | url = f"{version_control}+{url}" |
| | break |
| |
|
| | return Link(url).egg_fragment, url, set() |
| |
|
| |
|
| | def parse_editable(editable_req: str) -> tuple[str | None, str, set[str]]: |
| | """Parses an editable requirement into: |
| | - a requirement name with environment markers |
| | - an URL |
| | - extras |
| | Accepted requirements: |
| | - svn+http://blahblah@rev#egg=Foobar[baz]&subdirectory=version_subdir |
| | - local_path[some_extra] |
| | - Foobar[extra] @ svn+http://blahblah@rev#subdirectory=subdir ; markers |
| | """ |
| | try: |
| | package_name, url, extras = _parse_direct_url_editable(editable_req) |
| | except ValueError: |
| | package_name, url, extras = _parse_pip_syntax_editable(editable_req) |
| |
|
| | link = Link(url) |
| |
|
| | if not link.is_vcs and not link.url.startswith("file:"): |
| | backends = ", ".join(vcs.all_schemes) |
| | raise InstallationError( |
| | f"{editable_req} is not a valid editable requirement. " |
| | f"It should either be a path to a local project or a VCS URL " |
| | f"(beginning with {backends})." |
| | ) |
| |
|
| | |
| | if not package_name and not link.url.startswith("file:"): |
| | raise InstallationError( |
| | f"Could not detect requirement name for '{editable_req}', " |
| | "please specify one with your_package_name @ URL" |
| | ) |
| | return package_name, url, extras |
| |
|
| |
|
| | def check_first_requirement_in_file(filename: str) -> None: |
| | """Check if file is parsable as a requirements file. |
| | |
| | This is heavily based on ``pkg_resources.parse_requirements``, but |
| | simplified to just check the first meaningful line. |
| | |
| | :raises InvalidRequirement: If the first meaningful line cannot be parsed |
| | as an requirement. |
| | """ |
| | with open(filename, encoding="utf-8", errors="ignore") as f: |
| | |
| | lines = ( |
| | line |
| | for line in (line.strip() for line in f) |
| | if line and not line.startswith("#") |
| | ) |
| |
|
| | for line in lines: |
| | |
| | if " #" in line: |
| | line = line[: line.find(" #")] |
| | |
| | if line.endswith("\\"): |
| | line = line[:-2].strip() + next(lines, "") |
| | get_requirement(line) |
| | return |
| |
|
| |
|
| | def deduce_helpful_msg(req: str) -> str: |
| | """Returns helpful msg in case requirements file does not exist, |
| | or cannot be parsed. |
| | |
| | :params req: Requirements file path |
| | """ |
| | if not os.path.exists(req): |
| | return f" File '{req}' does not exist." |
| | msg = " The path does exist. " |
| | |
| | try: |
| | check_first_requirement_in_file(req) |
| | except InvalidRequirement: |
| | logger.debug("Cannot parse '%s' as requirements file", req) |
| | else: |
| | msg += ( |
| | f"The argument you provided " |
| | f"({req}) appears to be a" |
| | f" requirements file. If that is the" |
| | f" case, use the '-r' flag to install" |
| | f" the packages specified within it." |
| | ) |
| | return msg |
| |
|
| |
|
| | @dataclass(frozen=True) |
| | class RequirementParts: |
| | requirement: Requirement | None |
| | link: Link | None |
| | markers: Marker | None |
| | extras: set[str] |
| |
|
| |
|
| | def parse_req_from_editable(editable_req: str) -> RequirementParts: |
| | name, url, extras_override = parse_editable(editable_req) |
| |
|
| | if name is not None: |
| | try: |
| | req: Requirement | None = get_requirement(name) |
| | except InvalidRequirement as exc: |
| | raise InstallationError(f"Invalid requirement: {name!r}: {exc}") |
| | else: |
| | req = None |
| |
|
| | link = Link(url) |
| |
|
| | return RequirementParts(req, link, None, extras_override) |
| |
|
| |
|
| | |
| |
|
| |
|
| | def install_req_from_editable( |
| | editable_req: str, |
| | comes_from: InstallRequirement | str | None = None, |
| | *, |
| | isolated: bool = False, |
| | hash_options: dict[str, list[str]] | None = None, |
| | constraint: bool = False, |
| | user_supplied: bool = False, |
| | permit_editable_wheels: bool = False, |
| | config_settings: dict[str, str | list[str]] | None = None, |
| | ) -> InstallRequirement: |
| | parts = parse_req_from_editable(editable_req) |
| |
|
| | return InstallRequirement( |
| | parts.requirement, |
| | comes_from=comes_from, |
| | user_supplied=user_supplied, |
| | editable=True, |
| | permit_editable_wheels=permit_editable_wheels, |
| | link=parts.link, |
| | constraint=constraint, |
| | isolated=isolated, |
| | hash_options=hash_options, |
| | config_settings=config_settings, |
| | extras=parts.extras, |
| | ) |
| |
|
| |
|
| | def _looks_like_path(name: str) -> bool: |
| | """Checks whether the string "looks like" a path on the filesystem. |
| | |
| | This does not check whether the target actually exists, only judge from the |
| | appearance. |
| | |
| | Returns true if any of the following conditions is true: |
| | * a path separator is found (either os.path.sep or os.path.altsep); |
| | * a dot is found (which represents the current directory). |
| | """ |
| | if os.path.sep in name: |
| | return True |
| | if os.path.altsep is not None and os.path.altsep in name: |
| | return True |
| | if name.startswith("."): |
| | return True |
| | return False |
| |
|
| |
|
| | def _get_url_from_path(path: str, name: str) -> str | None: |
| | """ |
| | First, it checks whether a provided path is an installable directory. If it |
| | is, returns the path. |
| | |
| | If false, check if the path is an archive file (such as a .whl). |
| | The function checks if the path is a file. If false, if the path has |
| | an @, it will treat it as a PEP 440 URL requirement and return the path. |
| | """ |
| | if _looks_like_path(name) and os.path.isdir(path): |
| | if is_installable_dir(path): |
| | return path_to_url(path) |
| | |
| | |
| | raise InstallationError( |
| | f"Directory {name!r} is not installable. Neither 'setup.py' " |
| | "nor 'pyproject.toml' found." |
| | ) |
| | if not is_archive_file(path): |
| | return None |
| | if os.path.isfile(path): |
| | return path_to_url(path) |
| | urlreq_parts = name.split("@", 1) |
| | if len(urlreq_parts) >= 2 and not _looks_like_path(urlreq_parts[0]): |
| | |
| | |
| | return None |
| | logger.warning( |
| | "Requirement %r looks like a filename, but the file does not exist", |
| | name, |
| | ) |
| | return path_to_url(path) |
| |
|
| |
|
| | def parse_req_from_line(name: str, line_source: str | None) -> RequirementParts: |
| | if is_url(name): |
| | marker_sep = "; " |
| | else: |
| | marker_sep = ";" |
| | if marker_sep in name: |
| | name, markers_as_string = name.split(marker_sep, 1) |
| | markers_as_string = markers_as_string.strip() |
| | if not markers_as_string: |
| | markers = None |
| | else: |
| | markers = Marker(markers_as_string) |
| | else: |
| | markers = None |
| | name = name.strip() |
| | req_as_string = None |
| | path = os.path.normpath(os.path.abspath(name)) |
| | link = None |
| | extras_as_string = None |
| |
|
| | if is_url(name): |
| | link = Link(name) |
| | else: |
| | p, extras_as_string = _strip_extras(path) |
| | url = _get_url_from_path(p, name) |
| | if url is not None: |
| | link = Link(url) |
| |
|
| | |
| | if link: |
| | |
| | if link.scheme == "file" and re.search(r"\.\./", link.url): |
| | link = Link(path_to_url(os.path.normpath(os.path.abspath(link.path)))) |
| | |
| | if link.is_wheel: |
| | wheel = Wheel(link.filename) |
| | req_as_string = f"{wheel.name}=={wheel.version}" |
| | else: |
| | |
| | |
| | req_as_string = link.egg_fragment |
| |
|
| | |
| | else: |
| | req_as_string = name |
| |
|
| | extras = convert_extras(extras_as_string) |
| |
|
| | def with_source(text: str) -> str: |
| | if not line_source: |
| | return text |
| | return f"{text} (from {line_source})" |
| |
|
| | def _parse_req_string(req_as_string: str) -> Requirement: |
| | try: |
| | return get_requirement(req_as_string) |
| | except InvalidRequirement as exc: |
| | if os.path.sep in req_as_string: |
| | add_msg = "It looks like a path." |
| | add_msg += deduce_helpful_msg(req_as_string) |
| | elif "=" in req_as_string and not any( |
| | op in req_as_string for op in operators |
| | ): |
| | add_msg = "= is not a valid operator. Did you mean == ?" |
| | else: |
| | add_msg = "" |
| | msg = with_source(f"Invalid requirement: {req_as_string!r}: {exc}") |
| | if add_msg: |
| | msg += f"\nHint: {add_msg}" |
| | raise InstallationError(msg) |
| |
|
| | if req_as_string is not None: |
| | req: Requirement | None = _parse_req_string(req_as_string) |
| | else: |
| | req = None |
| |
|
| | return RequirementParts(req, link, markers, extras) |
| |
|
| |
|
| | def install_req_from_line( |
| | name: str, |
| | comes_from: str | InstallRequirement | None = None, |
| | *, |
| | isolated: bool = False, |
| | hash_options: dict[str, list[str]] | None = None, |
| | constraint: bool = False, |
| | line_source: str | None = None, |
| | user_supplied: bool = False, |
| | config_settings: dict[str, str | list[str]] | None = None, |
| | ) -> InstallRequirement: |
| | """Creates an InstallRequirement from a name, which might be a |
| | requirement, directory containing 'setup.py', filename, or URL. |
| | |
| | :param line_source: An optional string describing where the line is from, |
| | for logging purposes in case of an error. |
| | """ |
| | parts = parse_req_from_line(name, line_source) |
| |
|
| | return InstallRequirement( |
| | parts.requirement, |
| | comes_from, |
| | link=parts.link, |
| | markers=parts.markers, |
| | isolated=isolated, |
| | hash_options=hash_options, |
| | config_settings=config_settings, |
| | constraint=constraint, |
| | extras=parts.extras, |
| | user_supplied=user_supplied, |
| | ) |
| |
|
| |
|
| | def install_req_from_req_string( |
| | req_string: str, |
| | comes_from: InstallRequirement | None = None, |
| | isolated: bool = False, |
| | user_supplied: bool = False, |
| | ) -> InstallRequirement: |
| | try: |
| | req = get_requirement(req_string) |
| | except InvalidRequirement as exc: |
| | raise InstallationError(f"Invalid requirement: {req_string!r}: {exc}") |
| |
|
| | domains_not_allowed = [ |
| | PyPI.file_storage_domain, |
| | TestPyPI.file_storage_domain, |
| | ] |
| | if ( |
| | req.url |
| | and comes_from |
| | and comes_from.link |
| | and comes_from.link.netloc in domains_not_allowed |
| | ): |
| | |
| | raise InstallationError( |
| | "Packages installed from PyPI cannot depend on packages " |
| | "which are not also hosted on PyPI.\n" |
| | f"{comes_from.name} depends on {req} " |
| | ) |
| |
|
| | return InstallRequirement( |
| | req, |
| | comes_from, |
| | isolated=isolated, |
| | user_supplied=user_supplied, |
| | ) |
| |
|
| |
|
| | def install_req_from_parsed_requirement( |
| | parsed_req: ParsedRequirement, |
| | isolated: bool = False, |
| | user_supplied: bool = False, |
| | config_settings: dict[str, str | list[str]] | None = None, |
| | ) -> InstallRequirement: |
| | if parsed_req.is_editable: |
| | req = install_req_from_editable( |
| | parsed_req.requirement, |
| | comes_from=parsed_req.comes_from, |
| | constraint=parsed_req.constraint, |
| | isolated=isolated, |
| | user_supplied=user_supplied, |
| | config_settings=config_settings, |
| | ) |
| |
|
| | else: |
| | req = install_req_from_line( |
| | parsed_req.requirement, |
| | comes_from=parsed_req.comes_from, |
| | isolated=isolated, |
| | hash_options=( |
| | parsed_req.options.get("hashes", {}) if parsed_req.options else {} |
| | ), |
| | constraint=parsed_req.constraint, |
| | line_source=parsed_req.line_source, |
| | user_supplied=user_supplied, |
| | config_settings=config_settings, |
| | ) |
| | return req |
| |
|
| |
|
| | def install_req_from_link_and_ireq( |
| | link: Link, ireq: InstallRequirement |
| | ) -> InstallRequirement: |
| | return InstallRequirement( |
| | req=ireq.req, |
| | comes_from=ireq.comes_from, |
| | editable=ireq.editable, |
| | link=link, |
| | markers=ireq.markers, |
| | isolated=ireq.isolated, |
| | hash_options=ireq.hash_options, |
| | config_settings=ireq.config_settings, |
| | user_supplied=ireq.user_supplied, |
| | ) |
| |
|
| |
|
| | def install_req_drop_extras(ireq: InstallRequirement) -> InstallRequirement: |
| | """ |
| | Creates a new InstallationRequirement using the given template but without |
| | any extras. Sets the original requirement as the new one's parent |
| | (comes_from). |
| | """ |
| | return InstallRequirement( |
| | req=( |
| | _set_requirement_extras(ireq.req, set()) if ireq.req is not None else None |
| | ), |
| | comes_from=ireq, |
| | editable=ireq.editable, |
| | link=ireq.link, |
| | markers=ireq.markers, |
| | isolated=ireq.isolated, |
| | hash_options=ireq.hash_options, |
| | constraint=ireq.constraint, |
| | extras=[], |
| | config_settings=ireq.config_settings, |
| | user_supplied=ireq.user_supplied, |
| | permit_editable_wheels=ireq.permit_editable_wheels, |
| | ) |
| |
|
| |
|
| | def install_req_extend_extras( |
| | ireq: InstallRequirement, |
| | extras: Collection[str], |
| | ) -> InstallRequirement: |
| | """ |
| | Returns a copy of an installation requirement with some additional extras. |
| | Makes a shallow copy of the ireq object. |
| | """ |
| | result = copy.copy(ireq) |
| | result.extras = {*ireq.extras, *extras} |
| | result.req = ( |
| | _set_requirement_extras(ireq.req, result.extras) |
| | if ireq.req is not None |
| | else None |
| | ) |
| | return result |
| |
|