Blame


1 5261c201 2018-04-01 stsp /*
2 5261c201 2018-04-01 stsp * Copyright (c) 2018 Stefan Sperling <stsp@openbsd.org>
3 5261c201 2018-04-01 stsp *
4 5261c201 2018-04-01 stsp * Permission to use, copy, modify, and distribute this software for any
5 5261c201 2018-04-01 stsp * purpose with or without fee is hereby granted, provided that the above
6 5261c201 2018-04-01 stsp * copyright notice and this permission notice appear in all copies.
7 5261c201 2018-04-01 stsp *
8 5261c201 2018-04-01 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 5261c201 2018-04-01 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 5261c201 2018-04-01 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 5261c201 2018-04-01 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 5261c201 2018-04-01 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 5261c201 2018-04-01 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 5261c201 2018-04-01 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 5261c201 2018-04-01 stsp */
16 5261c201 2018-04-01 stsp
17 5261c201 2018-04-01 stsp /* A reference which points to an arbitrary object. */
18 5261c201 2018-04-01 stsp struct got_reference;
19 5261c201 2018-04-01 stsp
20 5261c201 2018-04-01 stsp /* Well-known reference names. */
21 5261c201 2018-04-01 stsp #define GOT_REF_HEAD "HEAD"
22 5261c201 2018-04-01 stsp #define GOT_REF_ORIG_HEAD "ORIG_HEAD"
23 5261c201 2018-04-01 stsp #define GOT_REF_MERGE_HEAD "MERGE_HEAD"
24 5261c201 2018-04-01 stsp #define GOT_REF_FETCH_HEAD "FETCH_HEAD"
25 5261c201 2018-04-01 stsp
26 5261c201 2018-04-01 stsp struct got_repository;
27 5261c201 2018-04-01 stsp struct got_object_id;
28 5261c201 2018-04-01 stsp
29 0c60ce5a 2018-04-02 stsp /*
30 0c60ce5a 2018-04-02 stsp * Attempt to open the reference with the provided name in a repository.
31 2f17228e 2019-05-12 stsp * The caller must dispose of the reference with got_ref_close().
32 2f17228e 2019-05-12 stsp * Optionally, the underlying reference file can be locked before it is opened
33 2f17228e 2019-05-12 stsp * to prevent concurrent modification of the reference, in which case the file
34 2f17228e 2019-05-12 stsp * must be unlocked with got_ref_unlock() before got_ref_close() is called.
35 0c60ce5a 2018-04-02 stsp */
36 6c34b1aa 2019-03-18 stsp const struct got_error *got_ref_open(struct got_reference **,
37 2f17228e 2019-05-12 stsp struct got_repository *, const char *, int);
38 0c60ce5a 2018-04-02 stsp
39 5892cdd6 2019-03-10 stsp /*
40 5892cdd6 2019-03-10 stsp * Allocate a new reference for a given object ID.
41 5892cdd6 2019-03-10 stsp * The caller must dispose of it with got_ref_close().
42 5892cdd6 2019-03-10 stsp */
43 5892cdd6 2019-03-10 stsp const struct got_error *got_ref_alloc(struct got_reference **, const char *,
44 5892cdd6 2019-03-10 stsp struct got_object_id *);
45 5892cdd6 2019-03-10 stsp
46 aaf88317 2019-07-10 stsp /*
47 aaf88317 2019-07-10 stsp * Allocate a new symbolic reference which points at a given reference.
48 aaf88317 2019-07-10 stsp * The caller must dispose of it with got_ref_close().
49 aaf88317 2019-07-10 stsp */
50 aaf88317 2019-07-10 stsp const struct got_error *got_ref_alloc_symref(struct got_reference **,
51 aaf88317 2019-07-10 stsp const char *, struct got_reference *);
52 aaf88317 2019-07-10 stsp
53 0c60ce5a 2018-04-02 stsp /* Dispose of a reference. */
54 5261c201 2018-04-01 stsp void got_ref_close(struct got_reference *);
55 0c60ce5a 2018-04-02 stsp
56 0bd18d37 2019-02-01 stsp /* Get the name of the reference. */
57 0bd18d37 2019-02-01 stsp const char *got_ref_get_name(struct got_reference *);
58 0bd18d37 2019-02-01 stsp
59 aaf88317 2019-07-10 stsp /* Get the name of the reference which a symoblic reference points at. */
60 aaf88317 2019-07-10 stsp const char *got_ref_get_symref_target(struct got_reference *);
61 aaf88317 2019-07-10 stsp
62 0c60ce5a 2018-04-02 stsp /*
63 0c60ce5a 2018-04-02 stsp * Create a duplicate copy of a reference.
64 0c60ce5a 2018-04-02 stsp * The caller must dispose of this copy with got_ref_close().
65 0c60ce5a 2018-04-02 stsp */
66 5261c201 2018-04-01 stsp struct got_reference *got_ref_dup(struct got_reference *);
67 0c60ce5a 2018-04-02 stsp
68 0c60ce5a 2018-04-02 stsp /* Attempt to resolve a reference to an object ID. */
69 5261c201 2018-04-01 stsp const struct got_error *got_ref_resolve(struct got_object_id **,
70 5261c201 2018-04-01 stsp struct got_repository *, struct got_reference *);
71 0c60ce5a 2018-04-02 stsp
72 271d2a38 2018-12-25 stsp /*
73 271d2a38 2018-12-25 stsp * Return a string representation of a reference.
74 271d2a38 2018-12-25 stsp * The caller must dispose of it with free(3).
75 271d2a38 2018-12-25 stsp */
76 5261c201 2018-04-01 stsp char *got_ref_to_str(struct got_reference *);
77 199a4027 2019-02-02 stsp
78 199a4027 2019-02-02 stsp /* A list of references and the object ID which they resolve to. */
79 199a4027 2019-02-02 stsp struct got_reflist_entry {
80 199a4027 2019-02-02 stsp SIMPLEQ_ENTRY(got_reflist_entry) entry;
81 199a4027 2019-02-02 stsp struct got_reference *ref;
82 199a4027 2019-02-02 stsp struct got_object_id *id;
83 199a4027 2019-02-02 stsp };
84 199a4027 2019-02-02 stsp SIMPLEQ_HEAD(got_reflist_head, got_reflist_entry);
85 199a4027 2019-02-02 stsp
86 b8bad2ba 2019-08-23 stsp /* Duplicate a reference list entry. Caller must dispose of it with free(3). */
87 b8bad2ba 2019-08-23 stsp const struct got_error *got_reflist_entry_dup(struct got_reflist_entry **,
88 b8bad2ba 2019-08-23 stsp struct got_reflist_entry *);
89 b8bad2ba 2019-08-23 stsp
90 b8bad2ba 2019-08-23 stsp /* A function which compares two references. Used with got_ref_list(). */
91 b8bad2ba 2019-08-23 stsp typedef const struct got_error *(*got_ref_cmp_cb)(void *, int *,
92 b8bad2ba 2019-08-23 stsp struct got_reference *, struct got_reference *);
93 b8bad2ba 2019-08-23 stsp
94 b8bad2ba 2019-08-23 stsp /* An implementation of got_ref_cmp_cb which compares two references by name. */
95 b8bad2ba 2019-08-23 stsp const struct got_error *got_ref_cmp_by_name(void *, int *,
96 b8bad2ba 2019-08-23 stsp struct got_reference *, struct got_reference *);
97 b8bad2ba 2019-08-23 stsp
98 d1f16636 2020-01-15 stsp /* An implementation of got_ref_cmp_cb which compares two tags. */
99 d1f16636 2020-01-15 stsp const struct got_error *got_ref_cmp_tags(void *, int *,
100 d1f16636 2020-01-15 stsp struct got_reference *, struct got_reference *);
101 d1f16636 2020-01-15 stsp
102 29606af7 2019-08-23 stsp /*
103 29606af7 2019-08-23 stsp * Append all known references to a caller-provided ref list head.
104 29606af7 2019-08-23 stsp * Optionally limit references returned to those within a given
105 b8bad2ba 2019-08-23 stsp * reference namespace. Sort the list with the provided reference comparison
106 b8bad2ba 2019-08-23 stsp * function, usually got_ref_cmp_by_name().
107 29606af7 2019-08-23 stsp */
108 199a4027 2019-02-02 stsp const struct got_error *got_ref_list(struct got_reflist_head *,
109 b8bad2ba 2019-08-23 stsp struct got_repository *, const char *, got_ref_cmp_cb, void *);
110 9e672c74 2019-03-11 stsp
111 e2e879a0 2019-03-11 stsp /* Free all references on a ref list. */
112 e2e879a0 2019-03-11 stsp void got_ref_list_free(struct got_reflist_head *);
113 e2e879a0 2019-03-11 stsp
114 b249b824 2019-05-09 stsp /* Indicate whether the provided reference is symbolic (points at another
115 b249b824 2019-05-09 stsp * refernce) or not (points at an object ID). */
116 b249b824 2019-05-09 stsp int got_ref_is_symbolic(struct got_reference *);
117 b249b824 2019-05-09 stsp
118 b249b824 2019-05-09 stsp /* Change the object ID a reference points to. */
119 b249b824 2019-05-09 stsp const struct got_error *
120 b249b824 2019-05-09 stsp got_ref_change_ref(struct got_reference *, struct got_object_id *);
121 b249b824 2019-05-09 stsp
122 b249b824 2019-05-09 stsp /* Change the reference name a symbolic reference points to. */
123 b249b824 2019-05-09 stsp const struct got_error *got_ref_change_symref(struct got_reference *,
124 b249b824 2019-05-09 stsp char *);
125 b249b824 2019-05-09 stsp
126 9e672c74 2019-03-11 stsp /* Write a reference to its on-disk path in the repository. */
127 9e672c74 2019-03-11 stsp const struct got_error *got_ref_write(struct got_reference *,
128 9e672c74 2019-03-11 stsp struct got_repository *);
129 2d2e1378 2019-03-11 stsp
130 2d2e1378 2019-03-11 stsp /* Delete a reference from its on-disk path in the repository. */
131 2d2e1378 2019-03-11 stsp const struct got_error *got_ref_delete(struct got_reference *,
132 2d2e1378 2019-03-11 stsp struct got_repository *);
133 2f17228e 2019-05-12 stsp
134 2f17228e 2019-05-12 stsp /* Unlock a reference which was opened in locked state. */
135 2f17228e 2019-05-12 stsp const struct got_error *got_ref_unlock(struct got_reference *);