source@mandoc.bsd.lv
 help / color / mirror / Atom feed
* mdocml: Simplify man(7) validation: Drop pre-handlers, they were almost
@ 2014-08-01 21:24 schwarze
  0 siblings, 0 replies; only message in thread
From: schwarze @ 2014-08-01 21:24 UTC (permalink / raw)
  To: source

Log Message:
-----------
Simplify man(7) validation:
Drop pre-handlers, they were almost unused.
Drop the needless complexity of allowing more than one post-handler.

This saves one internal interface function, one static function, one 
private struct definition, sixteen static arrays, and 45 lines of code.
No functional change.

Modified Files:
--------------
    mdocml:
        libman.h
        man.c
        man_validate.c

Revision Data
-------------
Index: man.c
===================================================================
RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/man.c,v
retrieving revision 1.136
retrieving revision 1.137
diff -Lman.c -Lman.c -u -p -r1.136 -r1.137
--- man.c
+++ man.c
@@ -186,10 +186,11 @@ man_node_append(struct man *man, struct 
 	assert(p->parent);
 	p->parent->nchild++;
 
-	if ( ! man_valid_pre(man, p))
-		return(0);
-
 	switch (p->type) {
+	case MAN_BLOCK:
+		if (p->tok == MAN_SH || p->tok == MAN_SS)
+			man->flags &= ~MAN_LITERAL;
+		break;
 	case MAN_HEAD:
 		assert(MAN_BLOCK == p->parent->type);
 		p->parent->head = p;
Index: libman.h
===================================================================
RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/libman.h,v
retrieving revision 1.62
retrieving revision 1.63
diff -Llibman.h -Llibman.h -u -p -r1.62 -r1.63
--- libman.h
+++ libman.h
@@ -70,7 +70,6 @@ void		  man_hash_init(void);
 enum mant	  man_hash_find(const char *);
 int		  man_macroend(struct man *);
 int		  man_valid_post(struct man *);
-int		  man_valid_pre(struct man *, struct man_node *);
 int		  man_unscope(struct man *, const struct man_node *);
 
 __END_DECLS
Index: man_validate.c
===================================================================
RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/man_validate.c,v
retrieving revision 1.103
retrieving revision 1.104
diff -Lman_validate.c -Lman_validate.c -u -p -r1.103 -r1.104
--- man_validate.c
+++ man_validate.c
@@ -40,21 +40,15 @@
 
 typedef	int	(*v_check)(CHKARGS);
 
-struct	man_valid {
-	v_check	 *pres;
-	v_check	 *posts;
-};
-
 static	int	  check_eq0(CHKARGS);
 static	int	  check_eq2(CHKARGS);
 static	int	  check_le1(CHKARGS);
 static	int	  check_ge2(CHKARGS);
 static	int	  check_le5(CHKARGS);
-static	int	  check_head1(CHKARGS);
 static	int	  check_par(CHKARGS);
 static	int	  check_part(CHKARGS);
 static	int	  check_root(CHKARGS);
-static	void	  check_text(CHKARGS);
+static	int	  check_text(CHKARGS);
 
 static	int	  post_AT(CHKARGS);
 static	int	  post_IP(CHKARGS);
@@ -64,124 +58,75 @@ static	int	  post_ft(CHKARGS);
 static	int	  post_nf(CHKARGS);
 static	int	  post_TH(CHKARGS);
 static	int	  post_UC(CHKARGS);
-static	int	  pre_sec(CHKARGS);
+static	int	  post_UR(CHKARGS);
 
-static	v_check	  posts_at[] = { post_AT, NULL };
-static	v_check	  posts_br[] = { post_vs, check_eq0, NULL };
-static	v_check	  posts_eq0[] = { check_eq0, NULL };
-static	v_check	  posts_eq2[] = { check_eq2, NULL };
-static	v_check	  posts_fi[] = { check_eq0, post_fi, NULL };
-static	v_check	  posts_ft[] = { post_ft, NULL };
-static	v_check	  posts_ip[] = { post_IP, NULL };
-static	v_check	  posts_le1[] = { check_le1, NULL };
-static	v_check	  posts_nf[] = { check_eq0, post_nf, NULL };
-static	v_check	  posts_par[] = { check_par, NULL };
-static	v_check	  posts_part[] = { check_part, NULL };
-static	v_check	  posts_sp[] = { post_vs, check_le1, NULL };
-static	v_check	  posts_th[] = { check_ge2, check_le5, post_TH, NULL };
-static	v_check	  posts_uc[] = { post_UC, NULL };
-static	v_check	  posts_ur[] = { check_head1, check_part, NULL };
-static	v_check	  pres_sec[] = { pre_sec, NULL };
-
-static	const struct man_valid man_valids[MAN_MAX] = {
-	{ NULL, posts_br }, /* br */
-	{ NULL, posts_th }, /* TH */
-	{ pres_sec, NULL }, /* SH */
-	{ pres_sec, NULL }, /* SS */
-	{ NULL, NULL }, /* TP */
-	{ NULL, posts_par }, /* LP */
-	{ NULL, posts_par }, /* PP */
-	{ NULL, posts_par }, /* P */
-	{ NULL, posts_ip }, /* IP */
-	{ NULL, NULL }, /* HP */
-	{ NULL, NULL }, /* SM */
-	{ NULL, NULL }, /* SB */
-	{ NULL, NULL }, /* BI */
-	{ NULL, NULL }, /* IB */
-	{ NULL, NULL }, /* BR */
-	{ NULL, NULL }, /* RB */
-	{ NULL, NULL }, /* R */
-	{ NULL, NULL }, /* B */
-	{ NULL, NULL }, /* I */
-	{ NULL, NULL }, /* IR */
-	{ NULL, NULL }, /* RI */
-	{ NULL, posts_eq0 }, /* na */
-	{ NULL, posts_sp }, /* sp */
-	{ NULL, posts_nf }, /* nf */
-	{ NULL, posts_fi }, /* fi */
-	{ NULL, NULL }, /* RE */
-	{ NULL, posts_part }, /* RS */
-	{ NULL, NULL }, /* DT */
-	{ NULL, posts_uc }, /* UC */
-	{ NULL, posts_le1 }, /* PD */
-	{ NULL, posts_at }, /* AT */
-	{ NULL, NULL }, /* in */
-	{ NULL, posts_ft }, /* ft */
-	{ NULL, posts_eq2 }, /* OP */
-	{ NULL, posts_nf }, /* EX */
-	{ NULL, posts_fi }, /* EE */
-	{ NULL, posts_ur }, /* UR */
-	{ NULL, NULL }, /* UE */
-	{ NULL, NULL }, /* ll */
+static	v_check man_valids[MAN_MAX] = {
+	post_vs,    /* br */
+	post_TH,    /* TH */
+	NULL,       /* SH */
+	NULL,       /* SS */
+	NULL,       /* TP */
+	check_par,  /* LP */
+	check_par,  /* PP */
+	check_par,  /* P */
+	post_IP,    /* IP */
+	NULL,       /* HP */
+	NULL,       /* SM */
+	NULL,       /* SB */
+	NULL,       /* BI */
+	NULL,       /* IB */
+	NULL,       /* BR */
+	NULL,       /* RB */
+	NULL,       /* R */
+	NULL,       /* B */
+	NULL,       /* I */
+	NULL,       /* IR */
+	NULL,       /* RI */
+	check_eq0,  /* na */
+	post_vs,    /* sp */
+	post_nf,    /* nf */
+	post_fi,    /* fi */
+	NULL,       /* RE */
+	check_part, /* RS */
+	NULL,       /* DT */
+	post_UC,    /* UC */
+	check_le1,  /* PD */
+	post_AT,    /* AT */
+	NULL,       /* in */
+	post_ft,    /* ft */
+	check_eq2,  /* OP */
+	post_nf,    /* EX */
+	post_fi,    /* EE */
+	post_UR,    /* UR */
+	NULL,       /* UE */
+	NULL,       /* ll */
 };
 
 
 int
-man_valid_pre(struct man *man, struct man_node *n)
-{
-	v_check		*cp;
-
-	switch (n->type) {
-	case MAN_TEXT:
-		/* FALLTHROUGH */
-	case MAN_ROOT:
-		/* FALLTHROUGH */
-	case MAN_EQN:
-		/* FALLTHROUGH */
-	case MAN_TBL:
-		return(1);
-	default:
-		break;
-	}
-
-	if (NULL == (cp = man_valids[n->tok].pres))
-		return(1);
-	for ( ; *cp; cp++)
-		if ( ! (*cp)(man, n))
-			return(0);
-	return(1);
-}
-
-int
 man_valid_post(struct man *man)
 {
+	struct man_node	*n;
 	v_check		*cp;
 
-	if (MAN_VALID & man->last->flags)
+	n = man->last;
+	if (n->flags & MAN_VALID)
 		return(1);
-	man->last->flags |= MAN_VALID;
+	n->flags |= MAN_VALID;
 
-	switch (man->last->type) {
+	switch (n->type) {
 	case MAN_TEXT:
-		check_text(man, man->last);
-		return(1);
+		return(check_text(man, n));
 	case MAN_ROOT:
-		return(check_root(man, man->last));
+		return(check_root(man, n));
 	case MAN_EQN:
 		/* FALLTHROUGH */
 	case MAN_TBL:
 		return(1);
 	default:
-		break;
+		cp = man_valids + n->tok;
+		return(*cp ? (*cp)(man, n) : 1);
 	}
-
-	if (NULL == (cp = man_valids[man->last->tok].posts))
-		return(1);
-	for ( ; *cp; cp++)
-		if ( ! (*cp)(man, man->last))
-			return(0);
-
-	return(1);
 }
 
 static int
@@ -214,18 +159,19 @@ check_root(CHKARGS)
 	return(1);
 }
 
-static void
+static int
 check_text(CHKARGS)
 {
 	char		*cp, *p;
 
 	if (MAN_LITERAL & man->flags)
-		return;
+		return(1);
 
 	cp = n->string;
 	for (p = cp; NULL != (p = strchr(p, '\t')); p++)
 		mandoc_msg(MANDOCERR_FI_TAB, man->parse,
 		    n->line, n->pos + (p - cp), NULL);
+	return(1);
 }
 
 #define	INEQ_DEFINE(x, ineq, name) \
@@ -247,14 +193,14 @@ INEQ_DEFINE(2, >=, ge2)
 INEQ_DEFINE(5, <=, le5)
 
 static int
-check_head1(CHKARGS)
+post_UR(CHKARGS)
 {
 
 	if (MAN_HEAD == n->type && 1 != n->nchild)
 		mandoc_vmsg(MANDOCERR_ARGCOUNT, man->parse, n->line,
 		    n->pos, "line arguments eq 1 (have %d)", n->nchild);
 
-	return(1);
+	return(check_part(man, n));
 }
 
 static int
@@ -311,15 +257,6 @@ post_ft(CHKARGS)
 }
 
 static int
-pre_sec(CHKARGS)
-{
-
-	if (MAN_BLOCK == n->type)
-		man->flags &= ~MAN_LITERAL;
-	return(1);
-}
-
-static int
 check_part(CHKARGS)
 {
 
@@ -387,6 +324,9 @@ post_TH(CHKARGS)
 	struct man_node	*nb;
 	const char	*p;
 
+	check_ge2(man, n);
+	check_le5(man, n);
+
 	free(man->meta.title);
 	free(man->meta.vol);
 	free(man->meta.source);
@@ -468,6 +408,8 @@ static int
 post_nf(CHKARGS)
 {
 
+	check_eq0(man, n);
+
 	if (MAN_LITERAL & man->flags)
 		mandoc_msg(MANDOCERR_NF_SKIP, man->parse,
 		    n->line, n->pos, "nf");
@@ -480,6 +422,8 @@ static int
 post_fi(CHKARGS)
 {
 
+	check_eq0(man, n);
+
 	if ( ! (MAN_LITERAL & man->flags))
 		mandoc_msg(MANDOCERR_FI_SKIP, man->parse,
 		    n->line, n->pos, "fi");
@@ -567,6 +511,11 @@ post_AT(CHKARGS)
 static int
 post_vs(CHKARGS)
 {
+
+	if (n->tok == MAN_br)
+		check_eq0(man, n);
+	else
+		check_le1(man, n);
 
 	if (NULL != n->prev)
 		return(1);
--
 To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2014-08-01 21:24 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-01 21:24 mdocml: Simplify man(7) validation: Drop pre-handlers, they were almost schwarze

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).