Initial import from FreeBSD RELENG_4:
[games.git] / usr.sbin / xten / xten.c
1 /*-
2  * Copyright (c) 1992, 1993 Eugene W. Stark
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by Eugene W. Stark.
16  * 4. The name of the author may not be used to endorse or promote products
17  *    derived from this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY EUGENE W. STARK (THE AUTHOR) ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
23  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31
32 #ifndef lint
33 static const char rcsid[] =
34   "$FreeBSD: src/usr.sbin/xten/xten.c,v 1.4 1999/08/28 01:21:02 peter Exp $";
35 #endif /* not lint */
36
37 /*
38  * Xten - user command interface to X-10 daemon
39  */
40
41 #include <err.h>
42 #include <stdio.h>
43 #include <stdlib.h>
44 #include <string.h>
45 #include <unistd.h>
46 #include <sys/types.h>
47 #include <sys/socket.h>
48 #include <sys/un.h>
49 #include "xtend.h"
50 #include "xten.h"
51 #include "paths.h"
52
53 #define RETRIES 10
54 #define CMDLEN 512
55
56 char *X10housenames[] = {
57   "A", "B", "C", "D", "E", "F", "G", "H",
58   "I", "J", "K", "L", "M", "N", "O", "P",
59   NULL
60 };
61
62 char *X10cmdnames[] = {
63   "1", "2", "3", "4", "5", "6", "7", "8",
64   "9", "10", "11", "12", "13", "14", "15", "16",
65   "AllUnitsOff", "AllLightsOn", "On", "Off", "Dim", "Bright", "AllLightsOff",
66   "ExtendedCode", "HailRequest", "HailAcknowledge", "PreSetDim0", "PreSetDim1",
67   "ExtendedData", "StatusOn", "StatusOff", "StatusRequest",
68   NULL
69 };
70
71 int find __P((char *, char *[]));
72 static void usage __P((void));
73
74 int
75 main(argc, argv)
76 int argc;
77 char *argv[];
78 {
79   int c, tmp, h, k, sock, error;
80   FILE *daemon;
81   struct sockaddr_un sa;
82   char *sockpath = SOCKPATH;
83   char reply[CMDLEN], cmd[CMDLEN], *cp;
84   int interactive = 0;
85
86   if(argc == 2 && !strcmp(argv[1], "-")) interactive++;
87   else if(argc < 3)
88     usage();
89   if((sock = socket(AF_UNIX, SOCK_STREAM, 0)) < 0)
90     errx(1, "can't create socket");
91   strcpy(sa.sun_path, sockpath);
92   sa.sun_family = AF_UNIX;
93   if(connect(sock, (struct sockaddr *)(&sa), strlen(sa.sun_path) + 2) < 0)
94     errx(1, "can't connect to X-10 daemon");
95   if((daemon = fdopen(sock, "w+")) == NULL)
96     errx(1, "can't attach stream to socket");
97   /*
98    * If interactive, copy standard input to daemon and report results
99    * on standard output.
100    */
101   if(interactive) {
102     while(!feof(stdin)) {
103       if(fgets(cmd, CMDLEN, stdin) != NULL) {
104         fprintf(daemon, "%s", cmd);
105         fflush(daemon);
106         if(fgets(reply, CMDLEN, daemon) != NULL) {
107           fprintf(stdout, "%s", reply);
108           fflush(stdout);
109         }
110       }
111     }
112     exit(0);
113   }
114   /*
115    * Otherwise, interpret arguments and issue commands to daemon,
116    * handling retries in case of errors.
117    */
118   if((h = find(argv[1], X10housenames)) < 0)
119     errx(1, "invalid house code: %s", argv[1]);
120   argv++;
121   argv++;
122   while(argc >= 3) {
123     cp = argv[0];
124     if((tmp = find(cp, X10housenames)) >= 0) {
125       h = tmp;
126       argv++;
127       argc--;
128       continue;
129     }
130     while(*cp != '\0' && *cp != ':') cp++;
131     if(*cp == ':') c = atoi(cp+1);
132     else c = 2;
133     *cp = '\0';
134     if((k = find(argv[0], X10cmdnames)) < 0) {
135       warnx("invalid key/unit code: %s", argv[0]);
136       error++;
137     }
138     error = 0;
139     while(error < RETRIES) {
140       fprintf(daemon, "send %s %s %d\n", X10housenames[h], X10cmdnames[k], c);
141       fflush(daemon);
142       fgets(reply, CMDLEN, daemon);
143       if(strncmp(reply, "ERROR", 5)) break;
144       error++;
145       usleep(200000);
146     }
147     if(error == RETRIES) {
148       warnx("command failed: send %s %s %d",
149               X10housenames[h], X10cmdnames[k], c);
150     }
151     argc--;
152     argv++;
153   }
154   fprintf(daemon, "done\n");
155   fgets(reply, CMDLEN, daemon);
156   exit(0);
157 }
158
159 static void
160 usage()
161 {
162         fprintf(stderr,
163                 "usage: xten house key[:cnt] [[house] key[:cnt] ...]\n");
164         exit(1);
165 }
166
167 int
168 find(s, tab)
169 char *s;
170 char *tab[];
171 {
172         int i;
173
174         for(i = 0; tab[i] != NULL; i++) {
175           if(strcasecmp(s, tab[i]) == 0) return(i);
176         }
177         return(-1);
178 }