Top |
Functions
Properties
GUPnPContext * | context | Read / Write / Construct Only |
gchar * | device-type | Read / Write / Construct Only |
GUPnPXMLDoc * | document | Read / Write / Construct Only |
gpointer | element | Write / Construct Only |
gchar * | location | Read / Write / Construct Only |
GUPnPResourceFactory * | resource-factory | Read / Write / Construct Only |
gchar * | udn | Read / Write / Construct Only |
SoupURI * | url-base | Read / Write / Construct Only |
Description
The GUPnPDeviceInfo base abstract class provides methods for querying device information.
Functions
gupnp_device_info_get_resource_factory ()
GUPnPResourceFactory *
gupnp_device_info_get_resource_factory
(GUPnPDeviceInfo *device_info
);
Get the GUPnPResourceFactory used by the device_info
.
gupnp_device_info_get_context ()
GUPnPContext *
gupnp_device_info_get_context (GUPnPDeviceInfo *info
);
Get the associated GUPnPContext.
gupnp_device_info_get_location ()
const char *
gupnp_device_info_get_location (GUPnPDeviceInfo *info
);
Get the location of the device description file.
gupnp_device_info_get_url_base ()
const SoupURI *
gupnp_device_info_get_url_base (GUPnPDeviceInfo *info
);
Get the URL base of this device.
gupnp_device_info_get_udn ()
const char *
gupnp_device_info_get_udn (GUPnPDeviceInfo *info
);
Get the Unique Device Name of the device.
gupnp_device_info_get_device_type ()
const char *
gupnp_device_info_get_device_type (GUPnPDeviceInfo *info
);
Get the UPnP device type.
gupnp_device_info_get_friendly_name ()
char *
gupnp_device_info_get_friendly_name (GUPnPDeviceInfo *info
);
Get the friendly name of the device.
gupnp_device_info_get_manufacturer ()
char *
gupnp_device_info_get_manufacturer (GUPnPDeviceInfo *info
);
Get the manufacturer of the device.
gupnp_device_info_get_manufacturer_url ()
char *
gupnp_device_info_get_manufacturer_url
(GUPnPDeviceInfo *info
);
Get a URL pointing to the manufacturer's website.
gupnp_device_info_get_model_description ()
char *
gupnp_device_info_get_model_description
(GUPnPDeviceInfo *info
);
Get the description of the device model.
gupnp_device_info_get_model_name ()
char *
gupnp_device_info_get_model_name (GUPnPDeviceInfo *info
);
Get the model name of the device.
gupnp_device_info_get_model_number ()
char *
gupnp_device_info_get_model_number (GUPnPDeviceInfo *info
);
Get the model number of the device.
gupnp_device_info_get_model_url ()
char *
gupnp_device_info_get_model_url (GUPnPDeviceInfo *info
);
Get a URL pointing to the device model's website.
gupnp_device_info_get_serial_number ()
char *
gupnp_device_info_get_serial_number (GUPnPDeviceInfo *info
);
Get the serial number of the device.
gupnp_device_info_get_presentation_url ()
char *
gupnp_device_info_get_presentation_url
(GUPnPDeviceInfo *info
);
Get a URL pointing to the device's presentation page, for web-based administration.
gupnp_device_info_get_upc ()
char *
gupnp_device_info_get_upc (GUPnPDeviceInfo *info
);
Get the Universal Product Code of the device.
gupnp_device_info_get_icon_url ()
char * gupnp_device_info_get_icon_url (GUPnPDeviceInfo *info
,const char *requested_mime_type
,int requested_depth
,int requested_width
,int requested_height
,gboolean prefer_bigger
,char **mime_type
,int *depth
,int *width
,int *height
);
Get a URL pointing to the icon most closely matching the
given criteria, or NULL
. If requested_mime_type
is set, only icons with
this mime type will be returned. If requested_depth
is set, only icons with
this or lower depth will be returned. If requested_width
and/or
requested_height
are set, only icons that are this size or smaller are
returned, unless prefer_bigger
is set, in which case the next biggest icon
will be returned. The returned strings should be freed.
Parameters
info |
||
requested_mime_type |
The requested file
format, or |
[allow-none][transfer none] |
requested_depth |
The requested color depth, or -1 for any |
|
requested_width |
The requested width, or -1 for any |
|
requested_height |
The requested height, or -1 for any |
|
prefer_bigger |
|
|
mime_type |
The location where to store the the format
of the returned icon, or |
[out][allow-none] |
depth |
(out) (allow-none) : The location where to store the depth of the
returned icon, or |
|
width |
(out) (allow-none) : The location where to store the width of the
returned icon, or |
|
height |
(out) (allow-none) : The location where to store the height of the
returned icon, or |
gupnp_device_info_list_dlna_capabilities ()
GList *
gupnp_device_info_list_dlna_capabilities
(GUPnPDeviceInfo *info
);
Get a GList of strings that represent the device capabilities as announced in the device description file using the <dlna:X_DLNACAP> element.
Returns
a GList of newly allocated strings or
NULL
if the device description doesn't contain the <dlna:X_DLNACAP>
element.
[transfer full][element-type utf8]
Since: 0.13.0
gupnp_device_info_list_dlna_device_class_identifier ()
GList *
gupnp_device_info_list_dlna_device_class_identifier
(GUPnPDeviceInfo *info
);
Get a GList of strings that represent the device class and version as announced in the device description file using the <dlna:X_DLNADOC> element.
Returns
a GList of newly allocated strings or
NULL
if the device description doesn't contain the <dlna:X_DLNADOC>
element.
[transfer full][element-type utf8]
Since: 0.20.4
gupnp_device_info_get_description_value ()
char * gupnp_device_info_get_description_value (GUPnPDeviceInfo *info
,const char *element
);
This function provides generic access to the contents of arbitrary elements in the device description file.
Returns
a newly allocated string or NULL
if the device
description doesn't contain the given element
Since: 0.13.0
gupnp_device_info_list_devices ()
GList *
gupnp_device_info_list_devices (GUPnPDeviceInfo *info
);
Get a GList of new objects implementing GUPnPDeviceInfo
representing the devices directly contained in info
. The returned list
should be g_list_free()
'd and the elements should be g_object_unref()
'd.
Note that devices are not cached internally, so that every time you call this function new objects are created. The application must cache any used devices if it wishes to keep them around and re-use them.
gupnp_device_info_list_device_types ()
GList *
gupnp_device_info_list_device_types (GUPnPDeviceInfo *info
);
Get a GList of strings representing the types of the devices
directly contained in info
.
Returns
A GList of strings. The
elements should be g_free()
'd and the list should be g_list_free()
'd.
[element-type utf8][transfer full]
gupnp_device_info_get_device ()
GUPnPDeviceInfo * gupnp_device_info_get_device (GUPnPDeviceInfo *info
,const char *type
);
Get the service with type type
directly contained in info
as
a new object implementing GUPnPDeviceInfo, or NULL
if no such device
was found. The returned object should be unreffed when done.
Note that devices are not cached internally, so that every time you call this function a new object is created. The application must cache any used devices if it wishes to keep them around and re-use them.
gupnp_device_info_list_services ()
GList *
gupnp_device_info_list_services (GUPnPDeviceInfo *info
);
Get a GList of new objects implementing GUPnPServiceInfo representing the
services directly contained in info
. The returned list should be
g_list_free()
'd and the elements should be g_object_unref()
'd.
Note that services are not cached internally, so that every time you call function new objects are created. The application must cache any used services if it wishes to keep them around and re-use them.
gupnp_device_info_list_service_types ()
GList *
gupnp_device_info_list_service_types (GUPnPDeviceInfo *info
);
Get a GList of strings representing the types of the services
directly contained in info
.
Returns
A GList of strings. The
elements should be g_free()
'd and the list should be g_list_free()
'd.
[element-type utf8][transfer full]
gupnp_device_info_get_service ()
GUPnPServiceInfo * gupnp_device_info_get_service (GUPnPDeviceInfo *info
,const char *type
);
Get the service with type type
directly contained in info
as a new object
implementing GUPnPServiceInfo, or NULL
if no such device was found. The
returned object should be unreffed when done.
Note that services are not cached internally, so that every time you call this function a new object is created. The application must cache any used services if it wishes to keep them around and re-use them.
Property Details
The “context”
property
“context” GUPnPContext *
The GUPnPContext to use.
Flags: Read / Write / Construct Only
The “device-type”
property
“device-type” gchar *
The device type.
Flags: Read / Write / Construct Only
Default value: NULL
The “document”
property
“document” GUPnPXMLDoc *
Private property.
Flags: Read / Write / Construct Only
Stability Level: Private
The “element”
property
“element” gpointer
Private property.
Flags: Write / Construct Only
Stability Level: Private
The “location”
property
“location” gchar *
The location of the device description file.
Flags: Read / Write / Construct Only
Default value: NULL
The “resource-factory”
property
“resource-factory” GUPnPResourceFactory *
The resource factory to use. Set to NULL for default factory.
Flags: Read / Write / Construct Only
The “udn”
property
“udn” gchar *
The UDN of this device.
Flags: Read / Write / Construct Only
Default value: NULL