]>
git.cameronkatri.com Git - mandoc.git/blob - term_tag.c
1 /* $Id: term_tag.c,v 1.4 2020/04/18 20:40:10 schwarze Exp $ */
3 * Copyright (c) 2015,2016,2018,2019,2020 Ingo Schwarze <schwarze@openbsd.org>
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.
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.
17 * Functions to write a ctags(1) file.
18 * For use by the mandoc(1) ASCII and UTF-8 formatters only.
22 #include <sys/types.h>
38 static void tag_signal(int) __attribute__((__noreturn__
));
40 static struct tag_files tag_files
;
44 * Prepare for using a pager.
45 * Not all pagers are capable of using a tag file,
46 * but for simplicity, create it anyway.
52 int ofd
; /* In /tmp/, dup(2)ed to stdout. */
57 tag_files
.tcpgid
= -1;
59 /* Clean up when dying from a signal. */
61 memset(&sa
, 0, sizeof(sa
));
62 sigfillset(&sa
.sa_mask
);
63 sa
.sa_handler
= tag_signal
;
64 sigaction(SIGHUP
, &sa
, NULL
);
65 sigaction(SIGINT
, &sa
, NULL
);
66 sigaction(SIGTERM
, &sa
, NULL
);
69 * POSIX requires that a process calling tcsetpgrp(3)
70 * from the background gets a SIGTTOU signal.
71 * In that case, do not stop.
74 sa
.sa_handler
= SIG_IGN
;
75 sigaction(SIGTTOU
, &sa
, NULL
);
77 /* Save the original standard output for use by the pager. */
79 if ((tag_files
.ofd
= dup(STDOUT_FILENO
)) == -1) {
80 mandoc_msg(MANDOCERR_DUP
, 0, 0, "%s", strerror(errno
));
84 /* Create both temporary output files. */
86 (void)strlcpy(tag_files
.ofn
, "/tmp/man.XXXXXXXXXX",
87 sizeof(tag_files
.ofn
));
88 (void)strlcpy(tag_files
.tfn
, "/tmp/man.XXXXXXXXXX",
89 sizeof(tag_files
.tfn
));
90 if ((ofd
= mkstemp(tag_files
.ofn
)) == -1) {
91 mandoc_msg(MANDOCERR_MKSTEMP
, 0, 0,
92 "%s: %s", tag_files
.ofn
, strerror(errno
));
95 if ((tfd
= mkstemp(tag_files
.tfn
)) == -1) {
96 mandoc_msg(MANDOCERR_MKSTEMP
, 0, 0,
97 "%s: %s", tag_files
.tfn
, strerror(errno
));
100 if ((tag_files
.tfs
= fdopen(tfd
, "w")) == NULL
) {
101 mandoc_msg(MANDOCERR_FDOPEN
, 0, 0, "%s", strerror(errno
));
105 if (dup2(ofd
, STDOUT_FILENO
) == -1) {
106 mandoc_msg(MANDOCERR_DUP
, 0, 0, "%s", strerror(errno
));
118 if (tag_files
.ofd
!= -1) {
119 close(tag_files
.ofd
);
126 term_tag_write(struct roff_node
*n
, size_t line
)
131 if (tag_files
.tfs
== NULL
)
133 cp
= n
->tag
== NULL
? n
->child
->string
: n
->tag
;
134 if (cp
[0] == '\\' && (cp
[1] == '&' || cp
[1] == 'e'))
136 len
= strcspn(cp
, " \t\\");
137 fprintf(tag_files
.tfs
, "%.*s %s %zu\n",
138 len
, cp
, tag_files
.ofn
, line
);
142 * Close both output files and restore the original standard output
143 * to the terminal. In the unlikely case that the latter fails,
144 * trying to start a pager would be useless, so report the failure
145 * to the main program.
152 if (tag_files
.tfs
!= NULL
) {
153 fclose(tag_files
.tfs
);
154 tag_files
.tfs
= NULL
;
156 if (tag_files
.ofd
!= -1) {
158 if ((irc
= dup2(tag_files
.ofd
, STDOUT_FILENO
)) == -1)
159 mandoc_msg(MANDOCERR_DUP
, 0, 0, "%s", strerror(errno
));
160 close(tag_files
.ofd
);
167 term_tag_unlink(void)
171 if (tag_files
.tcpgid
!= -1) {
172 tc_pgid
= tcgetpgrp(STDOUT_FILENO
);
173 if (tc_pgid
== tag_files
.pager_pid
||
174 tc_pgid
== getpgid(0) ||
175 getpgid(tc_pgid
) == -1)
176 (void)tcsetpgrp(STDOUT_FILENO
, tag_files
.tcpgid
);
178 if (*tag_files
.ofn
!= '\0') {
179 unlink(tag_files
.ofn
);
180 *tag_files
.ofn
= '\0';
182 if (*tag_files
.tfn
!= '\0') {
183 unlink(tag_files
.tfn
);
184 *tag_files
.tfn
= '\0';
189 tag_signal(int signum
)
194 memset(&sa
, 0, sizeof(sa
));
195 sigemptyset(&sa
.sa_mask
);
196 sa
.sa_handler
= SIG_DFL
;
197 sigaction(signum
, &sa
, NULL
);
198 kill(getpid(), signum
);