mirror of https://github.com/joan2937/pigpio
205 lines
4.9 KiB
C
205 lines
4.9 KiB
C
/*
|
|
This is free and unencumbered software released into the public domain.
|
|
|
|
Anyone is free to copy, modify, publish, use, compile, sell, or
|
|
distribute this software, either in source code form or as a compiled
|
|
binary, for any purpose, commercial or non-commercial, and by any
|
|
means.
|
|
|
|
In jurisdictions that recognize copyright laws, the author or authors
|
|
of this software dedicate any and all copyright interest in the
|
|
software to the public domain. We make this dedication for the benefit
|
|
of the public at large and to the detriment of our heirs and
|
|
successors. We intend this dedication to be an overt act of
|
|
relinquishment in perpetuity of all present and future rights to this
|
|
software under copyright law.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
For more information, please refer to <http://unlicense.org/>
|
|
*/
|
|
|
|
/*
|
|
This version is for pigpio version 11+
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/types.h>
|
|
#include <netdb.h>
|
|
#include <arpa/inet.h>
|
|
|
|
#include "pigpio.h"
|
|
#include "command.h"
|
|
|
|
/*
|
|
This program provides a socket interface to some of
|
|
the commands available from pigpio.
|
|
*/
|
|
|
|
void fatal(char *fmt, ...)
|
|
{
|
|
char buf[128];
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
|
vsnprintf(buf, sizeof(buf), fmt, ap);
|
|
va_end(ap);
|
|
|
|
fprintf(stderr, "%s\n", buf);
|
|
|
|
fflush(stderr);
|
|
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
static int openSocket(void)
|
|
{
|
|
int sock, err;
|
|
struct addrinfo hints, *res, *rp;
|
|
const char *addrStr, *portStr;
|
|
|
|
portStr = getenv(PI_ENVPORT);
|
|
|
|
if (!portStr) portStr = PI_DEFAULT_SOCKET_PORT_STR;
|
|
|
|
addrStr = getenv(PI_ENVADDR);
|
|
|
|
if (!addrStr) addrStr = PI_DEFAULT_SOCKET_ADDR_STR;
|
|
|
|
memset (&hints, 0, sizeof (hints));
|
|
|
|
hints.ai_family = PF_UNSPEC;
|
|
hints.ai_socktype = SOCK_STREAM;
|
|
hints.ai_flags |= AI_CANONNAME;
|
|
|
|
err = getaddrinfo(addrStr, portStr, &hints, &res);
|
|
|
|
if (err) return -1;
|
|
|
|
for (rp=res; rp!=NULL; rp=rp->ai_next)
|
|
{
|
|
sock = socket(rp->ai_family, rp->ai_socktype, rp->ai_protocol);
|
|
|
|
if (sock == -1) continue;
|
|
|
|
if (connect(sock, rp->ai_addr, rp->ai_addrlen) != -1) break;
|
|
}
|
|
|
|
freeaddrinfo(res);
|
|
|
|
if (rp == NULL) return -1;
|
|
|
|
return sock;
|
|
}
|
|
|
|
int main(int argc , char *argv[])
|
|
{
|
|
int sock, r, idx, i;
|
|
cmdCmd_t cmd;
|
|
gpioExtent_t ext[3];
|
|
char buf[1024];
|
|
|
|
sock = openSocket();
|
|
|
|
if (sock != -1)
|
|
{
|
|
switch(argc)
|
|
{
|
|
case 1:
|
|
exit(0);
|
|
|
|
case 2:
|
|
sprintf(buf, "%10s", argv[1]);
|
|
break;
|
|
|
|
case 3:
|
|
sprintf(buf, "%10s %10s", argv[1], argv[2]);
|
|
break;
|
|
|
|
case 4:
|
|
sprintf(buf, "%10s %10s %10s", argv[1], argv[2], argv[3]);
|
|
break;
|
|
|
|
case 5:
|
|
sprintf(buf, "%10s %10s %10s %10s",
|
|
argv[1], argv[2], argv[3], argv[4]);
|
|
break;
|
|
|
|
case 6:
|
|
sprintf(buf, "%10s %10s %10s %10s %10s",
|
|
argv[1], argv[2], argv[3], argv[4], argv[5]);
|
|
break;
|
|
|
|
default:
|
|
fatal("what? 'pigs h' for help");
|
|
}
|
|
|
|
if ((idx=cmdParse(buf, &cmd, argc, argv, ext)) >= 0)
|
|
{
|
|
if (send(sock, &cmd, sizeof(cmdCmd_t), 0) == sizeof(cmdCmd_t))
|
|
{
|
|
/* send extensions */
|
|
|
|
for (i=0; i<cmdInfo[idx].ext; i++)
|
|
{
|
|
send(sock, ext[i].ptr, ext[i].n, 0);
|
|
}
|
|
|
|
if (recv(sock, &cmd, sizeof(cmdCmd_t), 0) == sizeof(cmdCmd_t))
|
|
{
|
|
switch (cmdInfo[idx].rv)
|
|
{
|
|
case 0:
|
|
r = cmd.res;
|
|
if (r < 0) fatal("ERROR: %s", cmdErrStr(r));
|
|
break;
|
|
|
|
case 1:
|
|
r = cmd.res;
|
|
if (r < 0) fatal("ERROR: %s", cmdErrStr(r));
|
|
break;
|
|
|
|
case 2:
|
|
r = cmd.res;
|
|
if (r < 0) fatal("ERROR: %s", cmdErrStr(r));
|
|
else printf("%d\n", r);
|
|
break;
|
|
|
|
case 3:
|
|
printf("%08X\n", cmd.res);
|
|
break;
|
|
|
|
case 4:
|
|
printf("%u\n", cmd.res);
|
|
break;
|
|
|
|
case 5:
|
|
printf(cmdUsage);
|
|
break;
|
|
}
|
|
}
|
|
else fatal("recv failed, %m");
|
|
}
|
|
else fatal("send failed, %m");
|
|
}
|
|
else fatal("what? 'pigs h' for help");
|
|
}
|
|
else fatal("connect failed, %m");
|
|
|
|
close(sock);
|
|
|
|
return 0;
|
|
}
|
|
|