10ed /* # Copyright (C) 2002 John Goerzen # # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program 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 General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include #include #include #include "Python.h" #include "helpers.h" GpgmeError gpgme_data_read_helper(GpgmeData dh, char *buffer, size_t *length) { size_t readsize = *length; return gpgme_data_read(dh, buffer, readsize, length); } void pygpgme_set_passphrase_cb(GpgmeCtx ctx, PyObject *cb, PyObject **freelater) { Py_INCREF(cb); *freelater = cb; gpgme_set_passphrase_cb(ctx, (GpgmePassphraseCb)pyPassphraseCb, (void *) cb); } void pygpgme_clear_generic_cb(PyObject **cb) { Py_DECREF(*cb); } const char *pyPassphraseCb(void *hook, const char *desc, void **r_hd) { PyObject *pyhook = NULL; PyObject *func = NULL; PyObject *args = NULL; PyObject *retval = NULL; PyObject *dataarg = NULL; if (desc == NULL) { /* Free those resources. */ if (*r_hd) { Py_DECREF((PyObject *)*r_hd); } return NULL; } pyhook = (PyObject *) hook; func = PyTuple_GetItem(pyhook, 0); dataarg = PyTuple_GetItem(pyhook, 1); if (!func) { printf("Got a null func!\n"); return NULL; } if (!dataarg) { printf("No dataarg\n"); return NULL; } args = PyTuple_New(2); PyTuple_SetItem(args, 0, PyString_FromString(desc)); Py_INCREF(dataarg); /* Because GetItem doesn't give a ref but SetItem taketh away */ PyTuple_SetItem(args, 1, dataarg); retval = PyObject_CallObject(func, args); Py_DECREF(args); if (!retval) { printf("Bad retval\n"); return NULL; } *r_hd = (void *) retval; return PyString_AsString(retval); } void pygpgme_set_progress_cb(GpgmeCtx ctx, PyObject *cb, PyObject **freelater){ Py_INCREF(cb); *freelater = cb; gpgme_set_progress_cb(ctx, (GpgmeProgressCb) pyProgressCb, (void *) cb); } void pyProgressCb(void *hook, const char *what, int type, int current, int total) { PyObject *func = NULL, *dataarg = NULL, *args = NULL, *retval = NULL; PyObject *pyhook = (PyObject *) hook; func = PyTuple_GetItem(pyhook, 0); dataarg = PyTuple_GetItem(pyhook, 1); args = PyTuple_New(5); PyTuple_SetItem(args, 0, PyString_FromString(what)); PyTuple_SetItem(args, 1, PyInt_FromLong((long) type)); PyTuple_SetItem(args, 2, PyInt_FromLong((long) current)); PyTuple_SetItem(args, 3, PyInt_FromLong((long) total)); Py_INCREF(dataarg); PyTuple_SetItem(args, 4, dataarg); retval = PyObject_CallObject(func, args); Py_DECREF(args); Py_DECREF(retval); } void pygpgme_data_new_with_read_cb(GpgmeData *dh, PyObject *cb, PyObject **freelater){ Py_INCREF(cb); *freelater = cb; gpgme_data_new_with_read_cb(dh, pyReadCb, (void *) cb); } int pyReadCb(void *hook, char *buffer, size_t count, size_t *nread) { PyObject *func = NULL, *dataarg = NULL, *args = NULL, *retval = NULL; PyObject *pyhook = (PyObject *) hook; int strsize = 0; func = PyTuple_GetItem(pyhook, 0); dataarg = PyTuple_GetItem(pyhook, 1); args = PyTuple_New(2); PyTuple_SetItem(args, 0, PyInt_FromLong((long) count)); Py_INCREF(dataarg); PyTuple_SetItem(args, 1, dataarg); retval = PyObject_CallObject(func, args); Py_DECREF(args); if ((!nread) || (!buffer)) { /* Returned EOF -- signal EOF OR nread is NULL OR buffer is NULL */ Py_DECREF(retval); return 0; } strsize = PyString_Size(retval); if (strsize == 0) { Py_DECREF(retval); *nread = 0; return -1; } *nread = strsize; memcpy(buffer, PyString_AsString(retval), strsize); Py_DECREF(retval); return 0; } 0