blob: 7e98501036898e08a2bbcffa44d9dd16a16d89d0 [file] [log] [blame]
Denys Vlasenko5e611152009-05-19 17:36:16 +02001/* vi: set sw=4 ts=4: */
2/*
3 * scriptreplay - play back typescripts, using timing information
4 *
5 * pascal.bellard@ads-lu.com
6 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Denys Vlasenko5e611152009-05-19 17:36:16 +02008 *
9 */
Denys Vlasenkodd898c92016-11-23 11:46:32 +010010//config:config SCRIPTREPLAY
Denys Vlasenko4eed2c62017-07-18 22:01:24 +020011//config: bool "scriptreplay (2.6 kb)"
Denys Vlasenkodd898c92016-11-23 11:46:32 +010012//config: default y
13//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020014//config: This program replays a typescript, using timing information
15//config: given by script -t.
Denys Vlasenkodd898c92016-11-23 11:46:32 +010016
17//applet:IF_SCRIPTREPLAY(APPLET(scriptreplay, BB_DIR_BIN, BB_SUID_DROP))
18
19//kbuild:lib-$(CONFIG_SCRIPTREPLAY) += scriptreplay.o
Pere Orga5bc8c002011-04-11 03:29:49 +020020
21//usage:#define scriptreplay_trivial_usage
22//usage: "timingfile [typescript [divisor]]"
23//usage:#define scriptreplay_full_usage "\n\n"
24//usage: "Play back typescripts, using timing information"
25
Denys Vlasenko5e611152009-05-19 17:36:16 +020026#include "libbb.h"
27
28int scriptreplay_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
29int scriptreplay_main(int argc UNUSED_PARAM, char **argv)
30{
31 const char *script = "typescript";
32 double delay, factor = 1000000.0;
33 int fd;
34 unsigned long count;
35 FILE *tfp;
36
Denys Vlasenko997538a2009-07-19 23:11:45 +020037 if (!argv[1])
38 bb_show_usage();
39
Denys Vlasenko5e611152009-05-19 17:36:16 +020040 if (argv[2]) {
41 script = argv[2];
42 if (argv[3])
43 factor /= atof(argv[3]);
44 }
45
46 tfp = xfopen_for_read(argv[1]);
47 fd = xopen(script, O_RDONLY);
48 while (fscanf(tfp, "%lf %lu\n", &delay, &count) == 2) {
49 usleep(delay * factor);
50 bb_copyfd_exact_size(fd, STDOUT_FILENO, count);
51 }
Denys Vlasenko53f17912009-06-05 14:55:26 +020052 if (ENABLE_FEATURE_CLEAN_UP) {
53 close(fd);
54 fclose(tfp);
55 }
Denys Vlasenko5e611152009-05-19 17:36:16 +020056 return EXIT_SUCCESS;
57}