📄 test-introspection.c
字号:
/* * Copyright (C) 2007 Zeeshan Ali <zeenix@gstreamer.net> * Copyright (C) 2007 OpenedHand Ltd. * * Author: Zeeshan Ali <zeenix@gstreamer.net> * Jorn Baayen <jorn@openedhand.com> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */#include <libgupnp/gupnp-control-point.h>#include <libgupnp/gupnp-service-introspection.h>#include <string.h>#include <signal.h>GMainLoop *main_loop;static gboolean async = FALSE;static GOptionEntry entries[] ={ { "async", 'a', 0, G_OPTION_ARG_NONE, &async, "Asynchronously create intropection object", NULL }, { NULL }};static voidinterrupt_signal_handler (int signum){ g_main_loop_quit (main_loop);}static voidprint_action_arguments (GList *argument_list){ GList *iter; g_print ("\targuments:\n"); for (iter = argument_list; iter; iter = iter->next) { GUPnPServiceActionArgInfo *argument; argument = (GUPnPServiceActionArgInfo *) iter->data; g_print ("\t\tname: %s\n" "\t\tdirection: %s\n" "\t\trelated state variable: %s\n\n", argument->name, (argument->direction == GUPNP_SERVICE_ACTION_ARG_DIRECTION_IN)? "in": "out", argument->related_state_variable); }}static voidprint_actions (GUPnPServiceIntrospection *introspection){ const GList *action_list; action_list = gupnp_service_introspection_list_actions (introspection); if (action_list) { const GList *iter; g_print ("actions:\n"); for (iter = action_list; iter; iter = iter->next) { GUPnPServiceActionInfo *action_info; action_info = (GUPnPServiceActionInfo *) iter->data; g_print ("\tname: %s\n", action_info->name); print_action_arguments (action_info->arguments); } g_print ("\n"); }}static voidprint_state_variables (GUPnPServiceIntrospection *introspection){ const GList *variables; variables = gupnp_service_introspection_list_state_variables ( introspection); if (variables) { const GList *iter; g_print ("state variables:\n"); for (iter = variables; iter; iter = iter->next) { GUPnPServiceStateVariableInfo *variable; GValue default_value; const char * default_value_str; variable = (GUPnPServiceStateVariableInfo *) iter->data; g_print ("\tname: %s\n" "\ttype: %s\n" "\tsend events: %s\n", variable->name, g_type_name (variable->type), variable->send_events? "yes": "no"); memset (&default_value, 0, sizeof (GValue)); g_value_init (&default_value, G_TYPE_STRING); g_value_transform (&variable->default_value, &default_value); default_value_str = g_value_get_string (&default_value); if (default_value_str) { g_print ("\tdefault value: %s\n", default_value_str); } g_value_unset (&default_value); if (variable->is_numeric) { GValue min, max, step; memset (&min, 0, sizeof (GValue)); memset (&max, 0, sizeof (GValue)); memset (&step, 0, sizeof (GValue)); g_value_init (&min, G_TYPE_STRING); g_value_init (&max, G_TYPE_STRING); g_value_init (&step, G_TYPE_STRING); g_value_transform (&variable->minimum, &min); g_value_transform (&variable->maximum, &max); g_value_transform (&variable->step, &step); g_print ("\tminimum: %s\n" "\tmaximum: %s\n" "\tstep: %s\n", g_value_get_string (&min), g_value_get_string (&max), g_value_get_string (&step)); g_value_unset (&min); g_value_unset (&max); g_value_unset (&step); } if (variable->allowed_values) { GList *value_iter; g_print ("\tallowed values: "); for (value_iter = variable->allowed_values; value_iter; value_iter = value_iter->next) { g_print ("\"%s\" ", (gchar *) value_iter->data); } } g_print ("\n"); } g_print ("\n"); }}static voidgot_introspection (GUPnPServiceInfo *info, GUPnPServiceIntrospection *introspection, const GError *error, gpointer user_data){ if (error) { g_warning ("Failed to create introspection for '%s': %s", gupnp_service_info_get_udn (info), error->message); return; } g_print ("service: %s\nlocation: %s\n", gupnp_service_info_get_udn (info), gupnp_service_info_get_location (info)); print_actions (introspection); print_state_variables (introspection); g_object_unref (introspection);}static voidservice_proxy_available_cb (GUPnPControlPoint *cp, GUPnPServiceProxy *proxy){ GUPnPServiceInfo *info; GUPnPServiceIntrospection *introspection; GError *error = NULL; info = GUPNP_SERVICE_INFO (proxy); if (async) { gupnp_service_info_get_introspection_async (info, got_introspection, NULL); } else { introspection = gupnp_service_info_get_introspection (info, &error); got_introspection (info, introspection, error, NULL); if (error) g_error_free (error); }}static voidservice_proxy_unavailable_cb (GUPnPControlPoint *cp, GUPnPServiceProxy *proxy){ const char *type, *location; type = gupnp_service_info_get_service_type (GUPNP_SERVICE_INFO (proxy)); location = gupnp_service_info_get_location (GUPNP_SERVICE_INFO (proxy)); g_print ("Service unavailable:\n"); g_print ("\ttype: %s\n", type); g_print ("\tlocation: %s\n", location);}intmain (int argc, char **argv){ GError *error = NULL; GUPnPContext *context; GUPnPControlPoint *cp; GOptionContext *option_context; struct sigaction sig_action; option_context = g_option_context_new ("- test GUPnP introspection"); g_option_context_add_main_entries (option_context, entries, NULL); g_option_context_parse (option_context, &argc, &argv, &error); if (error) g_error ("error while parsing commandline arguments: %s", error->message); g_thread_init (NULL); g_type_init (); error = NULL; context = gupnp_context_new (NULL, NULL, 0, &error); if (error) { g_error (error->message); g_error_free (error); return 1; } /* We're interested in everything */ cp = gupnp_control_point_new (context, "ssdp:all"); g_signal_connect (cp, "service-proxy-available", G_CALLBACK (service_proxy_available_cb), NULL); g_signal_connect (cp, "service-proxy-unavailable", G_CALLBACK (service_proxy_unavailable_cb), NULL); gssdp_resource_browser_set_active (GSSDP_RESOURCE_BROWSER (cp), TRUE); main_loop = g_main_loop_new (NULL, FALSE); /* Hook the handler for SIGTERM */ memset (&sig_action, 0, sizeof (sig_action)); sig_action.sa_handler = interrupt_signal_handler; sigaction (SIGINT, &sig_action, NULL); g_main_loop_run (main_loop); g_main_loop_unref (main_loop); g_object_unref (cp); g_object_unref (context); return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -