Fix: add missing void param to bt_clock_class_priority_map_create
[babeltrace.git] / bindings / python / bt2 / native_bt.i
index 88953af55feb99b06645ea5b3801ebbe7d5eaced..0852b74376585ca17d17349e8ac030fcb9c30e42 100644 (file)
  * THE SOFTWARE.
  */
 
+#ifndef SWIGPYTHON
+# error Unsupported output language
+#endif
+
 %{
+#define BT_LOG_TAG "PY-NATIVE"
+#include "logging.h"
+
+#include <babeltrace/babeltrace.h>
+
 typedef const unsigned char *BTUUID;
 %}
 
-#ifndef SWIGPYTHON
-# error Unsupported output language
-#endif
+typedef int bt_bool;
 
 /* For uint*_t/int*_t */
 %include "stdint.i"
@@ -69,6 +76,72 @@ typedef const unsigned char *BTUUID;
        }
 }
 
+/* Output argument typemap for component output (always appends) */
+%typemap(in, numinputs=0) struct bt_component **BTOUTCOMP (struct bt_component *temp_comp = NULL) {
+       $1 = &temp_comp;
+}
+
+%typemap(argout) struct bt_component **BTOUTCOMP {
+       if (*$1) {
+               /* SWIG_Python_AppendOutput() steals the created object */
+               $result = SWIG_Python_AppendOutput($result, SWIG_NewPointerObj(SWIG_as_voidptr(*$1), SWIGTYPE_p_bt_component, 0));
+       } else {
+               /* SWIG_Python_AppendOutput() steals Py_None */
+               Py_INCREF(Py_None);
+               $result = SWIG_Python_AppendOutput($result, Py_None);
+       }
+}
+
+/* Output argument typemap for connection output (always appends) */
+%typemap(in, numinputs=0) struct bt_connection **BTOUTCONN (struct bt_connection *temp_conn = NULL) {
+       $1 = &temp_conn;
+}
+
+%typemap(argout) struct bt_connection **BTOUTCONN {
+       if (*$1) {
+               /* SWIG_Python_AppendOutput() steals the created object */
+               $result = SWIG_Python_AppendOutput($result, SWIG_NewPointerObj(SWIG_as_voidptr(*$1), SWIGTYPE_p_bt_connection, 0));
+       } else {
+               /* SWIG_Python_AppendOutput() steals Py_None */
+               Py_INCREF(Py_None);
+               $result = SWIG_Python_AppendOutput($result, Py_None);
+       }
+}
+
+/* Output argument typemap for private port output (always appends) */
+%typemap(in, numinputs=0) struct bt_private_port **BTOUTPRIVPORT (struct bt_private_port *temp_priv_port = NULL) {
+       $1 = &temp_priv_port;
+}
+
+%typemap(argout) struct bt_private_port **BTOUTPRIVPORT {
+       if (*$1) {
+               /* SWIG_Python_AppendOutput() steals the created object */
+               $result = SWIG_Python_AppendOutput($result, SWIG_NewPointerObj(SWIG_as_voidptr(*$1), SWIGTYPE_p_bt_private_port, 0));
+       } else {
+               /* SWIG_Python_AppendOutput() steals Py_None */
+               Py_INCREF(Py_None);
+               $result = SWIG_Python_AppendOutput($result, Py_None);
+       }
+}
+
+/* Output argument typemap for initialized uint64_t output parameter (always appends) */
+%typemap(in, numinputs=0) uint64_t *OUTPUTINIT (uint64_t temp = -1ULL) {
+       $1 = &temp;
+}
+
+%typemap(argout) uint64_t *OUTPUTINIT {
+       $result = SWIG_Python_AppendOutput(resultobj, SWIG_From_unsigned_SS_long_SS_long((*$1)));
+}
+
+/* Output argument typemap for initialized unsigned int output parameter (always appends) */
+%typemap(in, numinputs=0) unsigned int *OUTPUTINIT (unsigned int temp = -1) {
+       $1 = &temp;
+}
+
+%typemap(argout) unsigned int *OUTPUTINIT {
+       $result = SWIG_Python_AppendOutput(resultobj, SWIG_From_unsigned_SS_long_SS_long((uint64_t) (*$1)));
+}
+
 /* Input argument typemap for UUID bytes */
 %typemap(in) BTUUID {
        $1 = (unsigned char *) PyBytes_AsString($input);
@@ -102,20 +175,26 @@ typedef const unsigned char *BTUUID;
 }
 
 /* Per-module interface files */
+%include "native_btccpriomap.i"
 %include "native_btclockclass.i"
+%include "native_btcomponent.i"
+%include "native_btcomponentclass.i"
+%include "native_btconnection.i"
+%include "native_btctfwriter.i"
 %include "native_btevent.i"
 %include "native_bteventclass.i"
 %include "native_btfields.i"
 %include "native_btft.i"
+%include "native_btgraph.i"
+%include "native_btlogging.i"
+%include "native_btnotification.i"
+%include "native_btnotifiter.i"
 %include "native_btpacket.i"
+%include "native_btplugin.i"
+%include "native_btport.i"
 %include "native_btref.i"
 %include "native_btstream.i"
 %include "native_btstreamclass.i"
 %include "native_bttrace.i"
 %include "native_btvalues.i"
-%include "native_btctfwriter.i"
-%include "native_btcomponentclass.i"
-%include "native_btcomponent.i"
-%include "native_btnotifiter.i"
-%include "native_btnotification.i"
-%include "native_btplugin.i"
+%include "native_btversion.i"
This page took 0.024108 seconds and 4 git commands to generate.