aboutsummaryrefslogtreecommitdiff
path: root/vendor/voclient/voapps/lib/voRanges.c
blob: 0c1ed608e3718cdbaba359b82e6252683049f064 (plain) (blame)
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
/******************************************************************************
**  RANGES -- Simple range-specification package to decode lists of numbers
**  or ranges of the form:
**
**		<start> '-' <end> [ 'x' <stride>]
**
**  Sample code using this package might look like:
**
**
**    #include <stdlib.h>
**    #include <ctype.h>
**
**    int vot_decodeRanges(char *str, int *ranges, int max_ranges,int *nvalues);
**    int get_next_number (int *ranges, int number);
**
**    int main (int argc, char **argv)
**    {
**        char *rtest[] = { "1-10,12,16",      "1-7x2,12-14",
**		            "1,3,5,7,9-12",    "1,8",
**		            "12-8",            "12-8x-1",
**		            NULL };
**        int  i, *ranges, max_ranges=100, nvalues=0, val;
**
**        ranges = (int *) malloc (1024);
**        for (i=0; rtest[i]; i++) {
** 	    printf ("vot_decodeRanges: '%s'\n\n   ", rtest[i]);
**	    val = vot_decodeRanges (rtest[i], ranges, max_ranges, &nvalues);
**	    for (val=0; (val = get_next_number (ranges, val)) > 0; )
** 	        printf (" %d ", val);
**        }
**    }
** 	    
**  Assumes ranges are positive and always increasing, i.e. a range "3-1"
**  will not return (3,2,1) but (1,2,3).  Default stride is 1, open-ended
**  ranges are not permitted.
**
**  M. Fitzpatrick, NOAO, June 2007  (Translated from IRAF xtools$ranges.x)
**
******************************************************************************/

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <dirent.h>
#include <unistd.h>
#include <ctype.h>
#include "VOClient.h"
#include "voAppsP.h"


#define	FIRST	1			/* Default starting range	*/
#define	LAST	MAX_INT			/* Default ending range		*/
#define	STEP	1			/* Default step			*/
#define	EOLIST	0			/* End of list			*/

#define	MAX_INT	65535
#define	INDEF	65534
/*#define ERR	-1*/
#define EOS	'\0'
#define OK	0


static int ctoi (char *str, int *ip, int *ival);

/*************************************************************************
**  DECODERANGES -- Parse a string containing a list of integer numbers or
**  ranges, delimited by either spaces or commas.  Return as output a list
**  of ranges defining a list of numbers, and the count of list numbers.
**  Range limits must be positive nonnegative integers.  ERR is returned as
**  the function value if a conversion error occurs.  The list of ranges is
**  delimited by EOLIST.
*/
int 
vot_decodeRanges (range_string, ranges, max_ranges, nvalues)

char	*range_string;		/* Range string to be decoded		*/
int	ranges[];		/* Range array				*/
int	max_ranges;		/* Maximum number of ranges		*/
int	*nvalues;		/* The number of values in the ranges	*/

{
    int	  ip, nrange, first, last, step, diff, *ra = &ranges[0];

    ip = 0;
    *nvalues = 0;

    for (nrange = 0; nrange < (max_ranges - 1); nrange += 3) {
	/* Defaults to all nonnegative integers. 
	*/
	first = FIRST;
	last = LAST;
	step = STEP;

	/* Skip delimiters.
	*/
	while (isspace(range_string[ip]) || range_string[ip] == ',')
	    ip++;

	/* Get first limit.  Must be a number, '-', 'x', or EOS.  
	** If not return ERR.
	*/
	if (range_string[ip] == EOS) {		/* end of list	 	*/
	    if (nrange == 0) {
		ra[0] = first; 			/* null string defaults */
		ra[1] = last;
		ra[2] = step;
		ra[3] = EOLIST;
	    	*nvalues = MAX_INT;
		return (OK);
	    } else {
		ra[nrange] = EOLIST;
		return (OK);
	    }
	} else if (range_string[ip] == '-')
	    ;
	else if (range_string[ip] == 'x')
	    ;
	else if (isdigit((int)range_string[ip])) {	/* ,n..		*/
	    if (ctoi (range_string, &ip, &first) == 0)
		return (ERR);
	} else
	    return (ERR);

	/* Skip delimiters.
	*/
	while (isspace(range_string[ip]) || range_string[ip] == ',')
	    ip++;

	/* Get last limit.  Must be '-', or 'x' otherwise last = first.
	*/
	if (range_string[ip] == 'x')
	    ;
	else if (range_string[ip] == '-') {
	    ip++;
	    while (isspace(range_string[ip]) || range_string[ip] == ',')
		ip++;
	    if (range_string[ip] == EOS)
		;
	    else if (isdigit((int)range_string[ip])) {
		if (ctoi (range_string, &ip, &last) == 0)
		    return (ERR);
	    } else if (range_string[ip] == 'x')
		;
	    else
		return (ERR);
	} else
	    last = first;

	/* Skip delimiters
	*/
	while (isspace(range_string[ip]) || range_string[ip] == ',')
	    ip++;

	/* Get step.  Must be 'x' or assume default step.
	*/
	if (range_string[ip] == 'x') {
	    ip++;
	    while (isspace(range_string[ip]) || range_string[ip] == ',')
	        ip++;
	    if (range_string[ip] == EOS)
		;
	    else if (isdigit((int)range_string[ip])) {
		if (ctoi (range_string, &ip, &step) == 0)
		    ;
		if (step == 0)
		    return (ERR);
	    } else if (range_string[ip] == '-')
		;
	    else
		return (ERR);
	}

	/* Output the range triple. 
	*/
	ra[nrange  ] = first;
	ra[nrange+1] = last;
	ra[nrange+2] = step;
	diff = last - first;
	if (diff < 0)
	    diff = - (diff);
	*nvalues = *nvalues + diff / step + 1;
    }

    return (ERR);				/* ran out of space */
}


/*  GET_NEXT_NUMBER -- Given a list of ranges and the current file number,
**  find and return the next file number.  Selection is done in such a way
**  that list numbers are always returned in monotonically increasing order,
**  regardless of the order in which the ranges are given.  Duplicate entries
**  are ignored.  EOF is returned at the end of the list.
*/
int 
get_next_number (int ranges[], int number)
{
    int	    a, b, ip, first, last, step, next_number, remainder;


    /* If number+1 is anywhere in the list, that is the next number,
    ** otherwise the next number is the smallest number in the list which
    ** is greater than number+1.
    */
    number = number + 1;
    next_number = MAX_INT;

    for (ip=0;  ranges[ip] != EOLIST;  ip=ip+3) {
	a = ranges[ip];
	b = ranges[ip + 1];
	first = (a < b) ? a : b;
	last  = (a > b) ? a : b;
	step  = ranges[ip+2];
	if (step == 0) {
	    fprintf (stderr, "ERROR: Step size of zero in range list");
	    return (0);
	}

	if (number >= first && number <= last) {
	    remainder = (number - first) % step;
	    if (remainder == 0)
	        return (number);
	    if ((number - remainder + step) <= last)
	        next_number = number - remainder + step;
	} else if (first > number)
	    next_number = (next_number <  first) ? next_number : first;
    }

    if (next_number == MAX_INT)
	return (EOF);
    else {
	number = next_number;
	return (number);
    }
}


/*  IS_IN_RANGE -- Test number to see if it is in range.
*/
int 
is_in_range (int ranges[], int number)
{
    int	  a, b, ip, first, last, step, num = number;

    for (ip=0;  ranges[ip] != EOLIST;  ip += 3) {
	a = ranges[ip];
	b = ranges[ip + 1];
	first = (a < b) ? a : b;
	last  = (a > b) ? a : b;
	step = ranges[ip+2];
	if (num >= first && num <= last)
	    if (((num - first) % step) == 0)
		return (1);
    }

    return (0);
}


/* CTOI -- Simple character to integer (decimal radix) that advances the 
** character pointer (index).
*/
static int
ctoi (char *str, int *ip, int *ival)
{
    int	neg, sum, ip_start;

    while (isspace (str[*ip]))
	*ip = *ip + 1;
    ip_start = *ip;

    if ((neg = (str[*ip] == '-')))
	*ip = *ip + 1;

    sum = 0;
    while (isdigit ((int) str[*ip])) {
	sum = sum * 10 + (int) (str[*ip] - '0');
	*ip = *ip + 1;
    }

    if (neg)
        *ival = -sum;
    else
        *ival = sum;

    return (*ip - ip_start);
}