Blob


1 /*
2 * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 struct got_repository;
18 struct got_pathlist_head;
19 struct got_tag_object;
21 /* Open and close repositories. */
22 const struct got_error *got_repo_open(struct got_repository**, const char *,
23 const char *);
24 const struct got_error *got_repo_close(struct got_repository*);
26 /* Obtain the on-disk path to the repository. */
27 const char *got_repo_get_path(struct got_repository *);
29 /*
30 * Obtain the path to a non-bare repository's .git directory.
31 * For bare repositories, this returns the same result as got_repo_get_path().
32 */
33 const char *got_repo_get_path_git_dir(struct got_repository *);
35 /* Obtain the file descriptor of the repository's .git directory. */
36 int got_repo_get_fd(struct got_repository *);
38 /* Obtain the commit author name if parsed from gitconfig, else NULL. */
39 const char *got_repo_get_gitconfig_author_name(struct got_repository *);
41 /* Obtain the commit author email if parsed from gitconfig, else NULL. */
42 const char *got_repo_get_gitconfig_author_email(struct got_repository *);
44 /* Obtain global commit author name parsed ~/.gitconfig, else NULL. */
45 const char *got_repo_get_global_gitconfig_author_name(struct got_repository *);
47 /* Obtain global commit author email parsed ~/.gitconfig, else NULL. */
48 const char *got_repo_get_global_gitconfig_author_email(struct got_repository *);
50 /* Obtain repository owner name if parsed from gitconfig, else NULL. */
51 const char *got_repo_get_gitconfig_owner(struct got_repository *);
53 /* Information about one remote repository. */
54 struct got_remote_repo {
55 char *name;
56 char *url;
58 /*
59 * If set, references are mirrored 1:1 into the local repository.
60 * If not set, references are mapped into "refs/remotes/$name/".
61 */
62 int mirror_references;
64 /* Branches to fetch by default. */
65 int nbranches;
66 char **branches;
67 };
69 /*
70 * Free data allocated for the specified remote repository.
71 * Do not free the remote_repo pointer itself.
72 */
73 void got_repo_free_remote_repo_data(struct got_remote_repo *);
75 /* Obtain the list of remote repositories parsed from gitconfig. */
76 void got_repo_get_gitconfig_remotes(int *, const struct got_remote_repo **,
77 struct got_repository *);
79 /*
80 * Obtain a parsed representation of this repository's got.conf file.
81 * Return NULL if this configuration file could not be read.
82 */
83 const struct got_gotconfig *got_repo_get_gotconfig(struct got_repository *);
85 /*
86 * Obtain paths to various directories within a repository.
87 * The caller must dispose of a path with free(3).
88 */
89 char *got_repo_get_path_objects(struct got_repository *);
90 char *got_repo_get_path_objects_pack(struct got_repository *);
91 char *got_repo_get_path_refs(struct got_repository *);
92 char *got_repo_get_path_packed_refs(struct got_repository *);
93 char *got_repo_get_path_gitconfig(struct got_repository *);
94 char *got_repo_get_path_gotconfig(struct got_repository *);
96 struct got_reference;
98 /*
99 * Obtain a reference, by name, from a repository.
100 * The caller must dispose of it with got_ref_close().
101 */
102 const struct got_error *got_repo_get_reference(struct got_reference **,
103 struct got_repository *, const char *);
106 /* Indicate whether this is a bare repositiry (contains no git working tree). */
107 int got_repo_is_bare(struct got_repository *);
109 /* Attempt to map an arbitrary path to a path within the repository. */
110 const struct got_error *got_repo_map_path(char **, struct got_repository *,
111 const char *);
113 /* Create a new repository in an empty directory at a specified path. */
114 const struct got_error *got_repo_init(const char *);
116 /* Attempt to find a unique object ID for a given ID string prefix. */
117 const struct got_error *got_repo_match_object_id_prefix(struct got_object_id **,
118 const char *, int, struct got_repository *);
120 /*
121 * Given an object ID string or reference name, attempt to find a corresponding
122 * commit object. Tags can optionally be ignored during matching.
123 * The object type may be restricted to commit, tree, blob, or tag.
124 * GOT_OBJ_TYPE_ANY will match any type of object.
125 * A human-readable label can optionally be returned, which the caller should
126 * dispose of with free(3).
127 * Return GOT_ERR_NO_OBJ if no matching commit can be found.
128 */
129 const struct got_error *got_repo_match_object_id(struct got_object_id **,
130 char **, const char *, int, int, struct got_repository *);
132 /*
133 * Attempt to find a tag object with a given name and target object type.
134 * Return GOT_ERR_NO_OBJ if no matching tag can be found.
135 */
136 const struct got_error *got_repo_object_match_tag(struct got_tag_object **,
137 const char *, int, struct got_repository *);
139 /* A callback function which is invoked when a path is imported. */
140 typedef const struct got_error *(*got_repo_import_cb)(void *, const char *);
142 /*
143 * Import an unversioned directory tree into the repository.
144 * Creates a root commit, i.e. a commit with zero parents.
145 */
146 const struct got_error *got_repo_import(struct got_object_id **, const char *,
147 const char *, const char *, struct got_pathlist_head *,
148 struct got_repository *, got_repo_import_cb, void *);