3 * Pyke: the Python Kit for Extensions
5 * (c) 2019 Straylight/Edgeware
8 /*----- Licensing notice --------------------------------------------------*
10 * This file is part of Pyke: the Python Kit for Extensions.
12 * Pyke is free software: you can redistribute it and/or modify it under
13 * the terms of the GNU General Public License as published by the Free
14 * Software Foundation; either version 2 of the License, or (at your
15 * option) any later version.
17 * Pyke is distributed in the hope that it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 * You should have received a copy of the GNU General Public License
23 * along with Pyke. If not, write to the Free Software Foundation, Inc.,
24 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 /*----- Header files ------------------------------------------------------*/
31 /*----- External variables ------------------------------------------------*/
34 PyObject *home_module;
36 /*----- Conversions -------------------------------------------------------*/
38 PyObject *getulong(unsigned long w)
40 if (w <= LONG_MAX) return (PyInt_FromLong(w));
41 else return (PyLong_FromUnsignedLong(w));
44 PyObject *getbool(int b)
45 { if (b) RETURN_TRUE; else RETURN_FALSE; }
47 int convulong(PyObject *o, void *pp)
50 unsigned long *p = pp;
53 if (!o) VALERR("can't delete");
56 if (i < 0) VALERR("must be nonnegative");
59 if ((t = PyNumber_Long(o)) == 0) goto end;
60 *p = PyLong_AsUnsignedLong(t);
62 if (PyErr_Occurred()) goto end;
69 int convuint(PyObject *o, void *pp)
74 if (!convulong(o, &u)) goto end;
75 if (u > UINT_MAX) VALERR("out of range");
82 int convszt(PyObject *o, void *pp)
87 if (!convulong(o, &u)) goto end;
88 if (u > ~(size_t)0) VALERR("out of range");
95 int convbool(PyObject *o, void *pp)
97 if (!o) VALERR("can't delete");
98 *(int *)pp = PyObject_IsTrue(o);
104 int convbin(PyObject *o, void *pp)
108 if (PyString_Check(o)) {
109 r->p = PyString_AS_STRING(o);
110 r->sz = PyString_GET_SIZE(o);
113 if (PyUnicode_Check(o)) {
114 o = _PyUnicode_AsDefaultEncodedString(o, 0);
116 r->p = PyString_AS_STRING(o);
117 r->sz = PyString_GET_SIZE(o);
120 return (PyObject_AsReadBuffer(o, &r->p, &r->sz) ? 0 : 1);
123 /*----- Miscellaneous utilities -------------------------------------------*/
125 PyObject *abstract_pynew(PyTypeObject *ty, PyObject *arg, PyObject *kw)
127 PyErr_SetString(PyExc_TypeError, "can't instantiate this class");
131 /*----- Saving and restoring exceptions ----------------------------------*/
133 void report_lost_exception_v(struct excinfo *exc,
134 const char *why, va_list ap)
136 PyObject *hookfn = 0;
137 PyObject *whyobj = 0;
140 /* Make sure we start out without a pending exception, or this will get
143 assert(!PyErr_Occurred());
145 /* Format the explanation. */
146 if (why) whyobj = PyString_FromFormatV(why, ap);
147 else { whyobj = Py_None; Py_INCREF(whyobj); }
149 /* Find our home module's `lostexchook' function. This won't work if
150 * there's no module, or the function isn't defined, or it's `None'.
152 if (!home_module) goto sys;
153 hookfn = PyObject_GetAttrString(home_module, "lostexchook");
154 if (hookfn == Py_None) goto sys;
156 else if (!PyErr_ExceptionMatches(PyExc_AttributeError)) goto ouch;
157 else { PyErr_Clear(); goto sys; }
159 /* Call the hook function. */
160 obj = PyObject_CallFunction(hookfn, "(OOOO)",
161 whyobj, exc->ty, exc->val, exc->tb);
165 /* Something went wrong reporting the problem. */
167 PySys_WriteStderr("\n!!! FAILURE REPORTING LOST EXCEPTION\n");
169 /* drop through... */
171 /* There was no hook, so try to do something sensible using
175 PySys_WriteStderr("\n!!! LOST EXCEPTION: %s\n",
176 PyString_AS_STRING(whyobj));
177 RESTORE_EXCINFO(exc);
179 /* drop through... */
181 /* Clean up afterwards. */
188 void report_lost_exception(struct excinfo *exc, const char *why, ...)
193 report_lost_exception_v(exc, why, ap);
197 void stash_exception(struct excinfo *exc, const char *why, ...)
200 struct excinfo stash;
206 STASH_EXCINFO(&stash);
207 report_lost_exception_v(&stash, why, ap);
212 void restore_exception(struct excinfo *exc, const char *why, ...)
215 struct excinfo stash;
217 if (!PyErr_Occurred())
218 RESTORE_EXCINFO(exc);
221 STASH_EXCINFO(&stash);
222 report_lost_exception_v(exc, why, ap);
223 RESTORE_EXCINFO(&stash);
228 /*----- Type definitions --------------------------------------------------*/
230 static const PyTypeObject emptytype = { 0 };
232 void *newtype(PyTypeObject *metaty,
233 const PyTypeObject *skel,
236 PyHeapTypeObject *ty =
237 (PyHeapTypeObject *)_PyObject_GC_Malloc(_PyObject_VAR_SIZE(metaty, 0));
238 if (!skel) skel = &emptytype;
239 memcpy(ty, skel, sizeof(*skel));
240 #define COPY(blah) do { \
241 if (ty->ht_type.tp_as_##blah) { \
242 memcpy(&ty->as_##blah, \
243 ty->ht_type.tp_as_##blah, \
244 sizeof(ty->as_##blah)); \
245 ty->ht_type.tp_as_##blah = &ty->as_##blah; \
254 ty->ht_name = PyString_FromString(name);
255 else if (ty->ht_type.tp_name)
256 ty->ht_name = PyString_FromString(ty->ht_type.tp_name);
258 ty->ht_type.tp_name = PyString_AS_STRING(ty->ht_name);
260 (void)PyObject_INIT(&ty->ht_type, metaty);
265 void typeready(PyTypeObject *ty)
268 PyDict_SetItemString(ty->tp_dict, "__module__", modname);
271 PyTypeObject *inittype(const PyTypeObject *tyskel,
272 PyTypeObject *base, PyTypeObject *meta)
274 PyTypeObject *ty = newtype(meta, tyskel, 0);
275 if (base) { ty->tp_base = base; Py_INCREF(base); }
276 ty->tp_flags |= Py_TPFLAGS_HEAPTYPE;
281 /*----- Populating modules ------------------------------------------------*/
283 PyObject *mkexc(PyObject *mod, PyObject *base,
284 const char *name, const PyMethodDef *mm)
286 PyObject *nameobj = 0;
292 if ((dict = PyDict_New()) == 0) goto fail;
295 while (mm->ml_name) {
296 if ((func = PyCFunction_NewEx((/*unconst*/ PyMethodDef *)mm,
298 (meth = PyMethod_New(func, 0, exc)) == 0 ||
299 PyDict_SetItemString(dict, mm->ml_name, meth))
301 Py_DECREF(func); func = 0;
302 Py_DECREF(meth); meth = 0;
307 if ((nameobj = PyString_FromFormat("%s.%s",
308 PyModule_GetName(mod),
310 (exc = PyErr_NewException(PyString_AS_STRING(nameobj),
327 void setconstants(PyObject *mod, const struct nameval *c)
334 if (u <= LONG_MAX) x = PyInt_FromLong(u);
335 else if (c->f&CF_SIGNED) x = PyInt_FromLong(-1 - (long)(ULONG_MAX - u));
336 else x = PyLong_FromUnsignedLong(u);
337 PyModule_AddObject(mod, (/*unconst*/ char *)c->name, x);
342 /*----- Submodules --------------------------------------------------------*/
344 static PyMethodDef *global_methods;
345 static size_t nmethods, methodsz;
347 void addmethods(const PyMethodDef *m)
349 size_t n, want, newsz;
351 for (n = 0; m[n].ml_name; n++);
352 want = nmethods + n + 1;
353 if (want > methodsz) {
354 newsz = methodsz ? 2*methodsz : 16;
355 while (want > newsz) newsz *= 2;
357 global_methods = PyObject_Malloc(newsz*sizeof(PyMethodDef));
359 global_methods = PyObject_Realloc(global_methods,
360 newsz*sizeof(PyMethodDef));
361 assert(global_methods);
364 memcpy(global_methods + nmethods, m, n*sizeof(PyMethodDef));
366 global_methods[nmethods].ml_name = 0;
369 PyMethodDef *donemethods(void) { return (global_methods); }
371 /*----- Low-level Python interface ----------------------------------------*/
373 static PyObject *meth__set_home_module(PyObject *me, PyObject *arg)
377 if (!PyArg_ParseTuple(arg, "O!:_set_home_module", &PyModule_Type, &mod))
379 Py_XDECREF(home_module); home_module = mod; Py_INCREF(home_module);
383 static const PyMethodDef methods[] = {
384 #define METHNAME(func) meth_##func
385 METH (_set_home_module, "_set_home_module(MOD)")
390 void pyke_core_pyinit(void) { addmethods(methods); }
391 void pyke_core_pyinsert(PyObject *mod) { ; }
393 /*----- That's all, folks -------------------------------------------------*/