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
|
/* Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
*/
#include <stdio.h>
#include <sys/types.h>
#ifdef LINUX
/* Necessary to get DIR.dd_fd on Linux systems. */
#define DIRENT_ILLEGAL_ACCESS
#endif
#ifdef POSIX
#include <dirent.h>
#else
#include <sys/dir.h>
#endif
#define import_kernel
#define import_knames
#define import_spp
#include <iraf.h>
/*
* ZOPDIR.C -- Routines for returning the contents of a directory as a list
* of filename strings.
*
* zopdir (fname, chan)
* zcldir (chan, status)
* zgfdir (chan, outstr, maxch, status)
*
* zopdir opens the directory, reads the contents into memory, and (for
* unix systems) sorts the file list. Successive calls to zgfdir return
* successive elements of the list. EOF is returned at the end of the list.
*/
#define DEF_SBUFLEN 8192
#define DEF_MAXENTRIES 512
struct dir {
int nentries;
int entry;
char *sbuf;
int *soff;
DIR *dir;
};
static int _getfile();
static int d_compar();
static void d_qsort();
static char *sbuf;
static int *soff;
static int nentries;
/* ZOPDIR -- Open a directory file. A directory file is interfaced to FIO
* as a textfile, using a portable set of textfile driver subroutines.
* The directory access primitives contained in this file are called by the
* driver subroutines to read successive machine dependent filenames from
* a directory.
*/
int
ZOPDIR (PKCHAR *fname, XINT *chan)
{
register char *ip, *op;
register DIR *dir;
char osfn[SZ_PATHNAME+1];
int maxentries, sbuflen;
int nchars, sbufoff, fd;
struct dir *dp = NULL;
/* The file name should have an "/" appended, if it is a proper
* directory prefix. This must be removed to get the name of the
* directory file.
*/
memset (osfn, 0, SZ_PATHNAME+1);
for (ip=(char *)fname, op=osfn; (*op = *ip++) != EOS; op++)
;
if (*--op == '/' && op > osfn)
*op = EOS;
/* Open the directory. */
dir = opendir (osfn);
if (dir == NULL) {
*chan = XERR;
return (XERR);
}
nentries = 0;
sbuflen = DEF_SBUFLEN;
maxentries = DEF_MAXENTRIES;
sbuf = (char *) malloc (sbuflen);
soff = (int *) malloc (maxentries * sizeof(int));
if (sbuf == NULL || soff == NULL)
goto err;
/* Read the contents into the string buffer. */
op = sbuf;
while ((nchars = _getfile (dir, op, SZ_FNAME)) != EOF) {
soff[nentries++] = op - sbuf;
op += nchars + 1;
if (nentries >= maxentries) {
maxentries *= 2;
if ((soff = (int *) realloc (soff,
maxentries * sizeof(int))) == NULL)
goto err;
}
if (op + SZ_FNAME + 1 >= sbuf + sbuflen) {
sbuflen *= 2;
sbufoff = op - sbuf;
if ((sbuf = (char *) realloc (sbuf, sbuflen)) == NULL)
goto err;
op = sbuf + sbufoff;
}
}
/* Sort the file list. */
d_qsort (soff, nentries, sizeof(int), d_compar);
/* Free unused space. */
if ((soff = (int *) realloc (soff, nentries * sizeof(int))) == NULL)
goto err;
if ((sbuf = (char *) realloc (sbuf, op-sbuf)) == NULL)
goto err;
if ((dp = (struct dir *) malloc (sizeof (struct dir))) == NULL)
goto err;
/* Set up directory descriptor. */
dp->nentries = nentries;
dp->sbuf = sbuf;
dp->soff = soff;
dp->entry = 0;
dp->dir = dir;
#if (defined(REDHAT) || defined(LINUX) || defined(MACOSX) || defined (IPOD))
fd = dirfd(dir);
#else
fd = dir->dd_fd; /* MACHDEP */
#endif
zfd[fd].fp = (FILE *)dp;
*chan = fd;
return (*chan);
err:
if (soff)
free (soff);
if (sbuf)
free (sbuf);
if (dp)
free (dp);
closedir (dir);
*chan = XERR;
return (XERR);
}
/* ZCLDIR -- Close a directory file.
*/
int
ZCLDIR (XINT *chan, XINT *status)
{
register struct dir *dp = (struct dir *)zfd[*chan].fp;
closedir (dp->dir);
free (dp->sbuf);
free (dp->soff);
free (dp);
*status = XOK;
return (XOK);
}
/* ZGFDIR -- Get the next file name from an open directory file. We are
* called by the text file driver for a directory file, hence file names
* are returned as simple packed strings.
*/
int
ZGFDIR (
XINT *chan,
PKCHAR *outstr,
XINT *maxch,
XINT *status
)
{
register struct dir *dp = (struct dir *)zfd[*chan].fp;
register int n, nchars;
register char *ip, *op;
if (dp->entry < dp->nentries) {
ip = dp->sbuf + dp->soff[dp->entry++];
op = (char *)outstr;
for (n = *maxch, nchars=0; --n >= 0 && (*op++ = *ip++); )
nchars++;
((char *)outstr)[nchars] = EOS;
*status = nchars;
} else
*status = XEOF;
return (*status);
}
/* GETFILE -- Get the next file name from an open directory file.
*/
static int
_getfile (DIR *dir, char *outstr, int maxch)
{
register char *ip, *op;
register int n;
int status;
#ifdef POSIX
register struct dirent *dp;
#else
register struct direct *dp;
#endif
for (dp = readdir(dir); dp != NULL; dp = readdir(dir))
#ifdef CYGWIN
if (dp) {
#else
if (dp->d_ino != 0) {
#endif
#ifdef POSIX
n = strlen (dp->d_name);
#else
n = (dp->d_namlen < maxch) ? dp->d_namlen : maxch;
#endif
status = n;
for (ip=dp->d_name, op=outstr; --n >= 0; )
*op++ = *ip++;
*op = EOS;
return (status);
}
return (EOF);
}
/*
* QSORT -- Local version of quicksort, to make this code self contained.
* -----------------------------
*/
/* COMPAR -- String comparision routine for what follows.
*/
static int
d_compar (char *a, char *b)
{
return (strcmp (&sbuf[*(int *)a], &sbuf[*(int *)b]));
}
/*
* Copyright (c) 1980 Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that the above copyright notice and this paragraph are
* duplicated in all such forms and that any documentation,
* advertising materials, and other materials related to such
* distribution and use acknowledge that the software was developed
* by the University of California, Berkeley. The name of the
* University may not be used to endorse or promote products derived
* from this software without specific prior written permission.
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
/*
* QSORT -- Quicker sort. Adapted from the BSD sources.
*/
#define THRESH 4 /* threshold for insertion */
#define MTHRESH 6 /* threshold for median */
#ifdef min
#undef min
#undef max
#endif
static int (*qcmp)(); /* the comparison routine */
static int qsz; /* size of each record */
static int thresh; /* THRESHold in chars */
static int mthresh; /* MTHRESHold in chars */
static void d_qst();
/* QSORT -- First, set up some global parameters for qst to share. Then,
* quicksort with qst(), and then a cleanup insertion sort ourselves.
* Sound simple? It's not...
*/
static void
d_qsort (char *base, int n, int size, int (*compar)())
{
register char c, *i, *j, *lo, *hi;
char *min, *max;
if (n <= 1)
return;
qsz = size;
qcmp = compar;
thresh = qsz * THRESH;
mthresh = qsz * MTHRESH;
max = base + n * qsz;
if (n >= THRESH) {
d_qst (base, max);
hi = base + thresh;
} else
hi = max;
/* First put smallest element, which must be in the first THRESH, in
* the first position as a sentinel. This is done just by searching
* the first THRESH elements (or the first n if n < THRESH), finding
* the min, and swapping it into the first position.
*/
for (j=lo=base; (lo += qsz) < hi; )
if ((*qcmp)(j, lo) > 0)
j = lo;
if (j != base) {
/* Swap j into place */
for (i=base, hi=base+qsz; i < hi; ) {
c = *j;
*j++ = *i;
*i++ = c;
}
}
/* With our sentinel in place, we now run the following hyper-fast
* insertion sort. For each remaining element, min, from [1] to [n-1],
* set hi to the index of the element AFTER which this one goes.
* Then, do the standard insertion sort shift on a character at a time
* basis for each element in the frob.
*/
for (min=base; (hi = min += qsz) < max; ) {
while ((*qcmp) (hi -= qsz, min) > 0)
/* void */;
if ((hi += qsz) != min) {
for (lo = min + qsz; --lo >= min; ) {
c = *lo;
for (i=j=lo; (j -= qsz) >= hi; i=j)
*i = *j;
*i = c;
}
}
}
}
/* QST -- Do a quicksort.
* First, find the median element, and put that one in the first place as the
* discriminator. (This "median" is just the median of the first, last and
* middle elements). (Using this median instead of the first element is a big
* win). Then, the usual partitioning/swapping, followed by moving the
* discriminator into the right place. Then, figure out the sizes of the two
* partions, do the smaller one recursively and the larger one via a repeat of
* this code. Stopping when there are less than THRESH elements in a partition
* and cleaning up with an insertion sort (in our caller) is a huge win.
* All data swaps are done in-line, which is space-losing but time-saving.
* (And there are only three places where this is done).
*/
static void
d_qst (char *base, char *max)
{
register char c, *i, *j, *jj;
register int ii;
char *mid, *tmp;
int lo, hi;
/* At the top here, lo is the number of characters of elements in the
* current partition. (Which should be max - base).
* Find the median of the first, last, and middle element and make
* that the middle element. Set j to largest of first and middle.
* If max is larger than that guy, then it's that guy, else compare
* max with loser of first and take larger. Things are set up to
* prefer the middle, then the first in case of ties.
*/
lo = max - base; /* number of elements as chars */
do {
mid = i = base + qsz * ((lo / qsz) >> 1);
if (lo >= mthresh) {
j = ((*qcmp)((jj = base), i) > 0 ? jj : i);
if ((*qcmp)(j, (tmp = max - qsz)) > 0) {
/* switch to first loser */
j = (j == jj ? i : jj);
if ((*qcmp)(j, tmp) < 0)
j = tmp;
}
if (j != i) {
ii = qsz;
do {
c = *i;
*i++ = *j;
*j++ = c;
} while (--ii);
}
}
/* Semi-standard quicksort partitioning/swapping
*/
for (i = base, j = max - qsz; ; ) {
while (i < mid && (*qcmp)(i, mid) <= 0)
i += qsz;
while (j > mid) {
if ((*qcmp)(mid, j) <= 0) {
j -= qsz;
continue;
}
tmp = i + qsz; /* value of i after swap */
if (i == mid) {
/* j <-> mid, new mid is j */
mid = jj = j;
} else {
/* i <-> j */
jj = j;
j -= qsz;
}
goto swap;
}
if (i == mid) {
break;
} else {
/* i <-> mid, new mid is i */
jj = mid;
tmp = mid = i; /* value of i after swap */
j -= qsz;
}
swap:
ii = qsz;
do {
c = *i;
*i++ = *jj;
*jj++ = c;
} while (--ii);
i = tmp;
}
/* Look at sizes of the two partitions, do the smaller
* one first by recursion, then do the larger one by
* making sure lo is its size, base and max are update
* correctly, and branching back. But only repeat
* (recursively or by branching) if the partition is
* of at least size THRESH.
*/
i = (j = mid) + qsz;
if ((lo = j - base) <= (hi = max - i)) {
if (lo >= thresh)
d_qst(base, j);
base = i;
lo = hi;
} else {
if (hi >= thresh)
d_qst(i, max);
max = j;
}
} while (lo >= thresh);
}
|