Daniel Barkalow | 5751f49 | 2007-05-12 11:45:53 -0400 | [diff] [blame] | 1 | #ifndef REMOTE_H |
| 2 | #define REMOTE_H |
| 3 | |
| 4 | struct remote { |
| 5 | const char *name; |
| 6 | |
Shawn O. Pearce | 28b91f8 | 2007-09-19 00:49:27 -0400 | [diff] [blame] | 7 | const char **url; |
| 8 | int url_nr; |
Daniel Barkalow | 2d31347 | 2008-02-18 23:41:41 -0500 | [diff] [blame] | 9 | int url_alloc; |
Daniel Barkalow | 5751f49 | 2007-05-12 11:45:53 -0400 | [diff] [blame] | 10 | |
| 11 | const char **push_refspec; |
Daniel Barkalow | 6b62816 | 2007-05-12 11:45:59 -0400 | [diff] [blame] | 12 | struct refspec *push; |
Daniel Barkalow | 5751f49 | 2007-05-12 11:45:53 -0400 | [diff] [blame] | 13 | int push_refspec_nr; |
Daniel Barkalow | 2d31347 | 2008-02-18 23:41:41 -0500 | [diff] [blame] | 14 | int push_refspec_alloc; |
Daniel Barkalow | 5751f49 | 2007-05-12 11:45:53 -0400 | [diff] [blame] | 15 | |
Daniel Barkalow | 5d46c9d | 2007-05-12 11:46:03 -0400 | [diff] [blame] | 16 | const char **fetch_refspec; |
| 17 | struct refspec *fetch; |
| 18 | int fetch_refspec_nr; |
Daniel Barkalow | 2d31347 | 2008-02-18 23:41:41 -0500 | [diff] [blame] | 19 | int fetch_refspec_alloc; |
Daniel Barkalow | 5d46c9d | 2007-05-12 11:46:03 -0400 | [diff] [blame] | 20 | |
Daniel Barkalow | d71ab17 | 2007-09-10 23:03:08 -0400 | [diff] [blame] | 21 | /* |
| 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 Schindelin | 211c896 | 2008-02-29 01:45:45 +0000 | [diff] [blame] | 28 | int skip_default_update; |
Paolo Bonzini | 84bb2df | 2008-04-17 13:17:20 +0200 | [diff] [blame] | 29 | int mirror; |
Daniel Barkalow | d71ab17 | 2007-09-10 23:03:08 -0400 | [diff] [blame] | 30 | |
Daniel Barkalow | 5751f49 | 2007-05-12 11:45:53 -0400 | [diff] [blame] | 31 | const char *receivepack; |
Daniel Barkalow | 0012ba2 | 2007-09-10 23:02:51 -0400 | [diff] [blame] | 32 | const char *uploadpack; |
Sam Vilain | 14c9821 | 2007-12-04 10:48:54 +1300 | [diff] [blame] | 33 | |
| 34 | /* |
| 35 | * for curl remotes only |
| 36 | */ |
| 37 | char *http_proxy; |
Daniel Barkalow | 5751f49 | 2007-05-12 11:45:53 -0400 | [diff] [blame] | 38 | }; |
| 39 | |
| 40 | struct remote *remote_get(const char *name); |
| 41 | |
Johannes Schindelin | b42f692 | 2007-07-10 18:48:40 +0100 | [diff] [blame] | 42 | typedef int each_remote_fn(struct remote *remote, void *priv); |
| 43 | int for_each_remote(each_remote_fn fn, void *priv); |
| 44 | |
Shawn O. Pearce | 28b91f8 | 2007-09-19 00:49:27 -0400 | [diff] [blame] | 45 | int remote_has_url(struct remote *remote, const char *url); |
Daniel Barkalow | 5d46c9d | 2007-05-12 11:46:03 -0400 | [diff] [blame] | 46 | |
Daniel Barkalow | 6b62816 | 2007-05-12 11:45:59 -0400 | [diff] [blame] | 47 | struct refspec { |
| 48 | unsigned force : 1; |
| 49 | unsigned pattern : 1; |
Paolo Bonzini | a83619d | 2008-04-28 11:32:12 -0400 | [diff] [blame] | 50 | unsigned matching : 1; |
Daniel Barkalow | 6b62816 | 2007-05-12 11:45:59 -0400 | [diff] [blame] | 51 | |
Johannes Schindelin | b42f692 | 2007-07-10 18:48:40 +0100 | [diff] [blame] | 52 | char *src; |
Daniel Barkalow | 6b62816 | 2007-05-12 11:45:59 -0400 | [diff] [blame] | 53 | char *dst; |
| 54 | }; |
| 55 | |
Daniel Barkalow | e0aaa29 | 2008-04-17 19:32:35 -0400 | [diff] [blame] | 56 | extern const struct refspec *tag_refspec; |
| 57 | |
Daniel Barkalow | dfd255d | 2007-07-10 00:47:23 -0400 | [diff] [blame] | 58 | struct ref *alloc_ref(unsigned namelen); |
| 59 | |
Krzysztof Kowalczyk | 737922a | 2008-05-10 16:26:58 -0700 | [diff] [blame] | 60 | struct ref *alloc_ref_from_str(const char* str); |
| 61 | |
Daniel Barkalow | 4577370 | 2007-10-29 21:05:40 -0400 | [diff] [blame] | 62 | struct ref *copy_ref_list(const struct ref *ref); |
| 63 | |
| 64 | int check_ref_type(const struct ref *ref, int flags); |
| 65 | |
Daniel Barkalow | dfd255d | 2007-07-10 00:47:23 -0400 | [diff] [blame] | 66 | /* |
| 67 | * Frees the entire list and peers of elements. |
| 68 | */ |
| 69 | void free_refs(struct ref *ref); |
| 70 | |
Daniel Barkalow | be885d9 | 2008-04-26 15:53:12 -0400 | [diff] [blame] | 71 | int resolve_remote_symref(struct ref *ref, struct ref *list); |
| 72 | |
Daniel Barkalow | 2467a4f | 2007-10-08 00:25:07 -0400 | [diff] [blame] | 73 | /* |
| 74 | * Removes and frees any duplicate refs in the map. |
| 75 | */ |
| 76 | void ref_remove_duplicates(struct ref *ref_map); |
| 77 | |
Jonas Fonseca | 24b6177 | 2008-04-13 11:56:54 +0200 | [diff] [blame] | 78 | int valid_fetch_refspec(const char *refspec); |
Junio C Hamano | 46220ca | 2008-03-20 23:34:37 -0700 | [diff] [blame] | 79 | struct refspec *parse_fetch_refspec(int nr_refspec, const char **refspec); |
| 80 | struct refspec *parse_push_refspec(int nr_refspec, const char **refspec); |
Daniel Barkalow | d71ab17 | 2007-09-10 23:03:08 -0400 | [diff] [blame] | 81 | |
Daniel Barkalow | 6b62816 | 2007-05-12 11:45:59 -0400 | [diff] [blame] | 82 | int match_refs(struct ref *src, struct ref *dst, struct ref ***dst_tail, |
Daniel Barkalow | 4577370 | 2007-10-29 21:05:40 -0400 | [diff] [blame] | 83 | int nr_refspec, const char **refspec, int all); |
Daniel Barkalow | 6b62816 | 2007-05-12 11:45:59 -0400 | [diff] [blame] | 84 | |
Daniel Barkalow | 5d46c9d | 2007-05-12 11:46:03 -0400 | [diff] [blame] | 85 | /* |
Daniel Barkalow | d71ab17 | 2007-09-10 23:03:08 -0400 | [diff] [blame] | 86 | * 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 Hamano | 9ad7c5a | 2007-10-26 23:09:48 -0700 | [diff] [blame] | 93 | * |
| 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 Barkalow | d71ab17 | 2007-09-10 23:03:08 -0400 | [diff] [blame] | 96 | */ |
Daniel Barkalow | 4577370 | 2007-10-29 21:05:40 -0400 | [diff] [blame] | 97 | int get_fetch_map(const struct ref *remote_refs, const struct refspec *refspec, |
Junio C Hamano | 9ad7c5a | 2007-10-26 23:09:48 -0700 | [diff] [blame] | 98 | struct ref ***tail, int missing_ok); |
Daniel Barkalow | d71ab17 | 2007-09-10 23:03:08 -0400 | [diff] [blame] | 99 | |
Daniel Barkalow | 4577370 | 2007-10-29 21:05:40 -0400 | [diff] [blame] | 100 | struct ref *get_remote_ref(const struct ref *remote_refs, const char *name); |
Daniel Barkalow | d71ab17 | 2007-09-10 23:03:08 -0400 | [diff] [blame] | 101 | |
| 102 | /* |
Daniel Barkalow | 5d46c9d | 2007-05-12 11:46:03 -0400 | [diff] [blame] | 103 | * For the given remote, reads the refspec's src and sets the other fields. |
| 104 | */ |
| 105 | int remote_find_tracking(struct remote *remote, struct refspec *refspec); |
| 106 | |
Daniel Barkalow | cf81834 | 2007-09-10 23:02:56 -0400 | [diff] [blame] | 107 | struct 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 Barkalow | 2d31347 | 2008-02-18 23:41:41 -0500 | [diff] [blame] | 117 | int merge_alloc; |
Daniel Barkalow | cf81834 | 2007-09-10 23:02:56 -0400 | [diff] [blame] | 118 | }; |
| 119 | |
| 120 | struct branch *branch_get(const char *name); |
| 121 | |
| 122 | int branch_has_merge_config(struct branch *branch); |
Shawn O. Pearce | 85682c1 | 2007-09-18 04:54:53 -0400 | [diff] [blame] | 123 | int branch_merge_matches(struct branch *, int n, const char *); |
Daniel Barkalow | cf81834 | 2007-09-10 23:02:56 -0400 | [diff] [blame] | 124 | |
Andy Whitcroft | 28b9d6e | 2007-11-09 23:32:10 +0000 | [diff] [blame] | 125 | /* Flags to match_refs. */ |
| 126 | enum match_refs_flags { |
| 127 | MATCH_REFS_NONE = 0, |
| 128 | MATCH_REFS_ALL = (1 << 0), |
| 129 | MATCH_REFS_MIRROR = (1 << 1), |
| 130 | }; |
| 131 | |
Junio C Hamano | 6d21bf9 | 2008-07-02 00:51:18 -0700 | [diff] [blame] | 132 | /* Reporting of tracking info */ |
| 133 | int stat_tracking_info(struct branch *branch, int *num_ours, int *num_theirs); |
| 134 | int format_tracking_info(struct branch *branch, struct strbuf *sb); |
| 135 | |
Daniel Barkalow | 5751f49 | 2007-05-12 11:45:53 -0400 | [diff] [blame] | 136 | #endif |