[go: up one dir, main page]

Menu

[cac7ae]: / src / main.c  Maximize  Restore  History

Download this file

611 lines (565 with data), 19.1 kB

  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
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
/*
main.c
Controls the GEMBIRD Silver Shield PM USB outlet device
(C) 2015-2018, Heinrich Schuchardt <xypron.glpk@gmx.de>
(C) 2011-2016, Pete Hildebrandt <send2ph@gmail.com>
(C) 2010, Olivier Matheret, France, for the scheduling part
(C) 2004-2011, Mondrian Nuessle, Computer Architecture Group,
University of Mannheim, Germany
(C) 2005, Andreas Neuper, Germany
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <errno.h>
#include <fcntl.h>
#include <getopt.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define __USE_XOPEN
#include <signal.h>
#include <time.h>
#include <usb.h>
#include <sys/stat.h>
#include <sys/types.h>
#include "sispm_ctl.h"
#include "socket.h"
#include "config.h"
#ifndef MSG_NOSIGNAL
#include <signal.h>
#endif
#ifndef WEBLESS
static void daemonize()
{
/* Our process ID and Session ID */
pid_t pid;
/* Fork off the parent process */
pid = fork();
if (pid < 0)
exit(EXIT_FAILURE);
/* If we got a good PID, then
we can exit the parent process. */
if (pid > 0)
exit(EXIT_SUCCESS);
/* Change the file mode mask */
umask(0);
/* Change the current working directory */
if ((chdir("/var/tmp")) < 0)
/* Log the failure */
exit(EXIT_FAILURE);
/*
* We do not expect any keyboard input anymore.
* STDERR is still needed for logging.
*/
close(STDIN_FILENO);
close(STDOUT_FILENO);
}
#endif
static void print_disclaimer(void)
{
fprintf(stderr, "\nSiS PM Control for Linux " PACKAGE_VERSION "\n\n"
"(C) 2015-2018, Heinrich Schuchardt <xypron.glpk@gmx.de>\n"
"(C) 2011-2016, Pete Hildebrandt <send2ph@gmail.com>\n"
"(C) 2004-2011, Mondrian Nuessle\n"
"(C) 2005-2006, Andreas Neuper\n"
"(C) 2010, Olivier Matheret for the scheduling part\n\n"
"This program comes with ABSOLUTELY NO WARRANTY.\n\n"
"You may re-distribute it under the terms of the\n"
"GNU General Public License version 2 or later.\n");
return;
}
static void print_usage(char* name)
{
print_disclaimer();
fprintf(stderr,"\n"
"sispmctl -s\n"
"sispmctl [-q] [-n] [-d 0...] [-D ...] -b <on|off>\n"
"sispmctl [-q] [-n] [-d 0...] [-D ...] -[o|f|t|g|m] 1..4|all\n"
"sispmctl [-q] [-n] [-d 0...] [-D ...] -[a|A] 1..4|all [--Aat '...'] "
"[--Aafter ...] [--Ado <on|off>] ... [--Aloop ...]\n"
" 'v' - print version & copyright\n"
" 'h' - print this usage information\n"
" 's' - scan for supported GEMBIRD devices\n"
" 'b' - switch buzzer on or off\n"
" 'o' - switch outlet(s) on\n"
" 'f' - switch outlet(s) off\n"
" 't' - toggle outlet(s) on/off\n"
" 'g' - get status of outlet(s)\n"
" 'm' - get power supply status outlet(s) on/off\n"
" 'd' - apply to device 'n'\n"
" 'D' - apply to device with given serial number\n"
" 'n' - show result numerically\n"
" 'q' - quiet mode, no explanations - but errors\n"
" 'a' - get schedule for outlet\n"
" 'A' - set schedule for outlet\n"
" '-A<num>' - select outlet\n"
" '--Aat \"date\"' - sets an event time as a date "
"'%%Y-%%m-%%d %%H:%%M' in the current time zone\n"
" '--Aafter N' - sets an event time as N minutes "
"after the previous one\n"
" '--Ado <on|off>' - sets the current event's action\n"
" '--Aloop N' - loops to 1st event's action after "
"N minutes\n\n"
#ifndef WEBLESS
"Web interface features:\n"
"sispmctl [-q] [-i <ip>] [-p <#port>] [-u <path>] -l|L\n"
" 'l' - start port listener\n"
" 'L' - same as 'l', but stay in foreground\n"
" 'i' - bind socket on interface with given IP (dotted decimal, "
"e.g. 192.168.1.1)\n"
" 'p' - port number for listener (%d)\n"
" 'u' - repository for web pages (default=%s)\n\n"
,listenport, homedir
#endif
);
#ifdef WEBLESS
fprintf(stderr,"Note: This build was compiled without "
"web-interface features.\n\n");
#endif
}
static void parse_command_line(int argc, char* argv[], int count,
struct usb_device*dev[], char *usbdevsn[])
{
int numeric=0;
int c;
int i,j;
int result;
int from=1, upto=4;
int status;
int devnum=0;
usb_dev_handle *udev=NULL;
usb_dev_handle *sudev=NULL; //scan device
unsigned int id=0; //product id of current device
char* onoff[] = { "off", "on", "0", "1" };
#ifndef WEBLESS
char* bindaddr=0;
#endif
unsigned int outlet;
struct plannif plan;
plannif_reset(&plan);
#ifdef BINDADDR
if (strlen(BINDADDR) != 0)
bindaddr=BINDADDR;
#endif
while( (c=getopt(argc, argv,"i:o:f:t:a:A:b:g:m:lLqvh?nsd:D:u:p:")) != -1 ) {
if (count == 0) {
switch(c) {
case '?':
case 'h':
case 'v':
break;
default:
fprintf(stderr, "No GEMBIRD SiS-PM found. Check USB connections, please!\n");
if (udev != NULL) {
usb_close(udev);
udev = NULL;
}
exit(1);
}
}
if( c=='o' || c=='f' || c=='g' || c=='t' || c=='a' || c=='A' || c=='m') {
if((strncmp(optarg,"all",strlen("all"))==0)
|| (atoi(optarg)==7) ) {
//use all outlets
from=1;
upto=4;
} else {
from = upto = atoi(optarg);
}
if (from<1 || upto>4) {
fprintf(stderr,"Invalid outlet number given: %s\n"
"Expected: 1, 2, 3, 4, or all.\nTerminating.\n",optarg);
print_disclaimer();
exit(-6);
}
} else {
from = upto = 0;
}
if( c=='o' || c=='f' || c=='g' || c=='b' || c=='t' || c=='a' || c=='A'
|| c=='m') { //we need a device handle for these commands
/* get device-handle/-id if it wasn't done already */
if(udev==NULL) {
udev = get_handle(dev[devnum]);
if(udev==NULL) {
fprintf(stderr, "No access to Gembird #%d USB device %s\n",
devnum, dev[devnum]->filename );
exit(1);
} else if(verbose) printf("Accessing Gembird #%d USB device %s\n",
devnum, dev[devnum]->filename );
id = get_id(dev[devnum]);
}
}
#ifdef WEBLESS
if (c=='l' || c=='L' || c=='i' || c=='p' || c=='u' ) {
fprintf(stderr,"Application was compiled without web-interface. "
"Feature not available.\n");
exit(-100);
}
#endif
// using first available device
switch (c) {
case '?':
case 'h':
case 'v':
break;
default:
id = get_id(dev[devnum]);
if (((id == PRODUCT_ID_MSISPM_OLD) || (id == PRODUCT_ID_MSISPM_FLASH))
&& (from != upto))
from = upto = 1;
}
for (i=from; i <= upto; ++i) {
switch(c) {
case 's':
for (status=0; status<count; ++status) {
if (numeric == 0)
printf("Gembird #%d\nUSB information: bus %s, device %s\n", status,
dev[status]->bus->dirname, dev[status]->filename);
else
printf("%d %s %s\n", status,
dev[status]->bus->dirname, dev[status]->filename);
id = get_id(dev[status]);
if ((id == PRODUCT_ID_SISPM) ||
(id == PRODUCT_ID_SISPM_FLASH_NEW) ||
(id == PRODUCT_ID_SISPM_EG_PMS2))
if (numeric == 0)
printf("device type: 4-socket SiS-PM\n");
else
printf("4\n");
else if (numeric == 0)
printf("device type: 1-socket mSiS-PM.\n");
else
printf("1\n");
sudev = get_handle(dev[status]);
id = get_id(dev[status]);
if(sudev==NULL) {
fprintf(stderr, "No access to Gembird #%d USB device %s\n",
status, dev[status]->filename );
exit(1);
}
if (numeric == 0)
printf("serial number: %s\n",get_serial(sudev));
else
printf("%s\n",get_serial(sudev));
usb_close(sudev);
sudev = NULL;
printf("\n");
}
break;
// select device...
// replace previous (first is default) device by selected one
case 'd': // by id
if (udev != NULL) {
usb_close(udev);
udev = NULL;
}
devnum = atoi(optarg);
if ((devnum < 0) || (devnum >= count)) {
fprintf(stderr, "Invalid number or given device not found.\n"
"Terminating\n");
if (udev != NULL) {
usb_close(udev);
udev = NULL;
}
exit(-8);
}
break;
case 'D': // by serial number
for (j=0; j < count; ++j) {
if (debug)
fprintf(stderr, "now comparing %s and %s\n", usbdevsn[j], optarg);
if (strcasecmp(usbdevsn[j], optarg) == 0) {
if (udev != NULL) {
usb_close(udev);
udev = NULL;
}
devnum = j;
break;
}
}
if (devnum != j) {
fprintf(stderr, "No device with serial number %s found.\n"
"Terminating\n",optarg);
if (udev != NULL) {
usb_close(udev);
udev = NULL;
}
exit(-8);
}
break;
case 'o':
outlet=check_outlet_number(id, i);
sispm_switch_on(udev,id,outlet);
if(verbose) printf("Switched outlet %d %s\n",i,onoff[1+numeric]);
break;
case 'f':
outlet=check_outlet_number(id, i);
sispm_switch_off(udev,id,outlet);
if(verbose) printf("Switched outlet %d %s\n",i,onoff[0+numeric]);
break;
case 't':
outlet=check_outlet_number(id, i);
result=sispm_switch_toggle(udev,id,outlet);
if(verbose) printf("Toggled outlet %d %s\n",i,onoff[result]);
break;
case 'A': {
time_t date, lastEventTime;
struct tm *timeStamp_tm;
struct plannif plan;
int opt, lastAction = 0;
ulong loop = 0;
int optindsave = optind;
int actionNo=0;
outlet=check_outlet_number(id, i);
time( &date );
timeStamp_tm = localtime(&date);
lastEventTime = ((ulong)(date/60))*60; // round to previous minute
plannif_reset (&plan);
plan.socket = outlet;
plan.timeStamp = date;
plan.actions[0].switchOn = 0;
const struct option opts[] = {
{ "Ado", 1, NULL, 'd' },
{ "Aafter", 1, NULL, 'a' },
{ "Aat", 1, NULL, '@' },
{ "Aloop", 1, NULL, 'l' },
{ NULL, 0, 0, 0 }
};
// scan long options and store in plan+loop variables
while ((opt = getopt_long(argc, argv, "", opts, NULL)) != EOF) {
if (opt == 'l') {
loop = atol(optarg);
continue;
}
if (actionNo+1 >= sizeof(plan.actions)/sizeof(struct plannifAction)) {
// last event is reserved for loop or stop
fprintf(stderr,"Too many scheduled events\nTerminating\n");
exit(-7);
}
switch (opt) {
case 'd':
plan.actions[actionNo+1].switchOn = (strcmp(optarg, "on")
== 0 ? 1 : 0);
break;
case 'a':
plan.actions[actionNo].timeForNext = atol(optarg);
break;
case '@': {
struct tm tm;
time_t time4next;
bzero (&tm, sizeof(tm));
tm.tm_isdst = timeStamp_tm->tm_isdst;
strptime(optarg, "%Y-%m-%d %H:%M", &tm);
time4next = mktime(&tm);
if (time4next > lastEventTime)
plan.actions[actionNo].timeForNext = (time4next - lastEventTime) / 60;
else
plan.actions[actionNo].timeForNext = 0;
break;
}
default:
fprintf(stderr,"Unknown Option: %s\nTerminating\n",argv[optind-1]);
exit(-7);
break;
}
if (plan.actions[actionNo].timeForNext == 0) {
fprintf(stderr,"Incorrect Date: %s\nTerminating\n",optarg);
exit(-7);
}
if (plan.actions[actionNo].timeForNext != -1
&& plan.actions[actionNo+1].switchOn != -1) {
lastEventTime += 60 * plan.actions[actionNo].timeForNext;
++actionNo;
}
}
// compute the value to set in the last row, according to loop
while (plan.actions[lastAction].timeForNext != -1) {
if (loop && (lastAction > 0)) {
// we ignore the first time for the loop calculation
if (loop <= plan.actions[lastAction].timeForNext) {
printf ("error : the loop period is too short\n");
exit(1);
}
loop -= plan.actions[lastAction].timeForNext;
}
++lastAction;
}
if (lastAction >= 1)
plan.actions[lastAction].timeForNext = loop;
// let's go, and check
usb_command_setplannif(udev, &plan);
if(verbose) {
plannif_reset (&plan);
usb_command_getplannif(udev,outlet,&plan);
plannif_display(&plan, 0, NULL);
}
if (i<upto)
optind = optindsave; // reset for next device if needed
break;
}
case 'a':
outlet=check_outlet_number(id, i);
struct plannif plan;
plannif_reset (&plan);
usb_command_getplannif(udev,outlet,&plan);
plannif_display(&plan, verbose, argv[0]);
break;
case 'g':
outlet=check_outlet_number(id, i);
result=sispm_switch_getstatus(udev,id,outlet);
if(verbose) printf("Status of outlet %d:\t",i);
printf("%s\n",onoff[ result +numeric]);
break;
case 'm':
outlet=check_outlet_number(id, i);
result=sispm_get_power_supply_status(udev,id,outlet);
if(verbose) printf("Power supply status is:\t");
//take bit 1, which gives the relais status
printf("%s\n",onoff[ result +numeric]);
break;
#ifndef WEBLESS
case 'p':
listenport=atoi(optarg);
if(verbose) printf("Server will listen on port %d.\n",listenport);
break;
case 'u':
homedir=strdup(optarg);
if(verbose) printf("Web pages come from \"%s\".\n",homedir);
break;
case 'i':
bindaddr=optarg;
if (verbose) printf("Web server will bind on interface with IP %s\n",
bindaddr);
break;
case 'l':
case 'L': {
int* s;
if (verbose)
printf("Server goes to listen mode now.\n");
if ((s = socket_init(bindaddr)) != NULL) {
if (c == 'l')
daemonize();
while(1)
l_listen(s,dev[devnum],devnum);
} else
exit(EXIT_FAILURE);
break;
}
#endif
case 'q':
verbose=1-verbose;
break;
case 'n':
numeric=2-numeric;
break;
case 'b':
if (strncmp(optarg,"on",strlen("on"))==0) {
sispm_buzzer_on(udev);
if(verbose) printf("Turned buzzer %s\n",onoff[1+numeric]);
} else if (strncmp(optarg,"off",strlen("off"))==0) {
sispm_buzzer_off(udev);
if(verbose) printf("Turned buzzer %s\n",onoff[0+numeric]);
}
break;
case 'v':
print_disclaimer();
break;
case '?':
case 'h':
print_usage( argv[0] );
exit(1);
default:
fprintf(stderr,"Unknown Option: %c(%x)\nTerminating\n",c,c);
exit(-7);
}
} // loop through devices
} // loop through options
if (udev!=NULL) {
usb_close(udev);
udev = NULL;
}
return;
}
int main(int argc, char** argv)
{
struct usb_bus *bus;
struct usb_device *dev, *usbdev[MAXGEMBIRD], *usbdevtemp;
char *usbdevsn[MAXGEMBIRD];
int count=0, found = 0, i=1;
#ifndef MSG_NOSIGNAL
(void) signal(SIGPIPE, SIG_IGN);
#endif
memset(usbdev,0,sizeof(usbdev));
usb_init();
usb_find_busses();
usb_find_devices();
// initialize by setting device pointers to zero
for (count=0; count < MAXGEMBIRD; ++count)
usbdev[count]=NULL;
count=0;
//first search for GEMBIRD (m)SiS-PM devices
for (bus = usb_busses; bus; bus = bus->next) {
for (dev = bus->devices; dev; dev = dev->next) {
if ((dev->descriptor.idVendor == VENDOR_ID)
&& ((dev->descriptor.idProduct == PRODUCT_ID_SISPM) ||
(dev->descriptor.idProduct == PRODUCT_ID_MSISPM_OLD) ||
(dev->descriptor.idProduct == PRODUCT_ID_MSISPM_FLASH) ||
(dev->descriptor.idProduct == PRODUCT_ID_SISPM_FLASH_NEW) ||
(dev->descriptor.idProduct == PRODUCT_ID_SISPM_EG_PMS2))) {
usbdev[count] = dev;
++count;
}
if (count == MAXGEMBIRD) {
fprintf(stderr,"%d devices found. Please recompile if you need to "
"support more devices!\n",count);
break;
}
}
}
/* bubble sort them first, thnx Ingo Flaschenberger */
if (count > 1) {
do {
found = 0;
for (i=1; i< count; ++i) {
if (usbdev[i]->devnum < usbdev[i-1]->devnum) {
usbdevtemp = usbdev[i];
usbdev[i] = usbdev[i-1];
usbdev[i-1] = usbdevtemp;
found = 1;
}
}
} while (found != 0);
}
/* get serial number of each device */
for (i=0; i < count; ++i) {
usb_dev_handle *sudev = NULL;
sudev = get_handle(usbdev[i]);
if (sudev == NULL) {
fprintf(stderr, "No access to Gembird #%d USB device %s\n",
i, usbdev[i]->filename );
usbdevsn[i] = malloc(5);
usbdevsn[i][0] = '#';
usbdevsn[i][1] = '0'+i;
usbdevsn[i][2] = '\0';
} else {
usbdevsn[i] = strdup(get_serial(sudev));
usb_close(sudev);
sudev = NULL;
}
}
/* do the real work here */
if (argc <= 1)
print_usage(argv[0]);
else
parse_command_line(argc,argv,count,usbdev,usbdevsn);
return 0;
}