shithub: riscv

ref: 9decd2635486688ea4ea26550e3f2d1b842157a9
dir: /sys/src/cmd/uhtml.c/

View raw version
#include <u.h>
#include <libc.h>
#include <ctype.h>

int nbuf;
char buf[64*1024+1];
char *cset = nil;

void
usage(void)
{
	fprint(2, "%s [ -p ] [ -c charset ] [ file ]\n", argv0);
	exits("usage");
}

char*
attr(char *s, char *a)
{
	char *e, q;

	if((s = cistrstr(s, a)) == nil)
		return nil;
	s += strlen(a);
	while(strchr("\r\n\t ", *s))
		s++;
	if(*s++ != '=')
		return nil;
	while(strchr("\r\n\t ", *s))
		s++;
	q = 0;
	if(*s == '"' || *s == '\'')
		q = *s++;
	for(e = s; *e; e++){
		if(*e == q)
			break;
		if(isalnum(*e))
			continue;
		if(*e == '-' || *e == '_')
			continue;
		break;
	}
	if(e - s > 1)
		return smprint("%.*s", (int)(e-s), s);
	return nil;
}

void
main(int argc, char *argv[])
{
	int n, pfd[2], pflag = 0;
	char *arg[4], *s, *e, *p, *g, *a, t;
	Rune r;

	ARGBEGIN {
	case 'c':
		cset = EARGF(usage());
		break;
	case 'p':
		pflag = 1;
		break;
	default:
		usage();
	} ARGEND;

	if(*argv){
		close(0);
		if(open(*argv, OREAD) != 1)
			sysfatal("open: %r");
	}
	nbuf = 0;
	p = buf;
	g = buf;
	while(nbuf < sizeof(buf)-1){
		if((n = read(0, buf + nbuf, sizeof(buf)-1-nbuf)) <= 0)
			break;
		nbuf += n;
		buf[nbuf] = 0;
		if(nbuf == n){
			if(memcmp(p, "\xEF\xBB\xBF", 3)==0){
				p += 3;
				cset = "utf";
				break;
			}
			if(memcmp(p, "\xFE\xFF", 2) == 0){
				p += 2;
				cset = "unicode-be";
				break;
			}
			if(memcmp(p, "\xFF\xFE", 2) == 0){
				p += 2;
				cset = "unicode-le";
				break;
			}
		}
		s = g;
		do {
			if((s = strchr(s, '<')) == nil)
				break;
			g = s;
			if((e = strchr(++s, '>')) == nil)
				e = buf+nbuf;
			t = *e;
			*e = 0;
			if((a = attr(s, "encoding")) || (a = attr(s, "charset"))){
				cset = a;
				*e = t;
				break;
			}
			*e = t;
			s = ++e;
		} while(t);
	}
	nbuf -= p - buf;

	if(cset == nil){
		cset = "utf";
		s = p;
		while(s+UTFmax < p+nbuf){
			s += chartorune(&r, s);
			if(r == Runeerror){
				cset = "latin1";
				break;
			}
		}
	}

	if(pflag){
		print("%s\n", cset);
		exits(0);
	}

	if(nbuf == 0){
		write(1, p, 0);
		exits(0);
	}

	if(pipe(pfd) < 0)
		sysfatal("pipe: %r");

	switch(rfork(RFFDG|RFREND|RFPROC)){
	case -1:
		sysfatal("fork: %r");
	case 0:
		dup(pfd[0], 0);
		close(pfd[0]);
		close(pfd[1]);

		arg[0] = "rc";
		arg[1] = "-c";
		arg[2] = smprint("{tcs -f %s || cat} | tcs -f html", cset);
		arg[3] = nil;
		exec("/bin/rc", arg);
	}

	dup(pfd[1], 1);
	close(pfd[0]);
	close(pfd[1]);

	while(nbuf > 0){
		if(write(1, p, nbuf) != nbuf)
			sysfatal("write: %r");
		p = buf;
		if((nbuf = read(0, p, sizeof(buf))) < 0)
			sysfatal("read: %r");
	}
	close(1);
	waitpid();
	exits(0);
}