blob: 091b1d041f8a4d255f59bfc001e098e692dbc15c [file] [log] [blame]
Daniel Barkalow5751f492007-05-12 11:45:53 -04001#ifndef REMOTE_H
2#define REMOTE_H
3
4struct remote {
5 const char *name;
6
Shawn O. Pearce28b91f82007-09-19 00:49:27 -04007 const char **url;
8 int url_nr;
Daniel Barkalow2d313472008-02-18 23:41:41 -05009 int url_alloc;
Daniel Barkalow5751f492007-05-12 11:45:53 -040010
11 const char **push_refspec;
Daniel Barkalow6b628162007-05-12 11:45:59 -040012 struct refspec *push;
Daniel Barkalow5751f492007-05-12 11:45:53 -040013 int push_refspec_nr;
Daniel Barkalow2d313472008-02-18 23:41:41 -050014 int push_refspec_alloc;
Daniel Barkalow5751f492007-05-12 11:45:53 -040015
Daniel Barkalow5d46c9d2007-05-12 11:46:03 -040016 const char **fetch_refspec;
17 struct refspec *fetch;
18 int fetch_refspec_nr;
Daniel Barkalow2d313472008-02-18 23:41:41 -050019 int fetch_refspec_alloc;
Daniel Barkalow5d46c9d2007-05-12 11:46:03 -040020
Daniel Barkalowd71ab172007-09-10 23:03:08 -040021 /*
22 * -1 to never fetch tags
23 * 0 to auto-follow tags on heuristic (default)
24 * 1 to always auto-follow tags
25 * 2 to always fetch tags
26 */
27 int fetch_tags;
Johannes Schindelin211c8962008-02-29 01:45:45 +000028 int skip_default_update;
Paolo Bonzini84bb2df2008-04-17 13:17:20 +020029 int mirror;
Daniel Barkalowd71ab172007-09-10 23:03:08 -040030
Daniel Barkalow5751f492007-05-12 11:45:53 -040031 const char *receivepack;
Daniel Barkalow0012ba22007-09-10 23:02:51 -040032 const char *uploadpack;
Sam Vilain14c98212007-12-04 10:48:54 +130033
34 /*
35 * for curl remotes only
36 */
37 char *http_proxy;
Daniel Barkalow5751f492007-05-12 11:45:53 -040038};
39
40struct remote *remote_get(const char *name);
41
Johannes Schindelinb42f6922007-07-10 18:48:40 +010042typedef int each_remote_fn(struct remote *remote, void *priv);
43int for_each_remote(each_remote_fn fn, void *priv);
44
Shawn O. Pearce28b91f82007-09-19 00:49:27 -040045int remote_has_url(struct remote *remote, const char *url);
Daniel Barkalow5d46c9d2007-05-12 11:46:03 -040046
Daniel Barkalow6b628162007-05-12 11:45:59 -040047struct refspec {
48 unsigned force : 1;
49 unsigned pattern : 1;
Paolo Bonzinia83619d2008-04-28 11:32:12 -040050 unsigned matching : 1;
Daniel Barkalow6b628162007-05-12 11:45:59 -040051
Johannes Schindelinb42f6922007-07-10 18:48:40 +010052 char *src;
Daniel Barkalow6b628162007-05-12 11:45:59 -040053 char *dst;
54};
55
Daniel Barkalowe0aaa292008-04-17 19:32:35 -040056extern const struct refspec *tag_refspec;
57
Daniel Barkalowdfd255d2007-07-10 00:47:23 -040058struct ref *alloc_ref(unsigned namelen);
59
Krzysztof Kowalczyk737922a2008-05-10 16:26:58 -070060struct ref *alloc_ref_from_str(const char* str);
61
Daniel Barkalow45773702007-10-29 21:05:40 -040062struct ref *copy_ref_list(const struct ref *ref);
63
64int check_ref_type(const struct ref *ref, int flags);
65
Daniel Barkalowdfd255d2007-07-10 00:47:23 -040066/*
67 * Frees the entire list and peers of elements.
68 */
69void free_refs(struct ref *ref);
70
Daniel Barkalowbe885d92008-04-26 15:53:12 -040071int resolve_remote_symref(struct ref *ref, struct ref *list);
72
Daniel Barkalow2467a4f2007-10-08 00:25:07 -040073/*
74 * Removes and frees any duplicate refs in the map.
75 */
76void ref_remove_duplicates(struct ref *ref_map);
77
Jonas Fonseca24b61772008-04-13 11:56:54 +020078int valid_fetch_refspec(const char *refspec);
Junio C Hamano46220ca2008-03-20 23:34:37 -070079struct refspec *parse_fetch_refspec(int nr_refspec, const char **refspec);
80struct refspec *parse_push_refspec(int nr_refspec, const char **refspec);
Daniel Barkalowd71ab172007-09-10 23:03:08 -040081
Daniel Barkalow6b628162007-05-12 11:45:59 -040082int match_refs(struct ref *src, struct ref *dst, struct ref ***dst_tail,
Daniel Barkalow45773702007-10-29 21:05:40 -040083 int nr_refspec, const char **refspec, int all);
Daniel Barkalow6b628162007-05-12 11:45:59 -040084
Daniel Barkalow5d46c9d2007-05-12 11:46:03 -040085/*
Daniel Barkalowd71ab172007-09-10 23:03:08 -040086 * Given a list of the remote refs and the specification of things to
87 * fetch, makes a (separate) list of the refs to fetch and the local
88 * refs to store into.
89 *
90 * *tail is the pointer to the tail pointer of the list of results
91 * beforehand, and will be set to the tail pointer of the list of
92 * results afterward.
Junio C Hamano9ad7c5a2007-10-26 23:09:48 -070093 *
94 * missing_ok is usually false, but when we are adding branch.$name.merge
95 * it is Ok if the branch is not at the remote anymore.
Daniel Barkalowd71ab172007-09-10 23:03:08 -040096 */
Daniel Barkalow45773702007-10-29 21:05:40 -040097int get_fetch_map(const struct ref *remote_refs, const struct refspec *refspec,
Junio C Hamano9ad7c5a2007-10-26 23:09:48 -070098 struct ref ***tail, int missing_ok);
Daniel Barkalowd71ab172007-09-10 23:03:08 -040099
Daniel Barkalow45773702007-10-29 21:05:40 -0400100struct ref *get_remote_ref(const struct ref *remote_refs, const char *name);
Daniel Barkalowd71ab172007-09-10 23:03:08 -0400101
102/*
Daniel Barkalow5d46c9d2007-05-12 11:46:03 -0400103 * For the given remote, reads the refspec's src and sets the other fields.
104 */
105int remote_find_tracking(struct remote *remote, struct refspec *refspec);
106
Daniel Barkalowcf818342007-09-10 23:02:56 -0400107struct branch {
108 const char *name;
109 const char *refname;
110
111 const char *remote_name;
112 struct remote *remote;
113
114 const char **merge_name;
115 struct refspec **merge;
116 int merge_nr;
Daniel Barkalow2d313472008-02-18 23:41:41 -0500117 int merge_alloc;
Daniel Barkalowcf818342007-09-10 23:02:56 -0400118};
119
120struct branch *branch_get(const char *name);
121
122int branch_has_merge_config(struct branch *branch);
Shawn O. Pearce85682c12007-09-18 04:54:53 -0400123int branch_merge_matches(struct branch *, int n, const char *);
Daniel Barkalowcf818342007-09-10 23:02:56 -0400124
Andy Whitcroft28b9d6e2007-11-09 23:32:10 +0000125/* Flags to match_refs. */
126enum match_refs_flags {
127 MATCH_REFS_NONE = 0,
128 MATCH_REFS_ALL = (1 << 0),
129 MATCH_REFS_MIRROR = (1 << 1),
130};
131
Junio C Hamano6d21bf92008-07-02 00:51:18 -0700132/* Reporting of tracking info */
133int stat_tracking_info(struct branch *branch, int *num_ours, int *num_theirs);
134int format_tracking_info(struct branch *branch, struct strbuf *sb);
135
Daniel Barkalow5751f492007-05-12 11:45:53 -0400136#endif