add throughput display to index-pack
... and call it "Receiving objects" when over stdin to look clearer to end users. Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
cf84d51c43
commit
29e63ed3f6
@ -87,6 +87,8 @@ static void *fill(int min)
|
|||||||
die("early EOF");
|
die("early EOF");
|
||||||
die("read error on input: %s", strerror(errno));
|
die("read error on input: %s", strerror(errno));
|
||||||
}
|
}
|
||||||
|
if (from_stdin)
|
||||||
|
display_throughput(progress, ret);
|
||||||
input_len += ret;
|
input_len += ret;
|
||||||
} while (input_len < min);
|
} while (input_len < min);
|
||||||
return input_buffer;
|
return input_buffer;
|
||||||
@ -406,7 +408,9 @@ static void parse_pack_objects(unsigned char *sha1)
|
|||||||
* - remember base (SHA1 or offset) for all deltas.
|
* - remember base (SHA1 or offset) for all deltas.
|
||||||
*/
|
*/
|
||||||
if (verbose)
|
if (verbose)
|
||||||
progress = start_progress("Indexing objects", nr_objects);
|
progress = start_progress(
|
||||||
|
from_stdin ? "Receiving objects" : "Indexing objects",
|
||||||
|
nr_objects);
|
||||||
for (i = 0; i < nr_objects; i++) {
|
for (i = 0; i < nr_objects; i++) {
|
||||||
struct object_entry *obj = &objects[i];
|
struct object_entry *obj = &objects[i];
|
||||||
data = unpack_raw_entry(obj, &delta->base);
|
data = unpack_raw_entry(obj, &delta->base);
|
||||||
|
Loading…
Reference in New Issue
Block a user