1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
#include "ruby_libxml.h"
#include "ruby_xml_schema_attribute.h"
#include "ruby_xml_schema_type.h"
VALUE cXMLSchemaAttribute;
static void rxml_schema_attribute_free(xmlSchemaAttributeUsePtr attr)
{
attr = NULL;
xmlFree(attr);
}
VALUE rxml_wrap_schema_attribute(xmlSchemaAttributeUsePtr attr)
{
return Data_Wrap_Struct(cXMLSchemaAttribute, NULL, rxml_schema_attribute_free, attr);
}
static VALUE rxml_schema_attribute_namespace(VALUE self)
{
xmlSchemaAttributeUsePtr attr;
const xmlChar *tns;
Data_Get_Struct(self, xmlSchemaAttributeUse, attr);
if (attr == NULL)
return Qnil;
if (attr->type == XML_SCHEMA_EXTRA_ATTR_USE_PROHIB) {
tns = ((xmlSchemaAttributeUseProhibPtr) attr)->targetNamespace;
} else if (attr->type == XML_SCHEMA_EXTRA_QNAMEREF) {
tns = ((xmlSchemaQNameRefPtr) attr)->targetNamespace;
} else {
tns = ((xmlSchemaAttributePtr) ((xmlSchemaAttributeUsePtr) (attr))->attrDecl)->targetNamespace;
}
QNIL_OR_STRING(tns)
}
static VALUE rxml_schema_attribute_name(VALUE self)
{
xmlSchemaAttributeUsePtr attr;
const xmlChar *name;
Data_Get_Struct(self, xmlSchemaAttributeUse, attr);
if (attr == NULL)
return Qnil;
if (attr->type == XML_SCHEMA_EXTRA_ATTR_USE_PROHIB) {
name = ((xmlSchemaAttributeUseProhibPtr) attr)->name;
} else if (attr->type == XML_SCHEMA_EXTRA_QNAMEREF) {
name = ((xmlSchemaQNameRefPtr) attr)->name;
} else {
xmlSchemaAttributePtr attrDecl = ((xmlSchemaAttributeUsePtr) attr)->attrDecl;
name = attrDecl->name;
}
QNIL_OR_STRING(name)
}
static VALUE rxml_schema_attribute_type(VALUE self)
{
xmlSchemaAttributeUsePtr attr;
xmlSchemaTypePtr xtype;
Data_Get_Struct(self, xmlSchemaAttributeUse, attr);
xtype = attr->attrDecl->subtypes;
return rxml_wrap_schema_type((xmlSchemaTypePtr) xtype);
}
static VALUE rxml_schema_attribute_node(VALUE self)
{
xmlSchemaAttributeUsePtr attr;
Data_Get_Struct(self, xmlSchemaAttributeUse, attr);
return rxml_node_wrap(attr->node);
}
static VALUE rxml_schema_attribute_value(VALUE self)
{
xmlSchemaAttributeUsePtr attr;
Data_Get_Struct(self, xmlSchemaAttributeUse, attr);
QNIL_OR_STRING(attr->defValue)
}
static VALUE rxml_schema_attribute_occurs(VALUE self)
{
xmlSchemaAttributeUsePtr attr;
Data_Get_Struct(self, xmlSchemaAttributeUse, attr);
return INT2NUM(attr->occurs);
}
void rxml_init_schema_attribute(void)
{
cXMLSchemaAttribute = rb_define_class_under(cXMLSchema, "Attribute", rb_cObject);
rb_define_method(cXMLSchemaAttribute, "namespace", rxml_schema_attribute_namespace, 0);
rb_define_method(cXMLSchemaAttribute, "name", rxml_schema_attribute_name, 0);
rb_define_method(cXMLSchemaAttribute, "type", rxml_schema_attribute_type, 0);
rb_define_method(cXMLSchemaAttribute, "node", rxml_schema_attribute_node, 0);
rb_define_method(cXMLSchemaAttribute, "value", rxml_schema_attribute_value, 0);
rb_define_method(cXMLSchemaAttribute, "occurs", rxml_schema_attribute_occurs, 0);
}
|