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
|
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 2009-2012 Free Software Foundation, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General
Public License along with this library. If not, see
<http://www.gnu.org/licenses/>. */
#include "libmu_py.h"
inline PyObject *
_ro (PyObject *obj)
{
Py_INCREF (obj);
return obj;
}
void
_py_dealloc (PyObject *self)
{
self->ob_type->tp_free (self);
}
PyObject *
status_object (int status, PyObject *py_obj)
{
PyObject *py_ret = PyTuple_New (2);
PyTuple_SetItem (py_ret, 0, PyInt_FromLong (status));
PyTuple_SetItem (py_ret, 1, py_obj);
return _ro (py_ret);
}
static PyObject *package;
static PyObject *all;
#define MU_MODULE_ROOT PY_PACKAGE_NAME "." PY_ROOT_NAME "."
static char *
_mu_py_module_name (const char *nm)
{
char *buf = malloc (sizeof (MU_MODULE_ROOT) + strlen (nm));
if (!buf)
abort ();
return strcat (strcpy (buf, MU_MODULE_ROOT), nm);
}
PyObject *
_mu_py_attach_module (const char *name, PyMethodDef *methods)
{
PyObject *module;
char *ns = _mu_py_module_name (name);
if (!(module = PyImport_AddModule (ns)))
return NULL;
if (PyModule_AddObject (package, name, module))
return NULL;
Py_INCREF (module);
if (methods && !Py_InitModule (ns, methods))
return NULL;
PyList_Append (all, PyString_FromString (name));
free (ns);
return module;
}
void
mu_py_init (void)
{
mu_py_init_address ();
mu_py_init_attribute ();
mu_py_init_auth ();
mu_py_init_body ();
mu_py_init_envelope ();
mu_py_init_header ();
mu_py_init_folder ();
mu_py_init_mailer ();
mu_py_init_mailbox ();
mu_py_init_mailcap ();
mu_py_init_message ();
mu_py_init_mime ();
mu_py_init_secret ();
mu_py_init_sieve ();
mu_py_init_stream ();
mu_py_init_url ();
}
static PyMethodDef nomethods[] = {
{ NULL, NULL }
};
void
mu_py_attach_modules (void)
{
package = Py_InitModule (PY_ROOT_NAME, nomethods);
if (!package)
return;
PyModule_AddStringConstant (package, "__version__", PY_PACKAGE_VERSION);
if (!PyModule_AddObject (package, "__all__", _ro (PyList_New (0))))
{
all = PyObject_GetAttrString (package, "__all__");
if (!all || !PyList_Check (all))
return;
}
_mu_py_attach_error ();
_mu_py_attach_address ();
_mu_py_attach_attribute ();
_mu_py_attach_auth ();
_mu_py_attach_body ();
_mu_py_attach_envelope ();
_mu_py_attach_errno ();
_mu_py_attach_header ();
_mu_py_attach_filter ();
_mu_py_attach_folder ();
_mu_py_attach_mailer ();
_mu_py_attach_mailbox ();
_mu_py_attach_mailcap ();
_mu_py_attach_message ();
_mu_py_attach_mime ();
_mu_py_attach_nls ();
_mu_py_attach_registrar ();
_mu_py_attach_secret ();
_mu_py_attach_sieve ();
_mu_py_attach_stream ();
_mu_py_attach_url ();
_mu_py_attach_util ();
}
|