ls-files: factor out debug info into a function
Signed-off-by: Brandon Williams <bmwill@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
parent
f587c8dcde
commit
5306ccf9e9
|
@ -93,6 +93,19 @@ static void write_name(const char *name)
|
||||||
strbuf_release(&full_name);
|
strbuf_release(&full_name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void print_debug(const struct cache_entry *ce)
|
||||||
|
{
|
||||||
|
if (debug_mode) {
|
||||||
|
const struct stat_data *sd = &ce->ce_stat_data;
|
||||||
|
|
||||||
|
printf(" ctime: %d:%d\n", sd->sd_ctime.sec, sd->sd_ctime.nsec);
|
||||||
|
printf(" mtime: %d:%d\n", sd->sd_mtime.sec, sd->sd_mtime.nsec);
|
||||||
|
printf(" dev: %d\tino: %d\n", sd->sd_dev, sd->sd_ino);
|
||||||
|
printf(" uid: %d\tgid: %d\n", sd->sd_uid, sd->sd_gid);
|
||||||
|
printf(" size: %d\tflags: %x\n", sd->sd_size, ce->ce_flags);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void show_dir_entry(const char *tag, struct dir_entry *ent)
|
static void show_dir_entry(const char *tag, struct dir_entry *ent)
|
||||||
{
|
{
|
||||||
int len = max_prefix_len;
|
int len = max_prefix_len;
|
||||||
|
@ -279,15 +292,7 @@ static void show_ce_entry(const struct index_state *istate,
|
||||||
}
|
}
|
||||||
write_eolinfo(istate, ce, ce->name);
|
write_eolinfo(istate, ce, ce->name);
|
||||||
write_name(ce->name);
|
write_name(ce->name);
|
||||||
if (debug_mode) {
|
print_debug(ce);
|
||||||
const struct stat_data *sd = &ce->ce_stat_data;
|
|
||||||
|
|
||||||
printf(" ctime: %d:%d\n", sd->sd_ctime.sec, sd->sd_ctime.nsec);
|
|
||||||
printf(" mtime: %d:%d\n", sd->sd_mtime.sec, sd->sd_mtime.nsec);
|
|
||||||
printf(" dev: %d\tino: %d\n", sd->sd_dev, sd->sd_ino);
|
|
||||||
printf(" uid: %d\tgid: %d\n", sd->sd_uid, sd->sd_gid);
|
|
||||||
printf(" size: %d\tflags: %x\n", sd->sd_size, ce->ce_flags);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
strbuf_release(&name);
|
strbuf_release(&name);
|
||||||
|
|
Loading…
Reference in New Issue