File: CUPS.xs

package info (click to toggle)
cups-filters 1.28.17-3%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 6,096 kB
  • sloc: ansic: 54,489; cpp: 7,023; sh: 1,911; makefile: 963; xml: 127; perl: 73; php: 28; python: 8
file content (270 lines) | stat: -rw-r--r-- 4,460 bytes parent folder | download | duplicates (15)
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
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"

#include <cups/cups.h>
#include <cups/http.h>
#include <cups/ipp.h>
#include <cups/language.h>
#include <cups/ppd.h>

static int
not_here(char *s)
{
    croak("%s not implemented on this architecture", s);
    return -1;
}

static double
constant_PPD_M(char *name, int len, int arg)
{
    if (5 + 3 >= len ) {
	errno = EINVAL;
	return 0;
    }
    switch (name[5 + 3]) {
    case 'L':
	if (strEQ(name + 5, "AX_LINE")) {	/* PPD_M removed */
#ifdef PPD_MAX_LINE
	    return PPD_MAX_LINE;
#else
	    goto not_there;
#endif
	}
    case 'N':
	if (strEQ(name + 5, "AX_NAME")) {	/* PPD_M removed */
#ifdef PPD_MAX_NAME
	    return PPD_MAX_NAME;
#else
	    goto not_there;
#endif
	}
    case 'T':
	if (strEQ(name + 5, "AX_TEXT")) {	/* PPD_M removed */
#ifdef PPD_MAX_TEXT
	    return PPD_MAX_TEXT;
#else
	    goto not_there;
#endif
	}
    }
    errno = EINVAL;
    return 0;

not_there:
    errno = ENOENT;
    return 0;
}

static double
constant_P(char *name, int len, int arg)
{
    if (1 + 3 >= len ) {
	errno = EINVAL;
	return 0;
    }
    switch (name[1 + 3]) {
    case 'M':
	if (!strnEQ(name + 1,"PD_", 3))
	    break;
	return constant_PPD_M(name, len, arg);
    case 'V':
	if (strEQ(name + 1, "PD_VERSION")) {	/* P removed */
#ifdef PPD_VERSION
	    return PPD_VERSION;
#else
	    goto not_there;
#endif
	}
    }
    errno = EINVAL;
    return 0;

not_there:
    errno = ENOENT;
    return 0;
}

static double
constant_H(char *name, int len, int arg)
{
    if (1 + 8 >= len ) {
	errno = EINVAL;
	return 0;
    }
    switch (name[1 + 8]) {
    case 'B':
	if (strEQ(name + 1, "TTP_MAX_BUFFER")) {	/* H removed */
#ifdef HTTP_MAX_BUFFER
	    return HTTP_MAX_BUFFER;
#else
	    goto not_there;
#endif
	}
    case 'H':
	if (strEQ(name + 1, "TTP_MAX_HOST")) {	/* H removed */
#ifdef HTTP_MAX_HOST
	    return HTTP_MAX_HOST;
#else
	    goto not_there;
#endif
	}
    case 'U':
	if (strEQ(name + 1, "TTP_MAX_URI")) {	/* H removed */
#ifdef HTTP_MAX_URI
	    return HTTP_MAX_URI;
#else
	    goto not_there;
#endif
	}
    case 'V':
	if (strEQ(name + 1, "TTP_MAX_VALUE")) {	/* H removed */
#ifdef HTTP_MAX_VALUE
	    return HTTP_MAX_VALUE;
#else
	    goto not_there;
#endif
	}
    }
    errno = EINVAL;
    return 0;

not_there:
    errno = ENOENT;
    return 0;
}

static double
constant_IPP_M(char *name, int len, int arg)
{
    if (5 + 3 >= len ) {
	errno = EINVAL;
	return 0;
    }
    switch (name[5 + 3]) {
    case 'N':
	if (strEQ(name + 5, "AX_NAME")) {	/* IPP_M removed */
#ifdef IPP_MAX_NAME
	    return IPP_MAX_NAME;
#else
	    goto not_there;
#endif
	}
    case 'V':
	if (strEQ(name + 5, "AX_VALUES")) {	/* IPP_M removed */
#ifdef IPP_MAX_VALUES
	    return IPP_MAX_VALUES;
#else
	    goto not_there;
#endif
	}
    }
    errno = EINVAL;
    return 0;

not_there:
    errno = ENOENT;
    return 0;
}

static double
constant_I(char *name, int len, int arg)
{
    if (1 + 3 >= len ) {
	errno = EINVAL;
	return 0;
    }
    switch (name[1 + 3]) {
    case 'M':
	if (!strnEQ(name + 1,"PP_", 3))
	    break;
	return constant_IPP_M(name, len, arg);
    case 'P':
	if (strEQ(name + 1, "PP_PORT")) {	/* I removed */
#ifdef IPP_PORT
	    return IPP_PORT;
#else
	    goto not_there;
#endif
	}
    }
    errno = EINVAL;
    return 0;

not_there:
    errno = ENOENT;
    return 0;
}

static double
constant_C(char *name, int len, int arg)
{
    if (1 + 4 >= len ) {
	errno = EINVAL;
	return 0;
    }
    switch (name[1 + 4]) {
    case 'D':
	if (strEQ(name + 1, "UPS_DATE_ANY")) {	/* C removed */
#ifdef CUPS_DATE_ANY
	    return CUPS_DATE_ANY;
#else
	    goto not_there;
#endif
	}
    case 'V':
	if (strEQ(name + 1, "UPS_VERSION")) {	/* C removed */
#ifdef CUPS_VERSION
	    return CUPS_VERSION;
#else
	    goto not_there;
#endif
	}
    }
    errno = EINVAL;
    return 0;

not_there:
    errno = ENOENT;
    return 0;
}

static double
constant(char *name, int len, int arg)
{
    errno = 0;
    switch (name[0 + 0]) {
    case 'C':
	return constant_C(name, len, arg);
    case 'H':
	return constant_H(name, len, arg);
    case 'I':
	return constant_I(name, len, arg);
    case 'P':
	return constant_P(name, len, arg);
    }
    errno = EINVAL;
    return 0;

not_there:
    errno = ENOENT;
    return 0;
}


MODULE = CUPS		PACKAGE = CUPS		


double
constant(sv,arg)
    PREINIT:
	STRLEN		len;
    INPUT:
	SV *		sv
	char *		s = SvPV(sv, len);
	int		arg
    CODE:
	RETVAL = constant(s,len,arg);
    OUTPUT:
	RETVAL