2006-09-08 10:05:34 +02:00
|
|
|
#ifndef STATUS_H
|
|
|
|
#define STATUS_H
|
|
|
|
|
2007-09-18 02:06:42 +02:00
|
|
|
#include <stdio.h>
|
2009-08-05 08:49:33 +02:00
|
|
|
#include "string-list.h"
|
2009-08-10 08:08:40 +02:00
|
|
|
#include "color.h"
|
2015-08-20 16:06:27 +02:00
|
|
|
#include "pathspec.h"
|
2007-09-18 02:06:42 +02:00
|
|
|
|
2016-04-22 15:01:31 +02:00
|
|
|
struct worktree;
|
|
|
|
|
2006-09-08 10:05:34 +02:00
|
|
|
enum color_wt_status {
|
2009-08-10 08:08:40 +02:00
|
|
|
WT_STATUS_HEADER = 0,
|
2006-09-08 10:05:34 +02:00
|
|
|
WT_STATUS_UPDATED,
|
|
|
|
WT_STATUS_CHANGED,
|
|
|
|
WT_STATUS_UNTRACKED,
|
2008-05-22 14:50:02 +02:00
|
|
|
WT_STATUS_NOBRANCH,
|
2009-08-05 09:04:51 +02:00
|
|
|
WT_STATUS_UNMERGED,
|
2010-05-25 15:45:51 +02:00
|
|
|
WT_STATUS_LOCAL_BRANCH,
|
2010-11-18 00:40:05 +01:00
|
|
|
WT_STATUS_REMOTE_BRANCH,
|
|
|
|
WT_STATUS_ONBRANCH,
|
|
|
|
WT_STATUS_MAXSLOT
|
2006-09-08 10:05:34 +02:00
|
|
|
};
|
|
|
|
|
2008-06-05 10:31:19 +02:00
|
|
|
enum untracked_status_type {
|
2008-06-05 14:22:56 +02:00
|
|
|
SHOW_NO_UNTRACKED_FILES,
|
|
|
|
SHOW_NORMAL_UNTRACKED_FILES,
|
2008-06-05 10:31:19 +02:00
|
|
|
SHOW_ALL_UNTRACKED_FILES
|
|
|
|
};
|
|
|
|
|
2011-02-20 05:12:29 +01:00
|
|
|
/* from where does this commit originate */
|
|
|
|
enum commit_whence {
|
|
|
|
FROM_COMMIT, /* normal */
|
|
|
|
FROM_MERGE, /* commit came from merge */
|
|
|
|
FROM_CHERRY_PICK /* commit came from cherry-pick */
|
|
|
|
};
|
|
|
|
|
2009-08-05 08:49:33 +02:00
|
|
|
struct wt_status_change_data {
|
|
|
|
int worktree_status;
|
|
|
|
int index_status;
|
|
|
|
int stagemask;
|
|
|
|
char *head_path;
|
2010-03-08 13:53:19 +01:00
|
|
|
unsigned dirty_submodule : 2;
|
|
|
|
unsigned new_submodule_commits : 1;
|
2009-08-05 08:49:33 +02:00
|
|
|
};
|
|
|
|
|
2006-09-08 10:05:34 +02:00
|
|
|
struct wt_status {
|
|
|
|
int is_initial;
|
|
|
|
char *branch;
|
|
|
|
const char *reference;
|
2013-07-14 10:35:39 +02:00
|
|
|
struct pathspec pathspec;
|
2006-09-08 10:05:34 +02:00
|
|
|
int verbose;
|
|
|
|
int amend;
|
2011-02-20 05:12:29 +01:00
|
|
|
enum commit_whence whence;
|
2007-12-13 04:09:16 +01:00
|
|
|
int nowarn;
|
2009-08-10 06:59:30 +02:00
|
|
|
int use_color;
|
2014-03-20 13:12:41 +01:00
|
|
|
int no_gettext;
|
2013-09-06 19:43:07 +02:00
|
|
|
int display_comment_prefix;
|
2009-08-10 06:59:30 +02:00
|
|
|
int relative_paths;
|
|
|
|
int submodule_summary;
|
2010-04-10 09:11:53 +02:00
|
|
|
int show_ignored_files;
|
2009-08-10 06:59:30 +02:00
|
|
|
enum untracked_status_type show_untracked_files;
|
2010-06-25 16:56:47 +02:00
|
|
|
const char *ignore_submodule_arg;
|
2010-11-18 00:40:05 +01:00
|
|
|
char color_palette[WT_STATUS_MAXSLOT][COLOR_MAXLEN];
|
2012-05-07 21:35:03 +02:00
|
|
|
unsigned colopts;
|
2012-05-07 21:44:44 +02:00
|
|
|
int null_termination;
|
2012-05-07 23:09:04 +02:00
|
|
|
int show_branch;
|
2013-09-12 12:50:05 +02:00
|
|
|
int hints;
|
2009-08-10 06:59:30 +02:00
|
|
|
|
2007-01-10 23:25:03 +01:00
|
|
|
/* These are computed during processing of the individual sections */
|
|
|
|
int commitable;
|
|
|
|
int workdir_dirty;
|
2007-09-18 02:06:43 +02:00
|
|
|
const char *index_file;
|
2007-09-18 02:06:42 +02:00
|
|
|
FILE *fp;
|
2007-11-11 18:35:41 +01:00
|
|
|
const char *prefix;
|
2009-08-05 08:49:33 +02:00
|
|
|
struct string_list change;
|
2009-08-10 09:36:33 +02:00
|
|
|
struct string_list untracked;
|
2010-04-10 09:11:53 +02:00
|
|
|
struct string_list ignored;
|
2013-03-13 13:59:16 +01:00
|
|
|
uint32_t untracked_in_ms;
|
2006-09-08 10:05:34 +02:00
|
|
|
};
|
|
|
|
|
2012-06-05 22:21:24 +02:00
|
|
|
struct wt_status_state {
|
|
|
|
int merge_in_progress;
|
|
|
|
int am_in_progress;
|
|
|
|
int am_empty_patch;
|
|
|
|
int rebase_in_progress;
|
|
|
|
int rebase_interactive_in_progress;
|
|
|
|
int cherry_pick_in_progress;
|
|
|
|
int bisect_in_progress;
|
2013-04-02 16:20:21 +02:00
|
|
|
int revert_in_progress;
|
2015-03-06 16:04:06 +01:00
|
|
|
int detached_at;
|
2013-03-16 03:12:36 +01:00
|
|
|
char *branch;
|
|
|
|
char *onto;
|
2013-03-13 12:42:52 +01:00
|
|
|
char *detached_from;
|
|
|
|
unsigned char detached_sha1[20];
|
2013-04-02 16:20:22 +02:00
|
|
|
unsigned char revert_head_sha1[20];
|
2013-10-11 17:58:37 +02:00
|
|
|
unsigned char cherry_pick_head_sha1[20];
|
2012-06-05 22:21:24 +02:00
|
|
|
};
|
|
|
|
|
2013-12-05 20:44:14 +01:00
|
|
|
void wt_status_truncate_message_at_cut_line(struct strbuf *);
|
2014-02-17 13:15:31 +01:00
|
|
|
void wt_status_add_cut_line(FILE *fp);
|
2006-09-08 10:05:34 +02:00
|
|
|
void wt_status_prepare(struct wt_status *s);
|
|
|
|
void wt_status_print(struct wt_status *s);
|
2009-08-10 09:36:33 +02:00
|
|
|
void wt_status_collect(struct wt_status *s);
|
2013-03-13 12:42:52 +01:00
|
|
|
void wt_status_get_state(struct wt_status_state *state, int get_detached_from);
|
2016-04-22 15:01:31 +02:00
|
|
|
int wt_status_check_rebase(const struct worktree *wt,
|
|
|
|
struct wt_status_state *state);
|
2016-04-22 15:01:34 +02:00
|
|
|
int wt_status_check_bisect(const struct worktree *wt,
|
|
|
|
struct wt_status_state *state);
|
2006-09-08 10:05:34 +02:00
|
|
|
|
2012-05-07 23:09:04 +02:00
|
|
|
void wt_shortstatus_print(struct wt_status *s);
|
2012-05-07 21:44:44 +02:00
|
|
|
void wt_porcelain_print(struct wt_status *s);
|
2009-12-05 16:04:37 +01:00
|
|
|
|
2013-07-10 02:23:28 +02:00
|
|
|
__attribute__((format (printf, 3, 4)))
|
|
|
|
void status_printf_ln(struct wt_status *s, const char *color, const char *fmt, ...);
|
|
|
|
__attribute__((format (printf, 3, 4)))
|
|
|
|
void status_printf(struct wt_status *s, const char *color, const char *fmt, ...);
|
2011-02-26 06:09:41 +01:00
|
|
|
|
2006-09-08 10:05:34 +02:00
|
|
|
#endif /* STATUS_H */
|