diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2016-09-10 15:59:44 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2016-09-10 15:59:44 (GMT) |
commit | 49f75f22fe67ac356f05c7f81d3a78c48461655b (patch) | |
tree | 063b9c55fd5e0a498289fbdc902b14990976a41d /plugins/pychrysa/format/elf | |
parent | fe884ef58959412972a5a84231d1ee06f34a80be (diff) |
Updated the Python bindings used to load Elf and Dex files.
Diffstat (limited to 'plugins/pychrysa/format/elf')
-rw-r--r-- | plugins/pychrysa/format/elf/elf.c | 51 |
1 files changed, 47 insertions, 4 deletions
diff --git a/plugins/pychrysa/format/elf/elf.c b/plugins/pychrysa/format/elf/elf.c index 8778d56..c1dc2b9 100644 --- a/plugins/pychrysa/format/elf/elf.c +++ b/plugins/pychrysa/format/elf/elf.c @@ -63,22 +63,65 @@ static PyObject *py_elf_format_new(PyTypeObject *type, PyObject *args, PyObject { PyObject *result; /* Instance à retourner */ PyObject *content_obj; /* Objet pour le contenu */ + PyObject *parent_obj; /* Objet pour le parent */ + PyObject *status_obj; /* Objet pour la progression */ int ret; /* Bilan de lecture des args. */ - GBinContent *content; /* Instance GLib correspondante*/ + GBinContent *content; /* Instance GLib du contenu */ + GExeFormat *parent; /* Instance GLib du parent */ + GtkStatusStack *status; /* Instance GTK de suivi */ GBinFormat *format; /* Création GLib à transmettre */ - ret = PyArg_ParseTuple(args, "O", &content_obj); + + ret = PyArg_ParseTuple(args, "OOO", &content_obj, &parent_obj, &status_obj); if (!ret) return NULL; ret = PyObject_IsInstance(content_obj, (PyObject *)get_python_binary_content_type()); if (!ret) { - PyErr_SetString(PyExc_TypeError, _("The argument must be an instance of BinContent.")); + PyErr_SetString(PyExc_TypeError, _("The first argument must be an instance of BinContent.")); return NULL; } content = G_BIN_CONTENT(pygobject_get(content_obj)); - format = g_elf_format_new(content, NULL, NULL/*FIXME*/); + + if (parent_obj == Py_None) + parent = NULL; + + else + { + ret = PyObject_IsInstance(parent_obj, (PyObject *)get_python_executable_format_type()); + if (!ret) + { + PyErr_SetString(PyExc_TypeError, _("The second argument must be a container format or None.")); + return NULL; + } + + parent = G_EXE_FORMAT(pygobject_get(parent_obj)); + + } + + if (status_obj == Py_None) + status = NULL; + + else + { + ret = PyObject_IsInstance(status_obj, (PyObject *)get_python_binary_content_type()); + if (!ret) + { + PyErr_SetString(PyExc_TypeError, _("The third argument must be a status bar object or None.")); + return NULL; + } + + status = GTK_STATUS_STACK(pygobject_get(status_obj)); + + } + + format = g_elf_format_new(content, parent, status); + if (format == NULL) + { + PyErr_SetString(PyExc_RuntimeError, _("Unable to load the ELF format.")); + return NULL; + } result = pygobject_new(G_OBJECT(format)); |