2011-05-06 17:29:41 +00:00
|
|
|
#include "html.h"
|
2011-05-05 14:47:37 +00:00
|
|
|
|
2014-03-23 19:14:19 +00:00
|
|
|
#include "common.h"
|
2014-10-19 18:09:19 +00:00
|
|
|
/*#include <time.h>*/
|
2011-05-05 14:47:37 +00:00
|
|
|
|
2014-03-23 19:14:19 +00:00
|
|
|
#define DEF_IUNIT 1024
|
|
|
|
#define DEF_OUNIT 64
|
|
|
|
#define DEF_MAX_NESTING 16
|
|
|
|
|
|
|
|
|
|
|
|
/* PRINT HELP */
|
|
|
|
|
|
|
|
void
|
|
|
|
print_help(const char *basename) {
|
|
|
|
/* usage */
|
|
|
|
printf("Usage: %s [OPTION]... [FILE]\n\n", basename);
|
|
|
|
|
|
|
|
/* description */
|
|
|
|
printf("Apply SmartyPants smart punctuation to the HTML in FILE (or standard input), and output the resulting HTML to standard output.\n\n");
|
|
|
|
|
|
|
|
/* main options */
|
|
|
|
printf("Main options:\n");
|
|
|
|
print_option('T', "time", "Show time spent in SmartyPants processing.");
|
|
|
|
print_option('i', "input-unit=N", "Reading block size. Default is " str(DEF_IUNIT) ".");
|
|
|
|
print_option('o', "output-unit=N", "Writing block size. Default is " str(DEF_OUNIT) ".");
|
|
|
|
print_option('h', "help", "Print this help text.");
|
|
|
|
print_option('v', "version", "Print Hoedown version.");
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
/* ending */
|
|
|
|
printf("Options are processed in order, so in case of contradictory options the last specified stands.\n\n");
|
|
|
|
|
|
|
|
printf("When FILE is '-', read standard input. If no FILE was given, read standard input. Use '--' to signal end of option parsing. "
|
2014-09-16 20:49:41 +00:00
|
|
|
"Exit status is 0 if no errors occurred, 1 with option parsing errors, 4 with memory allocation errors or 5 with I/O errors.\n\n");
|
2014-03-23 19:14:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* MAIN LOGIC */
|
2011-05-05 14:47:37 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
2014-03-23 19:14:19 +00:00
|
|
|
int show_time = 0;
|
2014-10-19 18:09:19 +00:00
|
|
|
/*struct timespec start, end;*/
|
2014-03-23 19:14:19 +00:00
|
|
|
|
|
|
|
/* buffers */
|
2013-10-01 03:02:48 +00:00
|
|
|
hoedown_buffer *ib, *ob;
|
2014-03-23 19:14:19 +00:00
|
|
|
size_t iunit = DEF_IUNIT, ounit = DEF_OUNIT;
|
|
|
|
|
|
|
|
/* files */
|
|
|
|
FILE *in = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
/* option parsing */
|
|
|
|
int just_args = 0;
|
|
|
|
int i, j;
|
|
|
|
for (i = 1; i < argc; i++) {
|
|
|
|
char *arg = argv[i];
|
|
|
|
if (!arg[0]) continue;
|
|
|
|
|
|
|
|
if (just_args || arg[0] != '-') {
|
|
|
|
/* regular argument */
|
|
|
|
in = fopen(arg, "r");
|
|
|
|
if (!in) {
|
|
|
|
fprintf(stderr, "Unable to open input file \"%s\": %s\n", arg, strerror(errno));
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!arg[1]) {
|
|
|
|
/* arg is "-" */
|
|
|
|
in = stdin;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (arg[1] != '-') {
|
|
|
|
/* parse short options */
|
|
|
|
char opt;
|
|
|
|
const char *val;
|
|
|
|
for (j = 1; (opt = arg[j]); j++) {
|
2014-10-19 18:09:19 +00:00
|
|
|
long int num;
|
|
|
|
int isNum;
|
2014-03-23 19:14:19 +00:00
|
|
|
if (opt == 'h') {
|
|
|
|
print_help(argv[0]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opt == 'v') {
|
|
|
|
print_version();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opt == 'T') {
|
|
|
|
show_time = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* options requiring value */
|
|
|
|
if (arg[++j]) val = arg+j;
|
|
|
|
else if (argv[++i]) val = argv[i];
|
|
|
|
else {
|
|
|
|
fprintf(stderr, "Wrong option '-%c' found.\n", opt);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2014-10-19 18:09:19 +00:00
|
|
|
isNum = parseint(val, &num);
|
2014-03-23 19:14:19 +00:00
|
|
|
|
|
|
|
if (opt == 'i' && isNum) {
|
|
|
|
iunit = num;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opt == 'o' && isNum) {
|
|
|
|
ounit = num;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "Wrong option '-%c' found.\n", opt);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!arg[2]) {
|
|
|
|
/* arg is "--" */
|
|
|
|
just_args = 1;
|
|
|
|
continue;
|
|
|
|
}
|
2011-05-05 14:47:37 +00:00
|
|
|
|
2014-03-23 19:14:19 +00:00
|
|
|
/* parse long option */
|
|
|
|
char opt [100];
|
|
|
|
strncpy(opt, arg+2, 100);
|
|
|
|
opt[99] = 0;
|
|
|
|
|
|
|
|
char *val = strchr(opt, '=');
|
|
|
|
|
|
|
|
long int num = 0;
|
|
|
|
int isNum = 0;
|
|
|
|
|
|
|
|
if (val) {
|
|
|
|
*val = 0;
|
|
|
|
val++;
|
|
|
|
|
|
|
|
if (*val)
|
|
|
|
isNum = parseint(val, &num);
|
|
|
|
}
|
|
|
|
|
|
|
|
int opt_parsed = 0;
|
|
|
|
|
|
|
|
if (strcmp(opt, "help")==0) {
|
|
|
|
print_help(argv[0]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(opt, "version")==0) {
|
|
|
|
print_version();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(opt, "input-unit")==0 && isNum) {
|
|
|
|
opt_parsed = 1;
|
|
|
|
iunit = num;
|
|
|
|
}
|
|
|
|
if (strcmp(opt, "output-unit")==0 && isNum) {
|
|
|
|
opt_parsed = 1;
|
|
|
|
ounit = num;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strcmp(opt, "time")==0) {
|
|
|
|
opt_parsed = 1;
|
|
|
|
show_time = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!opt_parsed) {
|
|
|
|
fprintf(stderr, "Wrong option '%s' found.\n", arg);
|
2011-05-05 14:47:37 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-23 19:14:19 +00:00
|
|
|
if (!in)
|
|
|
|
in = stdin;
|
|
|
|
|
|
|
|
|
2011-05-05 14:47:37 +00:00
|
|
|
/* reading everything */
|
2014-03-23 19:14:19 +00:00
|
|
|
ib = hoedown_buffer_new(iunit);
|
2014-02-03 18:25:59 +00:00
|
|
|
|
|
|
|
while (!feof(in)) {
|
|
|
|
if (ferror(in)) {
|
2014-03-23 19:14:19 +00:00
|
|
|
fprintf(stderr, "I/O errors found while reading input.\n");
|
|
|
|
return 5;
|
2014-02-03 18:25:59 +00:00
|
|
|
}
|
2014-09-02 17:21:58 +00:00
|
|
|
hoedown_buffer_grow(ib, ib->size + iunit);
|
2014-03-23 19:14:19 +00:00
|
|
|
ib->size += fread(ib->data + ib->size, 1, iunit, in);
|
2011-05-05 14:47:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (in != stdin)
|
|
|
|
fclose(in);
|
|
|
|
|
2014-03-23 19:14:19 +00:00
|
|
|
|
|
|
|
/* performing SmartyPants processing */
|
|
|
|
ob = hoedown_buffer_new(ounit);
|
2011-05-05 14:47:37 +00:00
|
|
|
|
2014-10-19 18:09:19 +00:00
|
|
|
/*clock_gettime(CLOCK_MONOTONIC, &start);*/
|
2013-09-20 06:09:52 +00:00
|
|
|
hoedown_html_smartypants(ob, ib->data, ib->size);
|
2014-10-19 18:09:19 +00:00
|
|
|
/*clock_gettime(CLOCK_MONOTONIC, &end);*/
|
2014-03-23 19:14:19 +00:00
|
|
|
|
2011-05-05 14:47:37 +00:00
|
|
|
|
|
|
|
/* writing the result to stdout */
|
2011-11-18 03:31:29 +00:00
|
|
|
(void)fwrite(ob->data, 1, ob->size, stdout);
|
2011-05-05 14:47:37 +00:00
|
|
|
|
2014-03-23 19:14:19 +00:00
|
|
|
|
|
|
|
/* showing rendering time */
|
|
|
|
if (show_time) {
|
2014-10-19 18:09:19 +00:00
|
|
|
/*TODO: enable this
|
|
|
|
long long elapsed = (end.tv_sec - start.tv_sec)*1e9 + (end.tv_nsec - start.tv_nsec);
|
|
|
|
if (elapsed < 1e9)
|
|
|
|
fprintf(stderr, "Time spent on rendering: %.2f ms.\n", ((double)elapsed)/1e6);
|
|
|
|
else
|
|
|
|
fprintf(stderr, "Time spent on rendering: %.3f s.\n", ((double)elapsed)/1e9);
|
|
|
|
*/
|
2014-03-23 19:14:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-05-05 14:47:37 +00:00
|
|
|
/* cleanup */
|
2013-09-24 00:35:54 +00:00
|
|
|
hoedown_buffer_free(ib);
|
|
|
|
hoedown_buffer_free(ob);
|
2011-05-05 14:47:37 +00:00
|
|
|
|
2014-02-03 18:29:37 +00:00
|
|
|
if (ferror(stdout)) {
|
|
|
|
fprintf(stderr, "I/O errors found while writing output.\n");
|
2014-03-23 19:14:19 +00:00
|
|
|
return 5;
|
2014-02-03 18:29:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2011-05-05 14:47:37 +00:00
|
|
|
}
|