]> git.ipfire.org Git - thirdparty/git.git/blame - wt-status.h
Git 2.45-rc0
[thirdparty/git.git] / wt-status.h
CommitLineData
c91f0d92
JK
1#ifndef STATUS_H
2#define STATUS_H
3
50b7e70f 4#include "string-list.h"
23900a96 5#include "color.h"
7aa9b9ba 6#include "pathspec.h"
fd9b544a 7#include "remote.h"
f26a0012 8
5b02ca38 9struct repository;
81eff27b
NTND
10struct worktree;
11
c91f0d92 12enum color_wt_status {
23900a96 13 WT_STATUS_HEADER = 0,
c91f0d92
JK
14 WT_STATUS_UPDATED,
15 WT_STATUS_CHANGED,
16 WT_STATUS_UNTRACKED,
950ce2e2 17 WT_STATUS_NOBRANCH,
4d4d5726 18 WT_STATUS_UNMERGED,
05a59a08 19 WT_STATUS_LOCAL_BRANCH,
1d282327
AA
20 WT_STATUS_REMOTE_BRANCH,
21 WT_STATUS_ONBRANCH,
22 WT_STATUS_MAXSLOT
c91f0d92
JK
23};
24
4bfee30a 25enum untracked_status_type {
63acdc48
JH
26 SHOW_UNTRACKED_FILES_ERROR = -1,
27 SHOW_NO_UNTRACKED_FILES = 0,
6c2ce048 28 SHOW_NORMAL_UNTRACKED_FILES,
4bfee30a
MSO
29 SHOW_ALL_UNTRACKED_FILES
30};
4bfee30a 31
eec0f7f2
JM
32enum show_ignored_type {
33 SHOW_NO_IGNORED,
34 SHOW_TRADITIONAL_IGNORED,
35 SHOW_MATCHING_IGNORED,
36};
37
37f7a857
JS
38/* from where does this commit originate */
39enum commit_whence {
40 FROM_COMMIT, /* normal */
41 FROM_MERGE, /* commit came from merge */
8d57f757 42 FROM_CHERRY_PICK_SINGLE, /* commit came from cherry-pick */
430b75f7
PW
43 FROM_CHERRY_PICK_MULTI, /* commit came from a sequence of cherry-picks */
44 FROM_REBASE_PICK /* commit came from a pick/reword/edit */
37f7a857
JS
45};
46
8d57f757
PW
47static inline int is_from_cherry_pick(enum commit_whence whence)
48{
49 return whence == FROM_CHERRY_PICK_SINGLE ||
50 whence == FROM_CHERRY_PICK_MULTI;
51}
52
430b75f7
PW
53static inline int is_from_rebase(enum commit_whence whence)
54{
55 return whence == FROM_REBASE_PICK;
56}
57
50b7e70f
JH
58struct wt_status_change_data {
59 int worktree_status;
60 int index_status;
61 int stagemask;
1ecdecce
JH
62 int mode_head, mode_index, mode_worktree;
63 struct object_id oid_head, oid_index;
5134ccde
NTND
64 int rename_status;
65 int rename_score;
66 char *rename_source;
9297f77e
JL
67 unsigned dirty_submodule : 2;
68 unsigned new_submodule_commits : 1;
50b7e70f
JH
69};
70
be7e795e
JH
71enum wt_status_format {
72 STATUS_FORMAT_NONE = 0,
73 STATUS_FORMAT_LONG,
74 STATUS_FORMAT_SHORT,
75 STATUS_FORMAT_PORCELAIN,
1ecdecce 76 STATUS_FORMAT_PORCELAIN_V2,
be7e795e
JH
77
78 STATUS_FORMAT_UNSPECIFIED
79};
80
051df3cf 81#define SPARSE_CHECKOUT_DISABLED -1
bf48e5ac 82#define SPARSE_CHECKOUT_SPARSE_INDEX -2
28438e84 83
73ba5d78
SS
84struct wt_status_state {
85 int merge_in_progress;
86 int am_in_progress;
87 int am_empty_patch;
88 int rebase_in_progress;
89 int rebase_interactive_in_progress;
90 int cherry_pick_in_progress;
91 int bisect_in_progress;
92 int revert_in_progress;
93 int detached_at;
051df3cf 94 int sparse_checkout_percentage; /* SPARSE_CHECKOUT_DISABLED if not sparse */
73ba5d78
SS
95 char *branch;
96 char *onto;
97 char *detached_from;
990adccb 98 char *bisecting_from;
73ba5d78
SS
99 struct object_id detached_oid;
100 struct object_id revert_head_oid;
101 struct object_id cherry_pick_head_oid;
102};
103
c91f0d92 104struct wt_status {
5b02ca38 105 struct repository *repo;
c91f0d92
JK
106 int is_initial;
107 char *branch;
108 const char *reference;
15b55ae0 109 struct pathspec pathspec;
c91f0d92
JK
110 int verbose;
111 int amend;
37f7a857 112 enum commit_whence whence;
37d07f8f 113 int nowarn;
d249b098 114 int use_color;
7a76c28f 115 int no_gettext;
2556b996 116 int display_comment_prefix;
d249b098
JH
117 int relative_paths;
118 int submodule_summary;
eec0f7f2 119 enum show_ignored_type show_ignored_mode;
d249b098 120 enum untracked_status_type show_untracked_files;
46a958b3 121 const char *ignore_submodule_arg;
1d282327 122 char color_palette[WT_STATUS_MAXSLOT][COLOR_MAXLEN];
4d2292e9 123 unsigned colopts;
3207a3a2 124 int null_termination;
4ddb1354 125 int commit_template;
d4a6bf1f 126 int show_branch;
c1b5d019 127 int show_stash;
6a964f57 128 int hints;
fd9b544a 129 enum ahead_behind_flags ahead_behind_flags;
e8b2dc2c
BP
130 int detect_rename;
131 int rename_score;
132 int rename_limit;
be7e795e 133 enum wt_status_format status_format;
688a0a75 134 unsigned char added_cut_line; /* boolean */
73ba5d78 135 struct wt_status_state state;
e0cb7cdb 136 struct object_id oid_commit; /* when not Initial */
be7e795e 137
2a3a3c24 138 /* These are computed during processing of the individual sections */
6fa90194 139 int committable;
2a3a3c24 140 int workdir_dirty;
0f729f21 141 const char *index_file;
f26a0012 142 FILE *fp;
367c9886 143 const char *prefix;
50b7e70f 144 struct string_list change;
76378683 145 struct string_list untracked;
6cb3f6b2 146 struct string_list ignored;
6a38ef2c 147 uint32_t untracked_in_ms;
c91f0d92
JK
148};
149
d76650b8 150size_t wt_status_locate_end(const char *s, size_t len);
d540b70c 151void wt_status_append_cut_line(struct strbuf *buf);
688a0a75 152void wt_status_add_cut_line(struct wt_status *s);
5b02ca38 153void wt_status_prepare(struct repository *r, struct wt_status *s);
be7e795e 154void wt_status_print(struct wt_status *s);
76378683 155void wt_status_collect(struct wt_status *s);
962dd7eb
156/*
157 * Frees the buffers allocated by wt_status_collect.
158 */
73ba5d78 159void wt_status_collect_free_buffers(struct wt_status *s);
962dd7eb
160/*
161 * Frees the buffers of the wt_status_state.
162 */
163void wt_status_state_free_buffers(struct wt_status_state *s);
78845457
NTND
164void wt_status_get_state(struct repository *repo,
165 struct wt_status_state *state,
166 int get_detached_from);
81eff27b
NTND
167int wt_status_check_rebase(const struct worktree *wt,
168 struct wt_status_state *state);
f5d067a2
NTND
169int wt_status_check_bisect(const struct worktree *wt,
170 struct wt_status_state *state);
c91f0d92 171
8dd0ee82
JK
172__attribute__((format (printf, 3, 4)))
173void status_printf_ln(struct wt_status *s, const char *color, const char *fmt, ...);
174__attribute__((format (printf, 3, 4)))
175void status_printf(struct wt_status *s, const char *color, const char *fmt, ...);
becbdae8 176
41a5dd6d 177/* The following functions expect that the caller took care of reading the index. */
5b02ca38
NTND
178int has_unstaged_changes(struct repository *repo,
179 int ignore_submodules);
180int has_uncommitted_changes(struct repository *repo,
181 int ignore_submodules);
182int require_clean_work_tree(struct repository *repo,
183 const char *action,
184 const char *hint,
185 int ignore_submodules,
186 int gently);
fd84986f 187
c91f0d92 188#endif /* STATUS_H */