2006-06-14 04:21:53 +08:00
|
|
|
#include "builtin.h"
|
2007-06-26 03:28:01 +08:00
|
|
|
#include "cache.h"
|
2015-10-16 23:16:42 +08:00
|
|
|
#include "strbuf.h"
|
2006-06-14 04:21:53 +08:00
|
|
|
|
2013-01-17 03:18:48 +08:00
|
|
|
static void comment_lines(struct strbuf *buf)
|
|
|
|
{
|
|
|
|
char *msg;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
msg = strbuf_detach(buf, &len);
|
|
|
|
strbuf_add_commented_lines(buf, msg, len);
|
|
|
|
free(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *usage_msg = "\n"
|
|
|
|
" git stripspace [-s | --strip-comments] < input\n"
|
|
|
|
" git stripspace [-c | --comment-lines] < input";
|
|
|
|
|
2006-07-29 13:44:25 +08:00
|
|
|
int cmd_stripspace(int argc, const char **argv, const char *prefix)
|
2006-06-14 04:21:53 +08:00
|
|
|
{
|
2008-10-10 03:12:12 +08:00
|
|
|
struct strbuf buf = STRBUF_INIT;
|
2007-07-23 19:58:27 +08:00
|
|
|
int strip_comments = 0;
|
2013-01-17 03:18:48 +08:00
|
|
|
enum { INVAL = 0, STRIP_SPACE = 1, COMMENT_LINES = 2 } mode = STRIP_SPACE;
|
|
|
|
|
|
|
|
if (argc == 2) {
|
|
|
|
if (!strcmp(argv[1], "-s") ||
|
2013-09-07 01:43:04 +08:00
|
|
|
!strcmp(argv[1], "--strip-comments")) {
|
|
|
|
strip_comments = 1;
|
2013-01-17 03:18:48 +08:00
|
|
|
} else if (!strcmp(argv[1], "-c") ||
|
2013-09-07 01:43:04 +08:00
|
|
|
!strcmp(argv[1], "--comment-lines")) {
|
|
|
|
mode = COMMENT_LINES;
|
2013-01-17 03:18:48 +08:00
|
|
|
} else {
|
|
|
|
mode = INVAL;
|
|
|
|
}
|
|
|
|
} else if (argc > 1) {
|
|
|
|
mode = INVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode == INVAL)
|
|
|
|
usage(usage_msg);
|
2007-07-23 19:58:27 +08:00
|
|
|
|
2013-01-17 03:18:48 +08:00
|
|
|
if (strip_comments || mode == COMMENT_LINES)
|
|
|
|
git_config(git_default_config, NULL);
|
2007-07-12 02:50:34 +08:00
|
|
|
|
2007-09-10 18:35:09 +08:00
|
|
|
if (strbuf_read(&buf, 0, 1024) < 0)
|
2009-06-27 23:58:47 +08:00
|
|
|
die_errno("could not read the input");
|
2007-07-12 02:50:34 +08:00
|
|
|
|
2013-01-17 03:18:48 +08:00
|
|
|
if (mode == STRIP_SPACE)
|
2015-10-16 23:16:42 +08:00
|
|
|
strbuf_stripspace(&buf, strip_comments);
|
2013-01-17 03:18:48 +08:00
|
|
|
else
|
|
|
|
comment_lines(&buf);
|
2007-07-12 02:50:34 +08:00
|
|
|
|
2007-09-10 18:35:09 +08:00
|
|
|
write_or_die(1, buf.buf, buf.len);
|
|
|
|
strbuf_release(&buf);
|
2005-05-31 03:51:00 +08:00
|
|
|
return 0;
|
|
|
|
}
|