Proposed new wire protocol

The wire protocol has several flaws:

See WireProtocol for the current protocol.

Overview

The basic algorithm is still the same, we first discover a set of nodes. Then we get all the changes from those nodes.

The Protocol

The discovery protocol is based on the [http://en.wikipedia.org/wiki/Dominator_(node) dominance property]

heads()

 return a list of heads
 (everything new must be an ancestor of one of these heads, so start here)

Basically dominators() is like between() except it is more coarse-grained

dominators(list of couple)

 let s be the sequence of dominators from tip (we only aggregate linear history, so it's a list of (t, b, p1, p2))
 return elements 1, 2, 4, ... (maybe bounded ?)

between(list)

 for tip, base in list:
   walk back a linear branch, return elements 1, 2, 4, 8..
   (and this lets us do bisection search if we diverge in the middle of one of these long branches)

Now it would be better if the processus was symetrical, at the same time as we descend from remote tips, we could do the same locally. For that we would need the following call: has(list)

 return a list of boolean indicating if the node was found on the server.

To minimize roundtrips, it would be nice to combine the has() call with dominators().

The current changegroup() uses base nodes, it should instead use common nodes. changegroup(roots)

 find all changesets descended from roots and return them as a single changegroup

A changegroup is a single stream containing:

A group is a list of chunks:

Wishlist


CategoryInternals