blob: f3266dc2df15b935329a6d26a695a2626d087f24 [file] [log] [blame]
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +02001/* vi: set sw=4 ts=4: */
2/*
3 * beep implementation for busybox
4 *
5 * Copyright (C) 2009 Bernhard Reutner-Fischer
6 *
7 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
8 *
9 */
10#include "libbb.h"
11
12#include <linux/kd.h>
13#ifndef CLOCK_TICK_RATE
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +020014# define CLOCK_TICK_RATE 1193180
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020015#endif
16
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020017/* defaults */
Bernhard Reutner-Fischer00ea82e2009-08-21 14:40:29 +020018#ifndef CONFIG_FEATURE_BEEP_FREQ
19# define FREQ (4000)
20#else
21# define FREQ (CONFIG_FEATURE_BEEP_FREQ)
22#endif
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +020023#ifndef CONFIG_FEATURE_BEEP_LENGTH_MS
Bernhard Reutner-Fischer00ea82e2009-08-21 14:40:29 +020024# define LENGTH (30)
25#else
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +020026# define LENGTH (CONFIG_FEATURE_BEEP_LENGTH_MS)
Bernhard Reutner-Fischer00ea82e2009-08-21 14:40:29 +020027#endif
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020028#define DELAY (0)
29#define REPETITIONS (1)
30
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020031int beep_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +020032int beep_main(int argc, char **argv)
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020033{
34 int speaker = get_console_fd_or_die();
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +020035 unsigned length, delay, rep;
36 unsigned tickrate_div_freq;
37 int c;
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020038
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +020039 c = 'n';
40 while (c != -1) {
41 if (c == 'n') {
42 tickrate_div_freq = CLOCK_TICK_RATE / FREQ;
43 length = LENGTH;
44 delay = DELAY;
45 rep = REPETITIONS;
46 }
47 c = getopt(argc, argv, "f:l:d:r:n");
48/* TODO: -s, -c:
49 * pipe stdin to stdout, but also beep after each line (-s) or char (-c)
50 */
51 switch (c) {
52 case 'f':
53/* TODO: what "-f 0" should do? */
54 tickrate_div_freq = (unsigned)CLOCK_TICK_RATE / xatou(optarg);
55 continue;
56 case 'l':
57 length = xatou(optarg);
58 continue;
59 case 'd':
60/* TODO:
61 * -d N, -D N
62 * specify a delay of N milliseconds between repetitions.
63 * -d specifies that this delay should only occur between beeps,
64 * that is, it should not occur after the last repetition.
65 * -D indicates that the delay should occur after every repetition
66 */
67 delay = xatou(optarg);
68 continue;
69 case 'r':
70 rep = xatou(optarg);
71 continue;
72 case 'n':
73 case -1:
74 break;
75 default:
76 bb_show_usage();
77 }
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020078 while (rep) {
79//bb_info_msg("rep[%d] freq=%d, length=%d, delay=%d", rep, freq, length, delay);
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +020080 xioctl(speaker, KIOCSOUND, (void*)(long)tickrate_div_freq);
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020081 usleep(1000 * length);
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +020082 ioctl(speaker, KIOCSOUND, (void*)0);
83 if (--rep)
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020084 usleep(delay);
85 }
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020086 }
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +020087
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020088 if (ENABLE_FEATURE_CLEAN_UP)
89 close(speaker);
90 return EXIT_SUCCESS;
91}
92/*
93 * so, e.g. Beethoven's 9th symphony "Ode an die Freude" would be
94 * something like:
95a=$((220*3))
96b=$((247*3))
97c=$((262*3))
98d=$((294*3))
99e=$((329*3))
100f=$((349*3))
101g=$((392*3))
102#./beep -f$d -l200 -r2 -n -f$e -l100 -d 10 -n -f$c -l400 -f$g -l200
103./beep -f$e -l200 -r2 \
104 -n -d 100 -f$f -l200 \
105 -n -f$g -l200 -r2 \
106 -n -f$f -l200 \
107 -n -f$e -l200 \
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +0200108 -n -f$d -l200 \
109 -n -f$c -l200 -r2 \
110 -n -f$d -l200 \
111 -n -f$e -l200 \
112 -n -f$e -l400 \
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +0200113 -n -f$d -l100 \
114 -n -f$d -l200 \
115*/