Skip to content

Commit 8dfbb4b

Browse files
committed
feat: Allow to print a tree without prettification, using --tree-style raw.
This is mainly useful to generate fixtures for the test-suite, and is assured to not add extra-bytes to the output either.
1 parent e95bb9f commit 8dfbb4b

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

gitoxide-core/src/repository/revision/resolve.rs

+11-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ pub struct Options {
44
pub format: OutputFormat,
55
pub explain: bool,
66
pub cat_file: bool,
7+
pub tree_mode: TreeMode,
8+
}
9+
10+
pub enum TreeMode {
11+
Raw,
12+
Pretty,
713
}
814

915
pub(crate) mod function {
@@ -13,6 +19,7 @@ pub(crate) mod function {
1319
use gix::revision::Spec;
1420

1521
use super::Options;
22+
use crate::repository::revision::resolve::TreeMode;
1623
use crate::{repository::revision, OutputFormat};
1724

1825
pub fn resolve(
@@ -23,6 +30,7 @@ pub(crate) mod function {
2330
format,
2431
explain,
2532
cat_file,
33+
tree_mode,
2634
}: Options,
2735
) -> anyhow::Result<()> {
2836
repo.object_cache_size_if_unset(1024 * 1024);
@@ -36,7 +44,7 @@ pub(crate) mod function {
3644
let spec = gix::path::os_str_into_bstr(&spec)?;
3745
let spec = repo.rev_parse(spec)?;
3846
if cat_file {
39-
return display_object(spec, out);
47+
return display_object(spec, tree_mode, out);
4048
}
4149
writeln!(out, "{spec}", spec = spec.detach())?;
4250
}
@@ -63,11 +71,11 @@ pub(crate) mod function {
6371
Ok(())
6472
}
6573

66-
fn display_object(spec: Spec<'_>, mut out: impl std::io::Write) -> anyhow::Result<()> {
74+
fn display_object(spec: Spec<'_>, tree_mode: TreeMode, mut out: impl std::io::Write) -> anyhow::Result<()> {
6775
let id = spec.single().context("rev-spec must resolve to a single object")?;
6876
let object = id.object()?;
6977
match object.kind {
70-
gix::object::Kind::Tree => {
78+
gix::object::Kind::Tree if matches!(tree_mode, TreeMode::Pretty) => {
7179
for entry in object.into_tree().iter() {
7280
writeln!(out, "{}", entry?)?;
7381
}

src/plumbing/main.rs

+7
Original file line numberDiff line numberDiff line change
@@ -925,6 +925,7 @@ pub fn main() -> Result<()> {
925925
specs,
926926
explain,
927927
cat_file,
928+
tree_mode,
928929
} => prepare_and_run(
929930
"revision-parse",
930931
trace,
@@ -941,6 +942,12 @@ pub fn main() -> Result<()> {
941942
format,
942943
explain,
943944
cat_file,
945+
tree_mode: match tree_mode.unwrap_or_default() {
946+
revision::resolve::TreeMode::Raw => core::repository::revision::resolve::TreeMode::Raw,
947+
revision::resolve::TreeMode::Pretty => {
948+
core::repository::revision::resolve::TreeMode::Pretty
949+
}
950+
},
944951
},
945952
)
946953
},

src/plumbing/options/mod.rs

+12
Original file line numberDiff line numberDiff line change
@@ -595,6 +595,16 @@ pub mod commitgraph {
595595
}
596596

597597
pub mod revision {
598+
pub mod resolve {
599+
#[derive(Default, Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, clap::ValueEnum)]
600+
pub enum TreeMode {
601+
/// Show the raw bytes - only useful for piping into files for use with tooling.
602+
Raw,
603+
/// Display a tree in human-readable form.
604+
#[default]
605+
Pretty,
606+
}
607+
}
598608
#[derive(Debug, clap::Subcommand)]
599609
#[clap(visible_alias = "rev", visible_alias = "r")]
600610
pub enum Subcommands {
@@ -625,6 +635,8 @@ pub mod revision {
625635
/// Show the first resulting object similar to how `git cat-file` would, but don't show the resolved spec.
626636
#[clap(short = 'c', long, conflicts_with = "explain")]
627637
cat_file: bool,
638+
#[clap(short = 't', long)]
639+
tree_mode: Option<resolve::TreeMode>,
628640
/// rev-specs like `@`, `@~1` or `HEAD^2`.
629641
#[clap(required = true)]
630642
specs: Vec<std::ffi::OsString>,

0 commit comments

Comments
 (0)