/* Chrysalide - Outil d'analyse de fichiers binaires * queue.c - équivalent Python du fichier "core/queue.c" * * Copyright (C) 2018 Cyrille Bagard * * This file is part of Chrysalide. * * Chrysalide 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 3 of the License, or * (at your option) any later version. * * Chrysalide 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 "queue.h" #include #include #include "../access.h" #include "../helpers.h" /* Attend que toutes les tâches de tout groupe soient traitées. */ static PyObject *py_queue_wait_for_all_global_works(PyObject *, PyObject *); /****************************************************************************** * * * Paramètres : self = objet Python concerné par l'appel. * * args = non utilisé ici. * * * * Description : Attend que toutes les tâches de tout groupe soient traitées. * * * * Retour : None. * * * * Remarques : - * * * ******************************************************************************/ static PyObject *py_queue_wait_for_all_global_works(PyObject *self, PyObject *args) { PyThreadState *_save; /* Sauvegarde de contexte */ #define QUEUE_WAIT_FOR_ALL_GLOBAL_WORKS_METHOD PYTHON_METHOD_DEF \ ( \ wait_for_all_global_works, "", \ METH_NOARGS, py_queue, \ "Wait for all global tasks being processed." \ ) Py_UNBLOCK_THREADS; wait_for_all_global_works(); Py_BLOCK_THREADS; Py_RETURN_NONE; } /****************************************************************************** * * * Paramètres : - * * * * Description : Définit une extension du module 'core' à compléter. * * * * Retour : Bilan de l'opération. * * * * Remarques : - * * * ******************************************************************************/ bool populate_core_module_with_queue(void) { bool result; /* Bilan à retourner */ PyObject *module; /* Module à recompléter */ static PyMethodDef py_queue_methods[] = { QUEUE_WAIT_FOR_ALL_GLOBAL_WORKS_METHOD, { NULL } }; module = get_access_to_python_module("pychrysalide.core"); result = register_python_module_methods(module, py_queue_methods); return result; }