#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include "utils.h"
#include "mode.h"
#include "place.h"
#include "output.h"
static int outputfd = -1;
static bool incomment = false;
static char *linebuf;
static size_t linebufpos, linebufmax;
static struct place linebufplace;
static
void
output_open(void)
{
if (mode.output_file == NULL) {
outputfd = STDOUT_FILENO;
} else {
outputfd = open(mode.output_file, O_WRONLY|O_CREAT|O_TRUNC,
0664);
if (outputfd < 0) {
complain(NULL, "%s: %s",
mode.output_file, strerror(errno));
die();
}
}
}
static
void
dowrite(const char *buf, size_t len)
{
size_t done;
ssize_t result;
static unsigned write_errors = 0;
if (!mode.do_output) {
return;
}
if (outputfd < 0) {
output_open();
}
done = 0;
while (done < len) {
result = write(outputfd, buf+done, len-done);
if (result == -1) {
complain(NULL, "%s: write: %s",
mode.output_file, strerror(errno));
complain_failed();
write_errors++;
if (write_errors > 5) {
complain(NULL, "%s: giving up",
mode.output_file);
die();
}
sleep(1);
}
done += (size_t)result;
}
}
static
void
filter_output(const char *buf, size_t len)
{
size_t pos, start;
bool inesc = false;
bool inquote = false;
char quote = '\0';
start = 0;
for (pos = 0; pos < len - 1; pos++) {
if (!inquote && buf[pos] == '/' && buf[pos+1] == '*') {
if (!incomment) {
if (pos > start) {
dowrite(buf + start, pos - start);
}
start = pos;
pos += 2;
incomment = true;
pos--;
continue;
}
} else if (buf[pos] == '*' && buf[pos+1] == '/') {
if (incomment) {
pos += 2;
if (mode.output_retain_comments) {
dowrite(buf + start, pos - start);
}
start = pos;
incomment = false;
pos--;
continue;
}
}
if (incomment) {
} else if (inesc) {
inesc = false;
} else if (buf[pos] == '\\') {
inesc = true;
} else if (!inquote && (buf[pos] == '"' || buf[pos] == '\'')) {
inquote = true;
quote = buf[pos];
} else if (inquote && buf[pos] == quote) {
inquote = false;
}
}
pos++;
if (pos > start) {
if (!incomment || mode.output_retain_comments) {
dowrite(buf + start, pos - start);
}
}
}
void
output(const struct place *p, const char *buf, size_t len)
{
size_t oldmax;
if (linebufpos + len > linebufmax) {
oldmax = linebufmax;
if (linebufmax == 0) {
linebufmax = 64;
}
while (linebufpos + len > linebufmax) {
linebufmax *= 2;
}
linebuf = dorealloc(linebuf, oldmax, linebufmax);
}
if (linebufpos == 0) {
if (!place_samefile(&linebufplace, p)) {
if (mode.output_cheaplinenumbers) {
char str[256];
snprintf(str, sizeof(str), "# %u \"%s\"\n",
p->line, place_getname(p));
dowrite(str, strlen(str));
}
}
linebufplace = *p;
}
memcpy(linebuf + linebufpos, buf, len);
linebufpos += len;
if (len == 1 && buf[0] == '\n') {
filter_output(linebuf, linebufpos);
linebufpos = 0;
}
}
void
output_eof(void)
{
if (mode.output_file != NULL && outputfd >= 0) {
close(outputfd);
}
outputfd = -1;
}