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
)
90 strbuf_grow(out
, len
);
91 strbuf_setlen(out
, 0);
94 while (prefix
[off
] && off
< len
&& prefix
[off
] == in
[off
])
95 if (prefix
[off
] == '/') {
103 for (; *prefix
; prefix
++)
105 strbuf_addstr(out
, "../");
108 for ( ; len
> 0; in
++, len
--) {
113 strbuf_addstr(out
, "\\n");
116 strbuf_addstr(out
, "\\r");
119 strbuf_addch(out
, ch
);
127 static void wt_status_print_filepair(struct wt_status
*s
,
128 int t
, struct diff_filepair
*p
)
130 const char *c
= color(t
);
131 const char *one
, *two
;
132 struct strbuf onebuf
, twobuf
;
134 strbuf_init(&onebuf
, 0);
135 strbuf_init(&twobuf
, 0);
136 one
= quote_path(p
->one
->path
, -1, &onebuf
, s
->prefix
);
137 two
= quote_path(p
->two
->path
, -1, &twobuf
, s
->prefix
);
139 color_fprintf(s
->fp
, color(WT_STATUS_HEADER
), "#\t");
141 case DIFF_STATUS_ADDED
:
142 color_fprintf(s
->fp
, c
, "new file: %s", one
);
144 case DIFF_STATUS_COPIED
:
145 color_fprintf(s
->fp
, c
, "copied: %s -> %s", one
, two
);
147 case DIFF_STATUS_DELETED
:
148 color_fprintf(s
->fp
, c
, "deleted: %s", one
);
150 case DIFF_STATUS_MODIFIED
:
151 color_fprintf(s
->fp
, c
, "modified: %s", one
);
153 case DIFF_STATUS_RENAMED
:
154 color_fprintf(s
->fp
, c
, "renamed: %s -> %s", one
, two
);
156 case DIFF_STATUS_TYPE_CHANGED
:
157 color_fprintf(s
->fp
, c
, "typechange: %s", one
);
159 case DIFF_STATUS_UNKNOWN
:
160 color_fprintf(s
->fp
, c
, "unknown: %s", one
);
162 case DIFF_STATUS_UNMERGED
:
163 color_fprintf(s
->fp
, c
, "unmerged: %s", one
);
166 die("bug: unhandled diff status %c", p
->status
);
168 fprintf(s
->fp
, "\n");
169 strbuf_release(&onebuf
);
170 strbuf_release(&twobuf
);
173 static void wt_status_print_updated_cb(struct diff_queue_struct
*q
,
174 struct diff_options
*options
,
177 struct wt_status
*s
= data
;
178 int shown_header
= 0;
180 for (i
= 0; i
< q
->nr
; i
++) {
181 if (q
->queue
[i
]->status
== 'U')
184 wt_status_print_cached_header(s
);
188 wt_status_print_filepair(s
, WT_STATUS_UPDATED
, q
->queue
[i
]);
191 wt_status_print_trailer(s
);
194 static void wt_status_print_changed_cb(struct diff_queue_struct
*q
,
195 struct diff_options
*options
,
198 struct wt_status
*s
= data
;
201 const char *msg
= use_add_msg
;
202 s
->workdir_dirty
= 1;
203 for (i
= 0; i
< q
->nr
; i
++)
204 if (q
->queue
[i
]->status
== DIFF_STATUS_DELETED
) {
205 msg
= use_add_rm_msg
;
208 wt_status_print_header(s
, "Changed but not updated", msg
);
210 for (i
= 0; i
< q
->nr
; i
++)
211 wt_status_print_filepair(s
, WT_STATUS_CHANGED
, q
->queue
[i
]);
213 wt_status_print_trailer(s
);
216 static void wt_read_cache(struct wt_status
*s
)
219 read_cache_from(s
->index_file
);
222 static void wt_status_print_initial(struct wt_status
*s
)
227 strbuf_init(&buf
, 0);
231 wt_status_print_cached_header(s
);
233 for (i
= 0; i
< active_nr
; i
++) {
234 color_fprintf(s
->fp
, color(WT_STATUS_HEADER
), "#\t");
235 color_fprintf_ln(s
->fp
, color(WT_STATUS_UPDATED
), "new file: %s",
236 quote_path(active_cache
[i
]->name
, -1,
240 wt_status_print_trailer(s
);
241 strbuf_release(&buf
);
244 static void wt_status_print_updated(struct wt_status
*s
)
247 init_revisions(&rev
, NULL
);
248 setup_revisions(0, NULL
, &rev
, s
->reference
);
249 rev
.diffopt
.output_format
|= DIFF_FORMAT_CALLBACK
;
250 rev
.diffopt
.format_callback
= wt_status_print_updated_cb
;
251 rev
.diffopt
.format_callback_data
= s
;
252 rev
.diffopt
.detect_rename
= 1;
253 rev
.diffopt
.rename_limit
= 100;
254 rev
.diffopt
.break_opt
= 0;
256 run_diff_index(&rev
, 1);
259 static void wt_status_print_changed(struct wt_status
*s
)
262 init_revisions(&rev
, "");
263 setup_revisions(0, NULL
, &rev
, NULL
);
264 rev
.diffopt
.output_format
|= DIFF_FORMAT_CALLBACK
;
265 rev
.diffopt
.format_callback
= wt_status_print_changed_cb
;
266 rev
.diffopt
.format_callback_data
= s
;
268 run_diff_files(&rev
, 0);
271 static void wt_status_print_untracked(struct wt_status
*s
)
273 struct dir_struct dir
;
275 int shown_header
= 0;
278 strbuf_init(&buf
, 0);
279 memset(&dir
, 0, sizeof(dir
));
282 dir
.show_other_directories
= 1;
283 dir
.hide_empty_directories
= 1;
285 setup_standard_excludes(&dir
);
287 read_directory(&dir
, ".", "", 0, NULL
);
288 for(i
= 0; i
< dir
.nr
; i
++) {
289 /* check for matching entry, which is unmerged; lifted from
290 * builtin-ls-files:show_other_files */
291 struct dir_entry
*ent
= dir
.entries
[i
];
292 int pos
= cache_name_pos(ent
->name
, ent
->len
);
293 struct cache_entry
*ce
;
295 die("bug in wt_status_print_untracked");
297 if (pos
< active_nr
) {
298 ce
= active_cache
[pos
];
299 if (ce_namelen(ce
) == ent
->len
&&
300 !memcmp(ce
->name
, ent
->name
, ent
->len
))
304 s
->workdir_untracked
= 1;
305 wt_status_print_header(s
, "Untracked files",
306 use_add_to_include_msg
);
309 color_fprintf(s
->fp
, color(WT_STATUS_HEADER
), "#\t");
310 color_fprintf_ln(s
->fp
, color(WT_STATUS_UNTRACKED
), "%s",
311 quote_path(ent
->name
, ent
->len
,
314 strbuf_release(&buf
);
317 static void wt_status_print_verbose(struct wt_status
*s
)
324 /* Sigh, the entire diff machinery is hardcoded to output to
325 * stdout. Do the dup-dance...*/
326 saved_stdout
= dup(STDOUT_FILENO
);
327 if (saved_stdout
< 0 ||dup2(fileno(s
->fp
), STDOUT_FILENO
) < 0)
328 die("couldn't redirect stdout\n");
330 init_revisions(&rev
, NULL
);
331 setup_revisions(0, NULL
, &rev
, s
->reference
);
332 rev
.diffopt
.output_format
|= DIFF_FORMAT_PATCH
;
333 rev
.diffopt
.detect_rename
= 1;
335 run_diff_index(&rev
, 1);
339 if (dup2(saved_stdout
, STDOUT_FILENO
) < 0)
340 die("couldn't restore stdout\n");
344 void wt_status_print(struct wt_status
*s
)
346 unsigned char sha1
[20];
347 s
->is_initial
= get_sha1(s
->reference
, sha1
) ? 1 : 0;
350 const char *on_what
= "On branch ";
351 const char *branch_name
= s
->branch
;
352 if (!prefixcmp(branch_name
, "refs/heads/"))
354 else if (!strcmp(branch_name
, "HEAD")) {
356 on_what
= "Not currently on any branch.";
358 color_fprintf_ln(s
->fp
, color(WT_STATUS_HEADER
),
359 "# %s%s", on_what
, branch_name
);
363 color_fprintf_ln(s
->fp
, color(WT_STATUS_HEADER
), "#");
364 color_fprintf_ln(s
->fp
, color(WT_STATUS_HEADER
), "# Initial commit");
365 color_fprintf_ln(s
->fp
, color(WT_STATUS_HEADER
), "#");
366 wt_status_print_initial(s
);
369 wt_status_print_updated(s
);
372 wt_status_print_changed(s
);
373 wt_status_print_untracked(s
);
375 if (s
->verbose
&& !s
->is_initial
)
376 wt_status_print_verbose(s
);
377 if (!s
->commitable
) {
379 fprintf(s
->fp
, "# No changes\n");
380 else if (s
->workdir_dirty
)
381 printf("no changes added to commit (use \"git add\" and/or \"git commit -a\")\n");
382 else if (s
->workdir_untracked
)
383 printf("nothing added to commit but untracked files present (use \"git add\" to track)\n");
384 else if (s
->is_initial
)
385 printf("nothing to commit (create/copy files and use \"git add\" to track)\n");
387 printf("nothing to commit (working directory clean)\n");
391 int git_status_config(const char *k
, const char *v
)
393 if (!strcmp(k
, "status.color") || !strcmp(k
, "color.status")) {
394 wt_status_use_color
= git_config_colorbool(k
, v
);
397 if (!prefixcmp(k
, "status.color.") || !prefixcmp(k
, "color.status.")) {
398 int slot
= parse_status_slot(k
, 13);
399 color_parse(v
, k
, wt_status_colors
[slot
]);
401 return git_default_config(k
, v
);