shithub: pdffs

ref: 1e0a35297dac2f17ea7fb0a59c7051276435b6f4
dir: pdffs/main.c

View raw version
#include <u.h>
#include <libc.h>
#include <thread.h>
#include <bio.h>
#include <flate.h>
#include "pdf.h"

int mainstacksize = 32768;

static void
usage(void)
{
	fprint(2, "usage: %s FILE\n", argv0);
	threadexitsall("usage");
}

void
threadmain(int argc, char **argv)
{
	int fd;
	Pdf *pdf;
	Object *v;

	quotefmtinstall();
	inflateinit();

	ARGBEGIN{
	default:
		usage();
	}ARGEND

#ifdef TEST
#define T(x) \
	void x(void); \
	x();

	if(argc != 1){
		T(test_pdfstring);
		T(test_pdfname);
		threadexitsall(nil);
	}
#endif

	if(argc != 1)
		usage();
	if((fd = open(argv[0], OREAD)) < 0)
		sysfatal("%r");
	if((pdf = pdfopen(fd)) == nil)
		sysfatal("%r");
	if((v = dictget(pdf->info, "Creator")) != nil)
		fprint(2, "creator: %s\n", v->str);
	if((v = dictget(pdf->info, "Producer")) != nil)
		fprint(2, "producer: %s\n", v->str);
	pdfclose(pdf);

	threadexitsall(nil);
}