blob: 7c60aed08d6cceac35c05ef101a963d1469105c3 [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 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +02008 */
Denys Vlasenkofb4da162016-11-22 23:14:24 +01009//config:config BEEP
Denys Vlasenkob097a842018-12-28 03:20:17 +010010//config: bool "beep (2.4 kb)"
Denys Vlasenkofb4da162016-11-22 23:14:24 +010011//config: default y
Denys Vlasenkofb4da162016-11-22 23:14:24 +010012//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020013//config: The beep applets beeps in a given freq/Hz.
Denys Vlasenkofb4da162016-11-22 23:14:24 +010014//config:
15//config:config FEATURE_BEEP_FREQ
16//config: int "default frequency"
Denys Vlasenko1b84f4a2017-07-08 12:21:45 +020017//config: range 20 50000 # allowing 0 here breaks the build
Denys Vlasenkofb4da162016-11-22 23:14:24 +010018//config: default 4000
19//config: depends on BEEP
20//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020021//config: Frequency for default beep.
Denys Vlasenkofb4da162016-11-22 23:14:24 +010022//config:
23//config:config FEATURE_BEEP_LENGTH_MS
24//config: int "default length"
25//config: range 0 2147483647
26//config: default 30
27//config: depends on BEEP
28//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020029//config: Length in ms for default beep.
Pere Orga5bc8c002011-04-11 03:29:49 +020030
Denys Vlasenkof88e3bf2016-11-22 23:54:17 +010031//applet:IF_BEEP(APPLET(beep, BB_DIR_USR_BIN, BB_SUID_DROP))
32
33//kbuild:lib-$(CONFIG_BEEP) += beep.o
34
Pere Orga5bc8c002011-04-11 03:29:49 +020035//usage:#define beep_trivial_usage
36//usage: "-f FREQ -l LEN -d DELAY -r COUNT -n"
37//usage:#define beep_full_usage "\n\n"
Denys Vlasenko66426762011-06-05 03:58:28 +020038//usage: " -f Frequency in Hz"
Pere Orga5bc8c002011-04-11 03:29:49 +020039//usage: "\n -l Length in ms"
40//usage: "\n -d Delay in ms"
41//usage: "\n -r Repetitions"
42//usage: "\n -n Start new tone"
43
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020044#include "libbb.h"
45
46#include <linux/kd.h>
47#ifndef CLOCK_TICK_RATE
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +020048# define CLOCK_TICK_RATE 1193180
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020049#endif
50
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020051/* defaults */
Bernhard Reutner-Fischer00ea82e2009-08-21 14:40:29 +020052#ifndef CONFIG_FEATURE_BEEP_FREQ
53# define FREQ (4000)
54#else
55# define FREQ (CONFIG_FEATURE_BEEP_FREQ)
56#endif
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +020057#ifndef CONFIG_FEATURE_BEEP_LENGTH_MS
Bernhard Reutner-Fischer00ea82e2009-08-21 14:40:29 +020058# define LENGTH (30)
59#else
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +020060# define LENGTH (CONFIG_FEATURE_BEEP_LENGTH_MS)
Bernhard Reutner-Fischer00ea82e2009-08-21 14:40:29 +020061#endif
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020062#define DELAY (0)
63#define REPETITIONS (1)
64
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020065int beep_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +020066int beep_main(int argc, char **argv)
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020067{
68 int speaker = get_console_fd_or_die();
Denys Vlasenko31e2e7b2009-12-12 02:42:35 +010069 unsigned tickrate_div_freq = tickrate_div_freq; /* for compiler */
70 unsigned length = length;
71 unsigned delay = delay;
72 unsigned rep = rep;
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +020073 int c;
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +020074
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +020075 c = 'n';
76 while (c != -1) {
77 if (c == 'n') {
78 tickrate_div_freq = CLOCK_TICK_RATE / FREQ;
79 length = LENGTH;
80 delay = DELAY;
81 rep = REPETITIONS;
82 }
83 c = getopt(argc, argv, "f:l:d:r:n");
84/* TODO: -s, -c:
85 * pipe stdin to stdout, but also beep after each line (-s) or char (-c)
86 */
87 switch (c) {
88 case 'f':
89/* TODO: what "-f 0" should do? */
90 tickrate_div_freq = (unsigned)CLOCK_TICK_RATE / xatou(optarg);
91 continue;
92 case 'l':
93 length = xatou(optarg);
94 continue;
95 case 'd':
96/* TODO:
97 * -d N, -D N
98 * specify a delay of N milliseconds between repetitions.
99 * -d specifies that this delay should only occur between beeps,
100 * that is, it should not occur after the last repetition.
101 * -D indicates that the delay should occur after every repetition
102 */
103 delay = xatou(optarg);
104 continue;
105 case 'r':
106 rep = xatou(optarg);
107 continue;
108 case 'n':
109 case -1:
110 break;
111 default:
112 bb_show_usage();
113 }
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +0200114 while (rep) {
Denys Vlasenko76b680c2016-03-30 16:04:37 +0200115//bb_error_msg("rep[%d] freq=%d, length=%d, delay=%d", rep, freq, length, delay);
Natanael Copa7cfec4b2010-03-14 15:32:49 +0100116 xioctl(speaker, KIOCSOUND, (void*)(uintptr_t)tickrate_div_freq);
Denys Vlasenko6a55b4e2020-11-29 12:40:25 +0100117 msleep(length);
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +0200118 ioctl(speaker, KIOCSOUND, (void*)0);
119 if (--rep)
Denys Vlasenko6a55b4e2020-11-29 12:40:25 +0100120 msleep(delay);
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +0200121 }
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +0200122 }
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +0200123
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +0200124 if (ENABLE_FEATURE_CLEAN_UP)
125 close(speaker);
126 return EXIT_SUCCESS;
127}
128/*
129 * so, e.g. Beethoven's 9th symphony "Ode an die Freude" would be
130 * something like:
131a=$((220*3))
132b=$((247*3))
133c=$((262*3))
134d=$((294*3))
135e=$((329*3))
136f=$((349*3))
137g=$((392*3))
138#./beep -f$d -l200 -r2 -n -f$e -l100 -d 10 -n -f$c -l400 -f$g -l200
139./beep -f$e -l200 -r2 \
140 -n -d 100 -f$f -l200 \
141 -n -f$g -l200 -r2 \
142 -n -f$f -l200 \
143 -n -f$e -l200 \
Denys Vlasenko0da1c0a2009-08-22 18:00:39 +0200144 -n -f$d -l200 \
145 -n -f$c -l200 -r2 \
146 -n -f$d -l200 \
147 -n -f$e -l200 \
148 -n -f$e -l400 \
Bernhard Reutner-Fischer45de0742009-08-21 13:18:31 +0200149 -n -f$d -l100 \
150 -n -f$d -l200 \
151*/