-
Notifications
You must be signed in to change notification settings - Fork 255
/
ttygif.c
395 lines (328 loc) · 10.3 KB
/
ttygif.c
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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
/*
* Copyright (c) 2000 Satoru Takabayashi <[email protected]>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <unistd.h>
#include <termios.h>
#include <sys/time.h>
#include <string.h>
#include <stdbool.h>
#include "ttyrec.h"
#include "io.h"
#include "string_builder.h"
#include "utils.h"
typedef struct {
bool fullscreen;
bool debug;
int skip_limit; // Skip at most this many consecutive frames
int skip_threshold; // Skip frames shown for at most this long (because they're intermediate states)
int last_frame_delay; // How long to show the last frame before looping, in milliseconds
double speed; // Speed to replay the recording defaults to 1.0
const char *window_id;
const char *img_ext;
const char *img_dir;
const char *out_file;
} Options;
typedef int (*ReadFunc) (FILE *fp, Header *h, char **buf);
typedef void (*WriteFunc) (char *buf, int len);
typedef void (*ProcessFunc) (FILE *fp, ReadFunc read_func, Options o);
struct timeval
timeval_diff (struct timeval tv1, struct timeval tv2)
{
struct timeval diff;
diff.tv_sec = tv2.tv_sec - tv1.tv_sec;
diff.tv_usec = tv2.tv_usec - tv1.tv_usec;
if (diff.tv_usec < 0) {
diff.tv_sec--;
diff.tv_usec += 1000000;
}
return diff;
}
int
ttydelay (struct timeval prev, struct timeval cur)
{
struct timeval diff = timeval_diff(prev, cur);
if (diff.tv_sec < 0) {
diff.tv_sec = diff.tv_usec = 0;
}
return (diff.tv_sec * 1000) + (diff.tv_usec / 1000);
}
int
ttyread (FILE *fp, Header *h, char **buf)
{
if (read_header(fp, h) == 0) {
return 0;
}
*buf = malloc(h->len);
if (*buf == NULL) {
fatalf("Error: Out of memory (malloc)");
}
if (fread(*buf, 1, h->len, fp) == 0) {
fatalf("Error: Failed to read (fread)");
}
return 1;
}
void
ttywrite (char *buf, int len)
{
fwrite(buf, 1, len, stdout);
fflush(stdout);
}
void
clear_screen (void) {
printf("\e[1;1H\e[2J");
}
void
system_exec(const char *cmd, Options o)
{
if (o.debug) {
printf("DEBUG: %s\n", cmd);
return;
}
if (system(cmd) != 0) {
fatalf("failed to execute: %s\n", cmd);
}
}
int
take_snapshot_darwin(const char *img_path, Options o)
{
static char cmd [256];
if (sprintf(cmd,
"screencapture -x -l%s -o -m %s &> /dev/null",
o.window_id, img_path) < 0) {
return -1;
}
system_exec(cmd, o);
if (!o.fullscreen) {
if (sprintf(cmd,
"convert %s -background white -quiet -flatten +matte -crop +0+22 -crop +4+0 -crop -4-0 +repage %s &> /dev/null",
img_path, img_path) < 0) {
return -1;
}
}
system_exec(cmd, o);
return 0;
}
int
take_snapshot_linux(const char *img_path, Options o)
{
static char cmd [256];
// ensure text has been written before taking screenshot
usleep(50000);
if (sprintf(cmd, "xwd -id %s -out %s", o.window_id, img_path) < 0) {
return -1;
}
system_exec(cmd, o);
return 0;
}
int
take_snapshot(const char *img_path, Options o)
{
#ifdef OS_DARWIN
return take_snapshot_darwin(img_path, o);
#else
return take_snapshot_linux(img_path, o);
#endif
}
void
ttyplay (FILE *fp, ReadFunc read_func, WriteFunc write_func, Options o)
{
int index = 0;
int delay = 0;
struct timeval prev;
if (!o.debug) {
clear_screen();
}
setbuf(stdout, NULL);
setbuf(fp, NULL);
StringBuilder *sb = StringBuilder_new();
StringBuilder_write(sb, "convert -loop 0 ");
int nskipped = 0;
bool skip = false;
char img_path[256] = "";
char arg_buffer[256] = "";
while (true) {
char *buf;
Header h;
if (read_func(fp, &h, &buf) == 0) {
snprintf(arg_buffer, sizeof(arg_buffer), " -delay %f %s", o.last_frame_delay*0.1, img_path);
StringBuilder_write(sb, arg_buffer);
break;
}
if (!o.debug) {
write_func(buf, h.len);
}
if (index != 0) {
delay = ttydelay(prev, h.tv) / o.speed;
}
if (index > 0 && delay <= o.skip_threshold) {
skip = true;
nskipped++;
} else {
skip = false;
nskipped = 0;
}
if (skip && nskipped > o.skip_limit) {
nskipped = 0;
skip = false;
}
if (!skip && index != 0) {
if (sprintf(arg_buffer, " -delay %f %s", delay * 0.1, img_path) < 0) {
fatalf("Error: Failed to format 'convert' parameters");
}
StringBuilder_write(sb, arg_buffer);
}
if (!skip) {
if (sprintf(img_path, "%s/%d.%s", o.img_dir, index, o.img_ext) < 0) {
fatalf("Error: Failed to format filename");
}
if (take_snapshot(img_path, o) != 0) {
fatalf("Error: Failed to take snapshot");
}
}
if (index == 0 || !skip) {
index++;
}
prev = h.tv;
free(buf);
}
StringBuilder_write(sb, " -layers Optimize ");
StringBuilder_write(sb, "GIF:");
StringBuilder_write(sb, o.out_file);
StringBuilder_write(sb, " 2>&1");
printf("Creating Animated GIF ... this can take a while\n");
system_exec(sb->s, o);
printf("Created: %s in the current directory!\n", o.out_file);
StringBuilder_free(sb);
}
void ttyplayback (FILE *fp, ReadFunc read_func, Options o)
{
ttyplay(fp, ttyread, ttywrite, o);
}
void
usage (void)
{
#ifdef OS_DARWIN
printf("Usage: ttygif [FILE] [-f]\n");
printf(" -f, --fullscreen : include window border\n");
#else
printf("Usage: ttygif [FILE]\n");
#endif
printf(" -s, --speed : Set speed [1.0]\n");
printf(" -h, --help : print this help\n");
printf(" -v, --version : print version\n");
}
int
main (int argc, char **argv)
{
ReadFunc read_func = ttyread;
ProcessFunc process = ttyplayback;
FILE *input = NULL;
struct termios old, new;
Options options;
options.fullscreen = false;
options.skip_limit = 5;
options.skip_threshold = 0;
options.last_frame_delay = 1000;
options.debug = getenv("TTYGIF_DEBUG") != NULL;
options.out_file = "tty.gif";
options.speed = 1.0;
char dir_template[] = "/tmp/ttygif.XXXXXX";
options.img_dir = mkdtemp(dir_template);
if (options.img_dir == NULL) {
fatalf("Error: Failed to create tmp directory.");
}
#ifdef OS_DARWIN
options.img_ext = "png";
const char *terminal_app = getenv("TERM_PROGRAM");
if (terminal_app == NULL || !strlen(terminal_app)) {
fatalf("Error: TERM_PROGRAM environment variable was empty.");
}
if (strcmp(terminal_app, "Apple_Terminal") == 0) {
terminal_app = "Terminal.app";
}
int window_id = osx_get_window_id(terminal_app);
char window_id_buffer[256];
sprintf(window_id_buffer, "%d", window_id);
options.window_id = window_id_buffer;
#else
options.img_ext = "xwd";
options.window_id = getenv("WINDOWID");
if (options.window_id == NULL || !strlen(options.window_id)) {
fatalf("Error: WINDOWID environment variable was empty.");
}
#endif
if (options.debug) {
printf("window_id: %s\n", options.window_id);
}
if (argc < 2) {
usage();
exit(EXIT_FAILURE);
}
if (argc == 2) {
if (strstr(argv[1], "-h") || strstr(argv[1], "--help")) {
usage();
exit(EXIT_SUCCESS);
}
if (strstr(argv[1], "-v") || strstr(argv[1], "--version")) {
printf(VERSION"\n");
exit(EXIT_SUCCESS);
}
}
if (argc >= 3) {
int i;
for (i=0; i<argc; i++)
{
if (strstr(argv[i], "-f") || strstr(argv[i], "--fullscreen")) {
options.fullscreen = true;
}
if ((strstr(argv[i], "-s") || strstr(argv[i], "--speed")) && argc > i+1) {
char *end;
double speed = strtod(argv[i+1], &end);
if (end > argv[i+1])
options.speed = speed;
}
}
}
set_progname(argv[0]);
input = efopen(argv[1], "r");
assert(input != NULL);
tcgetattr(0, &old); /* Get current terminal state */
new = old; /* Make a copy */
new.c_lflag &= ~(ICANON | ECHO | ECHONL); /* unbuffered, no echo */
tcsetattr(0, TCSANOW, &new); /* Make it current */
process(input, read_func, options);
tcsetattr(0, TCSANOW, &old); /* Return terminal state */
return 0;
}