summaryrefslogtreecommitdiffstats
path: root/src/bar.c
blob: 5e19740f4c1561674badb94e2eefc58155ef50e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
// Copyright © Tavian Barnes <tavianator@tavianator.com>
// SPDX-License-Identifier: 0BSD

#include "prelude.h"
#include "bar.h"
#include "atomic.h"
#include "bfstd.h"
#include "bit.h"
#include "diag.h"
#include "dstring.h"
#include <errno.h>
#include <fcntl.h>
#include <signal.h>
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <sys/ioctl.h>

/**
 * Sentinel values for bfs_bar::refcount.
 */
enum {
	/** The bar is currently uninitialized. */
	BFS_BAR_UNINIT = 0,
	/** The bar is being initialized/destroyed. */
	BFS_BAR_BUSY   = 1,
	/** Values >= this are valid refcounts. */
	BFS_BAR_READY  = 2,
};

struct bfs_bar {
	/**
	 * A file descriptor to the TTY.  Must be atomic because signal handlers
	 * can race with bfs_bar_hide().
	 */
	atomic int fd;
	/** A reference count protecting `fd`. */
	atomic unsigned int refcount;

	/** The width of the TTY. */
	atomic unsigned int width;
	/** The height of the TTY. */
	atomic unsigned int height;
};

/** The global status bar instance. */
static struct bfs_bar the_bar = {
	.fd = -1,
};

/** Try to acquire a reference to bar->fd. */
static int bfs_bar_getfd(struct bfs_bar *bar) {
	unsigned int refs = load(&bar->refcount, relaxed);
	do {
		if (refs < BFS_BAR_READY) {
			errno = EAGAIN;
			return -1;
		}
	} while (!compare_exchange_weak(&bar->refcount, &refs, refs + 1, acquire, relaxed));

	return load(&bar->fd, relaxed);
}

/** Release a reference to bar->fd. */
static void bfs_bar_putfd(struct bfs_bar *bar) {
	int fd = load(&bar->fd, relaxed);

	unsigned int refs = fetch_sub(&bar->refcount, 1, release);
	bfs_assert(refs >= BFS_BAR_READY);

	if (refs == 2) {
		close_quietly(fd);
		store(&bar->fd, -1, relaxed);
		store(&bar->refcount, BFS_BAR_UNINIT, release);
	}
}

/** Get the terminal size, if possible. */
static int bfs_bar_getsize(struct bfs_bar *bar) {
#ifdef TIOCGWINSZ
	int fd = bfs_bar_getfd(bar);
	if (fd < 0) {
		return -1;
	}

	struct winsize ws;
	int ret = ioctl(fd, TIOCGWINSZ, &ws);
	if (ret == 0) {
		store(&bar->width, ws.ws_col, relaxed);
		store(&bar->height, ws.ws_row, relaxed);
	}

	bfs_bar_putfd(bar);
	return ret;
#else
	errno = ENOTSUP;
	return -1;
#endif
}

/** Write a string to the status bar (async-signal-safe). */
static int bfs_bar_write(struct bfs_bar *bar, const char *str, size_t len) {
	int fd = bfs_bar_getfd(bar);
	if (fd < 0) {
		return -1;
	}

	int ret = xwrite(fd, str, len) == len ? 0 : -1;
	bfs_bar_putfd(bar);
	return ret;
}

/** Write a string to the status bar (async-signal-safe). */
static int bfs_bar_puts(struct bfs_bar *bar, const char *str) {
	return bfs_bar_write(bar, str, strlen(str));
}

/** Number of decimal digits needed for terminal sizes. */
#define ITOA_DIGITS ((USHRT_WIDTH + 2) / 3)

/** Async Signal Safe itoa(). */
static char *ass_itoa(char *str, unsigned int n) {
	char *end = str + ITOA_DIGITS;
	*end = '\0';

	char *c = end;
	do {
		*--c = '0' + (n % 10);
		n /= 10;
	} while (n);

	size_t len = end - c;
	memmove(str, c, len + 1);
	return str + len;
}

/** Update the size of the scrollable region. */
static int bfs_bar_resize(struct bfs_bar *bar) {
	char esc_seq[12 + ITOA_DIGITS];

	char *cur = stpcpy(esc_seq,
		"\0337"  // DECSC: Save cursor
		"\033[;" // DECSTBM: Set scrollable region
	);

	// DECSTBM takes the height as the second argument
	unsigned int height = load(&bar->height, relaxed);
	cur = ass_itoa(cur, height - 1);

	cur = stpcpy(cur,
		"r"      // DECSTBM
		"\0338"  // DECRC: Restore the cursor
		"\033[J" // ED: Erase display from cursor to end
	);

	return bfs_bar_write(bar, esc_seq, cur - esc_seq);
}

#ifdef SIGWINCH
/** SIGWINCH handler. */
static void sighand_winch(int sig) {
	int error = errno;

	bfs_bar_getsize(&the_bar);
	bfs_bar_resize(&the_bar);

	errno = error;
}
#endif

/** Reset the scrollable region and hide the bar. */
static int bfs_bar_reset(struct bfs_bar *bar) {
	return bfs_bar_puts(bar,
		"\0337"  // DECSC: Save cursor
		"\033[r" // DECSTBM: Reset scrollable region
		"\0338"  // DECRC: Restore cursor
		"\033[J" // ED: Erase display from cursor to end
	);
}

/** Signal handler for process-terminating signals. */
static void sighand_reset(int sig) {
	bfs_bar_reset(&the_bar);
	raise(sig);
}

/** Register sighand_reset() for a signal. */
static void reset_before_death_by(int sig) {
	struct sigaction sa = {
		.sa_handler = sighand_reset,
		.sa_flags = SA_RESETHAND,
	};
	sigemptyset(&sa.sa_mask);
	sigaction(sig, &sa, NULL);
}

/** printf() to the status bar with a single write(). */
attr(printf(2, 3))
static int bfs_bar_printf(struct bfs_bar *bar, const char *format, ...) {
	va_list args;
	va_start(args, format);
	dchar *str = dstrvprintf(format, args);
	va_end(args);

	if (!str) {
		return -1;
	}

	int ret = bfs_bar_write(bar, str, dstrlen(str));
	dstrfree(str);
	return ret;
}

struct bfs_bar *bfs_bar_show(void) {
	unsigned int refs = BFS_BAR_UNINIT;
	if (!compare_exchange_strong(&the_bar.refcount, &refs, BFS_BAR_BUSY, acq_rel, relaxed)) {
		errno = EBUSY;
		goto fail;
	}

	char term[L_ctermid];
	ctermid(term);
	if (strlen(term) == 0) {
		errno = ENOTTY;
		goto unref;
	}

	int fd = open(term, O_RDWR | O_CLOEXEC);
	if (fd < 0) {
		goto unref;
	}
	store(&the_bar.fd, fd, relaxed);
	store(&the_bar.refcount, BFS_BAR_READY, release);

	if (bfs_bar_getsize(&the_bar) != 0) {
		goto put;
	}

	reset_before_death_by(SIGABRT);
	reset_before_death_by(SIGINT);
	reset_before_death_by(SIGPIPE);
	reset_before_death_by(SIGQUIT);
	reset_before_death_by(SIGTERM);

#ifdef SIGWINCH
	struct sigaction sa = {
		.sa_handler = sighand_winch,
		.sa_flags = SA_RESTART,
	};
	sigemptyset(&sa.sa_mask);
	sigaction(SIGWINCH, &sa, NULL);
#endif

	unsigned int height = load(&the_bar.height, relaxed);
	bfs_bar_printf(&the_bar,
		"\n"        // Make space for the bar
		"\0337"     // DECSC: Save cursor
		"\033[;%ur" // DECSTBM: Set scrollable region
		"\0338"     // DECRC: Restore cursor
		"\033[1A",  // CUU: Move cursor up 1 row
		height - 1
	);

	return &the_bar;

put:
	bfs_bar_putfd(&the_bar);
	return NULL;
unref:
	store(&the_bar.refcount, 0, release);
fail:
	return NULL;
}

unsigned int bfs_bar_width(const struct bfs_bar *bar) {
	return load(&bar->width, relaxed);
}

int bfs_bar_update(struct bfs_bar *bar, const char *str) {
	unsigned int height = load(&bar->height, relaxed);
	return bfs_bar_printf(bar,
		"\0337"      // DECSC: Save cursor
		"\033[%u;0f" // HVP: Move cursor to row, column
		"\033[K"     // EL: Erase line
		"\033[7m"    // SGR reverse video
		"%s"
		"\033[27m"   // SGR reverse video off
		"\0338",     // DECRC: Restore cursor
		height,
		str
	);
}

void bfs_bar_hide(struct bfs_bar *bar) {
	if (!bar) {
		return;
	}

	signal(SIGABRT, SIG_DFL);
	signal(SIGINT, SIG_DFL);
	signal(SIGPIPE, SIG_DFL);
	signal(SIGQUIT, SIG_DFL);
	signal(SIGTERM, SIG_DFL);
#ifdef SIGWINCH
	signal(SIGWINCH, SIG_DFL);
#endif

	bfs_bar_reset(bar);
	bfs_bar_putfd(bar);
}