]>
git.ipfire.org Git - thirdparty/git.git/blob - fetch-negotiator.h
1 #ifndef FETCH_NEGOTIATOR_H
2 #define FETCH_NEGOTIATOR_H
8 * An object that supplies the information needed to negotiate the contents of
9 * the to-be-sent packfile during a fetch.
11 * To set up the negotiator, call fetch_negotiator_init(), then known_common()
12 * (0 or more times), then add_tip() (0 or more times).
14 * Then, when "have" lines are required, call next(). Call ack() to report what
15 * the server tells us.
17 * Once negotiation is done, call release(). The negotiator then cannot be used
18 * (unless reinitialized with fetch_negotiator_init()).
20 struct fetch_negotiator
{
22 * Before negotiation starts, indicate that the server is known to have
25 void (*known_common
)(struct fetch_negotiator
*, struct commit
*);
28 * Once this function is invoked, known_common() cannot be invoked any
31 * Indicate that this commit and all its ancestors are to be checked
32 * for commonality with the server.
34 void (*add_tip
)(struct fetch_negotiator
*, struct commit
*);
37 * Once this function is invoked, known_common() and add_tip() cannot
38 * be invoked any more.
40 * Return the next commit that the client should send as a "have" line.
42 const struct object_id
*(*next
)(struct fetch_negotiator
*);
45 * Inform the negotiator that the server has the given commit. This
46 * method must only be called on commits returned by next().
48 int (*ack
)(struct fetch_negotiator
*, struct commit
*);
50 void (*release
)(struct fetch_negotiator
*);
56 void fetch_negotiator_init(struct repository
*r
,
57 struct fetch_negotiator
*negotiator
);