Blob


1 /*
2 * Copyright (c) 2020, 2021 Tracey Emery <tracey@openbsd.org>
3 * Copyright (c) 2020 Stefan Sperling <stsp@openbsd.org>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
18 /*
19 * We maintain two different structures for fetch and send configuration
20 * settings in case they diverge in the future.
21 */
22 struct fetch_config {
23 char *repository;
24 char *server;
25 char *protocol;
26 int port;
27 struct node_branch *branch;
28 };
29 struct send_config {
30 char *repository;
31 char *server;
32 char *protocol;
33 int port;
34 struct node_branch *branch;
35 };
37 struct node_branch {
38 char *branch_name;
39 struct node_branch *next;
40 struct node_branch *tail;
41 };
43 struct node_ref {
44 char *ref_name;
45 struct node_ref *next;
46 struct node_ref *tail;
47 };
49 struct gotconfig_remote_repo {
50 TAILQ_ENTRY(gotconfig_remote_repo) entry;
51 char *name;
52 char *repository;
53 char *server;
54 char *protocol;
55 int port;
56 int mirror_references;
57 int fetch_all_branches;
58 struct node_branch *branch;
59 struct node_ref *fetch_ref;
60 struct fetch_config *fetch_config;
61 struct send_config *send_config;
62 };
63 TAILQ_HEAD(gotconfig_remote_repo_list, gotconfig_remote_repo);
65 struct gotconfig {
66 char *author;
67 struct gotconfig_remote_repo_list remotes;
68 int nremotes;
69 };
71 /*
72 * Parse individual gotconfig repository files
73 */
74 const struct got_error *gotconfig_parse(struct gotconfig **, const char *,
75 int *);
76 void gotconfig_free(struct gotconfig *);