-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpowerusb.cpp
397 lines (375 loc) · 10 KB
/
powerusb.cpp
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
#include "powerusb.h"
#include "LinuxPowerUSB.hpp"
#include <curses.h>
const int numinput = 7;
static bool debugging = false;
template <typename T, typename... Args>
static void debug( T fmt, Args... args ) {
int len = std::snprintf( nullptr, 0, fmt, args... );
char buf[len+100];
std::snprintf( buf, sizeof(buf), fmt, args... );
if( debugging ) {
fprintf( stdout, "%s\n", buf );
fflush(stdout);
}
}
void usage(char **argv) {
fprintf( stderr, "Usage: %s [-devDfm] -p port [-s state]\n", argv[0]);
fprintf( stderr, " %s -r [-D] <reset-for>\n", argv[0] );
fprintf( stderr, " %s -w [-D]\n", argv[0] );
fprintf( stderr, " %s -R watchDogResetInv [-D] [-W watchdogInv] [-F watchdogFailCount]\n", argv[0] );
}
static bool verbose = false;
class ActionHandler {
bool defState;
bool useexit;
int port, input, output;
char *state;
bool windowing;
bool inputs;
bool outputs;
int watchdogFail;
int watchdog;
int reset;
int watchdogReset;
bool setWatchDog;
bool getModel;
bool getFirmware;
int toggleOn, toggleOff;
bool setupToggle;
public:
LinuxPowerUSB *lp;
ActionHandler( LinuxPowerUSB *lpp ) {
this->lp = lpp;
defState = false;
useexit = false;
port = 0, input=0, output=0;
state = NULL;
windowing = false;
setupToggle = false;
toggleOn = 24*3600;
toggleOff = 5*60;
inputs = false;
outputs = false;
watchdogFail = 1;
getFirmware = false;
getModel = false;
watchdog = 10;
verbose = false;
reset = 0;
watchdogReset = 5;
setWatchDog = false;
}
~ActionHandler() {
if( state != NULL ) {
free(state);
state = NULL;
}
}
int handleRequest( int argc, char* argv[])
{
LinuxPowerUSB &lp = *this->lp;
int c;
while( (c = getopt(argc, argv, "s:p:I:devwmfioDO:r:R:W:F:T:t:")) != -1 ) {
debug("Processing argument: -%c", c );
switch( c ) {
case 'T': toggleOn = atoi(optarg); setupToggle = true; break;
case 't': toggleOff = atoi(optarg); setupToggle = true; break;
case 'F': watchdogFail = atoi(optarg); setWatchDog = true; break;
case 'W': watchdog = atoi(optarg); setWatchDog = true; break;
case 'R': watchdogReset = atoi(optarg); setWatchDog = true; break;
case 'D': debugging = true; break;
case 'f': getFirmware = true; break;
case 'm': getModel = true; break;
case 'r': reset = atoi(optarg); break;
case 'O': output = atoi(optarg); break;
case 'I': input = atoi(optarg); break;
case 'i': inputs = true; break;
case 'o': outputs = true; break;
case 'v': verbose = true; break;
case 'w': windowing = true; break;
case 'd': defState = true; break;
case 'p': port = atoi(optarg); break;
case 's': state = strdup(optarg); break;
case 'e': useexit = true; break;
case -1: break;
default:
throw LinuxPowerUSBError( "bad argument: '%d'", c);
}
}
PowerUSB::debugging = verbose;
debug("...Set verbose=%d", verbose);
if( windowing ) return 5;
if( input == 0 && output == 0 && port == 0 && !inputs && reset == 0 && !setWatchDog && !getFirmware && !getModel ) {
throw LinuxPowerUSBError( "missing port #: -p N required");
}
bool how = false;
if( state != NULL ) {
how = strcasecmp( state, "on") == 0;
}
debug("...Checking reset=%d", reset);
if( reset > 0 ) {
debug("Resetting PowerUSB Board");
lp.powerCycleIn(reset);
debug("Closing all ports");
lp.closeAll();
for( int i = 0; i < reset; ++i ) {
try {
debug("trying setup again to detect recovery");
if(lp.Setup() ) {
debug("checking status");
if( lp.checkStatus() ) {
debug("checkStatus recovery indicated");
break;
}
}
} catch( LinuxPowerUSBError &ex ) {
lp.error( "%s: %s\n", argv[0], ex.what() );
}
sleep(1);
}
}
if( getFirmware ) {
int vers = lp.getVersion();
printf( "%d\n", vers );
}
if( getModel ) {
std::string mod = lp.getModel();
printf( "%s\n", mod.c_str() );
}
debug("...Checking setWatchDog=%d watchdog=%d, fail=%d, resetFor=%d",
setWatchDog, watchdog, watchdogFail, watchdogReset );
if( setWatchDog ) {
lp.setWatchDogInterval( watchdog, watchdogFail, watchdogReset );
while( true ) {
debug("watchdog setup results: %d", lp.getWatchdogStatus() );
debug("sending watchdog heartbeat...");
//lp.sendHeartBeat();
debug("sleeping after heartbeat: %d", watchdog );
sleep( watchdog );
}
}
debug("...Checking port=%d", port);
if( port > 0 ) {
if( setupToggle ) {
debug("setup port=%d toggle: on=%d, off=%d", port, toggleOn, toggleOff );
int v = lp.setupPortToggle( port, toggleOn, toggleOff );
debug("setupPortToggle: %d", v );
sleep(60);
} else {
if( defState ) {
if( state == NULL )
if( useexit ) return(lp.getPortDefaultState(port));
else lp.reportDefault(lp.getPortDefaultState(port), port, verbose);
else
lp.setPortDefaultState( port, how );
} else {
if( state == NULL )
if( useexit ) return(lp.getPortState(port));
else lp.reportStatus(lp.getPortState(port), port, verbose);
else
lp.setPortState( port, how );
}
}
}
debug("...Checking output=%d", output);
if( output > 0 ) {
int st[numinput] = {0};
if( output < 0 || output >= numinput ) {
throw new LinuxPowerUSBArgsError( "Bad output #%d", input );
}
if( state != NULL ) {
st[output] = how;
lp.setOutputState( st );
} else {
lp.getOutputStates( st );
if( verbose ) {
lp.report("Output #%d = %d\n", output, st[output-1] );
} else {
exit( st[output-1] );
}
}
}
debug("...Checking input=%d", input);
if( input > 0 ) {
int st[numinput];
if( input >= numinput ) {
throw new LinuxPowerUSBArgsError( "Bad input #%d", input );
}
lp.getInputStates(st);
if( verbose ) {
lp.report("input #%d = %d\n", input, st[input-1] );
} else {
exit(st[input-1]);
}
}
debug("...Checking inputs=0x%02x", inputs);
if( inputs ) {
int st[8];
lp.getInputStates(st);
lp.report("Inputs: ");
for( int i = 0; i < numinput; ++i ) {
lp.report("%d=%d", i+1, st[i] );
if( i < 6 ) lp.report(", ");
}
lp.report("\n");
}
debug("...Checking outputs=0x%02x", outputs);
if( outputs ) {
int st[8];
lp.getOutputStates(st);
lp.report("Outputs: ");
for( int i = 0; i < numinput; ++i ) {
lp.report("%d=%d", i+1, st[i] );
if( i < 6 ) lp.report(", ");
}
lp.report("\n");
}
return 0;
}
};
static void moveDeviceBy( LinuxPowerUSB &p, int inc ) {
int cur = p.getCurrentDevice();
p.setCurrentDevice(cur+inc);
if( cur == p.getCurrentDevice() ) beep();
}
int main(int argc, char* argv[])
{
LinuxPowerUSB p;
int ret = -1;
try {
const int spc = 8;
const int plugs = 3;
const int cw =4;
debug("settingup debug");
p.setDebug(false);
debug("setup PowerUSB");
p.Setup();
debug("processing arguments");
ActionHandler ah(&p);
ret = ah.handleRequest( argc, argv);
if( ret == 5 ) {
WINDOW *win = NULL;
bool quit = false;
initscr();
cbreak();
noecho();
//nonl();
//intrflush( stdscr, FALSE );
keypad( stdscr, TRUE );
nodelay( stdscr, TRUE );
win = subwin( stdscr, 6, std::max(spc * plugs + 7, numinput * cw + 8), 0, 0 );
move( 9, 0 );
printw("------------------------------------------------------------\n");
printw("SPC/CR=toggle, [1-%d]=Sel, q=quit, TAB/SHFT-TAB=switch ports\n", plugs);
int idx = 0;
//int portDirs[numinput] = {1,1,1,1,1,1,1};
//p.setIODirection(portDirs);
//p.setOutputState(portDirs);
while(!quit) {
move( 7, 0 );
printw("Device #%d: %s: v%d.0", p.getCurrentDevice(),
p.getModel().c_str(), p.getVersion());
move( 1, 1 );
printw("Plg:");
for( int i = 0; i < plugs; ++i ) {
bool st = p.getPortState( i+1 );
move( 1, (i*spc)+7 );
if( i == idx ) {
standout();
}
printw("%d", i+1 );
if( i == idx ) {
standend();
}
addch('=');
wattron( stdscr, st ? A_BOLD : A_DIM );
printw("%s", st ? "on" : "off");
wattroff( stdscr, st ? A_BOLD : A_DIM );
clrtoeol();
}
box( win, '|', '-');
int ch = getch();
int sts[numinput];
int osts[numinput];
p.getInputStates( sts );
p.getOutputStates( osts );
move( 2, 1 );
printw("I/O:");
move( 3, 1 );
printw("Inp:");
move( 4, 1 );
printw("Out:");
for( int i = 0; i < numinput; ++i ) {
move( 2, 5+(i*cw)+2 );
printw ("%d",i+plugs+1) ;
move( 3, 5+(i*cw)+1 );
wattron( stdscr, sts[i] ? A_BOLD : A_DIM );
printw("%3s", sts[i] ? "on" : "off" );
wattroff( stdscr, sts[i] ? A_BOLD : A_DIM );
move( 4, 5+(i*cw)+1 );
wattron( stdscr, osts[i] ? A_BOLD : A_DIM );
printw("%3s", osts[i] ? "on" : "off" );
wattroff( stdscr, osts[i] ? A_BOLD : A_DIM );
}
wrefresh(win);
//refresh();
if( ch != ERR ) {
move(8, 0);
clrtoeol();
}
switch( ch ) {
case 'q': quit = true; break;
case '\r':
case '\n':
case ' ': {
if( idx <plugs ) {
bool st = p.getPortState( idx+1 );
p.setPortState( idx+1, !st );
} else if( idx >=plugs && idx < plugs+numinput ) {
//p.setInput
}
}
continue;
case KEY_BTAB:
idx = ((idx - 1 ) + plugs+numinput) % (plugs+numinput);
break;
case '\t':
idx = (idx + 1 ) % (plugs + numinput);
break;
case ERR:
break;
case '+': moveDeviceBy(p,1); break;
case '-': moveDeviceBy(p,-1); break;
case '1':
case '2':
case '3':
case '4': case '5': case '6': case '7': case '8': case '9': case '0':
{
int nidx = ch - '1';
if( ch == '0' ) nidx = 9;
if( nidx < plugs+numinput ) idx = nidx;
}
default:
move(8, 0);
if( verbose ) printw("key=%d ", ch );
break;
}
if( idx < plugs )
move( 1, (idx*spc)+7 );
else if( idx < numinput+plugs && idx >= plugs )
move( 3, 5+(cw*(idx-plugs))+2 );
refresh();
usleep( 50000 );
}
endwin();
}
} catch( LinuxPowerUSBError &ex ) {
if( ret == 5 ) endwin();
p.error( "%s: %s\n", argv[0], ex.what() );
usage( argv );
}
debug("Closing all...");
p.closeAll();
//return 2;
}