summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--dummy.c4
-rw-r--r--html4_strict.c126
-rw-r--r--libmdocml.c3
-rw-r--r--private.h8
4 files changed, 92 insertions, 49 deletions
diff --git a/dummy.c b/dummy.c
index 99135bb4..67e4d85d 100644
--- a/dummy.c
+++ b/dummy.c
@@ -1,4 +1,4 @@
-/* $Id: dummy.c,v 1.1 2008/11/23 16:53:18 kristaps Exp $ */
+/* $Id: dummy.c,v 1.2 2008/11/24 08:50:33 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -26,7 +26,7 @@
int
md_line_dummy(const struct md_args *args,
struct md_mbuf *out, const struct md_rbuf *in,
- const char *buf, size_t sz, void *data)
+ char *buf, size_t sz, void *data)
{
assert(buf);
diff --git a/html4_strict.c b/html4_strict.c
index d170855b..8705f62d 100644
--- a/html4_strict.c
+++ b/html4_strict.c
@@ -1,4 +1,4 @@
-/* $Id: html4_strict.c,v 1.5 2008/11/23 23:35:25 kristaps Exp $ */
+/* $Id: html4_strict.c,v 1.6 2008/11/24 08:50:33 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -27,6 +27,8 @@
#include "libmdocml.h"
#include "private.h"
+#define ROFF_MAXARG 10
+
enum roffd {
ROFF_ENTER = 0,
ROFF_EXIT
@@ -41,8 +43,8 @@ enum rofftype {
#define ROFFCALL_ARGS \
const struct md_args *arg, struct md_mbuf *out, \
- const struct md_rbuf *in, const char *buf, size_t sz, \
- size_t pos, enum roffd type, struct rofftree *tree
+ const struct md_rbuf *in, const char *argv[], \
+ enum roffd type, struct rofftree *tree
struct rofftree;
@@ -55,6 +57,7 @@ struct rofftok {
#define ROFF_NESTED (1 << 0)
#define ROFF_PARSED (1 << 1)
#define ROFF_CALLABLE (1 << 2)
+#define ROFF_QUOTES (1 << 3)
};
struct roffnode {
@@ -84,7 +87,7 @@ struct rofftree {
#define ROFF_Sh 4
#define ROFF_An 5
#define ROFF_Li 6
-#define ROFF_Max 7
+#define ROFF_MAX 7
static int roff_Dd(ROFFCALL_ARGS);
static int roff_Dt(ROFFCALL_ARGS);
@@ -98,11 +101,11 @@ static struct roffnode *roffnode_new(int, size_t,
static void roffnode_free(int, struct rofftree *);
static int rofffind(const char *);
+static int roffargs(int, char *, char **);
static int roffparse(const struct md_args *,
struct md_mbuf *,
const struct md_rbuf *,
- const char *, size_t,
- struct rofftree *);
+ char *, size_t, struct rofftree *);
static int textparse(struct md_mbuf *,
const struct md_rbuf *,
const char *, size_t,
@@ -112,7 +115,7 @@ static void dbg_enter(const struct md_args *, int);
static void dbg_leave(const struct md_args *, int);
-static const struct rofftok tokens[ROFF_Max] =
+static const struct rofftok tokens[ROFF_MAX] =
{
{ ROFF___, "\\\"", NULL, ROFF_COMMENT, 0 },
{ ROFF_Dd, "Dd", roff_Dd, ROFF_TITLE, 0 },
@@ -140,7 +143,7 @@ md_exit_html4_strict(const struct md_args *args, struct md_mbuf *out,
/* LINTED */
while (tree->last)
if ( ! (*tokens[tree->last->tok].cb)(args, out, in,
- NULL, 0, 0, ROFF_EXIT, tree))
+ NULL, ROFF_EXIT, tree))
out = NULL;
if (out && (ROFF_PRELUDE & tree->state)) {
@@ -181,7 +184,7 @@ md_init_html4_strict(const struct md_args *args, struct md_mbuf *out,
int
md_line_html4_strict(const struct md_args *args, struct md_mbuf *out,
- const struct md_rbuf *in, const char *buf,
+ const struct md_rbuf *in, char *buf,
size_t sz, void *data)
{
struct rofftree *tree;
@@ -231,20 +234,46 @@ textparse(struct md_mbuf *out, const struct md_rbuf *in,
static int
+roffargs(int tok, char *buf, char **argv)
+{
+ int i;
+
+ (void)tok;/* FIXME: quotable strings? */
+
+ assert(tok >= 0 && tok < ROFF_MAX);
+ assert('.' == *buf);
+
+ /* LINTED */
+ for (i = 0; *buf && i < ROFF_MAXARG; i++) {
+ argv[i] = buf++;
+ while (*buf && ! isspace(*buf))
+ buf++;
+ if (NULL == *buf) {
+ continue;
+ }
+ *buf++ = 0;
+ while (*buf && isspace(*buf))
+ buf++;
+ }
+
+ assert(i > 0);
+ if (i < ROFF_MAXARG)
+ argv[i] = NULL;
+
+ return(ROFF_MAXARG > i);
+}
+
+
+static int
roffparse(const struct md_args *args, struct md_mbuf *out,
- const struct md_rbuf *in, const char *buf,
- size_t sz, struct rofftree *tree)
+ const struct md_rbuf *in, char *buf, size_t sz,
+ struct rofftree *tree)
{
- int tokid, t;
- size_t pos;
+ int tok, t;
struct roffnode *node;
+ char *argv[ROFF_MAXARG];
- assert(args);
- assert(out);
- assert(in);
- assert(buf);
assert(sz > 0);
- assert(tree);
/*
* Extract the token identifier from the buffer. If there's no
@@ -257,16 +286,24 @@ roffparse(const struct md_args *args, struct md_mbuf *out,
warnx("%s: malformed line (line %zu)",
in->name, in->line);
return(0);
- } else if (ROFF_Max == (tokid = rofffind(buf + 1))) {
+ } else if (ROFF_MAX == (tok = rofffind(buf + 1))) {
warnx("%s: unknown line token `%c%c' (line %zu)",
in->name, *(buf + 1),
*(buf + 2), in->line);
return(0);
- }
+ } else if (ROFF_COMMENT == tokens[tok].type)
+ /* Ignore comment tokens. */
+ return(1);
+
+ if ( ! roffargs(tok, buf, argv)) {
+ warnx("%s: too many arguments to `%s' (line %zu)",
+ in->name, tokens[tok].name, in->line);
+ return(0);
+ }
/* Domain cross-contamination (and sanity) checks. */
- switch (tokens[tokid].type) {
+ switch (tokens[tok].type) {
case (ROFF_TITLE):
if (ROFF_PRELUDE & tree->state) {
assert( ! (ROFF_BODY & tree->state));
@@ -274,7 +311,7 @@ roffparse(const struct md_args *args, struct md_mbuf *out,
}
assert(ROFF_BODY & tree->state);
warnx("%s: prelude token `%s' in body (line %zu)",
- in->name, tokens[tokid].name, in->line);
+ in->name, tokens[tok].name, in->line);
return(0);
case (ROFF_LAYOUT):
/* FALLTHROUGH */
@@ -285,7 +322,7 @@ roffparse(const struct md_args *args, struct md_mbuf *out,
}
assert(ROFF_PRELUDE & tree->state);
warnx("%s: body token `%s' in prelude (line %zu)",
- in->name, tokens[tokid].name, in->line);
+ in->name, tokens[tok].name, in->line);
return(0);
case (ROFF_COMMENT):
return(1);
@@ -297,10 +334,10 @@ roffparse(const struct md_args *args, struct md_mbuf *out,
* Text-domain checks.
*/
- if (ROFF_TEXT == tokens[tokid].type &&
- ! (ROFF_PARSED & tokens[tokid].flags)) {
+ if (ROFF_TEXT == tokens[tok].type &&
+ ! (ROFF_PARSED & tokens[tok].flags)) {
warnx("%s: text token `%s' not callable (line %zu)",
- in->name, tokens[tokid].name, in->line);
+ in->name, tokens[tok].name, in->line);
return(0);
}
@@ -315,12 +352,11 @@ roffparse(const struct md_args *args, struct md_mbuf *out,
*/
node = NULL;
- pos = 3;
- if (ROFF_LAYOUT == tokens[tokid].type &&
- ! (ROFF_NESTED & tokens[tokid].flags)) {
+ if (ROFF_LAYOUT == tokens[tok].type &&
+ ! (ROFF_NESTED & tokens[tok].flags)) {
for (node = tree->last; node; node = node->parent) {
- if (node->tok == tokid)
+ if (node->tok == tok)
break;
/* Don't break nested scope. */
@@ -329,7 +365,7 @@ roffparse(const struct md_args *args, struct md_mbuf *out,
continue;
warnx("%s: scope of %s (line %zu) broken by "
"%s (line %zu)", in->name,
- tokens[tokid].name,
+ tokens[tok].name,
node->line,
tokens[node->tok].name,
in->line);
@@ -338,9 +374,9 @@ roffparse(const struct md_args *args, struct md_mbuf *out,
}
if (node) {
- assert(ROFF_LAYOUT == tokens[tokid].type);
- assert( ! (ROFF_NESTED & tokens[tokid].flags));
- assert(node->tok == tokid);
+ assert(ROFF_LAYOUT == tokens[tok].type);
+ assert( ! (ROFF_NESTED & tokens[tok].flags));
+ assert(node->tok == tok);
/* Clear up to last scoped token. */
@@ -349,15 +385,15 @@ roffparse(const struct md_args *args, struct md_mbuf *out,
t = tree->last->tok;
if ( ! (*tokens[tree->last->tok].cb)
(args, out, in, NULL,
- 0, 0, ROFF_EXIT, tree))
+ ROFF_EXIT, tree))
return(0);
- } while (t != tokid);
+ } while (t != tok);
}
/* Proceed with actual token processing. */
- return((*tokens[tokid].cb)(args, out, in, buf, sz,
- pos, ROFF_ENTER, tree));
+ return((*tokens[tok].cb)(args, out, in, (const char **)argv,
+ ROFF_ENTER, tree));
}
@@ -370,12 +406,12 @@ rofffind(const char *name)
/* FIXME: use a table, this is slow but ok for now. */
/* LINTED */
- for (i = 0; i < ROFF_Max; i++)
+ for (i = 0; i < ROFF_MAX; i++)
/* LINTED */
if (0 == strncmp(name, tokens[i].name, 2))
return((int)i);
- return(ROFF_Max);
+ return(ROFF_MAX);
}
@@ -423,7 +459,7 @@ dbg_enter(const struct md_args *args, int tokid)
assert(args);
if ( ! (args->dbg & MD_DBG_TREE))
return;
- assert(tokid >= 0 && tokid <= ROFF_Max);
+ assert(tokid >= 0 && tokid <= ROFF_MAX);
buf[0] = 0;
@@ -462,12 +498,13 @@ dbg_leave(const struct md_args *args, int tokid)
if (ROFF_LAYOUT != tokens[tokid].type)
return;
- assert(tokid >= 0 && tokid <= ROFF_Max);
+ assert(tokid >= 0 && tokid <= ROFF_MAX);
assert(dbg_lvl > 0);
dbg_lvl--;
}
+/* ARGSUSED */
static int
roff_Dd(ROFFCALL_ARGS)
{
@@ -491,6 +528,7 @@ roff_Dd(ROFFCALL_ARGS)
}
+/* ARGSUSED */
static int
roff_Dt(ROFFCALL_ARGS)
{
@@ -514,6 +552,7 @@ roff_Dt(ROFFCALL_ARGS)
}
+/* ARGSUSED */
static int
roff_Os(ROFFCALL_ARGS)
{
@@ -546,6 +585,7 @@ roff_Os(ROFFCALL_ARGS)
}
+/* ARGSUSED */
static int
roff_Sh(ROFFCALL_ARGS)
{
@@ -567,6 +607,7 @@ roff_Sh(ROFFCALL_ARGS)
}
+/* ARGSUSED */
static int
roff_Li(ROFFCALL_ARGS)
{
@@ -598,6 +639,7 @@ parse_args(void)
#endif
+/* ARGSUSED */
static int
roff_An(ROFFCALL_ARGS)
{
diff --git a/libmdocml.c b/libmdocml.c
index 4449ceb8..02c85ace 100644
--- a/libmdocml.c
+++ b/libmdocml.c
@@ -1,4 +1,4 @@
-/* $Id: libmdocml.c,v 1.7 2008/11/23 23:12:47 kristaps Exp $ */
+/* $Id: libmdocml.c,v 1.8 2008/11/24 08:50:33 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -199,6 +199,7 @@ again:
return(md_run_leave(args, mbuf, rbuf, -1, p));
}
+ line[pos] = 0;
if ( ! (*fp)(args, mbuf, rbuf, line, pos, p))
return(md_run_leave(args, mbuf, rbuf, -1, p));
rbuf->line++;
diff --git a/private.h b/private.h
index db38ef8a..42c74aeb 100644
--- a/private.h
+++ b/private.h
@@ -1,4 +1,4 @@
-/* $Id: private.h,v 1.2 2008/11/23 22:30:53 kristaps Exp $ */
+/* $Id: private.h,v 1.3 2008/11/24 08:50:33 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -43,11 +43,11 @@ typedef int (*md_exit)(const struct md_args *, struct md_mbuf *,
const struct md_rbuf *, int, void *);
typedef int (*md_line)(const struct md_args *,
struct md_mbuf *, const struct md_rbuf *,
- const char *, size_t, void *);
+ char *, size_t, void *);
int md_line_html4_strict(const struct md_args *,
struct md_mbuf *, const struct md_rbuf *,
- const char *, size_t, void *);
+ char *, size_t, void *);
int md_init_html4_strict(const struct md_args *,
struct md_mbuf *, const struct md_rbuf *,
void **);
@@ -57,7 +57,7 @@ int md_exit_html4_strict(const struct md_args *,
int md_line_dummy(const struct md_args *,
struct md_mbuf *, const struct md_rbuf *,
- const char *, size_t, void *);
+ char *, size_t, void *);
int md_buf_puts(struct md_mbuf *, const char *, size_t);
int md_buf_putchar(struct md_mbuf *, char);