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"
|
2007-09-18 02:06:42 +02:00
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
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;
|
2009-08-08 08:31:57 +02:00
|
|
|
const char **pathspec;
|
2006-09-08 10:05:34 +02:00
|
|
|
int verbose;
|
|
|
|
int amend;
|
2009-12-12 08:53:41 +01:00
|
|
|
int in_merge;
|
2007-12-13 04:09:16 +01:00
|
|
|
int nowarn;
|
2009-08-10 06:59:30 +02:00
|
|
|
int use_color;
|
|
|
|
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];
|
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;
|
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);
|
2006-09-08 10:05:34 +02:00
|
|
|
|
2010-05-25 15:45:51 +02:00
|
|
|
void wt_shortstatus_print(struct wt_status *s, int null_termination, int show_branch);
|
2009-12-07 06:17:15 +01:00
|
|
|
void wt_porcelain_print(struct wt_status *s, int null_termination);
|
2009-12-05 16:04:37 +01:00
|
|
|
|
2006-09-08 10:05:34 +02:00
|
|
|
#endif /* STATUS_H */
|