Blame


1 257add31 2020-09-09 stsp /*
2 257add31 2020-09-09 stsp * Copyright (c) 2020 Tracey Emery <tracey@openbsd.org>
3 257add31 2020-09-09 stsp * Copyright (c) 2020 Stefan Sperling <stsp@openbsd.org>
4 257add31 2020-09-09 stsp *
5 257add31 2020-09-09 stsp * Permission to use, copy, modify, and distribute this software for any
6 257add31 2020-09-09 stsp * purpose with or without fee is hereby granted, provided that the above
7 257add31 2020-09-09 stsp * copyright notice and this permission notice appear in all copies.
8 257add31 2020-09-09 stsp *
9 257add31 2020-09-09 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 257add31 2020-09-09 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 257add31 2020-09-09 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 257add31 2020-09-09 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 257add31 2020-09-09 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 257add31 2020-09-09 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 257add31 2020-09-09 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 257add31 2020-09-09 stsp */
17 257add31 2020-09-09 stsp
18 b8adfa55 2020-09-25 stsp struct node_branch {
19 b8adfa55 2020-09-25 stsp char *branch_name;
20 b8adfa55 2020-09-25 stsp struct node_branch *next;
21 b8adfa55 2020-09-25 stsp struct node_branch *tail;
22 b8adfa55 2020-09-25 stsp };
23 b8adfa55 2020-09-25 stsp
24 99495ddb 2021-01-10 stsp struct node_ref {
25 99495ddb 2021-01-10 stsp char *ref_name;
26 99495ddb 2021-01-10 stsp struct node_ref *next;
27 99495ddb 2021-01-10 stsp struct node_ref *tail;
28 99495ddb 2021-01-10 stsp };
29 99495ddb 2021-01-10 stsp
30 257add31 2020-09-09 stsp struct gotconfig_remote_repo {
31 257add31 2020-09-09 stsp TAILQ_ENTRY(gotconfig_remote_repo) entry;
32 257add31 2020-09-09 stsp char *name;
33 257add31 2020-09-09 stsp char *repository;
34 257add31 2020-09-09 stsp char *server;
35 257add31 2020-09-09 stsp char *protocol;
36 257add31 2020-09-09 stsp int port;
37 257add31 2020-09-09 stsp int mirror_references;
38 0c8b29c5 2021-01-05 stsp int fetch_all_branches;
39 b8adfa55 2020-09-25 stsp struct node_branch *branch;
40 99495ddb 2021-01-10 stsp struct node_ref *ref;
41 257add31 2020-09-09 stsp };
42 257add31 2020-09-09 stsp TAILQ_HEAD(gotconfig_remote_repo_list, gotconfig_remote_repo);
43 257add31 2020-09-09 stsp
44 257add31 2020-09-09 stsp struct gotconfig {
45 257add31 2020-09-09 stsp char *author;
46 257add31 2020-09-09 stsp struct gotconfig_remote_repo_list remotes;
47 257add31 2020-09-09 stsp int nremotes;
48 257add31 2020-09-09 stsp };
49 257add31 2020-09-09 stsp
50 257add31 2020-09-09 stsp /*
51 257add31 2020-09-09 stsp * Parse individual gotconfig repository files
52 257add31 2020-09-09 stsp */
53 257add31 2020-09-09 stsp const struct got_error *gotconfig_parse(struct gotconfig **, const char *,
54 257add31 2020-09-09 stsp int *);
55 257add31 2020-09-09 stsp void gotconfig_free(struct gotconfig *);