11 int wt_status_use_color
= 0;
12 static char wt_status_colors
[][COLOR_MAXLEN
] = {
13 "", /* WT_STATUS_HEADER: normal */
14 "\033[32m", /* WT_STATUS_UPDATED: green */
15 "\033[31m", /* WT_STATUS_CHANGED: red */
16 "\033[31m", /* WT_STATUS_UNTRACKED: red */
19 static const char use_add_msg
[] =
20 "use \"git add <file>...\" to update what will be committed";
21 static const char use_add_rm_msg
[] =
22 "use \"git add/rm <file>...\" to update what will be committed";
23 static const char use_add_to_include_msg
[] =
24 "use \"git add <file>...\" to include in what will be committed";
26 static int parse_status_slot(const char *var
, int offset
)
28 if (!strcasecmp(var
+offset
, "header"))
29 return WT_STATUS_HEADER
;
30 if (!strcasecmp(var
+offset
, "updated")
31 || !strcasecmp(var
+offset
, "added"))
32 return WT_STATUS_UPDATED
;
33 if (!strcasecmp(var
+offset
, "changed"))
34 return WT_STATUS_CHANGED
;
35 if (!strcasecmp(var
+offset
, "untracked"))
36 return WT_STATUS_UNTRACKED
;
37 die("bad config variable '%s'", var
);
40 static const char* color(int slot
)
42 return wt_status_use_color
? wt_status_colors
[slot
] : "";
45 void wt_status_prepare(struct wt_status
*s
)
47 unsigned char sha1
[20];
50 memset(s
, 0, sizeof(*s
));
51 head
= resolve_ref("HEAD", sha1
, 0, NULL
);
52 s
->branch
= head
? xstrdup(head
) : NULL
;
53 s
->reference
= "HEAD";
55 s
->index_file
= get_index_file();
58 static void wt_status_print_cached_header(struct wt_status
*s
)
60 const char *c
= color(WT_STATUS_HEADER
);
61 color_fprintf_ln(s
->fp
, c
, "# Changes to be committed:");
63 color_fprintf_ln(s
->fp
, c
, "# (use \"git reset %s <file>...\" to unstage)", s
->reference
);
65 color_fprintf_ln(s
->fp
, c
, "# (use \"git rm --cached <file>...\" to unstage)");
67 color_fprintf_ln(s
->fp
, c
, "#");
70 static void wt_status_print_header(struct wt_status
*s
,
71 const char *main
, const char *sub
)
73 const char *c
= color(WT_STATUS_HEADER
);
74 color_fprintf_ln(s
->fp
, c
, "# %s:", main
);
75 color_fprintf_ln(s
->fp
, c
, "# (%s)", sub
);
76 color_fprintf_ln(s
->fp
, c
, "#");
79 static void wt_status_print_trailer(struct wt_status
*s
)
81 color_fprintf_ln(s
->fp
, color(WT_STATUS_HEADER
), "#");
84 static char *quote_path(const char *in
, int len
,
85 struct strbuf
*out
, const char *prefix
)
88 strbuf_grow(out
, len
);
89 strbuf_setlen(out
, 0);
93 while (prefix
[off
] && off
< len
&& prefix
[off
] == in
[off
])
94 if (prefix
[off
] == '/') {
102 for (; *prefix
; prefix
++)
104 strbuf_addstr(out
, "../");
107 for (; (len
< 0 && *in
) || len
> 0; in
++, len
--) {
112 strbuf_addstr(out
, "\\n");
115 strbuf_addstr(out
, "\\r");
118 strbuf_addch(out
, ch
);
126 static void wt_status_print_filepair(struct wt_status
*s
,
127 int t
, struct diff_filepair
*p
)
129 const char *c
= color(t
);
130 const char *one
, *two
;
131 struct strbuf onebuf
, twobuf
;
133 strbuf_init(&onebuf
, 0);
134 strbuf_init(&twobuf
, 0);
135 one
= quote_path(p
->one
->path
, -1, &onebuf
, s
->prefix
);
136 two
= quote_path(p
->two
->path
, -1, &twobuf
, s
->prefix
);
138 color_fprintf(s
->fp
, color(WT_STATUS_HEADER
), "#\t");
140 case DIFF_STATUS_ADDED
:
141 color_fprintf(s
->fp
, c
, "new file: %s", one
);
143 case DIFF_STATUS_COPIED
:
144 color_fprintf(s
->fp
, c
, "copied: %s -> %s", one
, two
);
146 case DIFF_STATUS_DELETED
:
147 color_fprintf(s
->fp
, c
, "deleted: %s", one
);
149 case DIFF_STATUS_MODIFIED
:
150 color_fprintf(s
->fp
, c
, "modified: %s", one
);
152 case DIFF_STATUS_RENAMED
:
153 color_fprintf(s
->fp
, c
, "renamed: %s -> %s", one
, two
);
155 case DIFF_STATUS_TYPE_CHANGED
:
156 color_fprintf(s
->fp
, c
, "typechange: %s", one
);
158 case DIFF_STATUS_UNKNOWN
:
159 color_fprintf(s
->fp
, c
, "unknown: %s", one
);
161 case DIFF_STATUS_UNMERGED
:
162 color_fprintf(s
->fp
, c
, "unmerged: %s", one
);
165 die("bug: unhandled diff status %c", p
->status
);
167 fprintf(s
->fp
, "\n");
168 strbuf_release(&onebuf
);
169 strbuf_release(&twobuf
);
172 static void wt_status_print_updated_cb(struct diff_queue_struct
*q
,
173 struct diff_options
*options
,
176 struct wt_status
*s
= data
;
177 int shown_header
= 0;
179 for (i
= 0; i
< q
->nr
; i
++) {
180 if (q
->queue
[i
]->status
== 'U')
183 wt_status_print_cached_header(s
);
187 wt_status_print_filepair(s
, WT_STATUS_UPDATED
, q
->queue
[i
]);
190 wt_status_print_trailer(s
);
193 static void wt_status_print_changed_cb(struct diff_queue_struct
*q
,
194 struct diff_options
*options
,
197 struct wt_status
*s
= data
;
200 const char *msg
= use_add_msg
;
201 s
->workdir_dirty
= 1;
202 for (i
= 0; i
< q
->nr
; i
++)
203 if (q
->queue
[i
]->status
== DIFF_STATUS_DELETED
) {
204 msg
= use_add_rm_msg
;
207 wt_status_print_header(s
, "Changed but not updated", msg
);
209 for (i
= 0; i
< q
->nr
; i
++)
210 wt_status_print_filepair(s
, WT_STATUS_CHANGED
, q
->queue
[i
]);
212 wt_status_print_trailer(s
);
215 static void wt_read_cache(struct wt_status
*s
)
218 read_cache_from(s
->index_file
);
221 static void wt_status_print_initial(struct wt_status
*s
)
226 strbuf_init(&buf
, 0);
230 wt_status_print_cached_header(s
);
232 for (i
= 0; i
< active_nr
; i
++) {
233 color_fprintf(s
->fp
, color(WT_STATUS_HEADER
), "#\t");
234 color_fprintf_ln(s
->fp
, color(WT_STATUS_UPDATED
), "new file: %s",
235 quote_path(active_cache
[i
]->name
, -1,
239 wt_status_print_trailer(s
);
240 strbuf_release(&buf
);
243 static void wt_status_print_updated(struct wt_status
*s
)
246 init_revisions(&rev
, NULL
);
247 setup_revisions(0, NULL
, &rev
, s
->reference
);
248 rev
.diffopt
.output_format
|= DIFF_FORMAT_CALLBACK
;
249 rev
.diffopt
.format_callback
= wt_status_print_updated_cb
;
250 rev
.diffopt
.format_callback_data
= s
;
251 rev
.diffopt
.detect_rename
= 1;
252 rev
.diffopt
.rename_limit
= 100;
254 run_diff_index(&rev
, 1);
257 static void wt_status_print_changed(struct wt_status
*s
)
260 init_revisions(&rev
, "");
261 setup_revisions(0, NULL
, &rev
, NULL
);
262 rev
.diffopt
.output_format
|= DIFF_FORMAT_CALLBACK
;
263 rev
.diffopt
.format_callback
= wt_status_print_changed_cb
;
264 rev
.diffopt
.format_callback_data
= s
;
266 run_diff_files(&rev
, 0);
269 static void wt_status_print_untracked(struct wt_status
*s
)
271 struct dir_struct dir
;
273 int shown_header
= 0;
276 strbuf_init(&buf
, 0);
277 memset(&dir
, 0, sizeof(dir
));
280 dir
.show_other_directories
= 1;
281 dir
.hide_empty_directories
= 1;
283 setup_standard_excludes(&dir
);
285 read_directory(&dir
, ".", "", 0, NULL
);
286 for(i
= 0; i
< dir
.nr
; i
++) {
287 /* check for matching entry, which is unmerged; lifted from
288 * builtin-ls-files:show_other_files */
289 struct dir_entry
*ent
= dir
.entries
[i
];
290 int pos
= cache_name_pos(ent
->name
, ent
->len
);
291 struct cache_entry
*ce
;
293 die("bug in wt_status_print_untracked");
295 if (pos
< active_nr
) {
296 ce
= active_cache
[pos
];
297 if (ce_namelen(ce
) == ent
->len
&&
298 !memcmp(ce
->name
, ent
->name
, ent
->len
))
302 s
->workdir_untracked
= 1;
303 wt_status_print_header(s
, "Untracked files",
304 use_add_to_include_msg
);
307 color_fprintf(s
->fp
, color(WT_STATUS_HEADER
), "#\t");
308 color_fprintf_ln(s
->fp
, color(WT_STATUS_UNTRACKED
), "%s",
309 quote_path(ent
->name
, ent
->len
,
312 strbuf_release(&buf
);
315 static void wt_status_print_verbose(struct wt_status
*s
)
322 /* Sigh, the entire diff machinery is hardcoded to output to
323 * stdout. Do the dup-dance...*/
324 saved_stdout
= dup(STDOUT_FILENO
);
325 if (saved_stdout
< 0 ||dup2(fileno(s
->fp
), STDOUT_FILENO
) < 0)
326 die("couldn't redirect stdout\n");
328 init_revisions(&rev
, NULL
);
329 setup_revisions(0, NULL
, &rev
, s
->reference
);
330 rev
.diffopt
.output_format
|= DIFF_FORMAT_PATCH
;
331 rev
.diffopt
.detect_rename
= 1;
333 run_diff_index(&rev
, 1);
337 if (dup2(saved_stdout
, STDOUT_FILENO
) < 0)
338 die("couldn't restore stdout\n");
342 void wt_status_print(struct wt_status
*s
)
344 unsigned char sha1
[20];
345 s
->is_initial
= get_sha1(s
->reference
, sha1
) ? 1 : 0;
348 const char *on_what
= "On branch ";
349 const char *branch_name
= s
->branch
;
350 if (!prefixcmp(branch_name
, "refs/heads/"))
352 else if (!strcmp(branch_name
, "HEAD")) {
354 on_what
= "Not currently on any branch.";
356 color_fprintf_ln(s
->fp
, color(WT_STATUS_HEADER
),
357 "# %s%s", on_what
, branch_name
);
361 color_fprintf_ln(s
->fp
, color(WT_STATUS_HEADER
), "#");
362 color_fprintf_ln(s
->fp
, color(WT_STATUS_HEADER
), "# Initial commit");
363 color_fprintf_ln(s
->fp
, color(WT_STATUS_HEADER
), "#");
364 wt_status_print_initial(s
);
367 wt_status_print_updated(s
);
370 wt_status_print_changed(s
);
371 wt_status_print_untracked(s
);
373 if (s
->verbose
&& !s
->is_initial
)
374 wt_status_print_verbose(s
);
375 if (!s
->commitable
) {
377 fprintf(s
->fp
, "# No changes\n");
378 else if (s
->workdir_dirty
)
379 printf("no changes added to commit (use \"git add\" and/or \"git commit -a\")\n");
380 else if (s
->workdir_untracked
)
381 printf("nothing added to commit but untracked files present (use \"git add\" to track)\n");
382 else if (s
->is_initial
)
383 printf("nothing to commit (create/copy files and use \"git add\" to track)\n");
385 printf("nothing to commit (working directory clean)\n");
389 int git_status_config(const char *k
, const char *v
)
391 if (!strcmp(k
, "status.color") || !strcmp(k
, "color.status")) {
392 wt_status_use_color
= git_config_colorbool(k
, v
);
395 if (!prefixcmp(k
, "status.color.") || !prefixcmp(k
, "color.status.")) {
396 int slot
= parse_status_slot(k
, 13);
397 color_parse(v
, k
, wt_status_colors
[slot
]);
399 return git_default_config(k
, v
);