catacomb-python.h: Promote `util' to the head of the list.
[pyke] / catacomb-python.h
1 /* -*-c-*-
2 *
3 * Definitions for Catacomb bindings
4 *
5 * (c) 2004 Straylight/Edgeware
6 */
7
8 /*----- Licensing notice --------------------------------------------------*
9 *
10 * This file is part of the Python interface to Catacomb.
11 *
12 * Catacomb/Python is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * Catacomb/Python is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with Catacomb/Python; if not, write to the Free Software Foundation,
24 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 */
26
27 #ifndef CATACOMB_PYTHON_H
28 #define CATACOMB_PYTHON_H
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33
34 /*----- Header files ------------------------------------------------------*/
35
36 #include <Python.h>
37 #include <longintrepr.h>
38 #include <structmember.h>
39
40 #undef ULLONG_MAX
41 #undef ULONG_LONG_MAX
42
43 #include <mLib/darray.h>
44 #include <mLib/dstr.h>
45 #include <mLib/macros.h>
46 #include <mLib/quis.h>
47 #include <mLib/unihash.h>
48
49 #include <catacomb/buf.h>
50
51 #include <catacomb/grand.h>
52 #include <catacomb/rand.h>
53 #include <catacomb/noise.h>
54 #include <catacomb/bbs.h>
55 #include <catacomb/mprand.h>
56 #include <catacomb/lcrand.h>
57 #include <catacomb/fibrand.h>
58 #include <catacomb/dsarand.h>
59 #include <catacomb/sslprf.h>
60 #include <catacomb/tlsprf.h>
61 #include <catacomb/blkc.h>
62
63 #include <catacomb/gcipher.h>
64 #include <catacomb/ghash.h>
65 #include <catacomb/gmac.h>
66 #include <catacomb/md5.h>
67 #include <catacomb/md5-hmac.h>
68 #include <catacomb/sha.h>
69 #include <catacomb/sha-mgf.h>
70 #include <catacomb/sha-hmac.h>
71
72 #include <catacomb/mp.h>
73 #include <catacomb/mpint.h>
74 #include <catacomb/mpmul.h>
75 #include <catacomb/mpcrt.h>
76 #include <catacomb/mpmont.h>
77 #include <catacomb/mpbarrett.h>
78 #include <catacomb/mpreduce.h>
79 #include <catacomb/mp-fibonacci.h>
80
81 #include <catacomb/pgen.h>
82 #include <catacomb/pfilt.h>
83 #include <catacomb/strongprime.h>
84 #include <catacomb/limlee.h>
85 #include <catacomb/dh.h>
86 #include <catacomb/ptab.h>
87 #include <catacomb/bintab.h>
88 #include <catacomb/dsa.h>
89
90 #include <catacomb/gf.h>
91 #include <catacomb/gfreduce.h>
92 #include <catacomb/gfn.h>
93
94 #include <catacomb/field.h>
95 #include <catacomb/field-guts.h>
96
97 #include <catacomb/ec.h>
98 #include <catacomb/ec-raw.h>
99 #include <catacomb/ectab.h>
100
101 #include <catacomb/group.h>
102 #include <catacomb/group-guts.h>
103
104 #include <catacomb/gdsa.h>
105 #include <catacomb/gkcdsa.h>
106 #include <catacomb/rsa.h>
107
108 #include <catacomb/key.h>
109 #include <catacomb/passphrase.h>
110 #include <catacomb/pixie.h>
111
112 #include <catacomb/share.h>
113 #include <catacomb/gfshare.h>
114
115 /*----- Utility macros ----------------------------------------------------*/
116
117 #define RETURN_OBJ(obj) do { Py_INCREF(obj); return (obj); } while (0)
118 #define RETURN_NONE RETURN_OBJ(Py_None)
119 #define RETURN_NOTIMPL RETURN_OBJ(Py_NotImplemented)
120 #define RETURN_TRUE RETURN_OBJ(Py_True)
121 #define RETURN_FALSE RETURN_OBJ(Py_False)
122 #define RETURN_ME RETURN_OBJ(me)
123
124 #define EXCERR(exc, str) do { \
125 PyErr_SetString(exc, str); \
126 goto end; \
127 } while (0)
128 #define VALERR(str) EXCERR(PyExc_ValueError, str)
129 #define TYERR(str) EXCERR(PyExc_TypeError, str)
130 #define ZDIVERR(str) EXCERR(PyExc_ZeroDivisionError, str)
131 #define SYNERR(str) EXCERR(PyExc_SyntaxError, str)
132 #define SYSERR(str) EXCERR(PyExc_SystemError, str)
133 #define NIERR(str) EXCERR(PyExc_NotImplementedError, str)
134 #define INDEXERR(idx) do { \
135 PyErr_SetObject(PyExc_KeyError, idx); \
136 goto end; \
137 } while (0)
138 #define OSERR(name) do { \
139 PyErr_SetFromErrnoWithFilename(PyExc_OSError, name); \
140 goto end; \
141 } while (0)
142 #define PGENERR do { pgenerr(); goto end; } while (0)
143
144 #define CONVFUNC(ty, cty, ext) \
145 int conv##ty(PyObject *o, void *p) \
146 { \
147 if (!PyObject_TypeCheck(o, ty##_pytype)) \
148 TYERR("wanted a " #ty); \
149 *(cty *)p = ext(o); \
150 return (1); \
151 end: \
152 return (0); \
153 }
154
155 #if PY_VERSION_HEX < 0x02050000 /* Compatibility hack */
156 # define ht_name name
157 # define ht_type type
158 #endif
159
160 #define root_pytype 0
161 #define type_pytype &PyType_Type
162 #define INITTYPE(ty, base) do { \
163 ty##_pytype_skel.tp_base = base##_pytype; \
164 ty##_pytype = inittype(&ty##_pytype_skel); \
165 } while (0)
166
167 #define INSERT(name, ob) do { \
168 PyObject *_o = (PyObject *)(ob); \
169 Py_INCREF(_o); \
170 PyModule_AddObject(mod, name, _o); \
171 } while (0)
172
173 #define INSEXC(name, var, base, meth) \
174 INSERT(name, var = mkexc(mod, base, name, meth))
175
176 #define METH(func, doc) \
177 { #func, METHNAME(func), METH_VARARGS, doc },
178 #define KWMETH(func, doc) \
179 { #func, (PyCFunction)METHNAME(func), \
180 METH_VARARGS | METH_KEYWORDS, doc },
181
182 #define GET(func, doc) \
183 { #func, GETSETNAME(get, func), 0, doc },
184 #define GETSET(func, doc) \
185 { #func, GETSETNAME(get, func), GETSETNAME(set, func), doc },
186
187 #define MEMBER(name, ty, f, doc) \
188 { #name, ty, offsetof(MEMBERSTRUCT, name), f, doc },
189
190 #define MODULES(_) \
191 _(util) \
192 _(bytestring) _(buffer) \
193 _(rand) _(algorithms) _(pubkey) _(pgen) \
194 _(mp) _(field) _(ec) _(group) \
195 _(passphrase) _(share) _(key)
196 #define DOMODINIT(m) m##_pyinit();
197 #define DOMODINSERT(m) m##_pyinsert(mod);
198 #define INIT_MODULES do { MODULES(DOMODINIT) } while (0)
199 #define INSERT_MODULES do { MODULES(DOMODINSERT) } while (0)
200
201 #define DO(m) \
202 extern void m##_pyinit(void); \
203 extern void m##_pyinsert(PyObject *);
204 MODULES(DO)
205 #undef DO
206
207 #define FREEOBJ(obj) \
208 (((PyObject *)(obj))->ob_type->tp_free((PyObject *)(obj)))
209
210 #define GEN(func, base) \
211 static PyObject *func(void) \
212 { \
213 PyObject *d = PyDict_New(); \
214 PyObject *o; \
215 int i; \
216 \
217 for (i = 0; g##base##tab[i]; i++) { \
218 o = gc##base##_pywrap((/*unconst*/ gc##base *)g##base##tab[i]); \
219 PyDict_SetItemString(d, \
220 (/*unconst*/ char *)g##base##tab[i]->name, \
221 o); \
222 Py_DECREF(o); \
223 } \
224 return (d); \
225 }
226
227 struct nameval { const char *name; unsigned long value; };
228 extern void setconstants(PyObject *, const struct nameval *);
229
230 extern PyObject *mexp_common(PyObject *, PyObject *, size_t,
231 PyObject *(*id)(PyObject *),
232 int (*fill)(void *, PyObject *,
233 PyObject *, PyObject *),
234 PyObject *(*exp)(PyObject *, void *, int),
235 void (*drop)(void *));
236
237 extern int convulong(PyObject *, void *);
238 #define DECL_CONVU_(n) extern int convu##n(PyObject *, void *);
239 DOUINTSZ(DECL_CONVU_)
240 extern int convmpw(PyObject *, void *);
241 extern int convuint(PyObject *, void *);
242 extern int convszt(PyObject *, void *);
243 extern int convbool(PyObject *, void *);
244 extern PyObject *abstract_pynew(PyTypeObject *, PyObject *, PyObject *);
245 extern PyObject *getbool(int);
246 extern PyObject *getulong(unsigned long);
247 extern void *newtype(PyTypeObject *, const PyTypeObject *, const char *);
248
249 extern PyObject *mkexc(PyObject *, PyObject *, const char *, PyMethodDef *);
250 extern PyTypeObject *inittype(PyTypeObject *);
251 extern void addmethods(const PyMethodDef *);
252 extern PyMethodDef *donemethods(void);
253
254 /*----- Mapping methods ---------------------------------------------------*/
255
256 #define GMAP_METH(func, doc) { #func, gmapmeth_##func, METH_VARARGS, doc },
257 #define GMAP_KWMETH(func, doc) \
258 { #func, (PyCFunction)gmapmeth_##func, METH_VARARGS|METH_KEYWORDS, doc },
259 #define GMAP_METHDECL(func, doc) \
260 extern PyObject *gmapmeth_##func(PyObject *, PyObject *);
261 #define GMAP_KWMETHDECL(func, doc) \
262 extern PyObject *gmapmeth_##func(PyObject *, PyObject *, PyObject *);
263
264 #define GMAP_DOROMETHODS(METH, KWMETH) \
265 METH (has_key, "D.has_key(KEY) -> BOOL") \
266 METH (keys, "D.keys() -> LIST") \
267 METH (values, "D.values() -> LIST") \
268 METH (items, "D.items() -> LIST") \
269 METH (iterkeys, "D.iterkeys() -> ITER") \
270 METH (itervalues, "D.itervalues() -> ITER") \
271 METH (iteritems, "D.iteritems() -> ITER") \
272 KWMETH(get, "D.get(KEY, [default = None]) -> VALUE") \
273
274 #define GMAP_DOMETHODS(METH, KWMETH) \
275 GMAP_DOROMETHODS(METH, KWMETH) \
276 METH (clear, "D.clear()") \
277 KWMETH(setdefault, "D.setdefault(K, [default = None]) -> VALUE") \
278 KWMETH(pop, "D.pop(KEY, [default = <error>]) -> VALUE") \
279 METH (popitem, "D.popitem() -> (KEY, VALUE)") \
280 METH (update, "D.update(MAP)")
281
282 GMAP_DOMETHODS(GMAP_METHDECL, GMAP_KWMETHDECL)
283 #define GMAP_ROMETHODS GMAP_DOROMETHODS(GMAP_METH, GMAP_KWMETH)
284 #define GMAP_METHODS GMAP_DOMETHODS(GMAP_METH, GMAP_KWMETH)
285 extern int gmap_pysize(PyObject *);
286 extern PySequenceMethods gmap_pysequence;
287 extern PyMethodDef gmap_pymethods[];
288
289 /*----- Bytestrings -------------------------------------------------------*/
290
291 PyTypeObject *bytestring_pyobj;
292 PyObject *bytestring_pywrap(const void *, size_t);
293 PyObject *bytestring_pywrapbuf(buf *);
294
295 /*----- Multiprecision arithmetic -----------------------------------------*/
296
297 typedef struct mp_pyobj {
298 PyObject_HEAD
299 mp *x;
300 } mp_pyobj;
301
302 extern PyTypeObject *mp_pytype;
303 extern PyTypeObject *gf_pytype;
304 #define MP_X(o) (((mp_pyobj *)(o))->x)
305 #define MP_PYCHECK(o) PyObject_TypeCheck((o), mp_pytype)
306 #define GF_PYCHECK(o) PyObject_TypeCheck((o), gf_pytype)
307
308 extern mp *mp_frompylong(PyObject *);
309 extern PyObject *mp_topylong(mp *);
310 extern mp *tomp(PyObject *);
311 extern mp *getmp(PyObject *);
312 extern int convmp(PyObject *, void *);
313 extern mp *getgf(PyObject *);
314 extern int convgf(PyObject *, void *);
315 extern PyObject *mp_pywrap(mp *);
316 extern PyObject *gf_pywrap(mp *);
317 extern mp *mp_frompyobject(PyObject *, int);
318 extern PyObject *mp_topystring(mp *, int,
319 const char *, const char *, const char *);
320 extern int mp_tolong_checked(mp *, long *);
321
322 /*----- Abstract fields ---------------------------------------------------*/
323
324 typedef struct field_pyobj {
325 PyHeapTypeObject ty;
326 field *f;
327 } field_pyobj;
328
329 extern PyTypeObject *fe_pytype;
330 #define FE_PYCHECK(o) PyObject_TypeCheck((o), fe_pytype)
331 #define FE_F(o) (((fe_pyobj *)(o))->f)
332 #define FE_FOBJ(o) ((PyObject *)(o)->ob_type)
333 #define FE_X(o) (((fe_pyobj *)(o))->x)
334 extern PyObject *fe_pywrap(PyObject *, mp *);
335 extern mp *getfe(field *, PyObject *);
336
337 typedef struct fe_pyobj {
338 PyObject_HEAD
339 field *f;
340 mp *x;
341 } fe_pyobj;
342
343 extern PyTypeObject *field_pytype;
344 extern PyTypeObject *primefield_pytype;
345 extern PyTypeObject *niceprimefield_pytype;
346 extern PyTypeObject *binfield_pytype;
347 extern PyTypeObject *binpolyfield_pytype;
348 extern PyTypeObject *binnormfield_pytype;
349 #define FIELD_PYCHECK(o) PyObject_TypeCheck((o), field_pytype)
350 #define FIELD_F(o) (((field_pyobj *)(o))->f)
351 extern PyObject *field_pywrap(field *);
352 extern field *field_copy(field *);
353
354 /*----- Elliptic curves ---------------------------------------------------*/
355
356 typedef struct ecpt_pyobj {
357 PyObject_HEAD
358 ec_curve *c;
359 ec p;
360 } ecpt_pyobj;
361
362 extern PyTypeObject *ecpt_pytype, *ecptcurve_pytype;
363 #define ECPT_PYCHECK(o) PyObject_TypeCheck((o), ecpt_pytype)
364 #define ECPTCURVE_PYCHECK(o) PyObject_TypeCheck((o), ecptcurve_pytype)
365 #define ECPT_C(o) (((ecpt_pyobj *)(o))->c)
366 #define ECPT_COBJ(o) ((PyObject *)(o)->ob_type)
367 #define ECPT_FOBJ(o) ECCURVE_FOBJ(ECPT_COBJ((o)))
368 #define ECPT_P(o) (&((ecpt_pyobj *)(o))->p)
369 extern PyObject *ecpt_pywrap(PyObject *, ec *);
370 extern PyObject *ecpt_pywrapout(void *, ec *);
371 extern int toecpt(ec_curve *, ec *, PyObject *);
372 extern int getecpt(ec_curve *, ec *, PyObject *);
373 extern void getecptout(ec *, PyObject *);
374 extern int convecpt(PyObject *, void *);
375
376 typedef struct eccurve_pyobj {
377 PyHeapTypeObject ty;
378 ec_curve *c;
379 PyObject *fobj;
380 } eccurve_pyobj;
381
382 extern PyTypeObject *eccurve_pytype;
383 extern PyTypeObject *ecprimecurve_pytype;
384 extern PyTypeObject *ecprimeprojcurve_pytype;
385 extern PyTypeObject *ecbincurve_pytype;
386 extern PyTypeObject *ecbinprojcurve_pytype;
387 #define ECCURVE_PYCHECK(o) PyObject_TypeCheck((o), eccurve_pytype)
388 #define ECCURVE_C(o) (((eccurve_pyobj *)(o))->c)
389 #define ECCURVE_FOBJ(o) (((eccurve_pyobj *)(o))->fobj)
390 extern PyObject *eccurve_pywrap(PyObject *, ec_curve *);
391 extern ec_curve *eccurve_copy(ec_curve *);
392
393 typedef struct ecinfo_pyobj {
394 PyObject_HEAD
395 ec_info ei;
396 PyObject *cobj;
397 } ecinfo_pyobj;
398
399 extern PyTypeObject *ecinfo_pytype;
400 #define ECINFO_PYCHECK(o) PyObject_TypeCheck((o), ecinfo_pytype)
401 #define ECINFO_EI(o) (&((ecinfo_pyobj *)(o))->ei)
402 #define ECINFO_COBJ(o) (((ecinfo_pyobj *)(o))->cobj)
403 extern void ecinfo_copy(ec_info *, const ec_info *);
404 extern PyObject *ecinfo_pywrap(ec_info *);
405
406 /*----- Cyclic groups -----------------------------------------------------*/
407
408 typedef struct fginfo_pyobj {
409 PyObject_HEAD
410 gprime_param dp;
411 } fginfo_pyobj;
412
413 PyTypeObject *fginfo_pytype, *dhinfo_pytype, *bindhinfo_pytype;
414 #define FGINFO_DP(fg) (&((fginfo_pyobj *)(fg))->dp)
415 PyObject *fginfo_pywrap(gprime_param *, PyTypeObject *);
416
417 typedef struct ge_pyobj {
418 PyObject_HEAD
419 ge *x;
420 group *g;
421 } ge_pyobj;
422
423 extern PyTypeObject *ge_pytype;
424 #define GE_PYCHECK(o) PyObject_TypeCheck((o), ge_pytype)
425 #define GE_X(o) (((ge_pyobj *)(o))->x)
426 #define GE_G(o) (((ge_pyobj *)(o))->g)
427 #define GE_GOBJ(o) ((PyObject *)(group_pyobj *)(o)->ob_type)
428 extern PyObject *ge_pywrap(PyObject *, ge *);
429
430 typedef struct group_pyobj {
431 PyHeapTypeObject ty;
432 group *g;
433 } group_pyobj;
434
435 extern PyTypeObject *group_pytype;
436 extern PyTypeObject *primegroup_pytype, *bingroup_pytype, *ecgroup_pytype;
437 #define GROUP_G(o) (((group_pyobj *)(o))->g)
438 extern PyObject *group_pywrap(group *);
439 extern group *group_copy(group *);
440
441 /*----- Random number generators ------------------------------------------*/
442
443 #define f_freeme 1u
444
445 typedef struct grand_pyobj {
446 PyObject_HEAD
447 unsigned f;
448 grand *r;
449 } grand_pyobj;
450
451 extern PyTypeObject *grand_pytype, *truerand_pytype;
452 extern PyTypeObject *lcrand_pytype,* fibrand_pytype;
453 extern PyTypeObject *dsarand_pytype, *bbs_pytype;
454 extern PyObject *rand_pyobj;
455 #define GRAND_PYCHECK(o) PyObject_TypeCheck((o), grand_pytype)
456 #define GRAND_F(o) (((grand_pyobj *)(o))->f)
457 #define GRAND_R(o) (((grand_pyobj *)(o))->r)
458 extern PyObject *grand_pywrap(grand *, unsigned);
459 extern int convgrand(PyObject *, void *);
460
461 /*----- Key sizes ---------------------------------------------------------*/
462
463 typedef struct keysz_pyobj {
464 PyObject_HEAD
465 int dfl;
466 } keysz_pyobj;
467
468 typedef struct keyszrange_pyobj {
469 PyObject_HEAD
470 int dfl;
471 int min, max, mod;
472 } keyszrange_pyobj;
473
474 typedef struct keyszset_pyobj {
475 PyObject_HEAD
476 int dfl;
477 PyObject *set;
478 } keyszset_pyobj;
479
480 #define KEYSZ_PYCHECK(o) PyObject_TypeCheck((o), keysz_pytype)
481 extern PyObject *keysz_pywrap(const octet *);
482
483 /*----- Symmetric cryptography --------------------------------------------*/
484
485 typedef struct gccipher_pyobj {
486 PyHeapTypeObject ty;
487 gccipher *cc;
488 } gccipher_pyobj;
489
490 extern PyTypeObject *gccipher_pytype;
491 #define GCCIPHER_PYCHECK(o) PyObject_TypeCheck((o), gccipher_pytype)
492 #define GCCIPHER_CC(o) (((gccipher_pyobj *)(o))->cc)
493 #define GCCIPHER_F(o) (((gccipher_pyobj *)(o))->f)
494 extern PyObject *gccipher_pywrap(gccipher *);
495 extern int convgccipher(PyObject *, void *);
496 extern int convgcipher(PyObject *, void *);
497
498 typedef struct gcipher_pyobj {
499 PyObject_HEAD
500 unsigned f;
501 gcipher *c;
502 } gcipher_pyobj;
503
504 extern PyTypeObject *gcipher_pytype;
505 #define GCIPHER_PYCHECK(o) PyObject_TypeCheck((o), gcipher_pytype)
506 #define GCIPHER_C(o) (((gcipher_pyobj *)(o))->c)
507 #define GCIPHER_F(o) (((gcipher_pyobj *)(o))->f)
508 extern PyObject *gcipher_pywrap(PyObject *, gcipher *, unsigned);
509 extern int convgcipher(PyObject *, void *);
510
511 typedef struct gchash_pyobj {
512 PyHeapTypeObject ty;
513 gchash *ch;
514 } gchash_pyobj;
515
516 extern PyTypeObject *gchash_pytype;
517 #define GCHASH_PYCHECK(o) PyObject_TypeCheck((o), gchash_pytype)
518 #define GCHASH_CH(o) (((gchash_pyobj *)(o))->ch)
519 #define GCHASH_F(o) (((gchash_pyobj *)(o))->f)
520 extern PyObject *gchash_pywrap(gchash *);
521 extern int convgchash(PyObject *, void *);
522
523 typedef struct ghash_pyobj {
524 PyObject_HEAD
525 unsigned f;
526 ghash *h;
527 } ghash_pyobj;
528
529 extern PyTypeObject *ghash_pytype, *gmhash_pytype;
530 extern PyObject *sha_pyobj, *has160_pyobj;
531 #define GHASH_PYCHECK(o) PyObject_TypeCheck((o), ghash_pytype)
532 #define GHASH_H(o) (((ghash_pyobj *)(o))->h)
533 #define GHASH_F(o) (((ghash_pyobj *)(o))->f)
534 extern PyObject *ghash_pywrap(PyObject *, ghash *, unsigned);
535 extern int convghash(PyObject *, void *);
536 extern int convgmhash(PyObject *, void *);
537
538 typedef struct gcmac_pyobj {
539 PyHeapTypeObject ty;
540 gcmac *cm;
541 } gcmac_pyobj;
542
543 extern PyTypeObject *gcmac_pytype;
544 #define GCMAC_PYCHECK(o) PyObject_TypeCheck((o), gcmac_pytype)
545 #define GCMAC_CM(o) (((gcmac_pyobj *)(o))->cm)
546 #define GCMAC_F(o) (((gcmac_pyobj *)(o))->f)
547 extern PyObject *gcmac_pywrap(gcmac *);
548 extern int convgcmac(PyObject *, void *);
549
550 typedef struct gmac_pyobj {
551 PyHeapTypeObject ty;
552 unsigned f;
553 gmac *m;
554 } gmac_pyobj;
555
556 extern PyTypeObject *gmac_pytype;
557 #define GMAC_PYCHECK(o) PyObject_TypeCheck((o), gmac_pytype)
558 #define GMAC_M(o) (((gmac_pyobj *)(o))->m)
559 #define GMAC_F(o) (((gmac_pyobj *)(o))->f)
560 extern PyObject *gmac_pywrap(PyObject *, gmac *, unsigned);
561 extern int convgmac(PyObject *, void *);
562
563 /*----- Key generation ----------------------------------------------------*/
564
565 typedef struct pfilt_pyobj {
566 PyObject_HEAD
567 pfilt f;
568 int st;
569 } pfilt_pyobj;
570
571 extern PyTypeObject *pfilt_pytype;
572 #define PFILT_PYCHECK(o) PyObject_TypeCheck(o, pfilt_pytype)
573 #define PFILT_F(o) (&((pfilt_pyobj *)(o))->f)
574 #define PFILT_ST(o) (((pfilt_pyobj *)(o))->st)
575
576 typedef struct { pgen_proc *proc; void *ctx; } pgev;
577 #define PGEV_HEAD PyObject_HEAD pgev pg;
578
579 typedef struct pgev_pyobj {
580 PGEV_HEAD
581 } pgev_pyobj;
582
583 extern PyTypeObject *pgev_pytype;
584 #define PGEV_PYCHECK(o) PyObject_TypeCheck(o, pgev_pytype)
585 #define PGEV_PG(o) (&((pgev_pyobj *)(o))->pg)
586
587 extern int convpgev(PyObject *, void *);
588 extern void droppgev(pgev *);
589 extern void pgenerr(void);
590
591 /*----- That's all, folks -------------------------------------------------*/
592
593 #ifdef __cplusplus
594 }
595 #endif
596
597 #endif