class _ProtocolGraphWalker(object):
A graph walker that knows the git protocol.
As a graph walker, this class implements ack(), next(), and reset(). It also contains some base methods for interacting with the wire and walking the commit tree.
The work of determining which acks to send is passed on to the implementation instance stored in _impl. The reason for this is that we do not know at object creation time what ack level the protocol requires. A call to set_ack_type() is required to set up the implementation, before any calls to next() or ack() are made.
Method | __init__ |
Undocumented |
Method | ack |
Undocumented |
Method | all |
Check whether all the current wants are satisfied by a set of haves. |
Method | determine |
Determine the wants for a set of heads. |
Method | handle |
Undocumented |
Method | next |
Undocumented |
Method | notify |
Undocumented |
Method | read |
Read a line from the wire. |
Method | reset |
Undocumented |
Method | send |
Undocumented |
Method | send |
Undocumented |
Method | set |
Undocumented |
Method | set |
Undocumented |
Method | unread |
Undocumented |
Instance Variable | advertise |
Undocumented |
Instance Variable | client |
Undocumented |
Instance Variable | get |
Undocumented |
Instance Variable | get |
Undocumented |
Instance Variable | handler |
Undocumented |
Instance Variable | proto |
Undocumented |
Instance Variable | shallow |
Undocumented |
Instance Variable | stateless |
Undocumented |
Instance Variable | store |
Undocumented |
Instance Variable | unshallow |
Undocumented |
Method | _handle |
Undocumented |
Instance Variable | _cache |
Undocumented |
Instance Variable | _cache |
Undocumented |
Instance Variable | _cached |
Undocumented |
Instance Variable | _impl |
Undocumented |
Instance Variable | _wants |
Undocumented |
Check whether all the current wants are satisfied by a set of haves.
- Note: Wants are specified with set_wants rather than passed in since
- in the current interface they are determined outside this class.
Parameters | |
haves | A set of commits we know the client has. |
Determine the wants for a set of heads.
The given heads are advertised to the client, who then specifies which refs they want using 'want' lines. This portion of the protocol is the same regardless of ack type, and in fact is used to set the ack type of the ProtocolGraphWalker.
If the client has the 'shallow' capability, this method also reads and responds to the 'shallow' and 'deepen' lines from the client. These are not part of the wants per se, but they set up necessary state for walking the graph. Additionally, later code depends on this method consuming everything up to the first 'have' line.
Returns: a list of SHA1s requested by the client
Parameters | |
heads | a dict of refname->SHA1 to advertise |
depth | Undocumented |
Read a line from the wire.
Returns: A tuple of (command, value); see _split_proto_line.
Parameters | |
allowed | An iterable of command names that should be allowed. |
Raises | |
UnexpectedCommandError | If an error occurred reading the line. |