-
Notifications
You must be signed in to change notification settings - Fork 0
/
SeGeneric.c
265 lines (205 loc) · 5.4 KB
/
SeGeneric.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
/*
* This file is part of the Seyon, Copyright (c) 1992-1993 by Muhammad M.
* Saggaf. All rights reserved.
*
* See the file COPYING (1-COPYING) or the manual page seyon(1) for a full
* statement of rights and permissions for this program.
*/
#include "config.h"
#include <stdio.h>
#ifndef NOSTDHDRS
#include <stdlib.h>
#endif
#include <ctype.h>
#include <errno.h>
#include <math.h>
#include <setjmp.h>
#include <signal.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
#include "SeDecl.h"
void ReadCommentedFile(fp, line) FILE *fp;
char *line[];
{
char buffer[REG_BUF + 1], *bufPtr, *ptr;
int i;
for (i = 0; i < MAX_ENT && fgets(buffer, REG_BUF, fp) != NULL;) {
/*Strip newline character from end of string*/
buffer[strlen(buffer) - 1] = '\0';
/*Remove leading and trailing spaces*/
bufPtr = SSpc(buffer);
/*Ignore this line if it is empty or starts with a comment*/
if (bufPtr[0] == '\0' || bufPtr[0] == '#')
continue;
/*Ignore trailing comments*/
if ((ptr = (char *)strrchr(bufPtr, '#')) != NULL)
*ptr = '\0';
line[i++] = XtNewString(bufPtr);
}
line[i] = NULL;
}
void FreeList(listArr) XtPointer listArr[];
{
int i;
for (i = 0; listArr[i]; i++)
XtFree(listArr[i]);
listArr[0] = NULL;
}
int ConvertStringToIntArray(str, intArr) char *str;
int intArr[];
{
char num[TIN_BUF], *numPtr;
int i;
intArr[0] = 0;
if (!str)
return 0;
for (i = 0;;) {
while (isspace(*str))
str++;
if (!*str)
return 0;
for (numPtr = num; *str && !isspace(*str); *numPtr++ = *str++)
;
*numPtr = '\0';
intArr[i] = atoi(num);
intArr[++i] = 0;
}
}
/* ------------------------------------------------------------
* Routines to read from the tty.
*/
/*
* TtyReadStr: reads a bunch of characters from the modem.
*/
int TtyReadStr(fd, buf) int fd;
char *buf;
{
int count;
/* The do-loop is used to restart the system call if it is interrupted by
a signal. This is simpler than missing with SA_INTERRUPT */
do
/* BUFSIZ is defined in stdio.h */
count = read(fd, buf, BUFSIZ);
while (count < 0 && errno == EINTR);
if (count < 0) {
SePError("character read");
return -1;
}
return count;
}
jmp_buf timedReadEnv;
void timedReadAlarmHandler(dummy) int dummy;
{ longjmp(timedReadEnv, 1); }
int TtyTimedReadChar(fd, readChar, expireTime) int fd;
char *readChar;
int expireTime;
{
/* BUFSIZ is defined in stdio.h */
static char readBuf[BUFSIZ], *bufPtr;
static int count = 0;
static void (*oldSigHandler)();
static unsigned oldAlarmTimeLeft;
if (count > 0) {
count--;
*readChar = *++bufPtr;
return 0;
}
if (expireTime > 0) {
oldSigHandler = signal(SIGALRM, timedReadAlarmHandler);
oldAlarmTimeLeft = alarm((unsigned)expireTime);
if (setjmp(timedReadEnv) != 0) {
alarm(max(oldAlarmTimeLeft - expireTime, 0));
signal(SIGALRM, oldSigHandler);
return -1;
}
}
count = TtyReadStr(fd, (bufPtr = readBuf));
if (expireTime > 0) {
alarm(max(oldAlarmTimeLeft - expireTime + alarm(0), 0));
signal(SIGALRM, oldSigHandler);
}
if (count < 0)
return count;
count--;
*readChar = *bufPtr;
return 0;
}
/*
* TtyReadChar: reads one character from the tty.
*/
char TtyReadChar(fd, readChar) int fd;
char *readChar;
{ return TtyTimedReadChar(fd, readChar, 0); }
/*---------------------------------------------------------------------------+
| TtyReadLine - reads one line from the tty.
+---------------------------------------------------------------------------*/
int TtyReadLine(fd, buf) int fd;
char *buf;
{
char c;
int i, readCharRet;
while ((readCharRet = TtyReadChar(fd, &c)) >= 0 && (c == '\r' || c == '\n'))
;
if (readCharRet < 0)
return readCharRet;
i = 0;
do
buf[i++] = c;
while ((readCharRet = TtyReadChar(fd, &c)) >= 0 && (c != '\r' && c != '\n'));
buf[i] = '\0';
return readCharRet;
}
int TtyTimedWaitFor(fd, expectedString, waitTime) int fd;
char *expectedString;
int waitTime;
{
time_t expireTime;
char c, *ptr = expectedString;
expireTime = time((time_t *)0) + waitTime;
while (expireTime != time((time_t *)0)) {
if ((TtyTimedReadChar(fd, &c, 1)) < 0)
continue;
if ((char)c != *ptr)
ptr = expectedString;
else if (*++ptr == '\0')
return 0;
} /* while... */
return -1;
}
/* ------------------------------------------------------------
* Miscellaneous routines.
*/
/*
* usleep: for systems that do not have it.
*/
#if !HAVE_USLEEP
void usleep(usec) unsigned long usec;
{
#if HAVE_SELECT
/* Orest Zborowski originally wrote this */
struct timeval timeout;
timeout.tv_sec = usec / 1000000;
timeout.tv_usec = usec - 1000000 * timeout.tv_sec;
select(1, NULL, NULL, NULL, &timeout);
#else
/* This busy-waiting, normally a bad idea on a multi-tasking system, is used
because sleep(1) is way too much of a delay. */
int i;
for (i = 0; i < usec; i++)
;
#endif /* HAVE_SELECT */
}
#endif /* HAVE_USLEEP */
/*
* dup2: for systems that do not have it.
*/
#if !HAVE_DUP2
int dup2(oldfd, newfd) int oldfd, newfd;
{
if (fcntl(oldfd, F_GETFL, 0) == -1) /* Valid file descriptor? */
return -1; /* No, return an error. */
close(newfd); /* Ensure newfd is closed */
return fcntl(oldfd, F_DUPFD, newfd); /* Dup oldfd into newfd */
}
#endif /* HAVE_DUP2 Thanks to Bill Allie CIS: 76703,2061 */