[BACK]Return to tag.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Annotation of mandoc/tag.c, Revision 1.14

1.14    ! schwarze    1: /*     $Id: tag.c,v 1.13 2016/07/20 13:03:24 schwarze Exp $ */
1.1       schwarze    2: /*
1.14    ! schwarze    3:  * Copyright (c) 2015, 2016 Ingo Schwarze <schwarze@openbsd.org>
1.1       schwarze    4:  *
                      5:  * Permission to use, copy, modify, and distribute this software for any
                      6:  * purpose with or without fee is hereby granted, provided that the above
                      7:  * copyright notice and this permission notice appear in all copies.
                      8:  *
                      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.
                     16:  */
1.7       schwarze   17: #include "config.h"
                     18:
1.1       schwarze   19: #include <sys/types.h>
                     20:
1.2       schwarze   21: #include <signal.h>
1.1       schwarze   22: #include <stddef.h>
1.7       schwarze   23: #include <stdint.h>
1.1       schwarze   24: #include <stdio.h>
                     25: #include <stdlib.h>
                     26: #include <string.h>
                     27: #include <unistd.h>
                     28:
                     29: #include "mandoc_aux.h"
1.10      schwarze   30: #include "mandoc_ohash.h"
1.1       schwarze   31: #include "tag.h"
                     32:
                     33: struct tag_entry {
1.14    ! schwarze   34:        size_t  *lines;
        !            35:        size_t   maxlines;
        !            36:        size_t   nlines;
1.4       schwarze   37:        int      prio;
1.1       schwarze   38:        char     s[];
                     39: };
                     40:
1.13      schwarze   41: static void     tag_signal(int) __attribute__((noreturn));
1.1       schwarze   42:
                     43: static struct ohash     tag_data;
1.6       schwarze   44: static struct tag_files         tag_files;
1.1       schwarze   45:
                     46:
                     47: /*
1.6       schwarze   48:  * Prepare for using a pager.
                     49:  * Not all pagers are capable of using a tag file,
                     50:  * but for simplicity, create it anyway.
1.1       schwarze   51:  */
1.6       schwarze   52: struct tag_files *
1.1       schwarze   53: tag_init(void)
                     54: {
1.11      schwarze   55:        struct sigaction         sa;
1.6       schwarze   56:        int                      ofd;
1.1       schwarze   57:
1.6       schwarze   58:        ofd = -1;
                     59:        tag_files.tfd = -1;
1.11      schwarze   60:        tag_files.tcpgid = -1;
1.6       schwarze   61:
1.12      schwarze   62:        /* Clean up when dying from a signal. */
                     63:
                     64:        memset(&sa, 0, sizeof(sa));
                     65:        sigfillset(&sa.sa_mask);
                     66:        sa.sa_handler = tag_signal;
                     67:        sigaction(SIGHUP, &sa, NULL);
                     68:        sigaction(SIGINT, &sa, NULL);
                     69:        sigaction(SIGTERM, &sa, NULL);
                     70:
                     71:        /*
                     72:         * POSIX requires that a process calling tcsetpgrp(3)
                     73:         * from the background gets a SIGTTOU signal.
                     74:         * In that case, do not stop.
                     75:         */
                     76:
                     77:        sa.sa_handler = SIG_IGN;
                     78:        sigaction(SIGTTOU, &sa, NULL);
                     79:
1.6       schwarze   80:        /* Save the original standard output for use by the pager. */
                     81:
                     82:        if ((tag_files.ofd = dup(STDOUT_FILENO)) == -1)
                     83:                goto fail;
                     84:
                     85:        /* Create both temporary output files. */
                     86:
                     87:        (void)strlcpy(tag_files.ofn, "/tmp/man.XXXXXXXXXX",
                     88:            sizeof(tag_files.ofn));
                     89:        (void)strlcpy(tag_files.tfn, "/tmp/man.XXXXXXXXXX",
                     90:            sizeof(tag_files.tfn));
                     91:        if ((ofd = mkstemp(tag_files.ofn)) == -1)
                     92:                goto fail;
                     93:        if ((tag_files.tfd = mkstemp(tag_files.tfn)) == -1)
                     94:                goto fail;
                     95:        if (dup2(ofd, STDOUT_FILENO) == -1)
                     96:                goto fail;
                     97:        close(ofd);
                     98:
                     99:        /*
                    100:         * Set up the ohash table to collect output line numbers
                    101:         * where various marked-up terms are documented.
                    102:         */
1.1       schwarze  103:
1.10      schwarze  104:        mandoc_ohash_init(&tag_data, 4, offsetof(struct tag_entry, s));
1.8       schwarze  105:        return &tag_files;
1.6       schwarze  106:
                    107: fail:
                    108:        tag_unlink();
                    109:        if (ofd != -1)
                    110:                close(ofd);
                    111:        if (tag_files.ofd != -1)
                    112:                close(tag_files.ofd);
                    113:        if (tag_files.tfd != -1)
                    114:                close(tag_files.tfd);
                    115:        *tag_files.ofn = '\0';
                    116:        *tag_files.tfn = '\0';
                    117:        tag_files.ofd = -1;
                    118:        tag_files.tfd = -1;
1.8       schwarze  119:        return NULL;
1.1       schwarze  120: }
                    121:
                    122: /*
1.5       schwarze  123:  * Set the line number where a term is defined,
                    124:  * unless it is already defined at a higher priority.
1.1       schwarze  125:  */
                    126: void
1.5       schwarze  127: tag_put(const char *s, int prio, size_t line)
1.1       schwarze  128: {
                    129:        struct tag_entry        *entry;
1.5       schwarze  130:        size_t                   len;
1.1       schwarze  131:        unsigned int             slot;
                    132:
1.9       schwarze  133:        if (tag_files.tfd <= 0 || strchr(s, ' ') != NULL)
1.1       schwarze  134:                return;
1.14    ! schwarze  135:
1.5       schwarze  136:        slot = ohash_qlookup(&tag_data, s);
1.1       schwarze  137:        entry = ohash_find(&tag_data, slot);
1.14    ! schwarze  138:
1.1       schwarze  139:        if (entry == NULL) {
1.14    ! schwarze  140:
        !           141:                /* Build a new entry. */
        !           142:
1.5       schwarze  143:                len = strlen(s) + 1;
                    144:                entry = mandoc_malloc(sizeof(*entry) + len);
1.1       schwarze  145:                memcpy(entry->s, s, len);
1.14    ! schwarze  146:                entry->lines = NULL;
        !           147:                entry->maxlines = entry->nlines = 0;
1.1       schwarze  148:                ohash_insert(&tag_data, slot, entry);
1.14    ! schwarze  149:
        !           150:        } else {
        !           151:
        !           152:                /* A better entry is already present, ignore the new one. */
        !           153:
        !           154:                if (entry->prio < prio)
        !           155:                        return;
        !           156:
        !           157:                /* The existing entry is worse, clear it. */
        !           158:
        !           159:                if (entry->prio > prio)
        !           160:                        entry->nlines = 0;
        !           161:        }
        !           162:
        !           163:        /* Remember the new line. */
        !           164:
        !           165:        if (entry->maxlines == entry->nlines) {
        !           166:                entry->maxlines += 4;
        !           167:                entry->lines = mandoc_reallocarray(entry->lines,
        !           168:                    entry->maxlines, sizeof(*entry->lines));
        !           169:        }
        !           170:        entry->lines[entry->nlines++] = line;
1.4       schwarze  171:        entry->prio = prio;
1.1       schwarze  172: }
                    173:
                    174: /*
                    175:  * Write out the tags file using the previously collected
                    176:  * information and clear the ohash table while going along.
                    177:  */
                    178: void
                    179: tag_write(void)
                    180: {
                    181:        FILE                    *stream;
                    182:        struct tag_entry        *entry;
1.14    ! schwarze  183:        size_t                   i;
1.1       schwarze  184:        unsigned int             slot;
                    185:
1.6       schwarze  186:        if (tag_files.tfd <= 0)
1.1       schwarze  187:                return;
1.6       schwarze  188:        stream = fdopen(tag_files.tfd, "w");
1.1       schwarze  189:        entry = ohash_first(&tag_data, &slot);
                    190:        while (entry != NULL) {
                    191:                if (stream != NULL)
1.14    ! schwarze  192:                        for (i = 0; i < entry->nlines; i++)
        !           193:                                fprintf(stream, "%s %s %zu\n",
        !           194:                                    entry->s, tag_files.ofn, entry->lines[i]);
        !           195:                free(entry->lines);
1.1       schwarze  196:                free(entry);
                    197:                entry = ohash_next(&tag_data, &slot);
                    198:        }
                    199:        ohash_delete(&tag_data);
                    200:        if (stream != NULL)
                    201:                fclose(stream);
                    202: }
                    203:
                    204: void
                    205: tag_unlink(void)
                    206: {
1.11      schwarze  207:        pid_t    tc_pgid;
1.1       schwarze  208:
1.11      schwarze  209:        if (tag_files.tcpgid != -1) {
                    210:                tc_pgid = tcgetpgrp(STDIN_FILENO);
                    211:                if (tc_pgid == tag_files.pager_pid ||
                    212:                    tc_pgid == getpgid(0) ||
                    213:                    getpgid(tc_pgid) == -1)
                    214:                        (void)tcsetpgrp(STDIN_FILENO, tag_files.tcpgid);
                    215:        }
1.6       schwarze  216:        if (*tag_files.ofn != '\0')
                    217:                unlink(tag_files.ofn);
                    218:        if (*tag_files.tfn != '\0')
                    219:                unlink(tag_files.tfn);
1.2       schwarze  220: }
                    221:
                    222: static void
                    223: tag_signal(int signum)
                    224: {
1.11      schwarze  225:        struct sigaction         sa;
1.2       schwarze  226:
                    227:        tag_unlink();
1.11      schwarze  228:        memset(&sa, 0, sizeof(sa));
                    229:        sigemptyset(&sa.sa_mask);
                    230:        sa.sa_handler = SIG_DFL;
                    231:        sigaction(signum, &sa, NULL);
1.2       schwarze  232:        kill(getpid(), signum);
                    233:        /* NOTREACHED */
                    234:        _exit(1);
1.1       schwarze  235: }

CVSweb