File: inc.c

package info (click to toggle)
libfile-libmagic-perl 1.23-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 940 kB
  • sloc: perl: 725; ansic: 253; makefile: 3
file content (328 lines) | stat: -rw-r--r-- 9,140 bytes parent folder | download | duplicates (2)
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
#define PERL_constant_NOTFOUND	1
#define PERL_constant_NOTDEF	2
#define PERL_constant_ISIV	3
#define PERL_constant_ISNO	4
#define PERL_constant_ISNV	5
#define PERL_constant_ISPV	6
#define PERL_constant_ISPVN	7
#define PERL_constant_ISSV	8
#define PERL_constant_ISUNDEF	9
#define PERL_constant_ISUV	10
#define PERL_constant_ISYES	11

#ifndef NVTYPE
typedef double NV; /* 5.6 and later define NVTYPE, and typedef NV to it.  */
#endif
#ifndef aTHX_
#define aTHX_ /* 5.6 or later define this for threading support.  */
#endif
#ifndef pTHX_
#define pTHX_ /* 5.6 or later define this for threading support.  */
#endif

static int
constant_11 (pTHX_ const char *name, IV *iv_return) {
  /* When generated this function returned values for the list of names given
     here.  However, subsequent manual editing may have added or removed some.
     MAGIC_CHECK MAGIC_DEBUG MAGIC_ERROR */
  /* Offset 6 gives the best switch position.  */
  switch (name[6]) {
  case 'C':
    if (memEQ(name, "MAGIC_CHECK", 11)) {
    /*                     ^           */
#ifdef MAGIC_CHECK
      *iv_return = MAGIC_CHECK;
      return PERL_constant_ISIV;
#else
      return PERL_constant_NOTDEF;
#endif
    }
    break;
  case 'D':
    if (memEQ(name, "MAGIC_DEBUG", 11)) {
    /*                     ^           */
#ifdef MAGIC_DEBUG
      *iv_return = MAGIC_DEBUG;
      return PERL_constant_ISIV;
#else
      return PERL_constant_NOTDEF;
#endif
    }
    break;
  case 'E':
    if (memEQ(name, "MAGIC_ERROR", 11)) {
    /*                     ^           */
#ifdef MAGIC_ERROR
      *iv_return = MAGIC_ERROR;
      return PERL_constant_ISIV;
#else
      return PERL_constant_NOTDEF;
#endif
    }
    break;
  }
  return PERL_constant_NOTFOUND;
}

static int
constant_21 (pTHX_ const char *name, IV *iv_return) {
  /* When generated this function returned values for the list of names given
     here.  However, subsequent manual editing may have added or removed some.
     MAGIC_PARAM_BYTES_MAX MAGIC_PARAM_INDIR_MAX MAGIC_PARAM_REGEX_MAX */
  /* Offset 16 gives the best switch position.  */
  switch (name[16]) {
  case 'R':
    if (memEQ(name, "MAGIC_PARAM_INDIR_MAX", 21)) {
    /*                               ^           */
#ifdef MAGIC_PARAM_INDIR_MAX
      *iv_return = MAGIC_PARAM_INDIR_MAX;
      return PERL_constant_ISIV;
#else
      return PERL_constant_NOTDEF;
#endif
    }
    break;
  case 'S':
    if (memEQ(name, "MAGIC_PARAM_BYTES_MAX", 21)) {
    /*                               ^           */
#ifdef MAGIC_PARAM_BYTES_MAX
      *iv_return = MAGIC_PARAM_BYTES_MAX;
      return PERL_constant_ISIV;
#else
      return PERL_constant_NOTDEF;
#endif
    }
    break;
  case 'X':
    if (memEQ(name, "MAGIC_PARAM_REGEX_MAX", 21)) {
    /*                               ^           */
#ifdef MAGIC_PARAM_REGEX_MAX
      *iv_return = MAGIC_PARAM_REGEX_MAX;
      return PERL_constant_ISIV;
#else
      return PERL_constant_NOTDEF;
#endif
    }
    break;
  }
  return PERL_constant_NOTFOUND;
}

static int
constant_25 (pTHX_ const char *name, IV *iv_return) {
  /* When generated this function returned values for the list of names given
     here.  However, subsequent manual editing may have added or removed some.
     MAGIC_PARAM_ELF_NOTES_MAX MAGIC_PARAM_ELF_PHNUM_MAX
     MAGIC_PARAM_ELF_SHNUM_MAX */
  /* Offset 16 gives the best switch position.  */
  switch (name[16]) {
  case 'N':
    if (memEQ(name, "MAGIC_PARAM_ELF_NOTES_MAX", 25)) {
    /*                               ^               */
#ifdef MAGIC_PARAM_ELF_NOTES_MAX
      *iv_return = MAGIC_PARAM_ELF_NOTES_MAX;
      return PERL_constant_ISIV;
#else
      return PERL_constant_NOTDEF;
#endif
    }
    break;
  case 'P':
    if (memEQ(name, "MAGIC_PARAM_ELF_PHNUM_MAX", 25)) {
    /*                               ^               */
#ifdef MAGIC_PARAM_ELF_PHNUM_MAX
      *iv_return = MAGIC_PARAM_ELF_PHNUM_MAX;
      return PERL_constant_ISIV;
#else
      return PERL_constant_NOTDEF;
#endif
    }
    break;
  case 'S':
    if (memEQ(name, "MAGIC_PARAM_ELF_SHNUM_MAX", 25)) {
    /*                               ^               */
#ifdef MAGIC_PARAM_ELF_SHNUM_MAX
      *iv_return = MAGIC_PARAM_ELF_SHNUM_MAX;
      return PERL_constant_ISIV;
#else
      return PERL_constant_NOTDEF;
#endif
    }
    break;
  }
  return PERL_constant_NOTFOUND;
}

static int
constant (pTHX_ const char *name, STRLEN len, IV *iv_return) {
  /* Initially switch on the length of the name.  */
  /* When generated this function returned values for the list of names given
     in this section of perl code.  Rather than manually editing these functions
     to add or remove constants, which would result in this comment and section
     of code becoming inaccurate, we recommend that you edit this section of
     code, and use it to regenerate a new set of constant functions which you
     then use to replace the originals.

     Regenerate these constant functions by feeding this entire source file to
     perl -x

#!/home/autarch/perl5/perlbrew/perls/perl-5.30.1/bin/perl -w
use ExtUtils::Constant qw (constant_types C_constant XS_constant);

my $types = {map {($_, 1)} qw(IV)};
my @names = (qw(MAGIC_CHECK MAGIC_COMPRESS MAGIC_CONTINUE MAGIC_DEBUG
	       MAGIC_DEVICES MAGIC_ERROR MAGIC_MIME MAGIC_NONE
	       MAGIC_PARAM_BYTES_MAX MAGIC_PARAM_ELF_NOTES_MAX
	       MAGIC_PARAM_ELF_PHNUM_MAX MAGIC_PARAM_ELF_SHNUM_MAX
	       MAGIC_PARAM_INDIR_MAX MAGIC_PARAM_NAME_MAX MAGIC_PARAM_REGEX_MAX
	       MAGIC_PRESERVE_ATIME MAGIC_RAW MAGIC_SYMLINK));

print constant_types(), "\n"; # macro defs
foreach (C_constant ("File::LibMagic", 'constant', 'IV', $types, undef, 3, @names) ) {
    print $_, "\n"; # C constant subs
}
print "\n#### XS Section:\n";
print XS_constant ("File::LibMagic", $types);
__END__
   */

  switch (len) {
  case 9:
    if (memEQ(name, "MAGIC_RAW", 9)) {
#ifdef MAGIC_RAW
      *iv_return = MAGIC_RAW;
      return PERL_constant_ISIV;
#else
      return PERL_constant_NOTDEF;
#endif
    }
    break;
  case 10:
    /* Names all of length 10.  */
    /* MAGIC_MIME MAGIC_NONE */
    /* Offset 6 gives the best switch position.  */
    switch (name[6]) {
    case 'M':
      if (memEQ(name, "MAGIC_MIME", 10)) {
      /*                     ^          */
#ifdef MAGIC_MIME
        *iv_return = MAGIC_MIME;
        return PERL_constant_ISIV;
#else
        return PERL_constant_NOTDEF;
#endif
      }
      break;
    case 'N':
      if (memEQ(name, "MAGIC_NONE", 10)) {
      /*                     ^          */
#ifdef MAGIC_NONE
        *iv_return = MAGIC_NONE;
        return PERL_constant_ISIV;
#else
        return PERL_constant_NOTDEF;
#endif
      }
      break;
    }
    break;
  case 11:
    return constant_11 (aTHX_ name, iv_return);
    break;
  case 13:
    /* Names all of length 13.  */
    /* MAGIC_DEVICES MAGIC_SYMLINK */
    /* Offset 9 gives the best switch position.  */
    switch (name[9]) {
    case 'I':
      if (memEQ(name, "MAGIC_DEVICES", 13)) {
      /*                        ^          */
#ifdef MAGIC_DEVICES
        *iv_return = MAGIC_DEVICES;
        return PERL_constant_ISIV;
#else
        return PERL_constant_NOTDEF;
#endif
      }
      break;
    case 'L':
      if (memEQ(name, "MAGIC_SYMLINK", 13)) {
      /*                        ^          */
#ifdef MAGIC_SYMLINK
        *iv_return = MAGIC_SYMLINK;
        return PERL_constant_ISIV;
#else
        return PERL_constant_NOTDEF;
#endif
      }
      break;
    }
    break;
  case 14:
    /* Names all of length 14.  */
    /* MAGIC_COMPRESS MAGIC_CONTINUE */
    /* Offset 8 gives the best switch position.  */
    switch (name[8]) {
    case 'M':
      if (memEQ(name, "MAGIC_COMPRESS", 14)) {
      /*                       ^            */
#ifdef MAGIC_COMPRESS
        *iv_return = MAGIC_COMPRESS;
        return PERL_constant_ISIV;
#else
        return PERL_constant_NOTDEF;
#endif
      }
      break;
    case 'N':
      if (memEQ(name, "MAGIC_CONTINUE", 14)) {
      /*                       ^            */
#ifdef MAGIC_CONTINUE
        *iv_return = MAGIC_CONTINUE;
        return PERL_constant_ISIV;
#else
        return PERL_constant_NOTDEF;
#endif
      }
      break;
    }
    break;
  case 20:
    /* Names all of length 20.  */
    /* MAGIC_PARAM_NAME_MAX MAGIC_PRESERVE_ATIME */
    /* Offset 13 gives the best switch position.  */
    switch (name[13]) {
    case 'A':
      if (memEQ(name, "MAGIC_PARAM_NAME_MAX", 20)) {
      /*                            ^             */
#ifdef MAGIC_PARAM_NAME_MAX
        *iv_return = MAGIC_PARAM_NAME_MAX;
        return PERL_constant_ISIV;
#else
        return PERL_constant_NOTDEF;
#endif
      }
      break;
    case 'E':
      if (memEQ(name, "MAGIC_PRESERVE_ATIME", 20)) {
      /*                            ^             */
#ifdef MAGIC_PRESERVE_ATIME
        *iv_return = MAGIC_PRESERVE_ATIME;
        return PERL_constant_ISIV;
#else
        return PERL_constant_NOTDEF;
#endif
      }
      break;
    }
    break;
  case 21:
    return constant_21 (aTHX_ name, iv_return);
    break;
  case 25:
    return constant_25 (aTHX_ name, iv_return);
    break;
  }
  return PERL_constant_NOTFOUND;
}