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 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
|
/* $Id: ruby_xml_attr.c 189 2007-09-26 15:04:47Z danj $ */
/* Please see the LICENSE file for copyright and distribution information */
#include "libxml.h"
#include "ruby_xml_attr.h"
VALUE cXMLAttr;
void ruby_xml_attr_free(ruby_xml_attr_t *rx) {
if (rx == NULL ) return;
if (rx->attr != NULL ) {
rx->attr->_private=NULL;
if (rx->attr->parent == NULL && rx->attr->doc == NULL ) {
#ifdef NODE_DEBUG
fprintf(stderr,"free rxn=0x%x xn=0x%x o=0x%x\n",(long)rxn,(long)rxn->node,(long)rxn->node->_private);
#endif
xmlFreeProp(rx->attr);
}
rx->attr=NULL;
}
free(rx);
}
void
ruby_xml_attr_mark(ruby_xml_attr_t *rx) {
xmlNodePtr node;
if ( rx == NULL ) return;
if ( rx->attr == NULL ) return;
if (rx->attr->_private == NULL ) {
rb_warning("XmlAttr is not bound! (%s:%d)",
__FILE__,__LINE__);
return;
}
ruby_xml_node_mark_common(rx->attr);
}
VALUE
ruby_xml_attr_wrap(VALUE class, xmlAttrPtr xnode)
{
VALUE obj;
ruby_xml_attr_t *rx;
// This node is already wrapped
if (xnode->_private != NULL)
return (VALUE)xnode->_private;
obj=Data_Make_Struct(class,ruby_xml_attr_t,ruby_xml_attr_mark,
ruby_xml_attr_free,rx);
rx->attr=xnode;
xnode->_private=(void*)obj;
#ifdef NODE_DEBUG
fprintf(stderr,"wrap rxn=0x%x xn=0x%x o=0x%x\n",(long)rxn,(long)xnode,(long)obj);
#endif
return obj;
}
/*
* Only use this when a xmlAttr has just been created since
* oblitterates the _private. Not exposed to ruby interp.
*/
VALUE
ruby_xml_attr_new(VALUE class, xmlAttrPtr xnode)
{
xnode->_private=NULL;
return ruby_xml_attr_wrap(class,xnode);
}
/*
* call-seq:
* attr.child => node
*
* Obtain this attribute's child attribute(s).
*/
VALUE
ruby_xml_attr_child_get(VALUE self) {
ruby_xml_attr_t *rxa;
Data_Get_Struct(self, ruby_xml_attr_t, rxa);
if (rxa->attr->children == NULL)
return(Qnil);
else
return(ruby_xml_node2_wrap(cXMLNode, rxa->attr->children));
}
/*
* call-seq:
* attr.child? => (true|false)
*
* Determine whether this attribute has child attributes.
*/
VALUE
ruby_xml_attr_child_q(VALUE self) {
ruby_xml_attr_t *rxa;
Data_Get_Struct(self, ruby_xml_attr_t, rxa);
if (rxa->attr->children == NULL)
return(Qfalse);
else
return(Qtrue);
}
/*
* call-seq:
* attr.doc => document
*
* Obtain the XML::Document this attribute is associated with,
* if any.
*/
VALUE
ruby_xml_attr_doc_get(VALUE self) {
ruby_xml_attr_t *rxa;
Data_Get_Struct(self, ruby_xml_attr_t, rxa);
if (rxa->attr->doc == NULL)
return(Qnil);
else
return(ruby_xml_document_wrap(cXMLDocument, rxa->attr->doc));
}
/*
* call-seq:
* attr.doc? => (true|false)
*
* Determine whether this attribute is associated with an
* XML::Document.
*/
VALUE
ruby_xml_attr_doc_q(VALUE self) {
ruby_xml_attr_t *rxa;
Data_Get_Struct(self, ruby_xml_attr_t, rxa);
if (rxa->attr->doc == NULL)
return(Qfalse);
else
return(Qtrue);
}
/*
* call-seq:
* attr.last => node
*
* Obtain the last attribute.
*/
VALUE
ruby_xml_attr_last_get(VALUE self) {
ruby_xml_attr_t *rxa;
Data_Get_Struct(self, ruby_xml_attr_t, rxa);
if (rxa->attr->last == NULL)
return(Qnil);
else
return(ruby_xml_node2_wrap(cXMLNode, rxa->attr->last));
}
/*
* call-seq:
* attr.last? => (true|false)
*
* Determine whether this is the last attribute.
*/
VALUE
ruby_xml_attr_last_q(VALUE self) {
ruby_xml_attr_t *rxa;
Data_Get_Struct(self, ruby_xml_attr_t, rxa);
if (rxa->attr->last == NULL)
return(Qfalse);
else
return(Qtrue);
}
/*
* call-seq:
* attr.name => "name"
*
* Obtain this attribute's name.
*/
VALUE
ruby_xml_attr_name_get(VALUE self) {
ruby_xml_attr_t *rxa;
Data_Get_Struct(self, ruby_xml_attr_t, rxa);
if (rxa->attr->name == NULL)
return(Qnil);
else
return(rb_str_new2((const char*)rxa->attr->name));
}
/*
* call-seq:
* attr.next => node
*
* Obtain the next attribute.
*/
VALUE
ruby_xml_attr_next_get(VALUE self) {
ruby_xml_attr_t *rxa;
Data_Get_Struct(self, ruby_xml_attr_t, rxa);
if (rxa->attr->next == NULL)
return(Qnil);
else
return(ruby_xml_attr_wrap(cXMLAttr, rxa->attr->next));
}
/*
* call-seq:
* attr.next? => (true|false)
*
* Determine whether there is a next attribute.
*/
VALUE
ruby_xml_attr_next_q(VALUE self) {
ruby_xml_attr_t *rxa;
Data_Get_Struct(self, ruby_xml_attr_t, rxa);
if (rxa->attr->next == NULL)
return(Qfalse);
else
return(Qtrue);
}
/*
* call-seq:
* attr.type_name => "attribute"
*
* Obtain this attribute node's type name.
*/
VALUE
ruby_xml_attr_node_type_name(VALUE self) {
return(rb_str_new2("attribute"));
}
/*
* call-seq:
* attr.ns => namespace
*
* Obtain this attribute's associated XML::NS, if any.
*/
VALUE
ruby_xml_attr_ns_get(VALUE self) {
ruby_xml_attr_t *rxa;
Data_Get_Struct(self, ruby_xml_attr_t, rxa);
if (rxa->attr->ns == NULL)
return(Qnil);
else
return(ruby_xml_ns_new2(cXMLNS, NULL, rxa->attr->ns));
}
/*
* call-seq:
* attr.ns? => (true|false)
*
* Determine whether this attribute has an associated
* namespace.
*/
VALUE
ruby_xml_attr_ns_q(VALUE self) {
ruby_xml_attr_t *rxa;
Data_Get_Struct(self, ruby_xml_attr_t, rxa);
if (rxa->attr->ns == NULL)
return(Qfalse);
else
return(Qtrue);
}
/*
* call-seq:
* attr.parent => node
*
* Obtain this attribute node's parent.
*/
VALUE
ruby_xml_attr_parent_get(VALUE self) {
ruby_xml_attr_t *rxa;
Data_Get_Struct(self, ruby_xml_attr_t, rxa);
if (rxa->attr->parent == NULL)
return(Qnil);
else
return(ruby_xml_node2_wrap(cXMLNode, rxa->attr->parent));
}
/*
* call-seq:
* attr.parent? => (true|false)
*
* Determine whether this attribute has a parent.
*/
VALUE
ruby_xml_attr_parent_q(VALUE self) {
ruby_xml_attr_t *rxa;
Data_Get_Struct(self, ruby_xml_attr_t, rxa);
if (rxa->attr->parent == NULL)
return(Qfalse);
else
return(Qtrue);
}
/*
* call-seq:
* attr.prev => node
*
* Obtain the previous attribute.
*/
VALUE
ruby_xml_attr_prev_get(VALUE self) {
ruby_xml_attr_t *rxa;
Data_Get_Struct(self, ruby_xml_attr_t, rxa);
if (rxa->attr->prev == NULL)
return(Qnil);
else
return(ruby_xml_attr_wrap(cXMLAttr, rxa->attr->prev));
}
/*
* call-seq:
* attr.prev? => (true|false)
*
* Determine whether there is a previous attribute.
*/
VALUE
ruby_xml_attr_prev_q(VALUE self) {
ruby_xml_attr_t *rxa;
Data_Get_Struct(self, ruby_xml_attr_t, rxa);
if (rxa->attr->prev == NULL)
return(Qfalse);
else
return(Qtrue);
}
/*
* call-seq:
* attr.value => "value"
*
* Obtain the value of this attribute.
*/
VALUE
ruby_xml_attr_value(VALUE self) {
ruby_xml_attr_t *rxa;
xmlChar *value;
Data_Get_Struct(self, ruby_xml_attr_t, rxa);
if (ruby_xml_attr_parent_q(self) == Qtrue) {
value = xmlGetProp(rxa->attr->parent, rxa->attr->name);
if (value != NULL)
return(rb_str_new2((const char*)value));
}
return(Qnil);
}
// Rdoc needs to know
#ifdef RDOC_NEVER_DEFINED
mXML = rb_define_module("XML");
#endif
void
ruby_init_xml_attr(void) {
cXMLAttr = rb_define_class_under(mXML, "Attr", rb_cObject);
rb_define_method(cXMLAttr, "child", ruby_xml_attr_child_get, 0);
rb_define_method(cXMLAttr, "child?", ruby_xml_attr_child_q, 0);
rb_define_method(cXMLAttr, "doc", ruby_xml_attr_doc_get, 0);
rb_define_method(cXMLAttr, "doc?", ruby_xml_attr_doc_q, 0);
rb_define_method(cXMLAttr, "last", ruby_xml_attr_last_get, 0);
rb_define_method(cXMLAttr, "last?", ruby_xml_attr_last_q, 0);
rb_define_method(cXMLAttr, "name", ruby_xml_attr_name_get, 0);
rb_define_method(cXMLAttr, "next", ruby_xml_attr_next_get, 0);
rb_define_method(cXMLAttr, "next?", ruby_xml_attr_next_q, 0);
rb_define_method(cXMLAttr, "node_type_name", ruby_xml_attr_node_type_name, 0);
rb_define_method(cXMLAttr, "ns", ruby_xml_attr_ns_get, 0);
rb_define_method(cXMLAttr, "ns?", ruby_xml_attr_ns_q, 0);
rb_define_method(cXMLAttr, "parent", ruby_xml_attr_parent_get, 0);
rb_define_method(cXMLAttr, "parent?", ruby_xml_attr_parent_q, 0);
rb_define_method(cXMLAttr, "prev", ruby_xml_attr_prev_get, 0);
rb_define_method(cXMLAttr, "prev?", ruby_xml_attr_prev_q, 0);
rb_define_method(cXMLAttr, "value", ruby_xml_attr_value, 0);
}
|