lasso/lasso/xml/sa_sasl_response.c

167 lines
4.9 KiB
C

/* $Id$
*
* Lasso - A free implementation of the Liberty Alliance specifications.
*
* Copyright (C) 2004-2007 Entr'ouvert
* http://lasso.entrouvert.org
*
* Authors: See AUTHORS file in top-level directory.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "private.h"
#include "sa_sasl_response.h"
/**
* SECTION:sa_sasl_response
* @short_description: <sa:SASLResponse>
*
* <figure><title>Schema fragment for sa:SASLResponse</title>
* <programlisting><![CDATA[
*
* <xs:element name="SASLResponse">
* <xs:complexType>
* <xs:sequence>
* <xs:element ref="Status"/>
* <xs:element ref="PasswordTransforms" minOccurs="0"/>
* <xs:element name="Data" minOccurs="0">
* <xs:complexType>
* <xs:simpleContent>
* <xs:extension base="xs:base64Binary"/>
* </xs:simpleContent>
* </xs:complexType>
* </xs:element>
* <xs:element ref="disco:ResourceOffering" minOccurs="0" maxOccurs="unbounded"/>
* <xs:element name="Credentials" minOccurs="0">
* <xs:complexType>
* <xs:sequence>
* <xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
* </xs:sequence>
* </xs:complexType>
* </xs:element>
* </xs:sequence>
* <xs:attribute name="serverMechanism" type="xs:string" ="optional"/>
* <xs:attribute name="id" type="xs:ID" use="optional"/>
* </xs:complexType>
* </xs:element>
*
* ]]></programlisting>
* </figure>
*/
/*****************************************************************************/
/* private methods */
/*****************************************************************************/
static struct XmlSnippet schema_snippets[] = {
{ "Status", SNIPPET_NODE, G_STRUCT_OFFSET(LassoSaSASLResponse, Status), NULL, NULL, NULL},
{ "PasswordTransforms", SNIPPET_LIST_NODES,
G_STRUCT_OFFSET(LassoSaSASLResponse, PasswordTransforms), NULL, NULL, NULL},
{ "Data", SNIPPET_LIST_CONTENT,
G_STRUCT_OFFSET(LassoSaSASLResponse, Data), NULL, NULL, NULL},
{ "ResourceOffering", SNIPPET_LIST_NODES,
G_STRUCT_OFFSET(LassoSaSASLResponse, ResourceOffering), NULL, NULL, NULL},
{ "Credentials", SNIPPET_LIST_NODES, G_STRUCT_OFFSET(LassoSaSASLResponse, Credentials), NULL, NULL, NULL},
{ "serverMechanism", SNIPPET_ATTRIBUTE,
G_STRUCT_OFFSET(LassoSaSASLResponse, serverMechanism), NULL, NULL, NULL},
{ "id", SNIPPET_ATTRIBUTE,
G_STRUCT_OFFSET(LassoSaSASLResponse, id), NULL, NULL, NULL},
{NULL, 0, 0, NULL, NULL, NULL}
};
static LassoNodeClass *parent_class = NULL;
static void
insure_namespace(xmlNode *xmlnode, xmlNs *ns)
{
xmlNode *t = xmlnode->children;
xmlSetNs(xmlnode, ns);
while (t) {
if (t->type == XML_ELEMENT_NODE && t->ns == NULL)
insure_namespace(t, ns);
t = t->next;
}
}
static xmlNode*
get_xmlNode(LassoNode *node, gboolean lasso_dump)
{
xmlNode *xmlnode;
xmlNs *ns;
xmlnode = parent_class->get_xmlNode(node, lasso_dump);
ns = xmlNewNs(xmlnode, (xmlChar*)LASSO_SA_HREF, (xmlChar*)LASSO_SA_PREFIX);
insure_namespace(xmlnode, ns);
return xmlnode;
}
/*****************************************************************************/
/* instance and class init functions */
/*****************************************************************************/
static void
class_init(LassoSaSASLResponseClass *klass)
{
LassoNodeClass *nodeClass = LASSO_NODE_CLASS(klass);
parent_class = g_type_class_peek_parent(klass);
nodeClass->get_xmlNode = get_xmlNode;
nodeClass->node_data = g_new0(LassoNodeClassData, 1);
lasso_node_class_set_nodename(nodeClass, "SASLResponse");
lasso_node_class_add_snippets(nodeClass, schema_snippets);
}
GType
lasso_sa_sasl_response_get_type()
{
static GType this_type = 0;
if (!this_type) {
static const GTypeInfo this_info = {
sizeof (LassoSaSASLResponseClass),
NULL,
NULL,
(GClassInitFunc) class_init,
NULL,
NULL,
sizeof(LassoSaSASLResponse),
0,
NULL,
NULL
};
this_type = g_type_register_static(LASSO_TYPE_NODE,
"LassoSaSASLResponse", &this_info, 0);
}
return this_type;
}
LassoSaSASLResponse*
lasso_sa_sasl_response_new(LassoUtilityStatus *status)
{
LassoSaSASLResponse *node;
node = g_object_new(LASSO_TYPE_SA_SASL_RESPONSE, NULL);
g_object_ref(status);
node->Status = status;
return node;
}