Junio C Hamano schrieb: > [PATCH] git blame --progress > > With --progress option, the command shows a fairly useless but > amusing eye-candy while making the user wait. Nicely done, I like it. Well, then again, I used to watch the progress of filesystem defragmentors as a kid. Ahem. :-P The problem here is, of course, that we don't know how beforehand much work needs to be done. The indicator could be full of stars long before the start of history is reached. This could be helped somewhat by having three states instead of two: unblamed (.), blamed (o) and just-now-blamed (*). Each time new stars are written you'd demote the other stars in the field to o's. This way you'll at least see something moving until the end, no matter how often blame is pushed further down for already blamed lines. This increases terminal bandwidth usage and on-screen activity, but not necessarily the usefulness of this thing. :) René diff --git a/builtin-blame.c b/builtin-blame.c index cd54acf..9bed52f 100644 --- a/builtin-blame.c +++ b/builtin-blame.c @@ -1229,18 +1229,9 @@ static int eye_candy_spot(struct scoreboard *sb, int lno) return lno * cnt / sb->num_lines; } -static void update_eye_candy(struct scoreboard *sb, struct blame_entry *ent) +static void update_eye_candy_spots(int cnt, int spot_lo, int spot_hi, char c) { - int cnt = eye_candy_spots(sb); - int spot_lo, spot_hi, spot; - struct blame_entry *lo, *hi; - - for (lo = ent; lo->prev && lo->prev->guilty; lo = lo->prev) - ; - spot_lo = eye_candy_spot(sb, lo->lno); - for (hi = ent; hi->next && hi->next->guilty; hi = hi->next) - ; - spot_hi = eye_candy_spot(sb, hi->lno + hi->num_lines - 1); + int spot; for (spot = spot_lo; spot <= spot_hi; spot++) { int spot_x, spot_y; @@ -1257,13 +1248,35 @@ static void update_eye_candy(struct scoreboard *sb, struct blame_entry *ent) fprintf(stderr, "\033[%dA", spot_y); if (spot_x) fprintf(stderr, "\033[%dC", spot_x); - fputc('*', stderr); + fputc(c, stderr); fprintf(stderr, "\033[%dD", spot_x + 1); if (spot_y) fprintf(stderr, "\033[%dB", spot_y); } } +static void update_eye_candy(struct scoreboard *sb, struct blame_entry *ent) +{ + int cnt = eye_candy_spots(sb); + int spot_lo, spot_hi; + struct blame_entry *lo, *hi; + static int prev_cnt, prev_spot_lo, prev_spot_hi; + + for (lo = ent; lo->prev && lo->prev->guilty; lo = lo->prev) + ; + spot_lo = eye_candy_spot(sb, lo->lno); + for (hi = ent; hi->next && hi->next->guilty; hi = hi->next) + ; + spot_hi = eye_candy_spot(sb, hi->lno + hi->num_lines - 1); + + update_eye_candy_spots(prev_cnt, prev_spot_lo, prev_spot_hi, 'o'); + update_eye_candy_spots(cnt, spot_lo, spot_hi, '*'); + + prev_cnt = cnt; + prev_spot_lo = spot_lo; + prev_spot_hi = spot_hi; +} + static void found_guilty_entry(struct scoreboard *sb, struct blame_entry *ent) { if (ent->guilty) - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html