3 * $Id: pgproc.c,v 1.1 2004/04/02 18:04:01 mdw Exp $
5 * Prime generation procedures
7 * (c) 2001 Straylight/Edgeware
10 /*----- Licensing notice --------------------------------------------------*
12 * This file is part of the Perl interface to Catacomb.
14 * Catacomb/Perl is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
19 * Catacomb/Perl is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
24 * You should have received a copy of the GNU General Public License
25 * along with Catacomb/Perl; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 /*----- Revision history --------------------------------------------------*
32 * Revision 1.1 2004/04/02 18:04:01 mdw
37 /*----- Header files ------------------------------------------------------*/
39 #include "catacomb-perl.h"
41 /*----- Main code ---------------------------------------------------------*/
43 static int perlevent(int rq, pgen_event *e, void *p)
52 case PGEN_BEGIN: meth = "pgen_begin"; break;
53 case PGEN_TRY: meth = "pgen_try"; break;
54 case PGEN_FAIL: meth = "pgen_fail"; break;
55 case PGEN_PASS: meth = "pgen_pass"; break;
56 case PGEN_DONE: meth = "pgen_done"; break;
57 case PGEN_ABORT: meth = "pgen_abort"; break;
66 XPUSHs(sv_setref_pv(sv_newmortal(), "Catacomb::MP::Prime::Gen::Event",
69 n = perl_call_method(meth, G_SCALAR);
79 void pgproc_get(SV *sv, pgen_proc **p, void **ctx)
84 } else if (sv_derived_from(sv, "Catacomb::MP::Prime::Gen::MagicProc")) {
85 MP_Prime_Gen_MagicProc *mg =
86 (MP_Prime_Gen_MagicProc *)SvIV((SV *)SvRV(sv));
95 /*----- That's all, folks -------------------------------------------------*/