summaryrefslogtreecommitdiff
path: root/plugins/pychrysalide/glibext/bufferline.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/pychrysalide/glibext/bufferline.c')
-rw-r--r--plugins/pychrysalide/glibext/bufferline.c109
1 files changed, 62 insertions, 47 deletions
diff --git a/plugins/pychrysalide/glibext/bufferline.c b/plugins/pychrysalide/glibext/bufferline.c
index 09404bc..c5b3664 100644
--- a/plugins/pychrysalide/glibext/bufferline.c
+++ b/plugins/pychrysalide/glibext/bufferline.c
@@ -2,7 +2,7 @@
/* Chrysalide - Outil d'analyse de fichiers binaires
* bufferline.c - équivalent Python du fichier "glibext/bufferline.h"
*
- * Copyright (C) 2018-2019 Cyrille Bagard
+ * Copyright (C) 2018-2025 Cyrille Bagard
*
* This file is part of Chrysalide.
*
@@ -26,25 +26,38 @@
#include <assert.h>
-#include <malloc.h>
+//#include <malloc.h>
#include <pygobject.h>
-#include <i18n.h>
-#include <glibext/bufferline.h>
-#include <plugins/dt.h>
+#include <glibext/bufferline-int.h>
-#include "constants.h"
+//#include "constants.h"
#include "../access.h"
#include "../helpers.h"
-#include "../arch/vmpa.h"
+//#include "../arch/vmpa.h"
+/* ------------------------ GLUE POUR CREATION DEPUIS PYTHON ------------------------ */
+
+
+CREATE_DYN_CONSTRUCTOR(buffer_line, G_TYPE_BUFFER_LINE);
+
+/* Initialise une instance sur la base du dérivé de GObject. */
+static int py_buffer_line_init(PyObject *, PyObject *, PyObject *);
+
+
+
+/* ------------------ LIAISON DE FONCTIONNALITES AVEC L'API PYTHON ------------------ */
+
+
/* Accompagne la création d'une instance dérivée en Python. */
static PyObject *py_buffer_line_new(PyTypeObject *, PyObject *, PyObject *);
+#if 0
+
/* Ajoute du texte à formater dans une ligne donnée. */
static PyObject *py_buffer_line_append_text(PyObject *, PyObject *);
@@ -54,29 +67,34 @@ static PyObject *py_buffer_line_get_text(PyObject *, PyObject *);
/* Renseigne sur les propriétés particulières liées à une ligne. */
static PyObject *py_buffer_line_get_flags(PyObject *, void *);
+#endif
+
+
+
+/* ---------------------------------------------------------------------------------- */
+/* GLUE POUR CREATION DEPUIS PYTHON */
+/* ---------------------------------------------------------------------------------- */
/******************************************************************************
* *
-* Paramètres : type = type du nouvel objet à mettre en place. *
-* args = éventuelle liste d'arguments. *
-* kwds = éventuel dictionnaire de valeurs mises à disposition. *
+* Paramètres : self = objet à initialiser (théoriquement). *
+* args = arguments fournis à l'appel. *
+* kwds = arguments de type key=val fournis. *
* *
-* Description : Accompagne la création d'une instance dérivée en Python. *
+* Description : Initialise une instance sur la base du dérivé de GObject. *
* *
-* Retour : Nouvel objet Python mis en place ou NULL en cas d'échec. *
+* Retour : 0. *
* *
* Remarques : - *
* *
******************************************************************************/
-static PyObject *py_buffer_line_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
+static int py_buffer_line_init(PyObject *self, PyObject *args, PyObject *kwds)
{
- PyObject *result; /* Objet à retourner */
- PyTypeObject *base; /* Type de base à dériver */
- bool first_time; /* Evite les multiples passages*/
- GType gtype; /* Nouveau type de processeur */
- bool status; /* Bilan d'un enregistrement */
+ unsigned char col_count; /* Qté de colonnes attendues */
+ int ret; /* Bilan de lecture des args. */
+ GBufferLine *line; /* Ligne en version native */
#define BUFFER_LINE_DOC \
"The BufferLine object is used to display processed data: disassembled" \
@@ -84,51 +102,40 @@ static PyObject *py_buffer_line_new(PyTypeObject *type, PyObject *args, PyObject
"\n" \
"Instances can be created using the following constructor:\n" \
"\n" \
- " BufferLine()" \
+ " BufferLine(col_count)" \
+ "\n" \
+ " Where *col_count* is a integer value providing the expected number of"\
+ " rendering columns." \
"\n" \
"Such objets aim to be created from the Chrysalide core only, and" \
" then get populated on demand. Thus, these lines can be viewed as" \
" cached lines and their properties have to be set through the" \
" pychrysalide.glibext.BufferCache instance which contains them."
- /* Validations diverses */
-
- base = get_python_buffer_line_type();
+ /* Récupération des paramètres */
- if (type == base)
- goto simple_way;
+ ret = PyArg_ParseTuple(args, "B", &col_count);
+ if (!ret) return -1;
- /* Mise en place d'un type dédié */
+ /* Initialisation d'un objet GLib */
- first_time = (g_type_from_name(type->tp_name) == 0);
+ ret = forward_pygobjet_init(self);
+ if (ret == -1) return -1;
- gtype = build_dynamic_type(G_TYPE_BUFFER_LINE, type->tp_name, NULL, NULL, NULL);
-
- if (first_time)
- {
- status = register_class_for_dynamic_pygobject(gtype, type);
+ /* Eléments de base */
- if (!status)
- {
- result = NULL;
- goto exit;
- }
-
- }
-
- /* On crée, et on laisse ensuite la main à PyGObject_Type.tp_init() */
-
- simple_way:
-
- result = PyType_GenericNew(type, args, kwds);
+ line = G_BUFFER_LINE(pygobject_get(self));
- exit:
+ if (!g_buffer_line_create(line, col_count))
+ return -1;
- return result;
+ return 0;
}
+#if 0
+
/******************************************************************************
* *
* Paramètres : self = classe représentant une ligne de tampon. *
@@ -256,6 +263,7 @@ static PyObject *py_buffer_line_get_flags(PyObject *self, void *closure)
return result;
}
+#endif
/******************************************************************************
@@ -273,20 +281,24 @@ static PyObject *py_buffer_line_get_flags(PyObject *self, void *closure)
PyTypeObject *get_python_buffer_line_type(void)
{
static PyMethodDef py_buffer_line_methods[] = {
+ /*
BUFFER_LINE_APPEND_TEXT_METHOD,
{
"get_text", py_buffer_line_get_text,
METH_VARARGS,
"get_text($self, first_col, last_col, markup, /)\n--\n\nProvide the text of a buffer line."
},
+ */
{ NULL }
};
static PyGetSetDef py_buffer_line_getseters[] = {
+ /*
{
"flags", py_buffer_line_get_flags, NULL,
"Current flags of the buffer line.", NULL
},
+ */
{ NULL }
};
@@ -304,7 +316,8 @@ PyTypeObject *get_python_buffer_line_type(void)
.tp_methods = py_buffer_line_methods,
.tp_getset = py_buffer_line_getseters,
- .tp_new = py_buffer_line_new
+ .tp_init = py_buffer_line_init,
+ .tp_new = py_buffer_line_new,
};
@@ -342,11 +355,13 @@ bool ensure_python_buffer_line_is_registered(void)
if (!register_class_for_pygobject(dict, G_TYPE_BUFFER_LINE, type))
return false;
+ /*
if (!define_line_segment_constants(type))
return false;
if (!define_buffer_line_constants(type))
return false;
+ */
}