forked from pmaillot/X32-Behringer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathX32_Command.c
454 lines (445 loc) · 15.1 KB
/
X32_Command.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
//
// X32_Command.c
//
// Created on: Sep 19, 2014
//
// X32_Command: a simple udp client for X32 sending commands and getting answers
//
// Author: Patrick-Gilles Maillot
//
// Changelog:
// v 1.27: remove incorrect use of macro FD_ISSET(Xfd, &ufds) in receiving IO.
// v 1.28: remove incorrect use of FD_ISSET() in buffer check.
// v 1.29: Change to X32_cparse.c to accept strings with space chars.
// v 1.30: Change line_size to 512 chars
// v 1.31: added 's' flag to read/send scene/snippets/tidbits/X32node lines from file
// v 1.32: longer timeout when read/send scene/snippets/tidbits/X32node lines from file
// v 1.33: added netinet/in.h include (freeBSD support)
// v 1.34: addresses limitations in certain C compilers with getopt()
// v 1.35: kb input is now treated as int
// v 1.36: following changes to X32_cparse.c
// v 1.37: code cleaning
// v 1.38: finally got rid of call to kbhit() which was causing issues with ",`, %, even
// for non-international US keyboard
// v 1.39: corrected handling of non-printable characters, and ctrl-V
//
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <time.h>
#ifdef __WIN32__
#include <windows.h>
#include <conio.h>
#define millisleep(a) Sleep(a)
HANDLE clip;
#else
#include <sys/socket.h>
#include <sys/select.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/fcntl.h>
#define closesocket(s) close((s))
#define millisleep(a) usleep((a)*1000)
#define WSACleanup()
#define SOCKET_ERROR -1
typedef int SOCKET;
typedef struct sockaddr_in SOCKADDR_IN;
typedef struct sockaddr SOCKADDR;
typedef struct in_addr IN_ADDR;
#endif
// External calls used
extern void Xfdump(char *header, char *buf, int len, int debug);
extern int Xsprint(char *bd, int index, char format, void *bs);
extern int Xcparse(char *buf, char *line);
#ifdef __WIN32__
#define BACKSPACE 8 // need to use <ctl>h
#define EOL 13 // enter key
#define CTRLC 3 // Ctrl-C
#define CTRLV 22 // Ctrl-V
#define BACKCHARS 2 // 2 chars to remove from line
#define NO_CHAR -1 // not a real/printable char
#else
#define BACKSPACE 8 // backspace key OK
#define EOL '\n' // enter key
#define BACKCHARS 1 // 1 char to remove from line
#define NO_CHAR -1 // not a real/printable char
#endif
//
#define LINEMAX 512 // input line buffer size
#define BSIZE 512 // send/receive buffer sizes
#define XREMOTE_TIMEOUT 9 // timeout set to 9 seconds
//
int X32debug = 0;
int X32verbose = 1;
//
// Macros:
//
#ifdef __WIN32__
#define KEYBOARDINPUT() input_intch = getkey();
#define MANAGEEOL() printf("\n");
#define MANAGEBSP() printf(" \b");
#else
#define KEYBOARDINPUT() input_intch = getc(stdin);
#define MANAGEEOL()
#define MANAGEBSP()
#endif
//
#define RPOLL \
do { \
FD_ZERO (&ufds); \
FD_SET (Xfd, &ufds); \
p_status = select(Xfd+1, &ufds, NULL, NULL, &timeout); \
} while (0);
//
#define RECV \
do { \
r_len = recvfrom(Xfd, r_buf, BSIZE, 0, 0, 0); \
if (X32verbose) {Xfdump("X->", r_buf, r_len, X32debug); fflush(stdout);} \
} while (0);
//
#define SEND \
do { \
if (X32verbose) {Xfdump("->X", s_buf, s_len, X32debug); fflush(stdout);} \
if (s_delay) millisleep (s_delay); \
if (sendto (Xfd, s_buf, s_len, 0, Xip_addr, Xip_len) < 0) { \
perror ("Error while sending data"); \
exit (EXIT_FAILURE); \
} \
} while(0);
//
#define XREMOTE() \
do { \
if (xremote_on) { \
now = time(NULL); \
if (now > before + XREMOTE_TIMEOUT) { \
if (X32debug) {Xfdump("->X", xremote, 12, 0); fflush(stdout);} \
if (sendto (Xfd, xremote, 12, 0, Xip_addr, Xip_len) < 0) { \
perror ("coundn't send data to X32"); \
exit (EXIT_FAILURE); \
} \
before = now; \
} \
} \
} while (0);
//
#define CHECKX32() \
do { \
RPOLL \
if (p_status > 0) { \
RECV \
} \
} while (p_status > 0);
//
//
#define TESTINPUT() \
else if (strcmp(input_line, "exit") == 0) keep_on = 0; \
else if (strcmp(input_line, "quit") == 0) keep_on = 0; \
else if (strcmp(input_line, "xremote") == 0) printf(":: xremote is %s\n",((xremote_on)?"on":"off"));\
else if (strcmp(input_line, "xremote off") == 0) xremote_on = 0; \
else if (strcmp(input_line, "xremote on") == 0) xremote_on = 1; \
else if (strcmp(input_line, "verbose") == 0) printf(":: verbose is %s\n",((X32verbose)?"on":"off"));\
else if (strcmp(input_line, "verbose off") == 0) X32verbose = 0; \
else if (strcmp(input_line, "verbose on") == 0) X32verbose = 1; \
//
//
//
#ifdef __WIN32__
int getkey();
//
// int getkey(): returns the typed character at keyboard or NO_CHAR if no keyboard key was pressed.
// This is done in non-blocking mode; i.e. NO_CHAR is returned if no keyboard event is read from the
// console event queue.
// This works a lot better for me than the standard call to kbhit() which is generally used as kbhit()
// keeps some characters such as ", `, %, and tries to deal with them before returning them. Not easy
// the to follow-up what's really been typed in.
//
int getkey() {
INPUT_RECORD buf; // interested in bKeyDown event
DWORD len; // seem necessary
int ch;
ch = NO_CHAR; // default return value;
PeekConsoleInput(GetStdHandle(STD_INPUT_HANDLE), &buf, 1, &len);
if (len > 0) {
if (buf.EventType == KEY_EVENT && buf.Event.KeyEvent.bKeyDown) {
ch = _getch(); // set ch to input char only under right conditions
if (ch > 31 || ch == 8) putc(ch, stdout); // echoes char to console out if displayable
}
FlushConsoleInputBuffer(GetStdHandle(STD_INPUT_HANDLE)); // remove consumed events
// ReadConsoleInput(GetStdHandle(STD_INPUT_HANDLE), &buf, 1, &len); // could call this too
} else {
Sleep(2); // avoids too High a CPU usage when no input
}
return ch;
}
#endif
//
//
//
//
int
main(int argc, char **argv)
{
struct sockaddr_in Xip;
struct sockaddr* Xip_addr = (struct sockaddr *)&Xip;
int Xfd; // our socket
char Xip_str[20], Xport_str[8];
int r_len, s_len, p_status;
char r_buf[BSIZE];
char s_buf[BSIZE];
//
int xremote_on;
char xremote[12] = "/xremote"; // automatic trailing zeroes
int l_index;
char input_line[LINEMAX + 4];
int input_intch; // addresses limitations in certain C compilers wit getopt()
int keep_on, do_keyboard, s_delay, filein;
FILE* fdk = NULL;
time_t before, now;
//
fd_set ufds;
struct timeval timeout;
//
#ifdef __WIN32__
WSADATA wsa;
int Xip_len = sizeof(Xip); // length of addresses
#else
socklen_t Xip_len = sizeof(Xip); // length of addresses
#endif
//
// Initialize communication with X32 server at IP ip and PORT port
// Set default values to match your X32 desk
strcpy (Xip_str, "192.168.1.62");
strcpy (Xport_str, "10023");
//
// Manage arguments
filein = 0;
do_keyboard = 1;
s_delay = 10;
while ((input_intch = getopt(argc, argv, "i:d:k:f:s:t:v:h")) != -1) {
switch ((char)input_intch) {
case 'i':
strcpy(Xip_str, optarg );
break;
case 'd':
sscanf(optarg, "%d", &X32debug);
break;
case 'f':
filein = 1;
sscanf(optarg, "%s", input_line);
break;
case 'k':
sscanf(optarg, "%d", &do_keyboard);
break;
case 's':
filein = 2;
sscanf(optarg, "%s", input_line);
break;
case 't':
sscanf(optarg, "%d", &s_delay);
break;
case 'v':
sscanf(optarg, "%d", &X32verbose);
break;
default:
case 'h':
printf("usage: X32_command [-i X32 console ipv4 address]\n");
printf(" [-d 0/1, [0], debug option]\n");
printf(" [-v 0/1 [1], verbose option]\n");
printf(" [-k 0/1 [1], keyboard mode on]\n");
printf(" [-t int [10], delay between batch commands in ms]\n");
printf(" [-s file, reads X32node formatted data lines from 'file']\n");
printf(" [-f file, sets batch mode on, getting input data from 'file']\n");
printf(" default IP is 192.168.1.62\n\n");
printf(" If option -s file is used, the program reads data from the provided file \n");
printf(" until EOF has been reached, and exits after that.\n\n");
printf(" If option -f file is used, the program runs in batch mode, taking data from\n");
printf(" the provided file until EOF has been reached, or 'exit' or 'kill' entered.\n\n");
printf(" If not killed or no -f option, the program runs in standard mode, taking data\n");
printf(" from the keyboard or <stdin> on linux systems.\n");
printf(" While executing, the following commands can be used:\n");
printf(" '#line of text.....': will print out the input line as a comment line\n");
printf(" 'exit' | 'quit': will quit the current mode\n");
printf(" 'kill': [batch mode only] will exit the progam\n");
printf(" 'time <value>': will change the delay between batch commands to <value>\n");
printf(" 'verbose <on|off>': will change the verbose mode\n");
printf(" 'verbose': will return the current verbose mode\n");
printf(" 'xremote <on|off>': will change the xremote mode\n");
printf(" 'xremote': will return the current xremote mode\n");
printf(" '' (empty line) [standard mode only]: will repeat the last entered command\n\n");
printf(" All other commands are parsed and sent to X32.\n");
printf(" Typical X32 command structure:\n");
printf(" <command> [<format> [<data> [<data> [...]]]], where for example:\n");
printf(" command: /info, /status, /ch/00/mix/fader, ...\n");
printf(" format: ',i' ',f' ',s' or a combination: ',siss' ',ffiss' ...\n");
printf(" data: a list of int, float or string types separated by a space char...\n\n");
return(0);
break;
}
}
#ifdef __WIN32__
//Initialize winsock
if (WSAStartup (MAKEWORD( 2, 2), &wsa) != 0) {
printf ("Failed. Error Code : %d", WSAGetLastError());
exit (EXIT_FAILURE);
}
#endif
//
// Load the X32 address we connect to; we're a client to X32, keep it simple.
// Create UDP socket
if ((Xfd = socket (PF_INET, SOCK_DGRAM, IPPROTO_UDP)) < 0) {
perror ("failed to create X32 socket");
exit (EXIT_FAILURE);
}
// Construct server sockaddr_in structure
memset (&Xip, 0, sizeof(Xip)); // Clear struct
Xip.sin_family = AF_INET; // Internet/IP
Xip.sin_addr.s_addr = inet_addr(Xip_str); // IP address
Xip.sin_port = htons(atoi(Xport_str)); // server port/
//
// Set receiving from X32 to non blocking mode
// The 500ms timeout is used for delaying the printing of '.' at startup.
timeout.tv_sec = 0;
timeout.tv_usec = 500000; //Set timeout for non blocking recvfrom(): 500ms
FD_ZERO(&ufds);
FD_SET(Xfd, &ufds);
// make stdin (fd = 0) I/O nonblocking
#ifndef __WIN32__
fcntl(0, F_SETFL, fcntl(0, F_GETFL, 0) | O_NONBLOCK);
#endif
//
// All done. Let's send and receive messages
// Establish logical connection with X32 server
printf(" X32_Command - v1.39 - (c)2014-19 Patrick-Gilles Maillot\n\nConnecting to X32.");
//
keep_on = 1;
xremote_on = X32verbose; // Momentarily save X32verbose
X32verbose = 0;
s_len = Xsprint(s_buf, 0, 's', "/info");
while (keep_on) {
SEND // command /info sent;
RPOLL // read data if available
if (p_status < 0) {
printf("Polling for data failed\n");
return 1; // exit on receive error
} else if (p_status > 0) {
RECV // We have received data - process it!
if (strcmp(r_buf, "/info") == 0)
break; // Connected!
} // ... else timeout
printf("."); fflush(stdout);
}
printf(" Done!\n");
//
// Set 1ms timeout to get faster response from X32 (when testing for /xremote data).
timeout.tv_usec = 1000; //Set timeout for non blocking recvfrom(): 1ms
X32verbose = xremote_on; // Restore X32verbose
xremote_on = 0;
l_index = 0;
before = 0;
if (filein) {
if ((fdk = fopen(input_line, "r")) == NULL) {
printf ("Cannot read file: %s\n", input_line);
exit(EXIT_FAILURE);
}
if (filein == 1) {
while (keep_on) {
XREMOTE()
if (fgets(input_line, LINEMAX, fdk)) {
input_line[strlen(input_line) - 1] = 0;
// Check for program batch mode commands
if (input_line[0] == '#') printf("---comment: %s\n", input_line);
TESTINPUT() // Test for input data checks
// Additional batch-mode input data checks
else if (strcmp(input_line, "kill") == 0) {keep_on = 0; do_keyboard = 0;}
else if (strncmp(input_line, "time", 4) == 0) {sscanf(input_line+5, "%d", &s_delay); printf(":: delay is: %d\n", s_delay);}
else if (strlen(input_line) > 1) { // X32 command line
s_len = Xcparse(s_buf, input_line);
SEND // send batch command
}
CHECKX32() // Check if X32 sent something back
} else {
keep_on = 0;
}
}
printf ("---end of batch mode file\n");
fflush (stdout);
if (fdk) fclose(fdk);
} else { // filein = 2 ('s' option)
timeout.tv_usec = 10000; // Set timeout to 10ms
do_keyboard = 0; // force exit after end-of-file
while (fgets(input_line, LINEMAX, fdk) != NULL) {
// skip comment lines
if (input_line[0] != '#') {
input_line[strlen(input_line) - 1] = 0; // avoid trailing '\n'
s_len = Xsprint(s_buf, 0, 's', "/");
s_len = Xsprint(s_buf, s_len, 's', ",s");
s_len = Xsprint(s_buf, s_len, 's', input_line);
SEND // send data to X32
CHECKX32() // X32 will echo back the line
}
}
printf ("---end of file\n");
fflush (stdout);
if (fdk) fclose(fdk);
}
}
// Done with the file (if there was one)
// revert to keyboard/interactive mode if enabled
if (do_keyboard) {
keep_on = 1;
while (keep_on) {
XREMOTE() // process /xremote if needded
// build command by reading keyboard characters (from stdin)
KEYBOARDINPUT()
#ifdef __WIN32__
if (input_intch == CTRLC) exit(0);
if (input_intch == CTRLV) {
clip = NULL;
if (OpenClipboard(NULL)) {
clip = GetClipboardData(CF_TEXT);
strcpy(input_line + l_index, clip);
s_len = Xcparse(s_buf, input_line);
SEND // send parsed data
CloseClipboard();
}
l_index = 0;
} else
#endif
if (input_intch == EOL) {
if (l_index) {
MANAGEEOL()
// Check for program interactive mode commands
input_line[l_index] = 0;
if (input_line[0] == '#') printf("---comment: %s\n", input_line);
TESTINPUT() // Test for input data checks
else { // new line/command
s_len = Xcparse(s_buf, input_line);
SEND // send parsed data
}
l_index = 0;
} else {
printf ("resending\n");
SEND // empty line: resend previous parsed data
}
} else {
// parse input_intch values, building new command
if (l_index < LINEMAX) {
if (input_intch != NO_CHAR)
input_line[l_index++] = (char)input_intch;
if (input_intch == BACKSPACE) {
MANAGEBSP()
l_index -= BACKCHARS; // remove char if backspace entered
if (l_index < 0) l_index = 0;
}
} else {
printf("!!! line too long - ignored line\n");
l_index = 0;
}
}
CHECKX32() // Check if X32 sent something back
}
}
close(Xfd);
return 0;
}