summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/plugins/translate.c
blob: 055788cc1b0b82e8d0cff4c2941a40ef73289468 (plain)
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

/* Chrysalide - Outil d'analyse de fichiers binaires
 * translate.c - conversion de structures liées aux greffons en objets Python
 *
 * Copyright (C) 2021 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 "translate.h"


#include <assert.h>


#include "plugin.h"
#include "../helpers.h"
#include "../struct.h"



/******************************************************************************
*                                                                             *
*  Paramètres  : iface = ensemble d'informations à transcrire en Python.      *
*                                                                             *
*  Description : Traduit une description d'interface de greffon.              *
*                                                                             *
*  Retour      : Structure mise en place ou NULL en cas d'erreur.             *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

PyObject *translate_plugin_interface_to_python(const plugin_interface *iface)
{
    PyObject *result;                       /* Construction à retourner    */
    PyTypeObject *base;                     /* Modèle d'objet à créer      */
    bool status;                            /* Bilan d'une traduction      */
    PyObject *array;                        /* Tableau à insérer           */
    size_t i;                               /* Boucle de parcours          */
    PyTypeObject *itype;                    /* Type d'élément à créer      */
    PyObject *item;                         /* Elément mis en place        */

    base = get_python_py_struct_type();

    result = PyObject_CallFunction((PyObject *)base, NULL);
    assert(result != NULL);

    status = true;

    if (status) status = TRANSLATE_STRING_FIELD(result, iface, gtp_name);
    if (status) status = TRANSLATE_STRING_FIELD(result, iface, name);
    if (status) status = TRANSLATE_STRING_FIELD(result, iface, desc);
    if (status) status = TRANSLATE_STRING_FIELD(result, iface, version);
    if (status) status = TRANSLATE_STRING_FIELD(result, iface, url);

    if (status) status = TRANSLATE_BOOLEAN_FIELD(result, iface, container);

    if (status) status = TRANSLATE_ARRAY_FIELD(result, iface, required, &array);

    if (status)
    {
        itype = get_python_plugin_module_type();

        for (i = 0; i < iface->required_count; i++)
        {
            item = PyUnicode_FromString(iface->required[i]);
            PyTuple_SetItem(array, i, item);
        }

    }

    if (status) status = TRANSLATE_ARRAY_FIELD(result, iface, actions, &array);

    if (status)
    {
        itype = get_python_plugin_module_type();

        for (i = 0; i < iface->actions_count; i++)
        {
            item = cast_with_constants_group_from_type(itype, "PluginAction", iface->actions[i]);
            PyTuple_SetItem(array, i, item);
        }

    }

    if (!status)
    {
        Py_DECREF(result);
        result = NULL;
    }

    return result;

}