8c2b7d55af
Fix warnings from `cargo +nightly udeps` and `cargo doc`. Removes all mentions of regex from pep440_rs.
527 lines
19 KiB
Rust
527 lines
19 KiB
Rust
use std::fmt::{Display, Formatter};
|
|
use std::io;
|
|
use std::io::Write;
|
|
use std::ops::Deref;
|
|
use std::path::{Path, PathBuf};
|
|
use std::sync::Arc;
|
|
|
|
use fs_err as fs;
|
|
use tempfile::{tempdir, TempDir};
|
|
use tracing::debug;
|
|
|
|
use puffin_fs::{directories, force_remove_all};
|
|
use puffin_normalize::PackageName;
|
|
|
|
pub use crate::by_timestamp::CachedByTimestamp;
|
|
#[cfg(feature = "clap")]
|
|
pub use crate::cli::CacheArgs;
|
|
pub use crate::wheel::WheelCache;
|
|
use crate::wheel::WheelCacheKind;
|
|
|
|
mod by_timestamp;
|
|
mod cli;
|
|
mod wheel;
|
|
|
|
/// A [`CacheEntry`] which may or may not exist yet.
|
|
#[derive(Debug, Clone)]
|
|
pub struct CacheEntry(PathBuf);
|
|
|
|
impl CacheEntry {
|
|
/// Create a new [`CacheEntry`] from a directory and a file name.
|
|
pub fn new(dir: impl Into<PathBuf>, file: impl AsRef<Path>) -> Self {
|
|
Self(dir.into().join(file))
|
|
}
|
|
|
|
/// Convert the [`CacheEntry`] into a [`PathBuf`].
|
|
#[inline]
|
|
pub fn into_path_buf(self) -> PathBuf {
|
|
self.0
|
|
}
|
|
|
|
/// Return the path to the [`CacheEntry`].
|
|
#[inline]
|
|
pub fn path(&self) -> &Path {
|
|
&self.0
|
|
}
|
|
|
|
/// Return the cache entry's parent directory.
|
|
#[inline]
|
|
pub fn dir(&self) -> &Path {
|
|
self.0.parent().expect("Cache entry has no parent")
|
|
}
|
|
|
|
/// Create a new [`CacheEntry`] with the given file name.
|
|
#[must_use]
|
|
pub fn with_file(&self, file: impl AsRef<Path>) -> Self {
|
|
Self(self.dir().join(file))
|
|
}
|
|
}
|
|
|
|
/// A subdirectory within the cache.
|
|
#[derive(Debug, Clone)]
|
|
pub struct CacheShard(PathBuf);
|
|
|
|
impl CacheShard {
|
|
pub fn entry(&self, file: impl AsRef<Path>) -> CacheEntry {
|
|
CacheEntry::new(&self.0, file)
|
|
}
|
|
}
|
|
|
|
impl Deref for CacheShard {
|
|
type Target = Path;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
&self.0
|
|
}
|
|
}
|
|
|
|
/// The main cache abstraction.
|
|
#[derive(Debug, Clone)]
|
|
pub struct Cache {
|
|
/// The cache directory.
|
|
root: PathBuf,
|
|
/// A temporary cache directory, if the user requested `--no-cache`.
|
|
///
|
|
/// Included to ensure that the temporary directory exists for the length of the operation, but
|
|
/// is dropped at the end as appropriate.
|
|
_temp_dir_drop: Option<Arc<TempDir>>,
|
|
}
|
|
|
|
impl Cache {
|
|
/// A persistent cache directory at `root`.
|
|
pub fn from_path(root: impl Into<PathBuf>) -> Result<Self, io::Error> {
|
|
Ok(Self {
|
|
root: Self::init(root)?,
|
|
_temp_dir_drop: None,
|
|
})
|
|
}
|
|
|
|
/// Create a temporary cache directory.
|
|
pub fn temp() -> Result<Self, io::Error> {
|
|
let temp_dir = tempdir()?;
|
|
Ok(Self {
|
|
root: Self::init(temp_dir.path())?,
|
|
_temp_dir_drop: Some(Arc::new(temp_dir)),
|
|
})
|
|
}
|
|
|
|
/// Return the root of the cache.
|
|
pub fn root(&self) -> &Path {
|
|
&self.root
|
|
}
|
|
|
|
/// The folder for a specific cache bucket
|
|
pub fn bucket(&self, cache_bucket: CacheBucket) -> PathBuf {
|
|
self.root.join(cache_bucket.to_str())
|
|
}
|
|
|
|
/// Compute an entry in the cache.
|
|
pub fn shard(&self, cache_bucket: CacheBucket, dir: impl AsRef<Path>) -> CacheShard {
|
|
CacheShard(self.bucket(cache_bucket).join(dir.as_ref()))
|
|
}
|
|
|
|
/// Compute an entry in the cache.
|
|
pub fn entry(
|
|
&self,
|
|
cache_bucket: CacheBucket,
|
|
dir: impl AsRef<Path>,
|
|
file: impl AsRef<Path>,
|
|
) -> CacheEntry {
|
|
CacheEntry::new(self.bucket(cache_bucket).join(dir), file)
|
|
}
|
|
|
|
/// Initialize a directory for use as a cache.
|
|
fn init(root: impl Into<PathBuf>) -> Result<PathBuf, io::Error> {
|
|
let root = root.into();
|
|
|
|
// Create the cache directory, if it doesn't exist.
|
|
fs::create_dir_all(&root)?;
|
|
|
|
// Add the CACHEDIR.TAG.
|
|
cachedir::ensure_tag(&root)?;
|
|
|
|
// Add the .gitignore.
|
|
let gitignore_path = root.join(".gitignore");
|
|
if !gitignore_path.exists() {
|
|
let mut file = fs::File::create(gitignore_path)?;
|
|
file.write_all(b"*")?;
|
|
}
|
|
|
|
fs::canonicalize(root)
|
|
}
|
|
|
|
/// Remove a package from the cache.
|
|
///
|
|
/// Returns the number of entries removed from the cache.
|
|
pub fn purge(&self, name: &PackageName) -> Result<usize, io::Error> {
|
|
let mut count = 0;
|
|
for bucket in [
|
|
CacheBucket::Wheels,
|
|
CacheBucket::BuiltWheels,
|
|
CacheBucket::Git,
|
|
CacheBucket::Interpreter,
|
|
CacheBucket::Simple,
|
|
] {
|
|
count += bucket.purge(self, name)?;
|
|
}
|
|
Ok(count)
|
|
}
|
|
}
|
|
|
|
/// The different kinds of data in the cache are stored in different bucket, which in our case
|
|
/// are subdirectories of the cache root.
|
|
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
|
|
pub enum CacheBucket {
|
|
/// Wheels (excluding built wheels), alongside their metadata and cache policy.
|
|
///
|
|
/// There are three kinds from cache entries: Wheel metadata and policy as MsgPack files, the
|
|
/// wheels themselves, and the unzipped wheel archives. If a wheel file is over an in-memory
|
|
/// size threshold, we first download the zip file into the cache, then unzip it into a
|
|
/// directory with the same name (exclusive of the `.whl` extension).
|
|
///
|
|
/// Cache structure:
|
|
/// * `wheel-metadata-v0/pypi/foo/{foo-1.0.0-py3-none-any.msgpack, foo-1.0.0-py3-none-any.whl}`
|
|
/// * `wheel-metadata-v0/<digest(index-url)>/foo/{foo-1.0.0-py3-none-any.msgpack, foo-1.0.0-py3-none-any.whl}`
|
|
/// * `wheel-metadata-v0/url/<digest(url)>/foo/{foo-1.0.0-py3-none-any.msgpack, foo-1.0.0-py3-none-any.whl}`
|
|
///
|
|
/// See `puffin_client::RegistryClient::wheel_metadata` for information on how wheel metadata
|
|
/// is fetched.
|
|
///
|
|
/// # Example
|
|
///
|
|
/// Consider the following `requirements.in`:
|
|
/// ```text
|
|
/// # pypi wheel
|
|
/// pandas
|
|
/// # url wheel
|
|
/// flask @ https://files.pythonhosted.org/packages/36/42/015c23096649b908c809c69388a805a571a3bea44362fe87e33fc3afa01f/flask-3.0.0-py3-none-any.whl
|
|
/// ```
|
|
///
|
|
/// When we run `pip-compile`, it will only fetch and cache the metadata (and cache policy), it
|
|
/// doesn't need the actual wheels yet:
|
|
/// ```text
|
|
/// wheel-v0
|
|
/// ├── pypi
|
|
/// │ ...
|
|
/// │ ├── pandas
|
|
/// │ │ └── pandas-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.msgpack
|
|
/// │ ...
|
|
/// └── url
|
|
/// └── 4b8be67c801a7ecb
|
|
/// └── flask
|
|
/// └── flask-3.0.0-py3-none-any.msgpack
|
|
/// ```
|
|
///
|
|
/// We get the following `requirement.txt` from `pip-compile`:
|
|
///
|
|
/// ```text
|
|
/// [...]
|
|
/// flask @ https://files.pythonhosted.org/packages/36/42/015c23096649b908c809c69388a805a571a3bea44362fe87e33fc3afa01f/flask-3.0.0-py3-none-any.whl
|
|
/// [...]
|
|
/// pandas==2.1.3
|
|
/// [...]
|
|
/// ```
|
|
///
|
|
/// If we run `pip-sync` on `requirements.txt` on a different machine, it also fetches the
|
|
/// wheels:
|
|
///
|
|
/// TODO(konstin): This is still wrong, we need to store the cache policy too!
|
|
/// ```text
|
|
/// wheel-v0
|
|
/// ├── pypi
|
|
/// │ ...
|
|
/// │ ├── pandas
|
|
/// │ │ ├── pandas-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
/// │ │ ├── pandas-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64
|
|
/// │ ...
|
|
/// └── url
|
|
/// └── 4b8be67c801a7ecb
|
|
/// └── flask
|
|
/// └── flask-3.0.0-py3-none-any.whl
|
|
/// ├── flask
|
|
/// │ └── ...
|
|
/// └── flask-3.0.0.dist-info
|
|
/// └── ...
|
|
/// ```
|
|
///
|
|
/// If we run first `pip-compile` and then `pip-sync` on the same machine, we get both:
|
|
///
|
|
/// ```text
|
|
/// wheels-v0
|
|
/// ├── pypi
|
|
/// │ ├── ...
|
|
/// │ ├── pandas
|
|
/// │ │ ├── pandas-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.msgpack
|
|
/// │ │ ├── pandas-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
|
|
/// │ │ └── pandas-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64
|
|
/// │ │ ├── pandas
|
|
/// │ │ │ ├── ...
|
|
/// │ │ ├── pandas-2.1.3.dist-info
|
|
/// │ │ │ ├── ...
|
|
/// │ │ └── pandas.libs
|
|
/// │ ├── ...
|
|
/// └── url
|
|
/// └── 4b8be67c801a7ecb
|
|
/// └── flask
|
|
/// ├── flask-3.0.0-py3-none-any.msgpack
|
|
/// ├── flask-3.0.0-py3-none-any.msgpack
|
|
/// └── flask-3.0.0-py3-none-any
|
|
/// ├── flask
|
|
/// │ └── ...
|
|
/// └── flask-3.0.0.dist-info
|
|
/// └── ...
|
|
Wheels,
|
|
/// Wheels built from source distributions, their extracted metadata and the cache policy of
|
|
/// the source distribution.
|
|
///
|
|
/// The structure is similar of that of the `Wheel` bucket, except we have an additional layer
|
|
/// for the source distribution filename and the metadata is at the source distribution-level,
|
|
/// not at the wheel level.
|
|
///
|
|
/// TODO(konstin): The cache policy should be on the source distribution level, the metadata we
|
|
/// can put next to the wheels as in the `Wheels` bucket.
|
|
///
|
|
/// Source distributions are built into zipped wheel files (as PEP 517 specifies) and unzipped
|
|
/// lazily before installing. So when resolving, we only build the wheel and store the archive
|
|
/// file in the cache, when installing, we unpack it under the same name (exclusive of the
|
|
/// `.whl` extension). You may find a mix of wheel archive zip files and unzipped wheel
|
|
/// directories in the cache.
|
|
///
|
|
/// Cache structure:
|
|
/// * `built-wheels-v0/pypi/foo/34a17436ed1e9669/{metadata.msgpack, foo-1.0.0.zip, foo-1.0.0-py3-none-any.whl, ...other wheels}`
|
|
/// * `built-wheels-v0/<digest(index-url)>/foo/foo-1.0.0.zip/{metadata.msgpack, foo-1.0.0-py3-none-any.whl, ...other wheels}`
|
|
/// * `built-wheels-v0/url/<digest(url)>/foo/foo-1.0.0.zip/{metadata.msgpack, foo-1.0.0-py3-none-any.whl, ...other wheels}`
|
|
/// * `built-wheels-v0/git/<digest(url)>/<git sha>/foo/foo-1.0.0.zip/{metadata.msgpack, foo-1.0.0-py3-none-any.whl, ...other wheels}`
|
|
///
|
|
/// But the url filename does not need to be a valid source dist filename
|
|
/// (<https://github.com/search?q=path%3A**%2Frequirements.txt+master.zip&type=code>),
|
|
/// so it could also be the following and we have to take any string as filename:
|
|
/// * `built-wheels-v0/url/<sha256(url)>/master.zip/metadata.msgpack`
|
|
///
|
|
/// # Example
|
|
///
|
|
/// The following requirements:
|
|
/// ```text
|
|
/// # git source dist
|
|
/// pydantic-extra-types @ git+https://github.com/pydantic/pydantic-extra-types.git
|
|
/// # pypi source dist
|
|
/// django_allauth==0.51.0
|
|
/// # url source dist
|
|
/// werkzeug @ https://files.pythonhosted.org/packages/0d/cc/ff1904eb5eb4b455e442834dabf9427331ac0fa02853bf83db817a7dd53d/werkzeug-3.0.1.tar.gz
|
|
/// ```
|
|
///
|
|
/// ...may be cached as:
|
|
/// ```text
|
|
/// built-wheels-v0/
|
|
/// ├── git
|
|
/// │ └── a67db8ed076e3814
|
|
/// │ └── 843b753e9e8cb74e83cac55598719b39a4d5ef1f
|
|
/// │ ├── metadata.msgpack
|
|
/// │ └── pydantic_extra_types-2.1.0-py3-none-any.whl
|
|
/// ├── pypi
|
|
/// │ └── django
|
|
/// │ └── django-allauth-0.51.0.tar.gz
|
|
/// │ ├── django_allauth-0.51.0-py3-none-any.whl
|
|
/// │ └── metadata.msgpack
|
|
/// └── url
|
|
/// └── 6781bd6440ae72c2
|
|
/// └── werkzeug
|
|
/// └── werkzeug-3.0.1.tar.gz
|
|
/// ├── metadata.msgpack
|
|
/// └── werkzeug-3.0.1-py3-none-any.whl
|
|
/// ```
|
|
///
|
|
/// Structurally, the inside of a `metadata.msgpack` looks like:
|
|
/// ```json
|
|
/// {
|
|
/// "data": {
|
|
/// "django_allauth-0.51.0-py3-none-any.whl": {
|
|
/// "metadata-version": "2.1",
|
|
/// "name": "django-allauth",
|
|
/// "version": "0.51.0",
|
|
/// ...
|
|
/// }
|
|
/// }
|
|
/// }
|
|
/// ```
|
|
BuiltWheels,
|
|
/// Git repositories.
|
|
Git,
|
|
/// Information about an interpreter at a path.
|
|
///
|
|
/// To avoid caching pyenv shims, bash scripts which may redirect to a new python version
|
|
/// without the shim itself changing, we only cache when the path equals `sys.executable`, i.e.
|
|
/// the path we're running is the python executable itself and not a shim.
|
|
///
|
|
/// Cache structure: `interpreter-v0/<digest(path)>.msgpack`
|
|
///
|
|
/// # Example
|
|
///
|
|
/// The contents of each of the MsgPack files has a timestamp field in unix time, the [PEP 508]
|
|
/// markers and some information from the `sys`/`sysconfig` modules.
|
|
///
|
|
/// ```json
|
|
/// {
|
|
/// "timestamp": 1698047994491,
|
|
/// "data": {
|
|
/// "markers": {
|
|
/// "implementation_name": "cpython",
|
|
/// "implementation_version": "3.12.0",
|
|
/// "os_name": "posix",
|
|
/// "platform_machine": "x86_64",
|
|
/// "platform_python_implementation": "CPython",
|
|
/// "platform_release": "6.5.0-13-generic",
|
|
/// "platform_system": "Linux",
|
|
/// "platform_version": "#13-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 3 12:16:05 UTC 2023",
|
|
/// "python_full_version": "3.12.0",
|
|
/// "python_version": "3.12",
|
|
/// "sys_platform": "linux"
|
|
/// },
|
|
/// "base_exec_prefix": "/home/ferris/.pyenv/versions/3.12.0",
|
|
/// "base_prefix": "/home/ferris/.pyenv/versions/3.12.0",
|
|
/// "sys_executable": "/home/ferris/projects/puffin/.venv/bin/python"
|
|
/// }
|
|
/// }
|
|
/// ```
|
|
///
|
|
/// [PEP 508]: https://peps.python.org/pep-0508/#environment-markers
|
|
Interpreter,
|
|
/// Index responses through the simple metadata API.
|
|
///
|
|
/// Cache structure:
|
|
/// * `simple-v0/pypi/<package_name>.msgpack`
|
|
/// * `simple-v0/<digest(index_url)>/<package_name>.msgpack`
|
|
///
|
|
/// The response is parsed into `puffin_client::SimpleMetadata` before storage.
|
|
Simple,
|
|
}
|
|
|
|
impl CacheBucket {
|
|
fn to_str(self) -> &'static str {
|
|
match self {
|
|
CacheBucket::BuiltWheels => "built-wheels-v0",
|
|
CacheBucket::Git => "git-v0",
|
|
CacheBucket::Interpreter => "interpreter-v0",
|
|
CacheBucket::Simple => "simple-v0",
|
|
CacheBucket::Wheels => "wheels-v0",
|
|
}
|
|
}
|
|
|
|
/// Purge a package from the cache bucket.
|
|
///
|
|
/// Returns the number of entries removed from the cache.
|
|
fn purge(self, cache: &Cache, name: &PackageName) -> Result<usize, io::Error> {
|
|
fn remove(path: impl AsRef<Path>) -> Result<bool, io::Error> {
|
|
Ok(if force_remove_all(path.as_ref())? {
|
|
debug!("Removed cache entry: {}", path.as_ref().display());
|
|
true
|
|
} else {
|
|
false
|
|
})
|
|
}
|
|
|
|
let mut count = 0;
|
|
match self {
|
|
CacheBucket::Wheels => {
|
|
// For `pypi` wheels, we expect a directory per package (indexed by name).
|
|
let root = cache.bucket(self).join(WheelCacheKind::Pypi);
|
|
if remove(root.join(name.to_string()))? {
|
|
count += 1;
|
|
}
|
|
|
|
// For alternate indices, we expect a directory for every index, followed by a
|
|
// directory per package (indexed by name).
|
|
let root = cache.bucket(self).join(WheelCacheKind::Index);
|
|
for directory in directories(root) {
|
|
if remove(directory.join(name.to_string()))? {
|
|
count += 1;
|
|
}
|
|
}
|
|
|
|
// For direct URLs, we expect a directory for every URL, followed by a
|
|
// directory per package (indexed by name).
|
|
let root = cache.bucket(self).join(WheelCacheKind::Url);
|
|
for directory in directories(root) {
|
|
if remove(directory.join(name.to_string()))? {
|
|
count += 1;
|
|
}
|
|
}
|
|
}
|
|
CacheBucket::BuiltWheels => {
|
|
// For `pypi` wheels, we expect a directory per package (indexed by name).
|
|
let root = cache.bucket(self).join(WheelCacheKind::Pypi);
|
|
if remove(root.join(name.to_string()))? {
|
|
count += 1;
|
|
}
|
|
|
|
// For alternate indices, we expect a directory for every index, followed by a
|
|
// directory per package (indexed by name).
|
|
let root = cache.bucket(self).join(WheelCacheKind::Index);
|
|
for directory in directories(root) {
|
|
if remove(directory.join(name.to_string()))? {
|
|
count += 1;
|
|
}
|
|
}
|
|
|
|
// For direct URLs, we expect a directory for every index, followed by a
|
|
// directory per package (indexed by name).
|
|
let root = cache.bucket(self).join(WheelCacheKind::Url);
|
|
for directory in directories(root) {
|
|
if remove(directory.join(name.to_string()))? {
|
|
count += 1;
|
|
}
|
|
}
|
|
|
|
// For local dependencies, we expect a directory for every path, followed by a
|
|
// directory per package (indexed by name).
|
|
let root = cache.bucket(self).join(WheelCacheKind::Path);
|
|
for directory in directories(root) {
|
|
if remove(directory.join(name.to_string()))? {
|
|
count += 1;
|
|
}
|
|
}
|
|
|
|
// For Git dependencies, we expect a directory for every repository, followed by a
|
|
// directory for every SHA, followed by a directory per package (indexed by name).
|
|
let root = cache.bucket(self).join(WheelCacheKind::Git);
|
|
for directory in directories(root) {
|
|
for directory in directories(directory) {
|
|
if remove(directory.join(name.to_string()))? {
|
|
count += 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
CacheBucket::Simple => {
|
|
// For `pypi` wheels, we expect a MsgPack file per package, indexed by name.
|
|
let root = cache.bucket(self).join(WheelCacheKind::Pypi);
|
|
if remove(root.join(format!("{name}.msgpack")))? {
|
|
count += 1;
|
|
}
|
|
|
|
// For alternate indices, we expect a directory for every index, followed by a
|
|
// MsgPack file per package, indexed by name.
|
|
let root = cache.bucket(self).join(WheelCacheKind::Url);
|
|
for directory in directories(root) {
|
|
if remove(directory.join(format!("{name}.msgpack")))? {
|
|
count += 1;
|
|
}
|
|
}
|
|
}
|
|
CacheBucket::Git => {
|
|
// Nothing to do.
|
|
}
|
|
CacheBucket::Interpreter => {
|
|
// Nothing to do.
|
|
}
|
|
}
|
|
Ok(count)
|
|
}
|
|
}
|
|
|
|
impl Display for CacheBucket {
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
f.write_str(self.to_str())
|
|
}
|
|
}
|