2006-06-13 22:21:53 +02:00
|
|
|
#include "builtin.h"
|
2007-06-25 21:28:01 +02:00
|
|
|
#include "cache.h"
|
2005-05-30 21:51:00 +02:00
|
|
|
|
|
|
|
/*
|
2007-07-11 20:50:34 +02:00
|
|
|
* Returns the length of a line, without trailing spaces.
|
2005-05-30 21:51:00 +02:00
|
|
|
*
|
2007-06-25 21:28:01 +02:00
|
|
|
* If the line ends with newline, it will be removed too.
|
2005-05-30 21:51:00 +02:00
|
|
|
*/
|
2007-07-11 20:50:34 +02:00
|
|
|
static size_t cleanup(char *line, size_t len)
|
2005-05-30 21:51:00 +02:00
|
|
|
{
|
2007-06-25 21:28:01 +02:00
|
|
|
if (len) {
|
|
|
|
if (line[len - 1] == '\n')
|
|
|
|
len--;
|
2005-05-30 21:51:00 +02:00
|
|
|
|
2007-06-25 21:28:01 +02:00
|
|
|
while (len) {
|
|
|
|
unsigned char c = line[len - 1];
|
2005-05-30 21:51:00 +02:00
|
|
|
if (!isspace(c))
|
|
|
|
break;
|
|
|
|
len--;
|
2007-06-25 21:28:01 +02:00
|
|
|
}
|
2005-05-30 21:51:00 +02:00
|
|
|
}
|
2007-06-25 21:28:01 +02:00
|
|
|
return len;
|
2005-05-30 21:51:00 +02:00
|
|
|
}
|
|
|
|
|
2007-06-25 21:28:01 +02:00
|
|
|
/*
|
|
|
|
* Remove empty lines from the beginning and end
|
|
|
|
* and also trailing spaces from every line.
|
|
|
|
*
|
2007-07-11 20:50:34 +02:00
|
|
|
* Note that the buffer will not be NUL-terminated.
|
|
|
|
*
|
2007-06-25 21:28:01 +02:00
|
|
|
* Turn multiple consecutive empty lines between paragraphs
|
|
|
|
* into just one empty line.
|
|
|
|
*
|
|
|
|
* If the input has only empty lines and spaces,
|
|
|
|
* no output will be produced.
|
|
|
|
*
|
2007-07-11 20:50:34 +02:00
|
|
|
* If last line has a newline at the end, it will be removed.
|
|
|
|
*
|
2007-06-25 21:28:01 +02:00
|
|
|
* Enable skip_comments to skip every line starting with "#".
|
|
|
|
*/
|
2007-07-11 20:50:34 +02:00
|
|
|
size_t stripspace(char *buffer, size_t length, int skip_comments)
|
2005-05-30 21:51:00 +02:00
|
|
|
{
|
|
|
|
int empties = -1;
|
2007-07-11 20:50:34 +02:00
|
|
|
size_t i, j, len, newlen;
|
|
|
|
char *eol;
|
2007-06-25 21:28:01 +02:00
|
|
|
|
2007-07-11 20:50:34 +02:00
|
|
|
for (i = j = 0; i < length; i += len, j += newlen) {
|
|
|
|
eol = memchr(buffer + i, '\n', length - i);
|
|
|
|
len = eol ? eol - (buffer + i) + 1 : length - i;
|
2005-05-30 21:51:00 +02:00
|
|
|
|
2007-07-11 20:50:34 +02:00
|
|
|
if (skip_comments && len && buffer[i] == '#') {
|
|
|
|
newlen = 0;
|
2007-06-25 21:28:01 +02:00
|
|
|
continue;
|
2007-07-11 20:50:34 +02:00
|
|
|
}
|
|
|
|
newlen = cleanup(buffer + i, len);
|
2005-05-30 21:51:00 +02:00
|
|
|
|
|
|
|
/* Not just an empty line? */
|
2007-07-11 20:50:34 +02:00
|
|
|
if (newlen) {
|
|
|
|
if (empties != -1)
|
|
|
|
buffer[j++] = '\n';
|
2005-05-30 21:51:00 +02:00
|
|
|
if (empties > 0)
|
2007-07-11 20:50:34 +02:00
|
|
|
buffer[j++] = '\n';
|
2005-05-30 21:51:00 +02:00
|
|
|
empties = 0;
|
2007-07-11 20:50:34 +02:00
|
|
|
memmove(buffer + j, buffer + i, newlen);
|
2005-05-30 21:51:00 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (empties < 0)
|
|
|
|
continue;
|
|
|
|
empties++;
|
|
|
|
}
|
2007-07-11 20:50:34 +02:00
|
|
|
|
|
|
|
return j;
|
2006-06-13 22:21:53 +02:00
|
|
|
}
|
|
|
|
|
2006-07-29 07:44:25 +02:00
|
|
|
int cmd_stripspace(int argc, const char **argv, const char *prefix)
|
2006-06-13 22:21:53 +02:00
|
|
|
{
|
2007-07-11 20:50:34 +02:00
|
|
|
char *buffer;
|
|
|
|
unsigned long size;
|
|
|
|
|
|
|
|
size = 1024;
|
|
|
|
buffer = xmalloc(size);
|
|
|
|
if (read_pipe(0, &buffer, &size))
|
|
|
|
die("could not read the input");
|
|
|
|
|
|
|
|
size = stripspace(buffer, size, 0);
|
|
|
|
write_or_die(1, buffer, size);
|
|
|
|
if (size)
|
|
|
|
putc('\n', stdout);
|
|
|
|
|
|
|
|
free(buffer);
|
2005-05-30 21:51:00 +02:00
|
|
|
return 0;
|
|
|
|
}
|