1 /* $Id: dstref_query_response.c,v 1.0 2005/10/14 15:17:55 fpeters Exp $
2  *
3  * Lasso - A free implementation of the Liberty Alliance specifications.
4  *
5  * Copyright (C) 2004-2007 Entr'ouvert
6  * http://lasso.entrouvert.org
7  *
8  * Authors: See AUTHORS file in top-level directory.
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, see <http://www.gnu.org/licenses/>.
22  */
23 
24 #include "../private.h"
25 #include "dstref_query_response.h"
26 #include "idwsf2_strings.h"
27 
28 /**
29  * SECTION:dstref_query_response
30  * @short_description: &lt;dstref:QueryResponse&gt;
31  *
32  * <figure><title>Schema fragment for dstref:QueryResponse</title>
33  * <programlisting><![CDATA[
34  *
35  * <xs:complexType name="QueryResponseType">
36  *   <xs:complexContent>
37  *     <xs:extension base="dst:DataResponseBaseType">
38  *       <xs:sequence>
39  *         <xs:element ref="dst:TestResult" minOccurs="0" maxOccurs="unbounded"/>
40  *         <xs:element ref="dstref:Data" minOccurs="0" maxOccurs="unbounded"/>
41  *       </xs:sequence>
42  *     </xs:extension>
43  *   </xs:complexContent>
44  * </xs:complexType>
45  * ]]></programlisting>
46  * </figure>
47  */
48 
49 /*****************************************************************************/
50 /* private methods                                                           */
51 /*****************************************************************************/
52 
53 
54 static struct XmlSnippet schema_snippets[] = {
55 	{ "TestResult", SNIPPET_LIST_NODES,
56 		G_STRUCT_OFFSET(LassoIdWsf2DstRefQueryResponse, TestResult), NULL,
57 		LASSO_IDWSF2_DST_PREFIX, LASSO_IDWSF2_DST_HREF},
58 	{ "Data", SNIPPET_LIST_NODES,
59 		G_STRUCT_OFFSET(LassoIdWsf2DstRefQueryResponse, Data),
60 		"LassoIdWsf2DstRefData", NULL, NULL },
61 	{NULL, 0, 0, NULL, NULL, NULL}
62 };
63 
64 static LassoNodeClass *parent_class = NULL;
65 
66 
67 static xmlNode*
get_xmlNode(LassoNode * node,gboolean lasso_dump)68 get_xmlNode(LassoNode *node, gboolean lasso_dump)
69 {
70 	xmlNode *xmlnode;
71 
72 	xmlnode = parent_class->get_xmlNode(node, lasso_dump);
73 	xml_insure_namespace(xmlnode, NULL, TRUE,
74 			LASSO_IDWSF2_DSTREF_QUERY_RESPONSE(node)->hrefServiceType,
75 			LASSO_IDWSF2_DSTREF_QUERY_RESPONSE(node)->prefixServiceType);
76 
77 	return xmlnode;
78 }
79 
80 static int
init_from_xml(LassoNode * node,xmlNode * xmlnode)81 init_from_xml(LassoNode *node, xmlNode *xmlnode)
82 {
83 	LassoIdWsf2DstRefQueryResponse *object = LASSO_IDWSF2_DSTREF_QUERY_RESPONSE(node);
84 	int res;
85 
86 	res = parent_class->init_from_xml(node, xmlnode);
87 	if (res != 0) {
88 		return res;
89 	}
90 
91 	object->hrefServiceType = g_strdup((char*)xmlnode->ns->href);
92 	object->prefixServiceType = lasso_get_prefix_for_idwsf2_dst_service_href(
93 			object->hrefServiceType);
94 	if (object->prefixServiceType == NULL) {
95 		/* XXX: what to do here ? */
96 	}
97 
98 	return 0;
99 }
100 
101 
102 /*****************************************************************************/
103 /* instance and class init functions                                         */
104 /*****************************************************************************/
105 
106 
107 static void
class_init(LassoIdWsf2DstRefQueryResponseClass * klass,void * unused G_GNUC_UNUSED)108 class_init(LassoIdWsf2DstRefQueryResponseClass *klass, void *unused G_GNUC_UNUSED)
109 {
110 	LassoNodeClass *nclass = LASSO_NODE_CLASS(klass);
111 
112 	parent_class = g_type_class_peek_parent(klass);
113 	nclass->get_xmlNode = get_xmlNode;
114 	nclass->init_from_xml = init_from_xml;
115 	nclass->node_data = g_new0(LassoNodeClassData, 1);
116 	lasso_node_class_set_nodename(nclass, "QueryResponse");
117 	lasso_node_class_set_ns(nclass, LASSO_IDWSF2_DSTREF_HREF, LASSO_IDWSF2_DSTREF_PREFIX);
118 	lasso_node_class_add_snippets(nclass, schema_snippets);
119 }
120 
121 GType
lasso_idwsf2_dstref_query_response_get_type()122 lasso_idwsf2_dstref_query_response_get_type()
123 {
124 	static GType this_type = 0;
125 
126 	if (!this_type) {
127 		static const GTypeInfo this_info = {
128 			sizeof (LassoIdWsf2DstRefQueryResponseClass),
129 			NULL,
130 			NULL,
131 			(GClassInitFunc) class_init,
132 			NULL,
133 			NULL,
134 			sizeof(LassoIdWsf2DstRefQueryResponse),
135 			0,
136 			NULL,
137 			NULL
138 		};
139 
140 		this_type = g_type_register_static(LASSO_TYPE_IDWSF2_DST_DATA_RESPONSE_BASE,
141 				"LassoIdWsf2DstRefQueryResponse", &this_info, 0);
142 	}
143 	return this_type;
144 }
145 
146 /**
147  * lasso_idwsf2_dstref_query_response_new:
148  *
149  * Creates a new #LassoIdWsf2DstRefQueryResponse object.
150  *
151  * Return value: a newly created #LassoIdWsf2DstRefQueryResponse object
152  **/
153 LassoIdWsf2DstRefQueryResponse*
lasso_idwsf2_dstref_query_response_new()154 lasso_idwsf2_dstref_query_response_new()
155 {
156 	return g_object_new(LASSO_TYPE_IDWSF2_DSTREF_QUERY_RESPONSE, NULL);
157 }
158