| """ |
| Fetch metadata from remote .conda or .tar.bz2 package. |
| |
| Try to fetch less than the whole file if possible. |
| |
| This module should only be used to make *partial* reads against a remote |
| package, typically just the ``info`` portion. If a full ``.conda`` format |
| package is needed, it is more efficient to download locally first and then use |
| the file-based API. |
| """ |
|
|
| import logging |
| import sys |
| import urllib.parse |
| from pathlib import Path |
|
|
| import requests |
|
|
| from . import package_streaming |
|
|
| |
| from .lazy_wheel import LazyConda |
|
|
| log = logging.getLogger(__name__) |
|
|
| session = requests.Session() |
| session.headers["User-Agent"] = "conda-package-streaming/0.1.0" |
|
|
|
|
| METADATA_CHECKLIST = frozenset({"info/index.json", "info/recipe/meta.yaml"}) |
|
|
|
|
| def extract_conda_info(url, destdir, checklist=METADATA_CHECKLIST, session=session): |
| """ |
| Extract info/index.json and info/recipe/meta.yaml from url to destdir; close |
| url as soon as those files are found. |
| """ |
| checklist = set(checklist) |
| stream = stream_conda_info(url, session=session) |
| for tar, member in stream: |
| if member.name in checklist: |
| tar.extract(member, destdir) |
| checklist.remove(member.name) |
| if not checklist: |
| stream.close() |
| |
|
|
|
|
| def stream_conda_info(url, session=session): |
| """ |
| Yield (tar, member) for conda package at url |
| |
| Just "info/" for .conda, all members for tar. |
| """ |
| filename, conda = conda_reader_for_url(url, session=session) |
|
|
| try: |
| yield from package_streaming.stream_conda_info(filename, conda) |
| finally: |
| if hasattr(conda, "release_conn"): |
| |
| |
| conda.release_conn() |
| conda.close() |
|
|
|
|
| def conda_reader_for_url( |
| url, session: requests.Session = session, fall_back_to_full_download: bool = False |
| ): |
| """ |
| Return (name, file_like) suitable for package_streaming APIs |
| |
| :param url: URL to conda package |
| :param session: The session to use for web requests. |
| :param fall_back_to_full_download: If true, fall back to downloading the entire |
| package instead of streaming it in the case of a specific issue where the server |
| incorrectly responds with 416 (Range Not Satisfiable). See LazyZipOverHTTP for |
| more details. |
| """ |
| parsed_url = urllib.parse.urlparse(url) |
| *_, filename = parsed_url.path.rsplit("/", 1) |
| if filename.endswith(".conda"): |
| file_id = filename[: -len(".conda")] |
| conda = LazyConda( |
| url, session, fall_back_to_full_download=fall_back_to_full_download |
| ) |
| conda.prefetch(file_id) |
| elif filename.endswith(".tar.bz2"): |
| response = session.get(url, stream=True, headers={"Connection": "close"}) |
| conda = response.raw |
| else: |
| raise ValueError("Unsupported extension %s", url) |
| return filename, conda |
|
|
|
|
| if __name__ == "__main__": |
| import logging |
|
|
| logging.basicConfig(level=logging.DEBUG) |
| extract_conda_info(sys.argv[1], Path(sys.argv[2]).absolute()) |
|
|