Blame


1 86c3caaf 2018-03-09 stsp /*
2 5d56da81 2019-01-13 stsp * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
3 86c3caaf 2018-03-09 stsp *
4 86c3caaf 2018-03-09 stsp * Permission to use, copy, modify, and distribute this software for any
5 86c3caaf 2018-03-09 stsp * purpose with or without fee is hereby granted, provided that the above
6 86c3caaf 2018-03-09 stsp * copyright notice and this permission notice appear in all copies.
7 86c3caaf 2018-03-09 stsp *
8 86c3caaf 2018-03-09 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 86c3caaf 2018-03-09 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 86c3caaf 2018-03-09 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 86c3caaf 2018-03-09 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 86c3caaf 2018-03-09 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 86c3caaf 2018-03-09 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 86c3caaf 2018-03-09 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 86c3caaf 2018-03-09 stsp */
16 86c3caaf 2018-03-09 stsp
17 86c3caaf 2018-03-09 stsp struct got_worktree;
18 86c3caaf 2018-03-09 stsp
19 eecfbcd1 2018-12-29 stsp /* status codes */
20 f8d1f275 2019-02-04 stsp #define GOT_STATUS_NO_CHANGE ' '
21 eecfbcd1 2018-12-29 stsp #define GOT_STATUS_ADD 'A'
22 eecfbcd1 2018-12-29 stsp #define GOT_STATUS_EXISTS 'E'
23 507dc3bb 2018-12-29 stsp #define GOT_STATUS_UPDATE 'U'
24 512f0d0e 2019-01-02 stsp #define GOT_STATUS_DELETE 'D'
25 276262e8 2019-02-08 stsp #define GOT_STATUS_MODIFY 'M'
26 6353ad76 2019-02-08 stsp #define GOT_STATUS_CONFLICT 'C'
27 6353ad76 2019-02-08 stsp #define GOT_STATUS_MERGE 'G'
28 f8d1f275 2019-02-04 stsp #define GOT_STATUS_MISSING '!'
29 f8d1f275 2019-02-04 stsp #define GOT_STATUS_UNVERSIONED '?'
30 0dbc2271 2019-02-05 stsp #define GOT_STATUS_OBSTRUCTED '~'
31 a129376b 2019-03-28 stsp #define GOT_STATUS_REVERT 'R'
32 eecfbcd1 2018-12-29 stsp
33 0c60ce5a 2018-04-02 stsp /*
34 0c60ce5a 2018-04-02 stsp * Attempt to initialize a new work tree on disk.
35 0c60ce5a 2018-04-02 stsp * The first argument is the path to a directory where the work tree
36 0c60ce5a 2018-04-02 stsp * will be created. The path itself must not yet exist, but the dirname(3)
37 0c60ce5a 2018-04-02 stsp * of the path must already exist.
38 93a30277 2018-12-24 stsp * The reference provided will be used to determine the new worktree's
39 93a30277 2018-12-24 stsp * base commit. The third argument speficies the work tree's path prefix.
40 0c60ce5a 2018-04-02 stsp */
41 86c3caaf 2018-03-09 stsp const struct got_error *got_worktree_init(const char *, struct got_reference *,
42 577ec78f 2018-03-11 stsp const char *, struct got_repository *);
43 0c60ce5a 2018-04-02 stsp
44 0c60ce5a 2018-04-02 stsp /*
45 247140b2 2019-02-05 stsp * Attempt to open a worktree at or above the specified path.
46 0c60ce5a 2018-04-02 stsp * The caller must dispose of it with got_worktree_close().
47 0c60ce5a 2018-04-02 stsp */
48 86c3caaf 2018-03-09 stsp const struct got_error *got_worktree_open(struct got_worktree **, const char *);
49 0c60ce5a 2018-04-02 stsp
50 0c60ce5a 2018-04-02 stsp /* Dispose of an open work tree. */
51 3a6ce05a 2019-02-11 stsp const struct got_error *got_worktree_close(struct got_worktree *);
52 0c60ce5a 2018-04-02 stsp
53 0c60ce5a 2018-04-02 stsp /*
54 c7f4312f 2019-02-05 stsp * Get the path to the root directory of a worktree.
55 c7f4312f 2019-02-05 stsp */
56 c7f4312f 2019-02-05 stsp const char *got_worktree_get_root_path(struct got_worktree *);
57 c7f4312f 2019-02-05 stsp
58 c7f4312f 2019-02-05 stsp /*
59 0c60ce5a 2018-04-02 stsp * Get the path to the repository associated with a worktree.
60 0c60ce5a 2018-04-02 stsp */
61 2fbdb5ae 2018-12-29 stsp const char *got_worktree_get_repo_path(struct got_worktree *);
62 0c60ce5a 2018-04-02 stsp
63 0c60ce5a 2018-04-02 stsp /*
64 49520a32 2018-12-29 stsp * Get the path prefix associated with a worktree.
65 49520a32 2018-12-29 stsp */
66 49520a32 2018-12-29 stsp const char *got_worktree_get_path_prefix(struct got_worktree *);
67 49520a32 2018-12-29 stsp
68 49520a32 2018-12-29 stsp /*
69 e5dc7198 2018-12-29 stsp * Check if a user-provided path prefix matches that of the worktree.
70 e5dc7198 2018-12-29 stsp */
71 e5dc7198 2018-12-29 stsp const struct got_error *got_worktree_match_path_prefix(int *,
72 e5dc7198 2018-12-29 stsp struct got_worktree *, const char *);
73 e5dc7198 2018-12-29 stsp
74 e5dc7198 2018-12-29 stsp /*
75 0c60ce5a 2018-04-02 stsp * Get the name of a work tree's HEAD reference.
76 0c60ce5a 2018-04-02 stsp */
77 bc70eb79 2019-05-09 stsp const char *got_worktree_get_head_ref_name(struct got_worktree *);
78 0c60ce5a 2018-04-02 stsp
79 507dc3bb 2018-12-29 stsp /*
80 507dc3bb 2018-12-29 stsp * Get the current base commit ID of a worktree.
81 507dc3bb 2018-12-29 stsp */
82 b72f483a 2019-02-05 stsp struct got_object_id *got_worktree_get_base_commit_id(struct got_worktree *);
83 507dc3bb 2018-12-29 stsp
84 507dc3bb 2018-12-29 stsp /*
85 507dc3bb 2018-12-29 stsp * Set the base commit Id of a worktree.
86 507dc3bb 2018-12-29 stsp */
87 507dc3bb 2018-12-29 stsp const struct got_error *got_worktree_set_base_commit_id(struct got_worktree *,
88 507dc3bb 2018-12-29 stsp struct got_repository *, struct got_object_id *);
89 507dc3bb 2018-12-29 stsp
90 0c60ce5a 2018-04-02 stsp /* A callback function which is invoked when a path is checked out. */
91 a0eb853d 2018-12-29 stsp typedef void (*got_worktree_checkout_cb)(void *, unsigned char, const char *);
92 0c60ce5a 2018-04-02 stsp
93 99437157 2018-11-11 stsp /* A callback function which is invoked at cancellation points.
94 99437157 2018-11-11 stsp * May return GOT_ERR_CANCELLED to abort the runing operation. */
95 99437157 2018-11-11 stsp typedef const struct got_error *(*got_worktree_cancel_cb)(void *);
96 99437157 2018-11-11 stsp
97 0c60ce5a 2018-04-02 stsp /*
98 0c60ce5a 2018-04-02 stsp * Attempt to check out files into a work tree from its associated repository
99 0c60ce5a 2018-04-02 stsp * and path prefix, and update the work tree's file index accordingly.
100 0c60ce5a 2018-04-02 stsp * File content is obtained from blobs within the work tree's path prefix
101 93a30277 2018-12-24 stsp * inside the tree corresponding to the work tree's base commit.
102 0c60ce5a 2018-04-02 stsp * The checkout progress callback will be invoked with the provided
103 0c60ce5a 2018-04-02 stsp * void * argument, and the path of each checked out file.
104 c4cdcb68 2019-04-03 stsp *
105 c4cdcb68 2019-04-03 stsp * It is possible to restrict the checkout operation to a specific path in
106 c4cdcb68 2019-04-03 stsp * the work tree, in which case all files outside this path will remain at
107 c4cdcb68 2019-04-03 stsp * their currently recorded base commit. Inconsistent base commits can be
108 c4cdcb68 2019-04-03 stsp * repaired later by running another update operation across the entire work
109 c4cdcb68 2019-04-03 stsp * tree. Inconsistent base-commits may also occur if this function runs into
110 c4cdcb68 2019-04-03 stsp * an error or if the checkout operation is cancelled by the cancel callback.
111 c4cdcb68 2019-04-03 stsp * The specified path is relative to the work tree's root. Pass "" to check
112 c4cdcb68 2019-04-03 stsp * out files across the entire work tree.
113 c4cdcb68 2019-04-03 stsp *
114 c4cdcb68 2019-04-03 stsp * Some operations may refuse to run while the work tree contains files from
115 c4cdcb68 2019-04-03 stsp * multiple base commits.
116 0c60ce5a 2018-04-02 stsp */
117 86c3caaf 2018-03-09 stsp const struct got_error *got_worktree_checkout_files(struct got_worktree *,
118 c4cdcb68 2019-04-03 stsp const char *, struct got_repository *, got_worktree_checkout_cb, void *,
119 99437157 2018-11-11 stsp got_worktree_cancel_cb, void *);
120 507dc3bb 2018-12-29 stsp
121 f8d1f275 2019-02-04 stsp /* A callback function which is invoked to report a path's status. */
122 b72f483a 2019-02-05 stsp typedef const struct got_error *(*got_worktree_status_cb)(void *,
123 b72f483a 2019-02-05 stsp unsigned char, const char *, struct got_object_id *);
124 f8d1f275 2019-02-04 stsp
125 f8d1f275 2019-02-04 stsp /*
126 f8d1f275 2019-02-04 stsp * Report the status of paths in the work tree.
127 f8d1f275 2019-02-04 stsp * The status callback will be invoked with the provided void * argument,
128 f8d1f275 2019-02-04 stsp * a path, and a corresponding status code.
129 f8d1f275 2019-02-04 stsp */
130 6c34b1aa 2019-03-18 stsp const struct got_error *got_worktree_status(struct got_worktree *,
131 6c34b1aa 2019-03-18 stsp const char *, struct got_repository *, got_worktree_status_cb, void *,
132 927df6b7 2019-02-10 stsp got_worktree_cancel_cb cancel_cb, void *);
133 6c7ab921 2019-03-18 stsp
134 6c7ab921 2019-03-18 stsp /*
135 6c7ab921 2019-03-18 stsp * Try to resolve a user-provided path to an on-disk path in the work tree.
136 6c7ab921 2019-03-18 stsp * The caller must dispose of the resolved path with free(3).
137 6c7ab921 2019-03-18 stsp */
138 6c7ab921 2019-03-18 stsp const struct got_error *got_worktree_resolve_path(char **,
139 6c7ab921 2019-03-18 stsp struct got_worktree *, const char *);
140 d00136be 2019-03-26 stsp
141 031a5338 2019-03-26 stsp /* Schedule a file at an on-disk path for addition in the next commit. */
142 031a5338 2019-03-26 stsp const struct got_error *got_worktree_schedule_add(struct got_worktree *,
143 031a5338 2019-03-26 stsp const char *, got_worktree_status_cb, void *, struct got_repository *);
144 2ec1f75b 2019-03-26 stsp
145 2ec1f75b 2019-03-26 stsp /*
146 2ec1f75b 2019-03-26 stsp * Remove a file from disk and schedule it to be deleted in the next commit.
147 2ec1f75b 2019-03-26 stsp * Don't allow deleting files with uncommitted modifications, unless the
148 2ec1f75b 2019-03-26 stsp * parameter 'delete_local_mods' is set.
149 2ec1f75b 2019-03-26 stsp */
150 2ec1f75b 2019-03-26 stsp const struct got_error *
151 2ec1f75b 2019-03-26 stsp got_worktree_schedule_delete(struct got_worktree *, const char *, int,
152 2ec1f75b 2019-03-26 stsp got_worktree_status_cb, void *, struct got_repository *);
153 a129376b 2019-03-28 stsp
154 a129376b 2019-03-28 stsp /*
155 a129376b 2019-03-28 stsp * Revert a file at the specified path such that it matches its
156 a129376b 2019-03-28 stsp * original state in the worktree's base commit.
157 a129376b 2019-03-28 stsp */
158 a129376b 2019-03-28 stsp const struct got_error *got_worktree_revert(struct got_worktree *,
159 a129376b 2019-03-28 stsp const char *, got_worktree_checkout_cb, void *, struct got_repository *);
160 c4296144 2019-05-09 stsp
161 c4296144 2019-05-09 stsp /*
162 c4296144 2019-05-09 stsp * Create a new commit from changes in the work tree.
163 c4296144 2019-05-09 stsp * Return the ID of the newly created commit.
164 c4296144 2019-05-09 stsp * The worktree's base commit will be set to this new commit.
165 c4296144 2019-05-09 stsp * Files unaffected by this commit operation will retain their
166 c4296144 2019-05-09 stsp * current base commit.
167 de18fc63 2019-05-09 stsp * An author and a non-empty log message must be specified.
168 de18fc63 2019-05-09 stsp * The name of the committer is optional (may be NULL).
169 c4296144 2019-05-09 stsp * If an on-disk path is specified, only commit changes at or within this path.
170 c4296144 2019-05-09 stsp */
171 de18fc63 2019-05-09 stsp const struct got_error *got_worktree_commit(struct got_object_id **,
172 de18fc63 2019-05-09 stsp struct got_worktree *, const char *, const char *, const char *,
173 afa376bf 2019-05-09 stsp const char *, got_worktree_status_cb, void *, struct got_repository *);