summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
authoreadler <eadler@FreeBSD.org>2018-03-15 09:38:18 +0000
committereadler <eadler@FreeBSD.org>2018-03-15 09:38:18 +0000
commit919a8f04467c52805c1f05685221027185dea6de (patch)
tree758525dcb5cfbaa27624d164a862608f1c3e62db /usr.bin
parent94dc01219a127a96409f5afcefd1a4a30759b1eb (diff)
downloadFreeBSD-src-919a8f04467c52805c1f05685221027185dea6de.zip
FreeBSD-src-919a8f04467c52805c1f05685221027185dea6de.tar.gz
MFC r327514,r327521,r327614,r327615,r327616,r327623:
morse(6): several improvements - add ñ, ', and _ - remove lint support - add missing header for ioctl - fix two typod - Use `-r` for "reverse" mode and to match DragonFlyBSD. - Move defines around to clear up logic - use `errx` instead of `fprintf` and `exit` - Use copyright comment header - Make it easier to compile on !FreeBSD - Diff reduction against DragonFlyBSD - bump Dd - use 'r' instead of 'D' from the original submission PR: 35109
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/morse/morse.611
-rw-r--r--usr.bin/morse/morse.c161
2 files changed, 130 insertions, 42 deletions
diff --git a/usr.bin/morse/morse.6 b/usr.bin/morse/morse.6
index 94645bb..bf33956 100644
--- a/usr.bin/morse/morse.6
+++ b/usr.bin/morse/morse.6
@@ -29,7 +29,7 @@
.\" @(#)bcd.6 8.1 (Berkeley) 5/31/93
.\" $FreeBSD$
.\"
-.Dd June 7, 2005
+.Dd January 5, 2018
.Dt MORSE 6
.Os
.Sh NAME
@@ -37,7 +37,7 @@
.Nd reformat input as morse code
.Sh SYNOPSIS
.Nm
-.Op Fl elps
+.Op Fl elrps
.Op Fl d Ar device
.Op Fl w Ar speed
.Op Fl c Ar speed
@@ -85,13 +85,18 @@ Similar to
.Fl p ,
but use the RTS line of
.Ar device
-(which must by a TTY device)
+(which must be a TTY device)
in order to emit the morse code.
.It Fl e
Echo each character before it is sent, used together with either
.Fl p
or
.Fl d .
+.It Fl r
+Decode morse output consisting of dots and dashes (as generated by using
+the
+.Fl s
+option).
.El
.Pp
The
diff --git a/usr.bin/morse/morse.c b/usr.bin/morse/morse.c
index 03a09a6..7e018f3 100644
--- a/usr.bin/morse/morse.c
+++ b/usr.bin/morse/morse.c
@@ -1,4 +1,4 @@
-/*
+/*-
* Copyright (c) 1988, 1993
* The Regents of the University of California. All rights reserved.
*
@@ -32,23 +32,21 @@
* <lyndon@orthanc.ca>
*/
-#ifndef lint
static const char copyright[] =
"@(#) Copyright (c) 1988, 1993\n\
The Regents of the University of California. All rights reserved.\n";
-#endif /* not lint */
-#ifndef lint
#if 0
static char sccsid[] = "@(#)morse.c 8.1 (Berkeley) 5/31/93";
#endif
static const char rcsid[] =
"$FreeBSD$";
-#endif /* not lint */
#include <sys/time.h>
+#include <sys/ioctl.h>
#include <ctype.h>
+#include <err.h>
#include <fcntl.h>
#include <langinfo.h>
#include <locale.h>
@@ -59,8 +57,13 @@ static const char rcsid[] =
#include <termios.h>
#include <unistd.h>
+#ifdef __FreeBSD__
/* Always use the speaker, let the open fail if -p is selected */
#define SPEAKER "/dev/speaker"
+#endif
+
+#define WHITESPACE " \t\n"
+#define DELIMITERS " \t"
#ifdef SPEAKER
#include <dev/speaker/speaker.h>
@@ -132,6 +135,8 @@ static const struct morsetab mtab[] = {
{'$', "...-..-"},
{'+', ".-.-."}, /* AR */
{'@', ".--.-."}, /* AC */
+ {'_', "..--.-"},
+ {'\'', ".----."},
/* prosigns without already assigned values */
@@ -156,6 +161,7 @@ static const struct morsetab iso8859_1tab[] = {
{'\350', "..-.."}, /* è */
{'\351', "..-.."}, /* é */
{'\352', "-..-."}, /* ê */
+ {'\361', "--.--"}, /* ñ */
{'\366', "---."}, /* ö */
{'\374', "..--"}, /* ü */
@@ -267,14 +273,11 @@ static const struct morsetab koi8rtab[] = {
};
static void show(const char *), play(const char *), morse(char);
+static void decode (char *), fdecode(FILE *);
static void ttyout(const char *);
static void sighandler(int);
-#define GETOPTOPTS "c:d:ef:lsw:"
-#define USAGE \
-"usage: morse [-els] [-d device] [-w speed] [-c speed] [-f frequency] [string ...]\n"
-
-static int pflag, lflag, sflag, eflag;
+static int pflag, lflag, rflag, sflag, eflag;
static int wpm = 20; /* effective words per minute */
static int cpm; /* effective words per minute between
* characters */
@@ -293,17 +296,20 @@ static int olflags;
#ifdef SPEAKER
static tone_t sound;
-#undef GETOPTOPTS
-#define GETOPTOPTS "c:d:ef:lpsw:"
-#undef USAGE
+#define GETOPTOPTS "c:d:ef:lprsw:"
#define USAGE \
-"usage: morse [-elps] [-d device] [-w speed] [-c speed] [-f frequency] [string ...]\n"
+"usage: morse [-elprs] [-d device] [-w speed] [-c speed] [-f frequency] [string ...]\n"
+#else
+#define GETOPTOPTS "c:d:ef:lrsw:"
+#define USAGE \
+"usage: morse [-elrs] [-d device] [-w speed] [-c speed] [-f frequency] [string ...]\n"
+
#endif
static const struct morsetab *hightab;
int
-main(int argc, char **argv)
+main(int argc, char *argv[])
{
int ch, lflags;
char *p, *codeset;
@@ -331,6 +337,9 @@ main(int argc, char **argv)
pflag = 1;
break;
#endif
+ case 'r':
+ rflag = 1;
+ break;
case 's':
sflag = 1;
break;
@@ -339,42 +348,36 @@ main(int argc, char **argv)
break;
case '?':
default:
- fputs(USAGE, stderr);
- exit(1);
+ errx(1, USAGE);
}
- if (sflag && lflag) {
- fputs("morse: only one of -l and -s allowed\n", stderr);
- exit(1);
+ if ((sflag && lflag) || (sflag && rflag) || (lflag && rflag)) {
+ errx(1, "morse: only one of -l, -s, and -r allowed\n");
}
if ((pflag || device) && (sflag || lflag)) {
- fputs("morse: only one of -p, -d and -l, -s allowed\n", stderr);
- exit(1);
+ errx(1, "morse: only one of -p, -d and -l, -s allowed\n");
}
- if (cpm == 0)
+ if (cpm == 0) {
cpm = wpm;
+ }
if ((pflag || device) && ((wpm < 1) || (wpm > 60) || (cpm < 1) || (cpm > 60))) {
- fputs("morse: insane speed\n", stderr);
- exit(1);
+ errx(1, "morse: insane speed\n");
}
- if ((pflag || device) && (freq == 0))
+ if ((pflag || device) && (freq == 0)) {
freq = FREQUENCY;
-
+ }
#ifdef SPEAKER
if (pflag) {
if ((spkr = open(SPEAKER, O_WRONLY, 0)) == -1) {
- perror(SPEAKER);
- exit(1);
+ err(1, SPEAKER);
}
} else
#endif
if (device) {
if ((line = open(device, O_WRONLY | O_NONBLOCK)) == -1) {
- perror("open tty line");
- exit(1);
+ err(1, "open tty line");
}
if (tcgetattr(line, &otty) == -1) {
- perror("tcgetattr() failed");
- exit(1);
+ err(1, "tcgetattr() failed");
}
ntty = otty;
ntty.c_cflag |= CLOCAL;
@@ -419,9 +422,29 @@ main(int argc, char **argv)
hightab = iso8859_7tab;
}
- if (lflag)
+ if (lflag) {
printf("m");
- if (*argv) {
+ }
+ if (rflag) {
+ if (*argv) {
+ do {
+ p = strtok(*argv, DELIMITERS);
+ if (p == NULL) {
+ decode(*argv);
+ }
+ else {
+ while (p) {
+ decode(p);
+ p = strtok(NULL, DELIMITERS);
+ }
+ }
+ } while (*++argv);
+ putchar('\n');
+ } else {
+ fdecode(stdin);
+ }
+ }
+ else if (*argv) {
do {
for (p = *argv; *p; ++p) {
if (eflag)
@@ -518,15 +541,13 @@ play(const char *s)
}
if (sound.duration) {
if (ioctl(spkr, SPKRTONE, &sound) == -1) {
- perror("ioctl play");
- exit(1);
+ err(1, "ioctl play");
}
}
sound.frequency = 0;
sound.duration = dot_clock;
if (ioctl(spkr, SPKRTONE, &sound) == -1) {
- perror("ioctl rest");
- exit(1);
+ err(1, "ioctl rest");
}
}
sound.frequency = 0;
@@ -577,6 +598,68 @@ ttyout(const char *s)
usleep(duration);
}
+void
+fdecode(FILE *stream)
+{
+ char *n, *p, *s;
+ char buf[BUFSIZ];
+
+ s = buf;
+ while (fgets(s, BUFSIZ - (s - buf), stream)) {
+ p = buf;
+
+ while (*p && isblank(*p)) {
+ p++;
+ }
+ while (*p && isspace(*p)) {
+ p++;
+ putchar (' ');
+ }
+ while (*p) {
+ n = strpbrk(p, WHITESPACE);
+ if (n == NULL) {
+ /* The token was interrupted at the end
+ * of the buffer. Shift it to the begin
+ * of the buffer.
+ */
+ for (s = buf; *p; *s++ = *p++)
+ ;
+ } else {
+ *n = '\0';
+ n++;
+ decode(p);
+ p = n;
+ }
+ }
+ }
+ putchar('\n');
+}
+
+void
+decode(char *p)
+{
+ char c;
+ const struct morsetab *m;
+
+ c = ' ';
+ for (m = mtab; m != NULL && m->inchar != '\0'; m++) {
+ if (strcmp(m->morse, p) == 0) {
+ c = m->inchar;
+ break;
+ }
+ }
+
+ if (c == ' ')
+ for (m = hightab; m != NULL && m->inchar != '\0'; m++) {
+ if (strcmp(m->morse, p) == 0) {
+ c = m->inchar;
+ break;
+ }
+ }
+
+ putchar(c);
+}
+
static void
sighandler(int signo)
{
OpenPOWER on IntegriCloud