Commit | Line | Data |
---|---|---|
9b288516 DB |
1 | #ifndef TRANSPORT_H |
2 | #define TRANSPORT_H | |
3 | ||
4 | #include "cache.h" | |
5 | #include "remote.h" | |
6 | ||
7 | struct transport { | |
9b288516 DB |
8 | struct remote *remote; |
9 | const char *url; | |
9b288516 | 10 | void *data; |
9b288516 DB |
11 | struct ref *remote_refs; |
12 | ||
9b288516 DB |
13 | /** |
14 | * Returns 0 if successful, positive if the option is not | |
15 | * recognized or is inapplicable, and negative if the option | |
16 | * is applicable but the value is invalid. | |
17 | **/ | |
18 | int (*set_option)(struct transport *connection, const char *name, | |
19 | const char *value); | |
20 | ||
c29727d5 | 21 | struct ref *(*get_refs_list)(const struct transport *transport); |
1788c39c | 22 | int (*fetch)(struct transport *transport, int refs_nr, struct ref **refs); |
9b288516 DB |
23 | int (*push)(struct transport *connection, int refspec_nr, const char **refspec, int flags); |
24 | ||
25 | int (*disconnect)(struct transport *connection); | |
824d5776 SP |
26 | char *pack_lockfile; |
27 | unsigned verbose : 1; | |
9b288516 DB |
28 | }; |
29 | ||
824d5776 SP |
30 | #define TRANSPORT_PUSH_ALL 1 |
31 | #define TRANSPORT_PUSH_FORCE 2 | |
32 | ||
9b288516 | 33 | /* Returns a transport suitable for the url */ |
e5f4e214 | 34 | struct transport *transport_get(struct remote *, const char *); |
9b288516 DB |
35 | |
36 | /* Transport options which apply to git:// and scp-style URLs */ | |
37 | ||
c29727d5 DB |
38 | /* The program to use on the remote side to send a pack */ |
39 | #define TRANS_OPT_UPLOADPACK "uploadpack" | |
40 | ||
9b288516 DB |
41 | /* The program to use on the remote side to receive a pack */ |
42 | #define TRANS_OPT_RECEIVEPACK "receivepack" | |
43 | ||
44 | /* Transfer the data as a thin pack if not null */ | |
45 | #define TRANS_OPT_THIN "thin" | |
46 | ||
c29727d5 DB |
47 | /* Keep the pack that was transferred if not null */ |
48 | #define TRANS_OPT_KEEP "keep" | |
49 | ||
c29727d5 DB |
50 | /* Limit the depth of the fetch if not null */ |
51 | #define TRANS_OPT_DEPTH "depth" | |
52 | ||
9b288516 DB |
53 | /** |
54 | * Returns 0 if the option was used, non-zero otherwise. Prints a | |
55 | * message to stderr if the option is not used. | |
56 | **/ | |
57 | int transport_set_option(struct transport *transport, const char *name, | |
58 | const char *value); | |
59 | ||
60 | int transport_push(struct transport *connection, | |
61 | int refspec_nr, const char **refspec, int flags); | |
62 | ||
c29727d5 DB |
63 | struct ref *transport_get_remote_refs(struct transport *transport); |
64 | ||
65 | int transport_fetch_refs(struct transport *transport, struct ref *refs); | |
1788c39c | 66 | void transport_unlock_pack(struct transport *transport); |
9b288516 DB |
67 | int transport_disconnect(struct transport *transport); |
68 | ||
69 | #endif |