chiark / gitweb /
bytestring.c (bytestring_pyrepeat): Don't divide by zero.
[catacomb-python] / pgen.c
1 /* -*-c-*-
2  *
3  * Prime number generation
4  *
5  * (c) 2005 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 /*----- Header files ------------------------------------------------------*/
28
29 #include "catacomb-python.h"
30
31 /*----- Filters -----------------------------------------------------------*/
32
33 PyTypeObject *pfilt_pytype;
34
35 static PyObject *pfilt_pywrap(pfilt *f)
36 {
37   pfilt_pyobj *o = 0;
38   o = PyObject_New(pfilt_pyobj, pfilt_pytype);
39   o->f = *f;
40   o->st = pfilt_step(f, 0);
41   return ((PyObject *)o);
42 }
43
44 static PyObject *pfilt_pymake(PyTypeObject *ty, PyObject *xobj)
45 {
46   mp *x = 0;
47   pfilt_pyobj *o = 0;
48
49   if (PFILT_PYCHECK(xobj)) RETURN_OBJ(xobj);
50   if ((x = getmp(xobj)) == 0) goto end;
51   o = (pfilt_pyobj *)ty->tp_alloc(ty, 0);
52   o->st = pfilt_create(&o->f, x);
53 end:
54   mp_drop(x);
55   return ((PyObject *)o);
56 }
57
58 static PyObject *pfilt_pynew(PyTypeObject *ty, PyObject *arg, PyObject *kw)
59 {
60   static const char *const kwlist[] = { "x", 0 };
61   PyObject *xobj;
62
63   if (!PyArg_ParseTupleAndKeywords(arg, kw, "O:new", KWLIST, &xobj))
64     return (0);
65   return (pfilt_pymake(ty, xobj));
66 }
67
68 static void pfilt_pydealloc(PyObject *me)
69   { pfilt_destroy(PFILT_F(me)); FREEOBJ(me); }
70
71 static PyObject *pfmeth_step(PyObject *me, PyObject *arg)
72 {
73   mpw x;
74
75   if (!PyArg_ParseTuple(arg, "O&:step", convmpw, &x)) return (0);
76   PFILT_ST(me) = pfilt_step(PFILT_F(me), x);
77   RETURN_ME;
78 }
79
80 static PyObject *pfmeth_muladd(PyObject *me, PyObject *arg)
81 {
82   mpw m, a;
83   pfilt_pyobj *o = 0;
84
85   if (!PyArg_ParseTuple(arg, "O&O&:muladd", convmpw, &m, convmpw, &a))
86     return (0);
87   o = PyObject_New(pfilt_pyobj, pfilt_pytype);
88   o->st = pfilt_muladd(&o->f, PFILT_F(me), m, a);
89   return ((PyObject *)o);
90 }
91
92 static CONVFUNC(pfilt, pfilt *, PFILT_F)
93
94 static PyObject *pfmeth_jump(PyObject *me, PyObject *arg)
95 {
96   pfilt *f;
97
98   if (!PyArg_ParseTuple(arg, "O&:jump", convpfilt, &f)) return (0);
99   PFILT_ST(me) = pfilt_jump(PFILT_F(me), f);
100   RETURN_ME;
101 }
102
103 static PyObject *meth__PrimeFilter_smallfactor(PyObject *me, PyObject *arg)
104 {
105   mp *x = 0;
106   PyObject *rc = 0;
107
108   if (!PyArg_ParseTuple(arg, "OO&:smallfactor", &me, convmp, &x)) goto end;
109   rc = PyInt_FromLong(pfilt_smallfactor(x));
110 end:
111   mp_drop(x);
112   return (rc);
113 }
114
115 static int pfilt_pynonzerop(PyObject *me)
116   { return (PFILT_ST(me) != PGEN_FAIL); }
117
118 static PyObject *pfilt_pyint(PyObject *me)
119 {
120   long l;
121   PyObject *rc = 0;
122
123   if (!mp_tolong_checked(PFILT_F(me)->m, &l, 0)) rc = PyInt_FromLong(l);
124   else rc = mp_topylong(PFILT_F(me)->m);
125   return (rc);
126 }
127
128 static PyObject *pfilt_pylong(PyObject *me)
129   { return (mp_topylong(PFILT_F(me)->m)); }
130
131 static PyObject *pfget_x(PyObject *me, void *hunoz)
132   { return (mp_pywrap(MP_COPY(PFILT_F(me)->m))); }
133
134 static PyObject *pfget_status(PyObject *me, void *hunoz)
135   { return (PyInt_FromLong(PFILT_ST(me))); }
136
137 static PyGetSetDef pfilt_pygetset[] = {
138 #define GETSETNAME(op, name) pf##op##_##name
139   GET   (x,             "F.x -> current position of filter")
140   GET   (status,        "F.status -> primality status of filter")
141 #undef GETSETNAME
142   { 0 }
143 };
144
145 static PyMethodDef pfilt_pymethods[] = {
146 #define METHNAME(name) pfmeth_##name
147   METH  (step,          "F.step(N)")
148   METH  (muladd,        "F.muladd(M, A)")
149   METH  (jump,          "F.jump(FF)")
150 #undef METHNAME
151   { 0 }
152 };
153
154 static PyNumberMethods pfilt_pynumber = {
155   0,                                    /* @nb_add@ */
156   0,                                    /* @nb_subtract@ */
157   0,                                    /* @nb_multiply@ */
158   0,                                    /* @nb_divide@ */
159   0,                                    /* @nb_remainder@ */
160   0,                                    /* @nb_divmod@ */
161   0,                                    /* @nb_power@ */
162   0,                                    /* @nb_negative@ */
163   0,                                    /* @nb_positive@ */
164   0,                                    /* @nb_absolute@ */
165   pfilt_pynonzerop,                     /* @nb_nonzero@ */
166   0,                                    /* @nb_invert@ */
167   0,                                    /* @nb_lshift@ */
168   0,                                    /* @nb_rshift@ */
169   0,                                    /* @nb_and@ */
170   0,                                    /* @nb_xor@ */
171   0,                                    /* @nb_or@ */
172   0,                                    /* @nb_coerce@ */
173   pfilt_pyint,                          /* @nb_int@ */
174   pfilt_pylong,                         /* @nb_long@ */
175   0,                                    /* @nb_float@ */
176   0,                                    /* @nb_oct@ */
177   0,                                    /* @nb_hex@ */
178
179   0,                                    /* @nb_inplace_add@ */
180   0,                                    /* @nb_inplace_subtract@ */
181   0,                                    /* @nb_inplace_multiply@ */
182   0,                                    /* @nb_inplace_divide@ */
183   0,                                    /* @nb_inplace_remainder@ */
184   0,                                    /* @nb_inplace_power@ */
185   0,                                    /* @nb_inplace_lshift@ */
186   0,                                    /* @nb_inplace_rshift@ */
187   0,                                    /* @nb_inplace_and@ */
188   0,                                    /* @nb_inplace_xor@ */
189   0,                                    /* @nb_inplace_or@ */
190
191   0,                                    /* @nb_floor_divide@ */
192   0,                                    /* @nb_true_divide@ */
193   0,                                    /* @nb_inplace_floor_divide@ */
194   0,                                    /* @nb_inplace_true_divide@ */
195 };
196
197 static PyTypeObject pfilt_pytype_skel = {
198   PyObject_HEAD_INIT(0) 0,              /* Header */
199   "PrimeFilter",                        /* @tp_name@ */
200   sizeof(pfilt_pyobj),                  /* @tp_basicsize@ */
201   0,                                    /* @tp_itemsize@ */
202
203   pfilt_pydealloc,                      /* @tp_dealloc@ */
204   0,                                    /* @tp_print@ */
205   0,                                    /* @tp_getattr@ */
206   0,                                    /* @tp_setattr@ */
207   0,                                    /* @tp_compare@ */
208   0,                                    /* @tp_repr@ */
209   &pfilt_pynumber,                      /* @tp_as_number@ */
210   0,                                    /* @tp_as_sequence@ */
211   0,                                    /* @tp_as_mapping@ */
212   0,                                    /* @tp_hash@ */
213   0,                                    /* @tp_call@ */
214   0,                                    /* @tp_str@ */
215   0,                                    /* @tp_getattro@ */
216   0,                                    /* @tp_setattro@ */
217   0,                                    /* @tp_as_buffer@ */
218   Py_TPFLAGS_DEFAULT |                  /* @tp_flags@ */
219     Py_TPFLAGS_BASETYPE,
220
221   /* @tp_doc@ */
222 "PrimeFilter(X): small-primes filter.",
223
224   0,                                    /* @tp_traverse@ */
225   0,                                    /* @tp_clear@ */
226   0,                                    /* @tp_richcompare@ */
227   0,                                    /* @tp_weaklistoffset@ */
228   0,                                    /* @tp_iter@ */
229   0,                                    /* @tp_iternext@ */
230   pfilt_pymethods,                      /* @tp_methods@ */
231   0,                                    /* @tp_members@ */
232   pfilt_pygetset,                       /* @tp_getset@ */
233   0,                                    /* @tp_base@ */
234   0,                                    /* @tp_dict@ */
235   0,                                    /* @tp_descr_get@ */
236   0,                                    /* @tp_descr_set@ */
237   0,                                    /* @tp_dictoffset@ */
238   0,                                    /* @tp_init@ */
239   PyType_GenericAlloc,                  /* @tp_alloc@ */
240   pfilt_pynew,                          /* @tp_new@ */
241   0,                                    /* @tp_free@ */
242   0                                     /* @tp_is_gc@ */
243 };
244
245 /*----- Rabin-Miller testing ----------------------------------------------*/
246
247 typedef struct rabin_pyobj {
248   PyObject_HEAD
249   rabin r;
250 } rabin_pyobj;
251
252 static PyTypeObject *rabin_pytype;
253 #define RABIN_R(o) (&((rabin_pyobj *)(o))->r)
254
255 static PyObject *rabin_pynew(PyTypeObject *ty, PyObject *arg, PyObject *kw)
256 {
257   mp *x = 0;
258   rabin_pyobj *o = 0;
259   static const char *const kwlist[] = { "x", 0 };
260
261   if (!PyArg_ParseTupleAndKeywords(arg, kw, "O&:new", KWLIST, convmp, &x))
262     goto end;
263   if (!MP_POSP(x) || MP_EVENP(x)) VALERR("must be positive and odd");
264   o = (rabin_pyobj *)ty->tp_alloc(ty, 0);
265   rabin_create(&o->r, x);
266 end:
267   return ((PyObject *)o);
268 }
269
270 static void rabin_pydealloc(PyObject *me)
271 {
272   rabin_destroy(RABIN_R(me));
273   FREEOBJ(me);
274 }
275
276 static PyObject *rmeth_test(PyObject *me, PyObject *arg)
277 {
278   mp *w = 0;
279   PyObject *rc = 0;
280
281   if (!PyArg_ParseTuple(arg, "O&:test", convmp, &w)) goto end;
282   rc = PyInt_FromLong(rabin_test(RABIN_R(me), w));
283 end:
284   mp_drop(w);
285   return (rc);
286 }
287
288 static PyObject *rmeth_rtest(PyObject *me, PyObject *arg)
289 {
290   mp *w = 0;
291   PyObject *rc = 0;
292
293   if (!PyArg_ParseTuple(arg, "O&:rtest", convmp, &w)) goto end;
294   rc = PyInt_FromLong(rabin_rtest(RABIN_R(me), w));
295 end:
296   mp_drop(w);
297   return (rc);
298 }
299
300 static PyObject *rget_niters(PyObject *me, void *hunoz)
301   { return (PyInt_FromLong(rabin_iters(mp_bits(RABIN_R(me)->mm.m)))); }
302
303 static PyObject *rget_x(PyObject *me, void *hunoz)
304   { return (mp_pywrap(MP_COPY(RABIN_R(me)->mm.m))); }
305
306 static PyObject *meth__RabinMiller_iters(PyObject *me, PyObject *arg)
307 {
308   unsigned n;
309
310   if (!PyArg_ParseTuple(arg, "OO&:iters", &me, convuint, &n)) return (0);
311   return (PyInt_FromLong(rabin_iters(n)));
312 }
313
314 static PyGetSetDef rabin_pygetset[] = {
315 #define GETSETNAME(op, name) r##op##_##name
316   GET   (x,             "R.x -> number under test")
317   GET   (niters,        "R.niters -> suggested number of tests")
318 #undef GETSETNAME
319   { 0 }
320 };
321
322 static PyMethodDef rabin_pymethods[] = {
323 #define METHNAME(name) rmeth_##name
324   METH  (test,          "R.test(W) -> PGST")
325   METH  (rtest,         "R.rtest(W) -> PGST")
326 #undef METHNAME
327   { 0 }
328 };
329
330 static PyTypeObject rabin_pytype_skel = {
331   PyObject_HEAD_INIT(0) 0,              /* Header */
332   "RabinMiller",                        /* @tp_name@ */
333   sizeof(rabin_pyobj),                  /* @tp_basicsize@ */
334   0,                                    /* @tp_itemsize@ */
335
336   rabin_pydealloc,                      /* @tp_dealloc@ */
337   0,                                    /* @tp_print@ */
338   0,                                    /* @tp_getattr@ */
339   0,                                    /* @tp_setattr@ */
340   0,                                    /* @tp_compare@ */
341   0,                                    /* @tp_repr@ */
342   0,                                    /* @tp_as_number@ */
343   0,                                    /* @tp_as_sequence@ */
344   0,                                    /* @tp_as_mapping@ */
345   0,                                    /* @tp_hash@ */
346   0,                                    /* @tp_call@ */
347   0,                                    /* @tp_str@ */
348   0,                                    /* @tp_getattro@ */
349   0,                                    /* @tp_setattro@ */
350   0,                                    /* @tp_as_buffer@ */
351   Py_TPFLAGS_DEFAULT |                  /* @tp_flags@ */
352     Py_TPFLAGS_BASETYPE,
353
354   /* @tp_doc@ */
355 "RabinMiller(X): Rabin-Miller strong primality test.",
356
357   0,                                    /* @tp_traverse@ */
358   0,                                    /* @tp_clear@ */
359   0,                                    /* @tp_richcompare@ */
360   0,                                    /* @tp_weaklistoffset@ */
361   0,                                    /* @tp_iter@ */
362   0,                                    /* @tp_iternext@ */
363   rabin_pymethods,                      /* @tp_methods@ */
364   0,                                    /* @tp_members@ */
365   rabin_pygetset,                       /* @tp_getset@ */
366   0,                                    /* @tp_base@ */
367   0,                                    /* @tp_dict@ */
368   0,                                    /* @tp_descr_get@ */
369   0,                                    /* @tp_descr_set@ */
370   0,                                    /* @tp_dictoffset@ */
371   0,                                    /* @tp_init@ */
372   PyType_GenericAlloc,                  /* @tp_alloc@ */
373   rabin_pynew,                          /* @tp_new@ */
374   0,                                    /* @tp_free@ */
375   0                                     /* @tp_is_gc@ */
376 };
377
378 /*----- Events ------------------------------------------------------------*/
379
380 typedef struct pgevent_pyobj {
381   PyObject_HEAD
382   PyObject *r;
383   pgen_event *ev;
384 } pgevent_pyobj;
385
386 static PyTypeObject *pgevent_pytype;
387 #define PGEVENT_EV(o) (((pgevent_pyobj *)(o))->ev)
388
389 static PyObject *pgevent_pywrap(pgen_event *ev)
390 {
391   pgevent_pyobj *o = PyObject_New(pgevent_pyobj, pgevent_pytype);
392   o->ev = ev; o->r = 0;
393   return ((PyObject *)o);
394 }
395
396 static CONVFUNC(pgevent, pgen_event *, PGEVENT_EV)
397
398 static void pgevent_kill(PyObject *me)
399 {
400   pgevent_pyobj *ev = (pgevent_pyobj *)me;
401
402   ev->ev = 0;
403   if (ev->r) GRAND_R(ev->r) = 0;
404 }
405
406 static void pgevent_pydealloc(PyObject *me)
407 {
408   pgevent_pyobj *ev = (pgevent_pyobj *)me;
409   if (ev->r) Py_DECREF(ev->r);
410   FREEOBJ(me);
411 }
412
413 #define PGEVENT_CHECK(me) do {                                          \
414   if (!PGEVENT_EV(me)) {                                                \
415     PyErr_SetString(PyExc_ValueError, "event object is no longer valid"); \
416     return (0);                                                         \
417   }                                                                     \
418 } while (0)
419
420 static PyObject *peget_name(PyObject *me, void *hunoz)
421   { PGEVENT_CHECK(me); return (PyString_FromString(PGEVENT_EV(me)->name)); }
422
423 static PyObject *peget_x(PyObject *me, void *hunoz)
424   { PGEVENT_CHECK(me); return (mp_pywrap(MP_COPY(PGEVENT_EV(me)->m))); }
425
426 static PyObject *peget_steps(PyObject *me, void *hunoz)
427   { PGEVENT_CHECK(me); return (PyInt_FromLong(PGEVENT_EV(me)->steps)); }
428
429 static PyObject *peget_tests(PyObject *me, void *hunoz)
430   { PGEVENT_CHECK(me); return (PyInt_FromLong(PGEVENT_EV(me)->tests)); }
431
432 static PyObject *peget_rng(PyObject *me, void *hunoz)
433 {
434   pgevent_pyobj *ev = (pgevent_pyobj *)me;
435
436   PGEVENT_CHECK(me);
437   if (!ev->r) ev->r = grand_pywrap(ev->ev->r, 0);
438   Py_INCREF(ev->r); return ((PyObject *)ev->r);
439 }
440
441 static int peset_x(PyObject *me, PyObject *xobj, void *hunoz)
442 {
443   mp *x = 0;
444   pgen_event *ev = PGEVENT_EV(me);
445   int rc = -1;
446   PGEVENT_CHECK(me);
447   if ((x = getmp(xobj)) == 0) goto end;
448   mp_drop(ev->m);
449   ev->m = MP_COPY(x);
450   rc = 0;
451 end:
452   mp_drop(x);
453   return (rc);
454 }
455
456 static PyGetSetDef pgevent_pygetset[] = {
457 #define GETSETNAME(op, name) pe##op##_##name
458   GET   (name,          "EV.name -> value being generated")
459   GETSET(x,             "EV.x -> value under test")
460   GET   (steps,         "EV.steps -> number of steps left")
461   GET   (tests,         "EV.tests -> tests before passing")
462   GET   (rng,           "EV.rng -> (noncrypto) random number generator")
463 #undef GETSETNAME
464   { 0 }
465 };
466
467 static PyTypeObject pgevent_pytype_skel = {
468   PyObject_HEAD_INIT(0) 0,              /* Header */
469   "PrimeGenEvent",                      /* @tp_name@ */
470   sizeof(pgevent_pyobj),                /* @tp_basicsize@ */
471   0,                                    /* @tp_itemsize@ */
472
473   pgevent_pydealloc,                    /* @tp_dealloc@ */
474   0,                                    /* @tp_print@ */
475   0,                                    /* @tp_getattr@ */
476   0,                                    /* @tp_setattr@ */
477   0,                                    /* @tp_compare@ */
478   0,                                    /* @tp_repr@ */
479   0,                                    /* @tp_as_number@ */
480   0,                                    /* @tp_as_sequence@ */
481   0,                                    /* @tp_as_mapping@ */
482   0,                                    /* @tp_hash@ */
483   0,                                    /* @tp_call@ */
484   0,                                    /* @tp_str@ */
485   0,                                    /* @tp_getattro@ */
486   0,                                    /* @tp_setattro@ */
487   0,                                    /* @tp_as_buffer@ */
488   Py_TPFLAGS_DEFAULT |                  /* @tp_flags@ */
489     Py_TPFLAGS_BASETYPE,
490
491   /* @tp_doc@ */
492 "Prime-generation event.",
493
494   0,                                    /* @tp_traverse@ */
495   0,                                    /* @tp_clear@ */
496   0,                                    /* @tp_richcompare@ */
497   0,                                    /* @tp_weaklistoffset@ */
498   0,                                    /* @tp_iter@ */
499   0,                                    /* @tp_iternext@ */
500   0,                                    /* @tp_methods@ */
501   0,                                    /* @tp_members@ */
502   pgevent_pygetset,                     /* @tp_getset@ */
503   0,                                    /* @tp_base@ */
504   0,                                    /* @tp_dict@ */
505   0,                                    /* @tp_descr_get@ */
506   0,                                    /* @tp_descr_set@ */
507   0,                                    /* @tp_dictoffset@ */
508   0,                                    /* @tp_init@ */
509   PyType_GenericAlloc,                  /* @tp_alloc@ */
510   abstract_pynew,                       /* @tp_new@ */
511   0,                                    /* @tp_free@ */
512   0                                     /* @tp_is_gc@ */
513 };
514
515 /*----- Event handlers ----------------------------------------------------*/
516
517 PyTypeObject *pgev_pytype;
518
519 typedef struct pgstep_pyobj {
520   PGEV_HEAD
521   pgen_filterctx f;
522 } pgstep_pyobj;
523
524 static PyTypeObject *pgstep_pytype;
525 #define PGSTEP_STEP(o) (((pgstep_pyobj *)(o))->f.step)
526
527 typedef struct pgjump_pyobj {
528   PGEV_HEAD
529   PyObject *fobj;
530   pgen_jumpctx j;
531 } pgjump_pyobj;
532
533 static PyTypeObject *pgjump_pytype;
534 #define PGJUMP_FOBJ(o) (((pgjump_pyobj *)(o))->fobj)
535 #define PGJUMP_J(o) (&((pgjump_pyobj *)(o))->j)
536
537 typedef struct pgtest_pyobj {
538   PGEV_HEAD
539   rabin r;
540 } pgtest_pyobj;
541
542 static PyTypeObject *pgtest_pytype;
543
544 static int pgev_python(int rq, pgen_event *ev, void *p)
545 {
546   PyObject *py = p;
547   PyObject *pyev = 0;
548   PyObject *rc = 0;
549   int st = PGEN_ABORT;
550   long l;
551   static const char *const meth[] =
552     { "pg_abort", "pg_done", "pg_begin", "pg_try", "pg_fail", "pg_pass" };
553
554   Py_INCREF(py);
555   rq++;
556   if (rq > N(meth)) SYSERR("event code out of range");
557   pyev = pgevent_pywrap(ev);
558   if ((rc = PyObject_CallMethod(py, (/*unconst*/ char *)meth[rq],
559                                 "(O)", pyev)) == 0)
560     goto end;
561   if (rc == Py_None)
562     st = PGEN_TRY;
563   else if ((l = PyInt_AsLong(rc)) == -1 && PyErr_Occurred())
564     goto end;
565   else if (l < PGEN_ABORT || l > PGEN_PASS)
566     VALERR("return code out of range");
567   else
568     st = l;
569 end:
570   if (pyev) {
571     pgevent_kill(pyev);
572     Py_DECREF(pyev);
573   }
574   Py_XDECREF(rc);
575   Py_DECREF(py);
576   return (st);
577 }
578
579 static PyObject *pgev_pywrap(const pgev *pg)
580 {
581   pgev_pyobj *o;
582
583   o = PyObject_New(pgev_pyobj, pgev_pytype);
584   o->pg = *pg;
585   return ((PyObject *)o);
586 }
587
588 int convpgev(PyObject *o, void *p)
589 {
590   pgev *pg = p;
591
592   if (PGEV_PYCHECK(o))
593     *pg = *PGEV_PG(o);
594   else {
595     pg->proc = pgev_python;
596     pg->ctx = o;
597     Py_INCREF(o);
598   }
599   return (1);
600 }
601
602 void droppgev(pgev *p)
603 {
604   if (p->proc == pgev_python) {
605     PyObject *py = p->ctx;
606     Py_DECREF(py);
607   }
608 }
609
610 static PyObject *pgmeth_common(PyObject *me, PyObject *arg, int rq)
611 {
612   pgen_event *ev;
613   pgev *pg = PGEV_PG(me);
614   PyObject *rc = 0;
615
616   if (!PyArg_ParseTuple(arg, "O&", convpgevent, &ev)) goto end;
617   rc = PyInt_FromLong(!pg->proc ? rq : pg->proc(rq, ev, pg->ctx));
618 end:
619   return (rc);
620 }
621
622 #define PGMETH(lc, uc)                                                  \
623   static PyObject *pgmeth_pg_##lc(PyObject *me, PyObject *arg)          \
624     { return pgmeth_common(me, arg, PGEN_##uc); }
625 PGMETH(abort,   ABORT)
626 PGMETH(done,    DONE)
627 PGMETH(begin,   BEGIN)
628 PGMETH(try,     TRY)
629 PGMETH(pass,    PASS)
630 PGMETH(fail,    FAIL)
631 #undef PGMETH
632
633 static PyObject *pgev_stdev(pgen_proc *proc)
634   { pgev pg; pg.proc = proc; pg.ctx = 0; return (pgev_pywrap(&pg)); }
635
636 static PyMethodDef pgev_pymethods[] = {
637 #define METHNAME(name) pgmeth_##name
638   METH  (pg_abort,      "E.pg_abort() -> PGRC -- prime generation aborted")
639   METH  (pg_done,       "E.pg_done() -> PGRC -- prime generation finished")
640   METH  (pg_begin,      "E.pg_begin() -> PGRC -- commence stepping/testing")
641   METH  (pg_try,        "E.pg_try() -> PGRC -- found new candidate")
642   METH  (pg_pass,       "E.pg_pass() -> PGRC -- passed primality test")
643   METH  (pg_fail,       "E.pg_fail() -> PGRC -- failed primality test")
644 #undef METHNAME
645   { 0 }
646 };
647
648 static PyTypeObject pgev_pytype_skel = {
649   PyObject_HEAD_INIT(0) 0,              /* Header */
650   "PrimeGenBuiltinHandler",             /* @tp_name@ */
651   sizeof(pgev_pyobj),                   /* @tp_basicsize@ */
652   0,                                    /* @tp_itemsize@ */
653
654   0,                                    /* @tp_dealloc@ */
655   0,                                    /* @tp_print@ */
656   0,                                    /* @tp_getattr@ */
657   0,                                    /* @tp_setattr@ */
658   0,                                    /* @tp_compare@ */
659   0,                                    /* @tp_repr@ */
660   0,                                    /* @tp_as_number@ */
661   0,                                    /* @tp_as_sequence@ */
662   0,                                    /* @tp_as_mapping@ */
663   0,                                    /* @tp_hash@ */
664   0,                                    /* @tp_call@ */
665   0,                                    /* @tp_str@ */
666   0,                                    /* @tp_getattro@ */
667   0,                                    /* @tp_setattro@ */
668   0,                                    /* @tp_as_buffer@ */
669   Py_TPFLAGS_DEFAULT |                  /* @tp_flags@ */
670     Py_TPFLAGS_BASETYPE,
671
672   /* @tp_doc@ */
673 "Built-in prime-generation event handler, base class.",
674
675   0,                                    /* @tp_traverse@ */
676   0,                                    /* @tp_clear@ */
677   0,                                    /* @tp_richcompare@ */
678   0,                                    /* @tp_weaklistoffset@ */
679   0,                                    /* @tp_iter@ */
680   0,                                    /* @tp_iternext@ */
681   pgev_pymethods,                       /* @tp_methods@ */
682   0,                                    /* @tp_members@ */
683   0,                                    /* @tp_getset@ */
684   0,                                    /* @tp_base@ */
685   0,                                    /* @tp_dict@ */
686   0,                                    /* @tp_descr_get@ */
687   0,                                    /* @tp_descr_set@ */
688   0,                                    /* @tp_dictoffset@ */
689   0,                                    /* @tp_init@ */
690   PyType_GenericAlloc,                  /* @tp_alloc@ */
691   abstract_pynew,                       /* @tp_new@ */
692   0,                                    /* @tp_free@ */
693   0                                     /* @tp_is_gc@ */
694 };
695
696 static PyObject *pgstep_pynew(PyTypeObject *ty, PyObject *arg, PyObject *kw)
697 {
698   mpw s;
699   pgstep_pyobj *rc = 0;
700   static const char *const kwlist[] = { "step", 0 };
701
702   if (!PyArg_ParseTupleAndKeywords(arg, kw, "O&:new", KWLIST, convmpw, &s))
703     goto end;
704   rc = (pgstep_pyobj *)ty->tp_alloc(ty, 0);
705   rc->f.step = s;
706   rc->pg.proc = pgen_filter;
707   rc->pg.ctx = &rc->f;
708 end:
709   return ((PyObject *)rc);
710 }
711
712 static PyObject *psget_step(PyObject *me, void *hunoz)
713   { return (PyInt_FromLong(PGSTEP_STEP(me))); }
714
715 static PyGetSetDef pgstep_pygetset[] = {
716 #define GETSETNAME(op, name) ps##op##_##name
717   GET   (step,          "S.step -> step size for the stepper")
718 #undef GETSETNAME
719   { 0 }
720 };
721
722 static PyTypeObject pgstep_pytype_skel = {
723   PyObject_HEAD_INIT(0) 0,              /* Header */
724   "PrimeGenStepper",                    /* @tp_name@ */
725   sizeof(pgstep_pyobj),                 /* @tp_basicsize@ */
726   0,                                    /* @tp_itemsize@ */
727
728   0,                                    /* @tp_dealloc@ */
729   0,                                    /* @tp_print@ */
730   0,                                    /* @tp_getattr@ */
731   0,                                    /* @tp_setattr@ */
732   0,                                    /* @tp_compare@ */
733   0,                                    /* @tp_repr@ */
734   0,                                    /* @tp_as_number@ */
735   0,                                    /* @tp_as_sequence@ */
736   0,                                    /* @tp_as_mapping@ */
737   0,                                    /* @tp_hash@ */
738   0,                                    /* @tp_call@ */
739   0,                                    /* @tp_str@ */
740   0,                                    /* @tp_getattro@ */
741   0,                                    /* @tp_setattro@ */
742   0,                                    /* @tp_as_buffer@ */
743   Py_TPFLAGS_DEFAULT |                  /* @tp_flags@ */
744     Py_TPFLAGS_BASETYPE,
745
746   /* @tp_doc@ */
747 "PrimeGenStepper(STEP): simple stepper with small-factors filter.",
748
749   0,                                    /* @tp_traverse@ */
750   0,                                    /* @tp_clear@ */
751   0,                                    /* @tp_richcompare@ */
752   0,                                    /* @tp_weaklistoffset@ */
753   0,                                    /* @tp_iter@ */
754   0,                                    /* @tp_iternext@ */
755   0,                                    /* @tp_methods@ */
756   0,                                    /* @tp_members@ */
757   pgstep_pygetset,                      /* @tp_getset@ */
758   0,                                    /* @tp_base@ */
759   0,                                    /* @tp_dict@ */
760   0,                                    /* @tp_descr_get@ */
761   0,                                    /* @tp_descr_set@ */
762   0,                                    /* @tp_dictoffset@ */
763   0,                                    /* @tp_init@ */
764   PyType_GenericAlloc,                  /* @tp_alloc@ */
765   pgstep_pynew,                         /* @tp_new@ */
766   0,                                    /* @tp_free@ */
767   0                                     /* @tp_is_gc@ */
768 };
769
770 static PyObject *pgjump_pynew(PyTypeObject *ty, PyObject *arg, PyObject *kw)
771 {
772   PyObject *o, *fobj;
773   pgjump_pyobj *rc = 0;
774   static const char *const kwlist[] = { "jump", 0 };
775
776   if (!PyArg_ParseTupleAndKeywords(arg, kw, "O:new", KWLIST, &o) ||
777       (fobj = pfilt_pymake(pfilt_pytype, o)) == 0)
778     goto end;
779   rc = (pgjump_pyobj *)ty->tp_alloc(ty, 0);
780   rc->fobj = fobj;
781   rc->j.j = PFILT_F(fobj);
782   rc->pg.proc = pgen_jump;
783   rc->pg.ctx = &rc->j;
784 end:
785   return ((PyObject *)rc);
786 }
787
788 static void pgjump_pydealloc(PyObject *me)
789 {
790   Py_DECREF(PGJUMP_FOBJ(me));
791   FREEOBJ(me);
792 }
793
794 static PyObject *pjget_jump(PyObject *me, void *hunoz)
795   { RETURN_OBJ(PGJUMP_FOBJ(me)); }
796
797 static PyGetSetDef pgjump_pygetset[] = {
798 #define GETSETNAME(op, name) pj##op##_##name
799   GET   (jump,          "S.jump -> jump size for the stepper")
800 #undef GETSETNAME
801   { 0 }
802 };
803
804 static PyTypeObject pgjump_pytype_skel = {
805   PyObject_HEAD_INIT(0) 0,              /* Header */
806   "PrimeGenJumper",                     /* @tp_name@ */
807   sizeof(pgjump_pyobj),                 /* @tp_basicsize@ */
808   0,                                    /* @tp_itemsize@ */
809
810   pgjump_pydealloc,                     /* @tp_dealloc@ */
811   0,                                    /* @tp_print@ */
812   0,                                    /* @tp_getattr@ */
813   0,                                    /* @tp_setattr@ */
814   0,                                    /* @tp_compare@ */
815   0,                                    /* @tp_repr@ */
816   0,                                    /* @tp_as_number@ */
817   0,                                    /* @tp_as_sequence@ */
818   0,                                    /* @tp_as_mapping@ */
819   0,                                    /* @tp_hash@ */
820   0,                                    /* @tp_call@ */
821   0,                                    /* @tp_str@ */
822   0,                                    /* @tp_getattro@ */
823   0,                                    /* @tp_setattro@ */
824   0,                                    /* @tp_as_buffer@ */
825   Py_TPFLAGS_DEFAULT |                  /* @tp_flags@ */
826     Py_TPFLAGS_BASETYPE,
827
828   /* @tp_doc@ */
829 "PrimeGenJumper(JUMP): stepper for larger steps with small-factors filter.",
830
831   0,                                    /* @tp_traverse@ */
832   0,                                    /* @tp_clear@ */
833   0,                                    /* @tp_richcompare@ */
834   0,                                    /* @tp_weaklistoffset@ */
835   0,                                    /* @tp_iter@ */
836   0,                                    /* @tp_iternext@ */
837   0,                                    /* @tp_methods@ */
838   0,                                    /* @tp_members@ */
839   pgjump_pygetset,                      /* @tp_getset@ */
840   0,                                    /* @tp_base@ */
841   0,                                    /* @tp_dict@ */
842   0,                                    /* @tp_descr_get@ */
843   0,                                    /* @tp_descr_set@ */
844   0,                                    /* @tp_dictoffset@ */
845   0,                                    /* @tp_init@ */
846   PyType_GenericAlloc,                  /* @tp_alloc@ */
847   pgjump_pynew,                         /* @tp_new@ */
848   0,                                    /* @tp_free@ */
849   0                                     /* @tp_is_gc@ */
850 };
851
852 static PyObject *pgtest_pynew(PyTypeObject *ty, PyObject *arg, PyObject *kw)
853 {
854   pgtest_pyobj *rc = 0;
855   static const char *const kwlist[] = { 0 };
856
857   if (!PyArg_ParseTupleAndKeywords(arg, kw, ":new", KWLIST)) goto end;
858   rc = (pgtest_pyobj *)ty->tp_alloc(ty, 0);
859   rc->pg.proc = pgen_test;
860   rc->pg.ctx = &rc->r;
861 end:
862   return ((PyObject *)rc);
863 }
864
865 static PyTypeObject pgtest_pytype_skel = {
866   PyObject_HEAD_INIT(0) 0,              /* Header */
867   "PrimeGenTester",                     /* @tp_name@ */
868   sizeof(pgtest_pyobj),                 /* @tp_basicsize@ */
869   0,                                    /* @tp_itemsize@ */
870
871   0,                                    /* @tp_dealloc@ */
872   0,                                    /* @tp_print@ */
873   0,                                    /* @tp_getattr@ */
874   0,                                    /* @tp_setattr@ */
875   0,                                    /* @tp_compare@ */
876   0,                                    /* @tp_repr@ */
877   0,                                    /* @tp_as_number@ */
878   0,                                    /* @tp_as_sequence@ */
879   0,                                    /* @tp_as_mapping@ */
880   0,                                    /* @tp_hash@ */
881   0,                                    /* @tp_call@ */
882   0,                                    /* @tp_str@ */
883   0,                                    /* @tp_getattro@ */
884   0,                                    /* @tp_setattro@ */
885   0,                                    /* @tp_as_buffer@ */
886   Py_TPFLAGS_DEFAULT |                  /* @tp_flags@ */
887     Py_TPFLAGS_BASETYPE,
888
889   /* @tp_doc@ */
890 "PrimeGenTester(): Rabin-Miller tester.",
891
892   0,                                    /* @tp_traverse@ */
893   0,                                    /* @tp_clear@ */
894   0,                                    /* @tp_richcompare@ */
895   0,                                    /* @tp_weaklistoffset@ */
896   0,                                    /* @tp_iter@ */
897   0,                                    /* @tp_iternext@ */
898   0,                                    /* @tp_methods@ */
899   0,                                    /* @tp_members@ */
900   0,                                    /* @tp_getset@ */
901   0,                                    /* @tp_base@ */
902   0,                                    /* @tp_dict@ */
903   0,                                    /* @tp_descr_get@ */
904   0,                                    /* @tp_descr_set@ */
905   0,                                    /* @tp_dictoffset@ */
906   0,                                    /* @tp_init@ */
907   PyType_GenericAlloc,                  /* @tp_alloc@ */
908   pgtest_pynew,                         /* @tp_new@ */
909   0,                                    /* @tp_free@ */
910   0                                     /* @tp_is_gc@ */
911 };
912
913 /*----- Prime generation functions ----------------------------------------*/
914
915 void pgenerr(void)
916 {
917   if (!PyErr_Occurred())
918     PyErr_SetString(PyExc_ValueError, "prime generation failed");
919 }
920
921 static PyObject *meth_pgen(PyObject *me, PyObject *arg, PyObject *kw)
922 {
923   mp *x = 0;
924   mp *r = 0;
925   PyObject *rc = 0;
926   char *p = "p";
927   pgen_filterctx fc = { 2 };
928   rabin tc;
929   pgev step = { 0 }, test = { 0 }, evt = { 0 };
930   unsigned nsteps = 0, ntests = 0;
931   static const char *const kwlist[] =
932     { "start", "name", "stepper", "tester", "event", "nsteps", "ntests", 0 };
933
934   step.proc = pgen_filter; step.ctx = &fc;
935   test.proc = pgen_test; test.ctx = &tc;
936   if (!PyArg_ParseTupleAndKeywords(arg, kw, "O&|sO&O&O&O&O&:pgen", KWLIST,
937                                    convmp, &x, &p, convpgev, &step,
938                                    convpgev, &test, convpgev, &evt,
939                                    convuint, &nsteps, convuint, &ntests))
940     goto end;
941   if (!ntests) ntests = rabin_iters(mp_bits(x));
942   if ((r = pgen(p, MP_NEW, x, evt.proc, evt.ctx,
943                 nsteps, step.proc, step.ctx,
944                 ntests, test.proc, test.ctx)) == 0)
945     PGENERR;
946   if (PyErr_Occurred()) goto end;
947   rc = mp_pywrap(r);
948   r = 0;
949 end:
950   mp_drop(r); mp_drop(x);
951   droppgev(&step); droppgev(&test); droppgev(&evt);
952   return (rc);
953 }
954
955 static PyObject *meth_strongprime_setup(PyObject *me,
956                                         PyObject *arg, PyObject *kw)
957 {
958   mp *x = 0;
959   pfilt f;
960   grand *r = &rand_global;
961   unsigned nbits;
962   char *name = "p";
963   unsigned n = 0;
964   pgev evt = { 0 };
965   PyObject *rc = 0;
966   static const char *const kwlist[] =
967     { "nbits", "name", "event", "rng", "nsteps", 0 };
968
969   if (!PyArg_ParseTupleAndKeywords(arg, kw, "O&|sO&O&O&", KWLIST,
970                                    convuint, &nbits, &name,
971                                    convpgev, &evt, convgrand, &r,
972                                    convuint, &n))
973     goto end;
974   if ((x = strongprime_setup(name, MP_NEW, &f, nbits,
975                              r, n, evt.proc, evt.ctx)) == 0)
976     PGENERR;
977   rc = Py_BuildValue("(NN)", mp_pywrap(x), pfilt_pywrap(&f));
978   x = 0;
979 end:
980   mp_drop(x);
981   droppgev(&evt);
982   return (rc);
983 }
984
985 static PyObject *meth_strongprime(PyObject *me, PyObject *arg, PyObject *kw)
986 {
987   mp *x = 0;
988   grand *r = &rand_global;
989   unsigned nbits;
990   char *name = "p";
991   unsigned n = 0;
992   pgev evt = { 0 };
993   PyObject *rc = 0;
994   static const char *const kwlist[] =
995     { "nbits", "name", "event", "rng", "nsteps", 0 };
996
997   if (!PyArg_ParseTupleAndKeywords(arg, kw, "O&|sO&O&O&", KWLIST,
998                                    convuint, &nbits, &name,
999                                    convpgev, &evt, convgrand, &r,
1000                                    convuint, &n))
1001     goto end;
1002   if ((x = strongprime(name, MP_NEW, nbits,
1003                        r, n, evt.proc, evt.ctx)) == 0)
1004     PGENERR;
1005   rc = mp_pywrap(x);
1006   x = 0;
1007 end:
1008   mp_drop(x);
1009   droppgev(&evt);
1010   return (rc);
1011 }
1012
1013 static PyObject *meth_limlee(PyObject *me, PyObject *arg, PyObject *kw)
1014 {
1015   char *p = "p";
1016   pgev ie = { 0 }, oe = { 0 };
1017   unsigned ql, pl;
1018   grand *r = &rand_global;
1019   unsigned on = 0;
1020   size_t i, nf = 0;
1021   PyObject *rc = 0, *vec;
1022   static const char *const kwlist[] =
1023     { "pbits", "qbits", "name", "event", "ievent", "rng", "nsteps", 0 };
1024   mp *x = 0, **v = 0;
1025
1026   if (!PyArg_ParseTupleAndKeywords(arg, kw, "O&O&|sO&O&O&O&:limlee", KWLIST,
1027                                    convuint, &pl, convuint, &ql,
1028                                    &p, convpgev, &oe, convpgev, &ie,
1029                                    convgrand, &r, convuint, &on))
1030     goto end;
1031   if ((x = limlee(p, MP_NEW, MP_NEW, ql, pl, r, on,
1032                   oe.proc, oe.ctx, ie.proc, ie.ctx, &nf, &v)) == 0)
1033     PGENERR;
1034   vec = PyList_New(nf);
1035   for (i = 0; i < nf; i++)
1036     PyList_SetItem(vec, i, mp_pywrap(v[i]));
1037   xfree(v);
1038   rc = Py_BuildValue("(NN)", mp_pywrap(x), vec);
1039 end:
1040   droppgev(&oe); droppgev(&ie);
1041   return (rc);
1042 }
1043
1044 /*----- Global stuff ------------------------------------------------------*/
1045
1046 static PyMethodDef methods[] = {
1047 #define METHNAME(name) meth_##name
1048   METH  (_PrimeFilter_smallfactor,      "smallfactor(X) -> PGRC")
1049   METH  (_RabinMiller_iters,            "iters(NBITS) -> NITERS")
1050   KWMETH(pgen,                          "\
1051 pgen(START, [name = 'p', stepper = PrimeGenStepper(2),\n\
1052      tester = PrimeGenTester(), event = pgen_nullev,\n\
1053      nsteps = 0, ntests = RabinMiller.iters(START.nbits)]) -> P")
1054   KWMETH(strongprime_setup,             "\
1055 strongprime_setup(NBITS, [name = 'p', event = pgen_nullev,\n\
1056                   rng = rand, nsteps = 0]) -> (START, JUMP)")
1057   KWMETH(strongprime,                   "\
1058 strongprime(NBITS, [name = 'p', event = pgen_nullev,\n\
1059             rng = rand, nsteps = 0]) -> P")
1060   KWMETH(limlee,                        "\
1061 limlee(PBITS, QBITS, [name = 'p', event = pgen_nullev,\n\
1062        ievent = pgen_nullev, rng = rand, nsteps = 0]) -> (P, [Q, ...])")
1063 #undef METHNAME
1064   { 0 }
1065 };
1066
1067 void pgen_pyinit(void)
1068 {
1069   INITTYPE(pfilt, root);
1070   INITTYPE(rabin, root);
1071   INITTYPE(pgevent, root);
1072   INITTYPE(pgev, root);
1073   INITTYPE(pgstep, pgev);
1074   INITTYPE(pgjump, pgev);
1075   INITTYPE(pgtest, pgev);
1076   addmethods(methods);
1077 }
1078
1079 static PyObject *obj;
1080
1081 void pgen_pyinsert(PyObject *mod)
1082 {
1083   INSERT("PrimeFilter", pfilt_pytype);
1084   INSERT("RabinMiller", rabin_pytype);
1085   INSERT("PrimeGenEvent", pgevent_pytype);
1086   INSERT("PrimeGenBuiltinHandler", pgev_pytype);
1087   INSERT("PrimeGenStepper", pgstep_pytype);
1088   INSERT("PrimeGenJumper", pgjump_pytype);
1089   INSERT("PrimeGenTester", pgtest_pytype);
1090   INSERT("pgen_nullev", obj = pgev_stdev(0));
1091   INSERT("pgen_stdev", pgev_stdev(pgen_ev));
1092   INSERT("pgen_spinev", pgev_stdev(pgen_evspin));
1093   INSERT("pgen_subev", pgev_stdev(pgen_subev));
1094 }
1095
1096 /*----- That's all, folks -------------------------------------------------*/