##// END OF EJS Templates
rhg: add support for narrow clones and sparse checkouts...
rhg: add support for narrow clones and sparse checkouts This adds a minimal support that can be implemented without parsing the narrowspec. We can parse the narrowspec and add support for more operations later. The reason we need so few code changes is as follows: Most operations need no special treatment of sparse because some of them only read dirstate (`rhg files` without `-r`), which bakes in the filtering, some of them only read store (`rhg files -r`, `rhg cat`), and some of them read no data at all (`rhg root`, `rhg debugrequirements`). `status` is the command that might care about sparse, so we just disable rhg on it. For narrow clones, `rhg files` clearly needs the narrowspec to work correctly, so we fall back. `rhg cat` seems to work consistently with `hg cat` if the file exists. If the file is hidden by narrow spec, the error message is different and confusing, so that's something that we should improve in follow-up patches. Differential Revision: https://phab.mercurial-scm.org/D11764

File last commit:

r48893:3da7bf75 default
r49238:005ae1a3 default
Show More
revset.rs
69 lines | 2.1 KiB | application/rls-services+xml | RustLexer
Simon Sapin
rhg: centralize parsing of `--rev` CLI arguments...
r47162 //! The revset query language
//!
//! <https://www.mercurial-scm.org/repo/hg/help/revsets>
Simon Sapin
rhg: Fall back to Python for unsupported revset syntax...
r47459 use crate::errors::HgError;
Simon Sapin
rhg: centralize parsing of `--rev` CLI arguments...
r47162 use crate::repo::Repo;
use crate::revlog::revlog::{Revlog, RevlogError};
use crate::revlog::NodePrefix;
Pulkit Goyal
rhg: raise wdir specific error for `hg debugdata`...
r47577 use crate::revlog::{Revision, NULL_REVISION, WORKING_DIRECTORY_HEX};
use crate::Node;
Simon Sapin
rhg: centralize parsing of `--rev` CLI arguments...
r47162
/// Resolve a query string into a single revision.
///
/// Only some of the revset language is implemented yet.
pub fn resolve_single(
input: &str,
repo: &Repo,
) -> Result<Revision, RevlogError> {
Simon Sapin
rust: Keep lazily-initialized Changelog and Manifest log on the Repo object...
r48773 let changelog = repo.changelog()?;
Simon Sapin
rhg: centralize parsing of `--rev` CLI arguments...
r47162
Raphaël Gomès
rust-revset: add separate match logic for shortcuts...
r48892 match input {
Raphaël Gomès
rust-revset: support explicit `.` revision...
r48893 "." => {
let p1 = repo.dirstate_parents()?.p1;
return Ok(changelog.revlog.rev_from_node(p1.into())?);
}
Raphaël Gomès
rust-revset: add separate match logic for shortcuts...
r48892 "null" => return Ok(NULL_REVISION),
_ => {}
Simon Sapin
rhg: centralize parsing of `--rev` CLI arguments...
r47162 }
Raphaël Gomès
rust-revset: add separate match logic for shortcuts...
r48892 match resolve_rev_number_or_hex_prefix(input, &changelog.revlog) {
Err(RevlogError::InvalidRevision) => {
// TODO: support for the rest of the language here.
let msg = format!("cannot parse revset '{}'", input);
Err(HgError::unsupported(msg).into())
}
result => return result,
Simon Sapin
rhg: centralize parsing of `--rev` CLI arguments...
r47162 }
}
/// Resolve the small subset of the language suitable for revlogs other than
/// the changelog, such as in `hg debugdata --manifest` CLI argument.
///
/// * A non-negative decimal integer for a revision number, or
/// * An hexadecimal string, for the unique node ID that starts with this
/// prefix
pub fn resolve_rev_number_or_hex_prefix(
input: &str,
revlog: &Revlog,
) -> Result<Revision, RevlogError> {
Simon Sapin
rhg: Align with Python on some revset parsing corner cases...
r48776 // The Python equivalent of this is part of `revsymbol` in
// `mercurial/scmutil.py`
Simon Sapin
rhg: centralize parsing of `--rev` CLI arguments...
r47162 if let Ok(integer) = input.parse::<i32>() {
Simon Sapin
rhg: Align with Python on some revset parsing corner cases...
r48776 if integer.to_string() == input
&& integer >= 0
&& revlog.has_rev(integer)
{
Simon Sapin
rhg: centralize parsing of `--rev` CLI arguments...
r47162 return Ok(integer);
}
}
if let Ok(prefix) = NodePrefix::from_hex(input) {
Pulkit Goyal
rhg: raise wdir specific error for `hg debugdata`...
r47577 if prefix.is_prefix_of(&Node::from_hex(WORKING_DIRECTORY_HEX).unwrap())
{
return Err(RevlogError::WDirUnsupported);
}
Simon Sapin
rust: Rename the `Revlog::get_node_rev` method to `rev_from_node`...
r48782 return revlog.rev_from_node(prefix);
Simon Sapin
rhg: centralize parsing of `--rev` CLI arguments...
r47162 }
Err(RevlogError::InvalidRevision)
}