2006-09-08 04:05:34 -04:00
|
|
|
#ifndef STATUS_H
|
|
|
|
#define STATUS_H
|
|
|
|
|
2007-09-17 20:06:42 -04:00
|
|
|
#include <stdio.h>
|
2009-08-04 23:49:33 -07:00
|
|
|
#include "string-list.h"
|
2009-08-09 23:08:40 -07:00
|
|
|
#include "color.h"
|
2007-09-17 20:06:42 -04:00
|
|
|
|
2006-09-08 04:05:34 -04:00
|
|
|
enum color_wt_status {
|
2009-08-09 23:08:40 -07:00
|
|
|
WT_STATUS_HEADER = 0,
|
2006-09-08 04:05:34 -04:00
|
|
|
WT_STATUS_UPDATED,
|
|
|
|
WT_STATUS_CHANGED,
|
|
|
|
WT_STATUS_UNTRACKED,
|
2008-05-22 08:50:02 -04:00
|
|
|
WT_STATUS_NOBRANCH,
|
2009-08-05 00:04:51 -07:00
|
|
|
WT_STATUS_UNMERGED,
|
2010-05-25 15:45:51 +02:00
|
|
|
WT_STATUS_LOCAL_BRANCH,
|
2010-11-18 01:40:05 +02:00
|
|
|
WT_STATUS_REMOTE_BRANCH,
|
|
|
|
WT_STATUS_ONBRANCH,
|
|
|
|
WT_STATUS_MAXSLOT
|
2006-09-08 04:05:34 -04: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-04 23:49:33 -07: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-04 23:49:33 -07:00
|
|
|
};
|
|
|
|
|
2006-09-08 04:05:34 -04:00
|
|
|
struct wt_status {
|
|
|
|
int is_initial;
|
|
|
|
char *branch;
|
|
|
|
const char *reference;
|
2009-08-07 23:31:57 -07:00
|
|
|
const char **pathspec;
|
2006-09-08 04:05:34 -04:00
|
|
|
int verbose;
|
|
|
|
int amend;
|
2009-12-11 23:53:41 -08:00
|
|
|
int in_merge;
|
2007-12-12 19:09:16 -08:00
|
|
|
int nowarn;
|
2009-08-09 21:59:30 -07:00
|
|
|
int use_color;
|
|
|
|
int relative_paths;
|
|
|
|
int submodule_summary;
|
2010-04-10 00:11:53 -07:00
|
|
|
int show_ignored_files;
|
2009-08-09 21:59:30 -07:00
|
|
|
enum untracked_status_type show_untracked_files;
|
2010-06-25 16:56:47 +02:00
|
|
|
const char *ignore_submodule_arg;
|
2010-11-18 01:40:05 +02:00
|
|
|
char color_palette[WT_STATUS_MAXSLOT][COLOR_MAXLEN];
|
2009-08-09 21:59:30 -07: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-17 20:06:43 -04:00
|
|
|
const char *index_file;
|
2007-09-17 20:06:42 -04:00
|
|
|
FILE *fp;
|
2007-11-11 17:35:41 +00:00
|
|
|
const char *prefix;
|
2009-08-04 23:49:33 -07:00
|
|
|
struct string_list change;
|
2009-08-10 00:36:33 -07:00
|
|
|
struct string_list untracked;
|
2010-04-10 00:11:53 -07:00
|
|
|
struct string_list ignored;
|
2006-09-08 04:05:34 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
void wt_status_prepare(struct wt_status *s);
|
|
|
|
void wt_status_print(struct wt_status *s);
|
2009-08-10 00:36:33 -07:00
|
|
|
void wt_status_collect(struct wt_status *s);
|
2006-09-08 04:05:34 -04: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 00:17:15 -05:00
|
|
|
void wt_porcelain_print(struct wt_status *s, int null_termination);
|
2009-12-05 16:04:37 +01:00
|
|
|
|
2006-09-08 04:05:34 -04:00
|
|
|
#endif /* STATUS_H */
|