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
|
#include <stdbool.h>
#include <rpc/rpc.h>
#include <netinet/in.h>
#include <unistd.h>
#include <glib.h>
#include <poll.h>
#include "libvxi11client.h"
#include "vxi11.h"
#define DEBUG
#ifdef DEBUG
#include <stdio.h>
#include <arpa/inet.h>
#endif
/**
* This is a thin wrapper around the rpcgen generated code to give it a simpler interface.
* Only one server with a single link is supported.
*/
#define FLAG_TERMCHRSET (1 << 7)
#define FLAG_END (1 << 3)
#define FLAG_WAITLOCK 1
#define VXI11_DEFAULT_TIMEOUT 1000
static GThread* interruptthread;
static void (*interruptcallback)(char*) = NULL;
static bool interruptserverstarted = false;
static unsigned int interruptserverport = -1;
static GMutex* mutex;
static GCond* cond;
void *
device_intr_srq_1_svc(Device_SrqParms *argp, struct svc_req *rqstp) {
#ifdef DEBUG
printf("device_intr_srq_1_svc()\n");
#endif
if (interruptcallback != NULL) {
interruptcallback(argp->handle.handle_val);
}
static char * result;
return (void *) &result;
}
static void device_intr_1(struct svc_req *rqstp, register SVCXPRT *transp) {
union {
Device_SrqParms device_intr_srq_1_arg;
} argument;
char *result;
xdrproc_t _xdr_argument, _xdr_result;
char *(*local)(char *, struct svc_req *);
switch (rqstp->rq_proc) {
case NULLPROC:
(void) svc_sendreply(transp, (xdrproc_t) xdr_void, (char *) NULL);
return;
case device_intr_srq:
_xdr_argument = (xdrproc_t) xdr_Device_SrqParms;
_xdr_result = (xdrproc_t) xdr_void;
local = (char *(*)(char *, struct svc_req *)) device_intr_srq_1_svc;
break;
default:
svcerr_noproc(transp);
return;
}
memset((char *) &argument, 0, sizeof(argument));
if (!svc_getargs(transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
svcerr_decode(transp);
return;
}
result = (*local)((char *) &argument, rqstp);
if (result != NULL && !svc_sendreply(transp, (xdrproc_t) _xdr_result, result)) {
svcerr_systemerr(transp);
}
if (!svc_freeargs(transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
fprintf(stderr, "%s", "unable to free arguments");
exit(1);
}
return;
}
static Device_Flags vxi11_generateflags(bool waitlock, bool end, bool termchrset) {
Device_Flags flags = 0;
if (waitlock)
flags |= FLAG_WAITLOCK;
if (end)
flags |= FLAG_END;
if (termchrset)
flags |= FLAG_TERMCHRSET;
return flags;
}
/**
* create an RPC client and open a link to the server at $address.
* $device is apparently used for VXI-11 -> GPIB gateways.. this is untested.
*/
int vxi11_open(VXI11Context* context, char* address, char* device) {
context->clnt = clnt_create(address, DEVICE_CORE, DEVICE_CORE_VERSION, "tcp");
if (context->clnt == NULL)
return 0;
else {
Create_LinkParms link_parms;
link_parms.clientId = (long) context->clnt;
link_parms.lockDevice = 0;
link_parms.lock_timeout = VXI11_DEFAULT_TIMEOUT;
link_parms.device = device != NULL ? device : "device0";
Create_LinkResp* linkresp = create_link_1(&link_parms, context->clnt);
if (linkresp != NULL && linkresp->error == 0) {
context->devicelink = linkresp->lid;
#ifdef DEBUG
printf("Link created, lid is %d, abort channel port %d\n", (int) linkresp->lid, linkresp->abortPort);
#endif
struct sockaddr_in serveraddr;
if (clnt_control(context->clnt, CLGET_SERVER_ADDR, (char*) &serveraddr)) {
#ifdef DEBUG
char addressstring[INET_ADDRSTRLEN];
inet_ntop(AF_INET, &serveraddr.sin_addr, addressstring, sizeof(addressstring));
printf("Remote is %s\n", addressstring);
#endif
serveraddr.sin_port = htons(linkresp->abortPort);
int sock = RPC_ANYSOCK;
context->abortclnt = clnttcp_create(&serveraddr, DEVICE_ASYNC, DEVICE_ASYNC_VERSION, &sock, 0, 0);
if (context->abortclnt == NULL)
return 0;
}
else
// failed!
return 0;
context->interruptchannelopen = false;
context->interruptsenabled = false;
return 1;
}
else if (linkresp == NULL)
return 0;
else
return -(linkresp->error);
}
}
/**
* read the status byte of the connected server
*/
int vxi11_readstatusbyte(VXI11Context* context, bool waitforlock) {
if (context->clnt == NULL)
return 0;
Device_GenericParms params = { .lid = context->devicelink, .flags = vxi11_generateflags(waitforlock, false, false),
.lock_timeout = VXI11_DEFAULT_TIMEOUT, .io_timeout = VXI11_DEFAULT_TIMEOUT };
Device_ReadStbResp* resp = device_readstb_1(¶ms, context->clnt);
if (resp != NULL && resp->error == 0)
return resp->stb;
else if (resp == NULL)
return 0;
else
return -1;
}
/**
* write to the connected device. If len is less than 0 the length will be calculated with strlen
* **only safe for standard terminated strings**
*/
int vxi11_write(VXI11Context* context, char* data, int len, bool waitlock, bool end) {
if (context->clnt == NULL)
return 0;
Device_WriteParms params = { .lid = context->devicelink, .io_timeout = VXI11_DEFAULT_TIMEOUT, .lock_timeout =
VXI11_DEFAULT_TIMEOUT, .flags = vxi11_generateflags(waitlock, end, false) };
params.data.data_len = len < 0 ? (strlen(data) + 1) : len;
params.data.data_val = data;
Device_WriteResp* resp = device_write_1(¶ms, context->clnt);
if (resp != NULL && resp->error == 0)
return resp->size;
else if (resp == NULL)
return 0;
else
return -1;
}
/**
* read from the connected device
*/
int vxi11_read(VXI11Context* context, char* buffer, unsigned int bufferlen, bool waitlock, bool termchrset,
char termchr, unsigned int* reason) {
if (context->clnt == NULL)
return 0;
Device_ReadParms params = { .lid = context->devicelink, .requestSize = 256, .io_timeout = VXI11_DEFAULT_TIMEOUT,
.lock_timeout = VXI11_DEFAULT_TIMEOUT, .flags = vxi11_generateflags(waitlock, false, termchrset),
.termChar = termchrset ? termchr : 0 };
Device_ReadResp* resp = device_read_1(¶ms, context->clnt);
if (resp != NULL && resp->error == 0) {
#ifdef DEBUG
printf("Got \"%s\" from server\n", resp->data.data_val);
#endif
if (buffer != NULL)
strncpy(buffer, resp->data.data_val, (bufferlen < resp->data.data_len ? bufferlen : resp->data.data_len));
#ifdef DEBUG
else
printf("Supplied buffer is null!\n");
#endif
if (reason != NULL)
*reason = resp->reason;
return resp->data.data_len;
}
else if (resp == NULL)
return 0;
else
return -1;
}
/**
*
*/
int vxi11_docmd(VXI11Context* context, unsigned long cmd, bool waitforlock) {
if (context->clnt == NULL)
return 0;
Device_DocmdParms params = { .lid = context->devicelink, .flags = vxi11_generateflags(waitforlock, false, false),
.io_timeout = VXI11_DEFAULT_TIMEOUT, .lock_timeout = VXI11_DEFAULT_TIMEOUT, .cmd = cmd, .network_order = 0,
.datasize = 0 };
params.data_in.data_in_len = 0;
params.data_in.data_in_val = NULL;
Device_DocmdResp* resp = device_docmd_1(¶ms, context->clnt);
if (resp != NULL && resp->error == 0)
return 1;
else if (resp == NULL)
return 0;
else
return -(resp->error);
}
/**
* trigger the connected device
*/
int vxi11_trigger(VXI11Context* context, bool waitforlock) {
if (context->clnt == NULL)
return 0;
Device_GenericParms params = { .lid = context->devicelink, .flags = vxi11_generateflags(waitforlock, false, false),
.lock_timeout = VXI11_DEFAULT_TIMEOUT, .io_timeout = VXI11_DEFAULT_TIMEOUT };
Device_Error* error = device_trigger_1(¶ms, context->clnt);
if (error->error == 0)
return 1;
else
return -(error->error);
}
/**
* clear the connected device
*/
int vxi11_clear(VXI11Context* context, bool waitforlock) {
if (context->clnt == NULL)
return 0;
Device_GenericParms params = { .lid = context->devicelink, .flags = vxi11_generateflags(waitforlock, false, false),
.lock_timeout = VXI11_DEFAULT_TIMEOUT, .io_timeout = VXI11_DEFAULT_TIMEOUT };
Device_Error* error = device_clear_1(¶ms, context->clnt);
if (error != NULL && error->error == 0)
return 1;
else if (error == NULL)
return 0;
else
return -(error->error);
}
/**
* remote the connected device
*/
int vxi11_remote(VXI11Context* context, bool waitforlock) {
if (context->clnt == NULL)
return 0;
Device_GenericParms params = { .lid = context->devicelink, .flags = vxi11_generateflags(waitforlock, false, false),
.lock_timeout = VXI11_DEFAULT_TIMEOUT, .io_timeout = VXI11_DEFAULT_TIMEOUT };
Device_Error* error = device_remote_1(¶ms, context->clnt);
if (error != NULL && error->error == 0)
return 1;
else if (error == NULL)
return 0;
else
return -(error->error);
}
/**
* local the connected device
*/
int vxi11_local(VXI11Context* context, bool waitforlock) {
if (context->clnt == NULL)
return 0;
Device_GenericParms params = { .lid = context->devicelink, .flags = vxi11_generateflags(waitforlock, false, false),
.lock_timeout = VXI11_DEFAULT_TIMEOUT, .io_timeout = VXI11_DEFAULT_TIMEOUT };
Device_Error* error = device_local_1(¶ms, context->clnt);
if (error != NULL && error->error == 0)
return 1;
else if (error == NULL)
return 0;
else
return -(error->error);
}
/**
* lock the connected device
*/
int vxi11_lock(VXI11Context* context, bool waitforlock) {
if (context->clnt == NULL)
return 0;
Device_LockParms params = { .lid = context->devicelink, .flags = vxi11_generateflags(waitforlock, false, false),
.lock_timeout = VXI11_DEFAULT_TIMEOUT };
Device_Error* error = device_lock_1(¶ms, context->clnt);
if (error != NULL && error->error == 0)
return 1;
else if (error == NULL)
return 0;
else
return -(error->error);
}
/**
* unlock the connected device
*/
int vxi11_unlock(VXI11Context* context) {
if (context->clnt == NULL)
return 0;
Device_Error* error = device_unlock_1(&(context->devicelink), context->clnt);
if (error != NULL && error->error == 0)
return 1;
else if (error == NULL)
return 0;
else
return -(error->error);
}
static gpointer interruptthreadfunc(gpointer data) {
#ifdef DEBUG
printf("Interrupt channel thread started\n");
#endif
SVCXPRT *transp;
transp = svctcp_create(RPC_ANYSOCK, 0, 0);
if (transp == NULL) {
fprintf(stderr, "%s", "cannot create tcp service.");
return 0;
}
#ifdef DEBUG
printf("Interrupt channel on port %d tcp\n", transp->xp_port);
#endif
if (!svc_register(transp, DEVICE_INTR, DEVICE_INTR_VERSION, device_intr_1, 0)) {
fprintf(stderr, "%s", "unable to register (DEVICE_INTR, DEVICE_INTR_VERSION, tcp).\n");
return 0;
}
interruptserverport = transp->xp_port;
g_mutex_lock(mutex);
g_cond_signal(cond);
g_mutex_unlock(mutex);
int i;
struct pollfd *my_pollfd = NULL;
int last_max_pollfd = 0;
while (interruptserverstarted) {
int max_pollfd = svc_max_pollfd;
if (max_pollfd == 0 && svc_pollfd == NULL)
break;
if (last_max_pollfd != max_pollfd) {
struct pollfd *new_pollfd = realloc(my_pollfd, sizeof(struct pollfd) * max_pollfd);
if (new_pollfd == NULL) {
break;
}
my_pollfd = new_pollfd;
last_max_pollfd = max_pollfd;
}
for (i = 0; i < max_pollfd; ++i) {
my_pollfd[i].fd = svc_pollfd[i].fd;
my_pollfd[i].events = svc_pollfd[i].events;
my_pollfd[i].revents = 0;
}
switch (i = poll(my_pollfd, max_pollfd, VXI11_DEFAULT_TIMEOUT)) {
case -1:
break;
case 0:
continue;
default:
svc_getreq_poll(my_pollfd, i);
continue;
}
break;
}
free(my_pollfd);
#ifdef DEBUG
printf("Interrupt channel thread ended\n");
#endif
return NULL;
}
int vxi11_start_interrupt_server(void (*callback)(char* handle)) {
interruptcallback = callback;
interruptserverstarted = true;
g_thread_init(NULL);
mutex = g_mutex_new();
cond = g_cond_new();
g_mutex_lock(mutex);
interruptthread = g_thread_create(interruptthreadfunc, NULL, true, NULL);
if (interruptthread == NULL)
return 0;
#ifdef DEBUG
printf("Waiting for interrupt thread to start\n");
#endif
g_cond_wait(cond, mutex);
g_mutex_unlock(mutex);
g_cond_free(cond);
g_mutex_free(mutex);
cond = NULL;
mutex = NULL;
#ifdef DEBUG
printf("Interrupt thread started, port is %d\n", interruptserverport);
#endif
if (interruptserverport == -1)
return 0;
return 1;
}
int vxi11_stop_interrupt_server() {
#ifdef DEBUG
printf("Waiting for interrupt thread to die\n");
#endif
interruptserverstarted = false;
g_thread_join(interruptthread);
interruptthread = NULL;
return 1;
}
/**
* create an interrupt channel from the connected device
*/
int vxi11_create_intr_chan(VXI11Context* context) {
if (context->clnt == NULL || context->interruptchannelopen)
return 0;
else if (interruptthread == NULL) {
#ifdef DEBUG
printf("interrupt thread isn't running\n");
#endif
return 0;
}
struct sockaddr_in myaddress;
get_myaddress(&myaddress);
Device_RemoteFunc remotefunc = { .hostAddr = myaddress.sin_addr.s_addr, .hostPort = interruptserverport, .progNum =
DEVICE_INTR, .progVers = DEVICE_INTR_VERSION, .progFamily = DEVICE_TCP };
Device_Error* error = create_intr_chan_1(&remotefunc, context->clnt);
if (error != NULL && error->error == 0) {
context->interruptchannelopen = true;
return 1;
}
else if (error == NULL)
return 0;
else
return -(error->error);
}
/**
* destroy an interrupt channel from the connected device
*/
int vxi11_destroy_intr_chan(VXI11Context* context) {
if (context->clnt == NULL || !(context->interruptchannelopen))
return 0;
else if (interruptthread == NULL)
return 0;
Device_Error* error = destroy_intr_chan_1(NULL, context->clnt);
if (error != NULL && error->error == 0) {
context->interruptchannelopen = false;
return 1;
}
else if (error == NULL)
return 0;
else
return -(error->error);
}
/**
* enable interrupts
*/
int vxi11_enable_srq(VXI11Context* context, bool enable, char* handle) {
if (context->clnt == NULL || !(context->interruptchannelopen))
return 0;
else if (interruptthread == NULL)
return 0;
Device_EnableSrqParms params = { .lid = context->devicelink, .enable = enable };
if (enable) {
if (handle != NULL) {
params.handle.handle_val = handle;
params.handle.handle_len = strlen(handle) + 1;
}
}
else {
params.handle.handle_val = NULL;
params.handle.handle_len = 0;
}
Device_Error* error = device_enable_srq_1(¶ms, context->clnt);
if (error != NULL && error->error == 0) {
return 1;
}
else if (error == NULL)
return 0;
else
return -(error->error);
}
/**
* send an abort to the connected device
*/
int vxi11_abort(VXI11Context* context) {
if (context->abortclnt == NULL)
return 0;
Device_Error* error = device_abort_1(&(context->devicelink), context->abortclnt);
if (error != NULL && error->error == 0)
return 1;
else if (error == NULL)
return 0;
else
return -(error->error);
}
/**
* close the current link and free the RPC client
*/
int vxi11_close(VXI11Context* context) {
if (context->clnt == NULL)
return 0;
Device_Error* error = destroy_link_1(&(context->devicelink), context->clnt);
clnt_destroy(context->clnt);
context->clnt = NULL;
clnt_destroy(context->abortclnt);
context->abortclnt = NULL;
if (error != NULL && error->error == 0)
return 1;
else if (error == NULL)
return 0;
else
return -(error->error);
}
|