On 9 Sep 2006 14:44:41 -0400, linux@xxxxxxxxxxx <linux@xxxxxxxxxxx> wrote:
> Anyhow the basic is: > > -git-rev-list starts outputting the data early (order is not guaranteed) > > -before to mark for output a revision check if it breaks --topo-order > > -if the above is true store the revision away and *do not send* > > - at the end you get an early started steram of topological corrects > revisions without > preordering, just because you filter away the (few?) revisions that > are not in order. > The list you get is guaranteed to be in topo order although my not be complete. > > - _then_ you send the missing revisions that where previously > filtered out. At this stage the receiver has already drwan the graph, > indeed it has start drwaing as soon as the first revisons arrived and > *very important* receiver used old and fast topo-order parsing code. > > - finally the fixup routine at receiver's end updates the graph with > the info from the small set of out of order revisions filtered out > before and sent at the end (only this small set is sent at the end). The problem is that the gitk display code doesn't *like* input like this; it's only designed to append to a list. Handling insertions would be hard work for a rare corner case, and a perpetual source of bugs. Unless gitk does a complete second pass, or course, which would guarantee an annoying flicker a few seconds after startup. And Twice the work.
I think I need to add another argument here, I didn't mention before for clarity (indeed I'm not very good at this it seems ;-) ) I don't know for gitk, perhaps Paul can better explain, but the usual optimization of a git visualizer is simply to not draw any graph until that part does became visibile on the screen. So your arguments are true but the fact is that there is no graph insertion handling at all in almost all cases, but only insertion in loaded revs list ; when the user scrolls to the inserted commit only _then_ the graph will be calculated and dispalyed (I'm not sure in gitk, but in qgit it works that way). So there's no flickering too, and not double work. Indeed lazy/on demand graph drawing policy is very well supported by the above schema, and the above schema is good also because of the lazy graph drawing. Marco - 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