From d0d620575f27c020b46fec9309ff2a021ec68379 Mon Sep 17 00:00:00 2001
From: "alexey.stratulat" <alexey.stratulat@demlabs.net>
Date: Mon, 11 Nov 2019 15:07:14 +0700
Subject: [PATCH] [+] Added broadcasting dap_list to PyList and back.

---
 src/libdap-python.c | 22 ++++++++++++++++++++++
 src/libdap-python.h |  5 +++++
 2 files changed, 27 insertions(+)

diff --git a/src/libdap-python.c b/src/libdap-python.c
index e477e23..dbe6ac1 100644
--- a/src/libdap-python.c
+++ b/src/libdap-python.c
@@ -120,3 +120,25 @@ PyObject* py_m_dap_config_get_item_default(PyObject *self, PyObject *args){
     const char *res = dap_config_get_item_str_default(g_config, section_path, item_name, def);
     return Py_BuildValue("s", res);
 }
+
+PyObject *dapListToPyList(dap_list_t *list ){
+    unsigned int len = dap_list_length(list);
+    PyObject *obj = PyList_New((Py_ssize_t)len);
+    for (unsigned int l = 0; l <len; l++){
+        void *data = dap_list_nth_data(list, l);
+        PyObject *obj_data = PyBytes_FromString((const char*)data);
+        PyList_Append(obj, obj_data);
+    }
+    return obj;
+}
+
+dap_list_t *pyListToDapList(PyObject *list ){
+    Py_ssize_t len = PyList_Size(list);
+    dap_list_t *dap_list = dap_list_alloc();
+    for (Py_ssize_t i = 0; i < len; i++){
+        PyObject *obj = PyList_GetItem(list, i);
+        void *data = PyBytes_AsString(obj);
+        dap_list = dap_list_append(dap_list, data);
+    }
+    return dap_list;
+}
diff --git a/src/libdap-python.h b/src/libdap-python.h
index b64b47c..8e10eba 100644
--- a/src/libdap-python.h
+++ b/src/libdap-python.h
@@ -3,6 +3,7 @@
 #include <Python.h>
 #include "dap_config.h"
 #include "dap_common.h"
+#include "dap_list.h"
 
 #ifdef __cplusplus
 extern "C" {
@@ -78,6 +79,10 @@ static PyTypeObject DapObject_DapObjectType = {
     PyType_GenericNew,         /* tp_new */
 };
 
+PyObject *dapListToPyList(dap_list_t *list);
+
+dap_list_t *pyListToDapList(PyObject *list);
+
 #ifdef  __cplusplus
 }
 #endif
-- 
GitLab