[BACK]Return to libmdoc.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Annotation of src/usr.bin/mandoc/libmdoc.h, Revision 1.40

1.40    ! schwarze    1: /*     $Id: libmdoc.h,v 1.39 2010/06/29 17:10:29 schwarze Exp $ */
1.1       kristaps    2: /*
1.38      schwarze    3:  * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv>
1.1       kristaps    4:  *
                      5:  * Permission to use, copy, modify, and distribute this software for any
1.3       schwarze    6:  * purpose with or without fee is hereby granted, provided that the above
                      7:  * copyright notice and this permission notice appear in all copies.
1.1       kristaps    8:  *
1.3       schwarze    9:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     10:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     11:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     12:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     13:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
                     14:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
                     15:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1.1       kristaps   16:  */
                     17: #ifndef LIBMDOC_H
                     18: #define LIBMDOC_H
                     19:
1.38      schwarze   20: #include "regs.h"
1.1       kristaps   21: #include "mdoc.h"
                     22:
                     23: enum   mdoc_next {
                     24:        MDOC_NEXT_SIBLING = 0,
                     25:        MDOC_NEXT_CHILD
                     26: };
                     27:
                     28: struct mdoc {
1.38      schwarze   29:        void             *data; /* private application data */
                     30:        mandocmsg         msg; /* message callback */
1.1       kristaps   31:        int               flags;
1.30      schwarze   32: #define        MDOC_HALT        (1 << 0) /* error in parse: halt */
                     33: #define        MDOC_LITERAL     (1 << 1) /* in a literal scope */
                     34: #define        MDOC_PBODY       (1 << 2) /* in the document body */
                     35: #define        MDOC_NEWLINE     (1 << 3) /* first macro/text in a line */
1.32      schwarze   36: #define        MDOC_PHRASELIT   (1 << 4) /* literal within a partila phrase */
                     37: #define        MDOC_PPHRASE     (1 << 5) /* within a partial phrase */
1.37      schwarze   38: #define        MDOC_FREECOL     (1 << 6) /* `It' invocation should close */
1.40    ! schwarze   39: #define        MDOC_SYNOPSIS    (1 << 7) /* SYNOPSIS-style formatting */
1.1       kristaps   40:        int               pflags;
1.38      schwarze   41:        enum mdoc_next    next; /* where to put the next node */
                     42:        struct mdoc_node *last; /* the last node parsed */
                     43:        struct mdoc_node *first; /* the first node parsed */
                     44:        struct mdoc_meta  meta; /* document meta-data */
1.1       kristaps   45:        enum mdoc_sec     lastnamed;
                     46:        enum mdoc_sec     lastsec;
1.38      schwarze   47:        struct regset    *regs; /* registers */
1.1       kristaps   48: };
                     49:
1.38      schwarze   50: #define        MACRO_PROT_ARGS struct mdoc *m, \
                     51:                        enum mdoct tok, \
                     52:                        int line, \
                     53:                        int ppos, \
                     54:                        int *pos, \
                     55:                        char *buf
1.1       kristaps   56:
                     57: struct mdoc_macro {
                     58:        int             (*fp)(MACRO_PROT_ARGS);
                     59:        int               flags;
                     60: #define        MDOC_CALLABLE    (1 << 0)
                     61: #define        MDOC_PARSED      (1 << 1)
                     62: #define        MDOC_EXPLICIT    (1 << 2)
                     63: #define        MDOC_PROLOGUE    (1 << 3)
                     64: #define        MDOC_IGNDELIM    (1 << 4)
                     65:        /* Reserved words in arguments treated as text. */
                     66: };
                     67:
1.29      schwarze   68: enum   margserr {
                     69:        ARGS_ERROR,
                     70:        ARGS_EOLN,
                     71:        ARGS_WORD,
                     72:        ARGS_PUNCT,
                     73:        ARGS_QWORD,
                     74:        ARGS_PHRASE,
1.30      schwarze   75:        ARGS_PPHRASE,
                     76:        ARGS_PEND
1.29      schwarze   77: };
                     78:
                     79: enum   margverr {
                     80:        ARGV_ERROR,
                     81:        ARGV_EOLN,
                     82:        ARGV_ARG,
                     83:        ARGV_WORD
                     84: };
                     85:
1.31      schwarze   86: enum   mdelim {
                     87:        DELIM_NONE = 0,
                     88:        DELIM_OPEN,
                     89:        DELIM_MIDDLE,
                     90:        DELIM_CLOSE
                     91: };
                     92:
1.1       kristaps   93: extern const struct mdoc_macro *const mdoc_macros;
                     94:
                     95: __BEGIN_DECLS
                     96:
1.35      schwarze   97: #define                  mdoc_pmsg(m, l, p, t) \
                     98:                  (*(m)->msg)((t), (m)->data, (l), (p), NULL)
                     99: #define                  mdoc_nmsg(m, n, t) \
                    100:                  (*(m)->msg)((t), (m)->data, (n)->line, (n)->pos, NULL)
                    101: int              mdoc_vmsg(struct mdoc *, enum mandocerr,
                    102:                        int, int, const char *, ...);
1.1       kristaps  103: int              mdoc_macro(MACRO_PROT_ARGS);
                    104: int              mdoc_word_alloc(struct mdoc *,
                    105:                        int, int, const char *);
                    106: int              mdoc_elem_alloc(struct mdoc *, int, int,
1.25      schwarze  107:                        enum mdoct, struct mdoc_arg *);
1.1       kristaps  108: int              mdoc_block_alloc(struct mdoc *, int, int,
1.25      schwarze  109:                        enum mdoct, struct mdoc_arg *);
                    110: int              mdoc_head_alloc(struct mdoc *, int, int, enum mdoct);
                    111: int              mdoc_tail_alloc(struct mdoc *, int, int, enum mdoct);
                    112: int              mdoc_body_alloc(struct mdoc *, int, int, enum mdoct);
1.39      schwarze  113: int              mdoc_endbody_alloc(struct mdoc *m, int line, int pos,
                    114:                        enum mdoct tok, struct mdoc_node *body,
                    115:                        enum mdoc_endbody end);
1.27      schwarze  116: void             mdoc_node_delete(struct mdoc *, struct mdoc_node *);
1.21      schwarze  117: void             mdoc_hash_init(void);
1.25      schwarze  118: enum mdoct       mdoc_hash_find(const char *);
1.31      schwarze  119: enum mdelim      mdoc_iscdelim(char);
                    120: enum mdelim      mdoc_isdelim(const char *);
1.1       kristaps  121: size_t           mdoc_isescape(const char *);
1.30      schwarze  122: enum   mdoc_sec  mdoc_str2sec(const char *);
1.1       kristaps  123: time_t           mdoc_atotime(const char *);
1.29      schwarze  124: size_t           mdoc_macro2len(enum mdoct);
1.15      schwarze  125: const char      *mdoc_a2att(const char *);
                    126: const char      *mdoc_a2lib(const char *);
                    127: const char      *mdoc_a2st(const char *);
1.1       kristaps  128: const char      *mdoc_a2arch(const char *);
                    129: const char      *mdoc_a2vol(const char *);
                    130: const char      *mdoc_a2msec(const char *);
1.37      schwarze  131: int              mdoc_valid_pre(struct mdoc *, struct mdoc_node *);
1.1       kristaps  132: int              mdoc_valid_post(struct mdoc *);
                    133: int              mdoc_action_pre(struct mdoc *,
1.36      schwarze  134:                        struct mdoc_node *);
1.1       kristaps  135: int              mdoc_action_post(struct mdoc *);
1.29      schwarze  136: enum margverr    mdoc_argv(struct mdoc *, int, enum mdoct,
1.1       kristaps  137:                        struct mdoc_arg **, int *, char *);
                    138: void             mdoc_argv_free(struct mdoc_arg *);
1.26      schwarze  139: void             mdoc_argn_free(struct mdoc_arg *, int);
1.29      schwarze  140: enum margserr    mdoc_args(struct mdoc *, int,
1.25      schwarze  141:                        int *, char *, enum mdoct, char **);
1.29      schwarze  142: enum margserr    mdoc_zargs(struct mdoc *, int,
1.20      schwarze  143:                        int *, char *, int, char **);
1.32      schwarze  144: #define        ARGS_DELIM      (1 << 1)
                    145: #define        ARGS_TABSEP     (1 << 2)
                    146: #define        ARGS_NOWARN     (1 << 3)
1.29      schwarze  147:
1.1       kristaps  148: int              mdoc_macroend(struct mdoc *);
                    149:
                    150: __END_DECLS
                    151:
                    152: #endif /*!LIBMDOC_H*/