forked from indilib/indi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
indidrivermain.c
147 lines (123 loc) · 3.79 KB
/
indidrivermain.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
#if 0
INDI
Copyright (C) 2003-2006 Elwood C. Downey
Updated by Jasem Mutlaq (2003-2010)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#endif
/* main() for one INDI driver process.
* Drivers define IS*() functions we call to deliver INDI XML arriving on stdin.
* Drivers call ID*() functions to send INDI XML commands to stdout.
* Drivers call IE*() functions to build an event-driver program.
* Drivers call IU*() functions to perform various common utility tasks.
* Troubles are reported on stderr then we exit.
*
* This requires liblilxml.
*/
#include "base64.h"
#include "eventloop.h"
#include "indicom.h"
#include "indidevapi.h"
#include "indidriver.h"
#include "lilxml.h"
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#define MAXRBUF 2048
static void usage(void);
/* callback when INDI client message arrives on stdin.
* collect and dispatch when see outter element closure.
* exit if OS trouble or see incompatable INDI version.
* arg is not used.
*/
static void clientMsgCB(int fd, void *arg)
{
LilXML *clixml = (LilXML*)arg;
char buf[MAXRBUF], msg[MAXRBUF], *bp;
int nr;
/* one read */
nr = read(fd, buf, sizeof(buf));
if (nr < 0)
{
fprintf(stderr, "%s: %s\n", me, strerror(errno));
exit(1);
}
if (nr == 0)
{
fprintf(stderr, "%s: EOF\n", me);
exit(1);
}
/* crack and dispatch when complete */
for (bp = buf; nr-- > 0; bp++)
{
XMLEle *root = readXMLEle(clixml, *bp, msg);
if (root)
{
if (dispatch(root, msg) < 0)
fprintf(stderr, "%s dispatch error: %s\n", me, msg);
delXMLEle(root);
}
else if (msg[0])
fprintf(stderr, "%s XML error: %s\n", me, msg);
}
}
int main(int ac, char *av[])
{
#ifndef _WIN32
int ret = setgid(getgid());
ret = setuid(getuid());
if (geteuid() != getuid())
exit(255);
#endif
/* save handy pointer to our base name */
// #PS: maybe use 'program_invocation_short_name'?
for (me = av[0]; av[0][0]; av[0]++)
if (av[0][0] == '/')
me = &av[0][1];
/* crack args */
while (--ac && (*++av)[0] == '-')
while (*++(*av))
switch (*(*av))
{
case 'v': /* verbose */
verbose++;
break;
default:
usage();
}
/* ac remaining args starting at av[0] */
if (ac > 0)
usage();
/* init */
LilXML *clixml = newLilXML();
addCallback(0, clientMsgCB, clixml);
/* service client */
eventLoop();
/* eh?? */
fprintf(stderr, "%s: inf loop ended\n", me);
return (1);
}
/* print usage message and exit (1) */
static void usage(void)
{
fprintf(stderr, "Usage: %s [options]\n", me);
fprintf(stderr, "Purpose: INDI Device driver framework.\n");
fprintf(stderr, "Options:\n");
fprintf(stderr, " -v : more verbose to stderr\n");
exit(1);
}