EnglishFrenchSpanish

OnWorks favicon

gupnp-binding-tool - Online in the Cloud

Run gupnp-binding-tool in OnWorks free hosting provider over Ubuntu Online, Fedora Online, Windows online emulator or MAC OS online emulator

This is the command gupnp-binding-tool that can be run in the OnWorks free hosting provider using one of our multiple free online workstations such as Ubuntu Online, Fedora Online, Windows online emulator or MAC OS online emulator

PROGRAM:

NAME


gupnp-binding-tool - creates C convenience wrappers for UPnP services

SYNOPSIS


gupnp-binding-tool [--prefix {PREFIX}] [--mode {client|server}] {SCPD file}

DESCRIPTION


gupnp-binding-tool takes a SCPD file and generates convenience C functions which call the
actual GUPnP functions. The client-side bindings can be seen as a service-specific version
of the GUPnPServiceProxy API and the service-side bindings are the same for GUPnPService.

These generated functions are less verbose and also safer as function call parameters are
correctly typed. Action, variable and query names are easier to get correct with bindings
(or at least the errors will be compile-time errors instead of run-time), and are also
available in editor autocompletion.

CLIENT SIDE BINDINGS


As an example, this action:

<action>
<name>DeletePortMapping</name>
<argumentList>
<argument>
<name>NewRemoteHost</name>
<direction>in</direction>
<relatedStateVariable>RemoteHost</relatedStateVariable>
</argument>
<argument>
<name>NewExternalPort</name>
<direction>in</direction>
<relatedStateVariable>ExternalPort</relatedStateVariable>
</argument>
<argument>
<name>NewProtocol</name>
<direction>in</direction>
<relatedStateVariable>PortMappingProtocol</relatedStateVariable>
</argument>
</argumentList>
</action>

Will generate the following synchronous client-side (control point) function:

static inline gboolean
igd_delete_port_mapping (GUPnPServiceProxy *proxy,
const gchar *in_new_remote_host,
const guint in_new_external_port,
const gchar *in_new_protocol,
GError **error);

As can be seen, the arguments have the correct types and are prefixed with the argument
direction.

gupnp-binding-tool generates both synchronous and asynchronous wrappers. The
igd_delete_port_mapping example above is the synchronous form, the asynchronous form is as
follows:

typedef void (*igd_delete_port_mapping_reply) (GUPnPServiceProxy *proxy,
GError *error,
gpointer userdata);

static inline GUPnPServiceProxyAction *
igd_delete_port_mapping_async (GUPnPServiceProxy *proxy,
const gchar *in_new_remote_host,
const guint in_new_external_port,
const gchar *in_new_protocol,
igd_delete_port_mapping_reply callback,
gpointer userdata);

The asynchronous form (implemented using gupnp_service_proxy_begin_action() and
gupnp_service_proxy_end_action()) will return without blocking and later invoke the
callback from the main loop when the reply is received.

The tool also creates bindings for state variable notifications. This state variable
definition:

<stateVariable sendEvents="yes">
<name>ExternalIPAddress</name>
<dataType>string</dataType>
</stateVariable>

will create this client binding that can be used to get notifications on
"ExternalIPAddress" changes:

typedef void
(*igd_external_ip_address_changed_callback) (GUPnPServiceProxy *proxy,
const gchar *external_ip_address,
gpointer userdata);

static inline gboolean
igd_external_ip_address_add_notify (GUPnPServiceProxy *proxy,
igd_external_ip_address_changed_callback callback,
gpointer userdata);

All of the examples were produced with gupnp-binding-tool --prefix igd --mode client
WANIPConnection.xml.

SERVER SIDE BINDINGS


The corresponding server bindings for the same UPnP action (DeletePortMapping) look like
this:

void
igd_delete_port_mapping_action_get (GUPnPServiceAction *action,
gchar **in_new_remote_host,
guint *in_new_external_port,
gchar **in_new_protocol);

gulong
igd_delete_port_mapping_action_connect (GUPnPService *service,
GCallback callback,
gpointer userdata);

The generated *_action_connect() function can be used to connect the action handler. The
*_action_get() and *_action_set() functions can then be used inside the action handler to
get/set action variables. If notified variables are modified, the *_variable_notify()
should be used to send the notifications (see below).

typedef gchar *(*igd_external_ip_address_query_callback) (GUPnPService *service,
gpointer userdata);

gulong
igd_external_ip_address_query_connect (GUPnPService *service,
igd_external_ip_address_query_callback callback,
gpointer userdata);
void
igd_external_ip_address_variable_notify (GUPnPService *service,
const gchar *external_ip_address);

The *_query_connect() function can be used to connect the service-specific query handler.
The return value of the handler is the returned state variable value.

All of the examples were produced with gupnp-binding-tool --prefix igd --mode server
WANIPConnection.xml.

COPYRIGHT


Copyright © 2007, 2008, 2009 OpenedHand Ltd, Nokia Corporation

Permission is granted to copy, distribute and/or modify this document under the terms of
the GNU Free Documentation License, Version 1.1 or any later version published by the Free
Software Foundation with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
Texts. You may obtain a copy of the GNU Free Documentation License from the Free Software
Foundation by visiting their Web site or by writing to:

The Free Software Foundation, Inc.,
59 Temple Place - Suite 330,
Boston, MA 02111-1307,
USA

Use gupnp-binding-tool online using onworks.net services


Free Servers & Workstations

Download Windows & Linux apps

  • 1
    Image Downloader
    Image Downloader
    Crawl and download images using
    Selenium Using python3 and PyQt5.
    Supported Search Engine: Google, Bing,
    Baidu. Keywords input from the keyboard
    or input from ...
    Download Image Downloader
  • 2
    Eclipse Tomcat Plugin
    Eclipse Tomcat Plugin
    The Eclipse Tomcat Plugin provides
    simple integration of a tomcat servlet
    container for the development of java
    web applications. You can join us for
    discussio...
    Download Eclipse Tomcat Plugin
  • 3
    WebTorrent Desktop
    WebTorrent Desktop
    WebTorrent Desktop is for streaming
    torrents on Mac, Windows or Linux. It
    connects to both BitTorrent and
    WebTorrent peers. Now there's no
    need to wait for...
    Download WebTorrent Desktop
  • 4
    GenX
    GenX
    GenX is a scientific program to refine
    x-ray refelcetivity, neutron
    reflectivity and surface x-ray
    diffraction data using the differential
    evolution algorithm....
    Download GenX
  • 5
    pspp4windows
    pspp4windows
    PSPP is a program for statistical
    analysis of sampled data. It is a free
    replacement for the proprietary program
    SPSS. PSPP has both text-based and
    graphical us...
    Download pspp4windows
  • 6
    Git Extensions
    Git Extensions
    Git Extensions is a standalone UI tool
    for managing Git repositories. It also
    integrates with Windows Explorer and
    Microsoft Visual Studio
    (2015/2017/2019). Th...
    Download Git Extensions
  • More »

Linux commands

Ad