X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=bindings%2Fswig%2Flibsigrok.i;h=8b7a2dfd6c2774a39c1d2cb6ed8bd90ef6c41441;hb=3d68b6126d4fd670c317db497ade19314f7f8b56;hp=f520cad21f4842e0ffc8f43828c18c9ba552a40e;hpb=966fcbe3e34de14b163987550d17b00dc84bf82e;p=libsigrok.git diff --git a/bindings/swig/libsigrok.i b/bindings/swig/libsigrok.i index f520cad2..8b7a2dfd 100644 --- a/bindings/swig/libsigrok.i +++ b/bindings/swig/libsigrok.i @@ -1,5 +1,5 @@ /* - * This file is part of the sigrok project. + * This file is part of the libsigrok project. * * Copyright (C) 2013 Martin Ling * @@ -17,7 +17,6 @@ * along with this program. If not, see . */ -%module libsigrok %include "cpointer.i" %include "carrays.i" %include "stdint.i" @@ -27,6 +26,7 @@ %} typedef void *gpointer; +typedef int gboolean; typedef struct _GSList GSList; @@ -38,6 +38,46 @@ struct _GSList void g_slist_free(GSList *list); +GVariant *g_variant_new_uint64(uint64_t value); +GVariant *g_variant_new_boolean(gboolean value); +GVariant *g_variant_new_double(double value); +GVariant *g_variant_new_string(char *value); +GVariant *g_variant_new_tuple(GVariant *children[], unsigned long n_children); +char *g_variant_get_type_string(GVariant *value); +uint64_t g_variant_get_uint64(GVariant *value); +gboolean g_variant_get_boolean(GVariant *value); +double g_variant_get_double(GVariant *value); +char *g_variant_get_string(GVariant *value, unsigned long *length); +GVariant *g_variant_get_child_value(GVariant *value, unsigned long index); + +typedef guint (*GHashFunc)(gconstpointer key); +typedef gboolean (*GEqualFunc)(gconstpointer a, gconstpointer b); +typedef void (*GDestroyNotify)(gpointer data); + +GHashTable *g_hash_table_new_full(GHashFunc hash_func, GEqualFunc key_equal_func, + GDestroyNotify key_destroy_func, GDestroyNotify value_destroy_func); +void g_hash_table_insert(GHashTable *hash_table, gpointer key, gpointer value); +void g_hash_table_destroy(GHashTable *hash_table); + +%callback("%s_ptr"); +guint g_str_hash(gconstpointer v); +gboolean g_str_equal(gconstpointer v1, gconstpointer v2);; +void g_free(gpointer mem); +%nocallback; + +gchar *g_strdup(const char *str); + +typedef struct _GString GString; + +struct _GString +{ + char *str; + gsize len; + gsize allocated_len; +}; + +gchar *g_string_free(GString *string, gboolean free_segment); + %include "libsigrok/libsigrok.h" #undef SR_API #define SR_API @@ -45,7 +85,57 @@ void g_slist_free(GSList *list); %include "libsigrok/proto.h" %include "libsigrok/version.h" +%array_class(float, float_array); +%pointer_functions(uint8_t *, uint8_ptr_ptr); +%pointer_functions(uint64_t, uint64_ptr); +%pointer_functions(GString *, gstring_ptr_ptr); +%pointer_functions(GVariant *, gvariant_ptr_ptr); +%array_functions(GVariant *, gvariant_ptr_array); %pointer_functions(struct sr_context *, sr_context_ptr_ptr); %array_functions(struct sr_dev_driver *, sr_dev_driver_ptr_array); +%array_functions(struct sr_input_format *, sr_input_format_ptr_array); +%array_functions(struct sr_output_format *, sr_output_format_ptr_array); %pointer_cast(gpointer, struct sr_dev_inst *, gpointer_to_sr_dev_inst_ptr); %pointer_cast(void *, struct sr_datafeed_logic *, void_ptr_to_sr_datafeed_logic_ptr) +%pointer_cast(void *, struct sr_datafeed_analog *, void_ptr_to_sr_datafeed_analog_ptr) +%pointer_cast(void *, struct sr_channel *, void_ptr_to_sr_channel_ptr) +%pointer_cast(void *, struct sr_channel_group *, void_ptr_to_sr_channel_group_ptr) + +%extend sr_input_format { + int call_format_match(const char *filename) { + return $self->format_match(filename); + } + + int call_init(struct sr_input *in, const char *filename) { + return $self->init(in, filename); + } + + int call_loadfile(struct sr_input *in, const char *filename) { + return $self->loadfile(in, filename); + } +} + +%extend sr_output_format { + int call_init(struct sr_output *o) { + return $self->init(o); + } + + int call_event(struct sr_output *o, int event_type, uint8_t **data_out, + uint64_t *length_out) { + return $self->event(o, event_type, data_out, length_out); + } + + int call_data(struct sr_output *o, const void *data_in, + uint64_t length_in, uint8_t **data_out, uint64_t *length_out) { + return $self->data(o, data_in, length_in, data_out, length_out); + } + + int call_receive(struct sr_output *o, const struct sr_dev_inst *sdi, + const struct sr_datafeed_packet *packet, GString **out) { + return $self->receive(o, sdi, packet, out); + } + + int call_cleanup(struct sr_output *o) { + return $self->cleanup(o); + } +}