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