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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
|
#include "ruby_libxml.h"
#include "ruby_xml.h"
#include <libxml/catalog.h>
VALUE mXML;
/*
* call-seq:
* XML.catalog_dump -> true
*
* Dump all the global catalog content stdout.
*/
static VALUE rxml_catalog_dump(VALUE self)
{
xmlCatalogDump(stdout);
return (Qtrue);
}
/*
* call-seq:
* XML.catalog_remove(catalog) -> true
*
* Remove the specified resource catalog.
*/
static VALUE rxml_catalog_remove(VALUE self, VALUE cat)
{
Check_Type(cat, T_STRING);
xmlCatalogRemove((xmlChar *) StringValuePtr(cat));
return (Qtrue);
}
/*
* call-seq:
* XML.check_lib_versions -> true
*
* Check LIBXML version matches version the bindings
* were compiled to. Throws an exception if not.
*/
static VALUE rxml_check_lib_versions(VALUE klass)
{
xmlCheckVersion(LIBXML_VERSION);
return (Qtrue);
}
/*
* call-seq:
* XML.enabled_automata? -> (true|false)
*
* Determine whether libxml regexp automata support is enabled.
*/
static VALUE rxml_enabled_automata_q(VALUE klass)
{
#ifdef LIBXML_AUTOMATA_ENABLED
return(Qtrue);
#else
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.enabled_c14n? -> (true|false)
*
* Determine whether libxml 'canonical XML' support is enabled.
* See "Canonical XML" (http://www.w3.org/TR/xml-c14n)
*/
static VALUE rxml_enabled_c14n_q(VALUE klass)
{
#ifdef LIBXML_C14N_ENABLED
return(Qtrue);
#else
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.enabled_catalog? -> (true|false)
*
* Determine whether libxml resource catalog support is enabled.
*/
static VALUE rxml_enabled_catalog_q(VALUE klass)
{
#ifdef LIBXML_CATALOG_ENABLED
return(Qtrue);
#else
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.enabled_debug? -> (true|false)
*
* Determine whether libxml debugging support is enabled.
*/
static VALUE rxml_enabled_debug_q(VALUE klass)
{
#ifdef LIBXML_DEBUG_ENABLED
return(Qtrue);
#else
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.enabled_docbook? -> (true|false)
*
* Determine whether libxml docbook support is enabled.
*/
static VALUE rxml_enabled_docbook_q(VALUE klass)
{
#ifdef LIBXML_DOCB_ENABLED
return(Qtrue);
#else
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.enabled_ftp? -> (true|false)
*
* Determine whether libxml ftp client support is enabled.
*/
static VALUE rxml_enabled_ftp_q(VALUE klass)
{
#ifdef LIBXML_FTP_ENABLED
return(Qtrue);
#else
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.enabled_http? -> (true|false)
*
* Determine whether libxml http client support is enabled.
*/
static VALUE rxml_enabled_http_q(VALUE klass)
{
#ifdef LIBXML_HTTP_ENABLED
return(Qtrue);
#else
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.enabled_html? -> (true|false)
*
* Determine whether libxml html support is enabled.
*/
static VALUE rxml_enabled_html_q(VALUE klass)
{
#ifdef LIBXML_HTML_ENABLED
return(Qtrue);
#else
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.enabled_iconv? -> (true|false)
*
* Determine whether libxml iconv support is enabled.
*/
static VALUE rxml_enabled_iconv_q(VALUE klass)
{
#ifdef LIBXML_ICONV_ENABLED
return(Qtrue);
#else
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.enabled_memory_debug? -> (true|false)
*
* Determine whether libxml memory location debugging support
* is enabled.
*/
static VALUE rxml_enabled_memory_debug_location_q(VALUE klass)
{
#ifdef DEBUG_MEMORY_LOCATION
return(Qtrue);
#else
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.enabled_regexp? -> (true|false)
*
* Determine whether libxml regular expression support is enabled.
*/
static VALUE rxml_enabled_regexp_q(VALUE klass)
{
#ifdef LIBXML_REGEXP_ENABLED
return(Qtrue);
#else
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.enabled_schemas? -> (true|false)
*
* Determine whether libxml schema support is enabled.
*/
static VALUE rxml_enabled_schemas_q(VALUE klass)
{
#ifdef LIBXML_SCHEMAS_ENABLED
return(Qtrue);
#else
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.enabled_thread? -> (true|false)
*
* Determine whether thread-safe semantics support for libxml is enabled and
* is used by this ruby extension. Threading support in libxml uses pthread
* on Unix-like systems and Win32 threads on Windows.
*/
static VALUE rxml_enabled_thread_q(VALUE klass)
{
/* This won't be defined unless this code is compiled with _REENTRANT or __MT__
* defined or the compiler is in C99 mode.
*
* Note the relevant portion libxml/xmlversion.h on a thread-enabled build:
*
* #if defined(_REENTRANT) || defined(__MT__) || \
* (defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE - 0 >= 199506L))
* #define LIBXML_THREAD_ENABLED
* #endif
*
*/
#ifdef LIBXML_THREAD_ENABLED
return(Qtrue);
#else
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.enabled_unicode? -> (true|false)
*
* Determine whether libxml unicode support is enabled.
*/
static VALUE rxml_enabled_unicode_q(VALUE klass)
{
#ifdef LIBXML_UNICODE_ENABLED
return(Qtrue);
#else
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.enabled_xinclude? -> (true|false)
*
* Determine whether libxml xinclude support is enabled.
*/
static VALUE rxml_enabled_xinclude_q(VALUE klass)
{
#ifdef LIBXML_XINCLUDE_ENABLED
return(Qtrue);
#else
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.enabled_xpath? -> (true|false)
*
* Determine whether libxml xpath support is enabled.
*/
static VALUE rxml_enabled_xpath_q(VALUE klass)
{
#ifdef LIBXML_XPATH_ENABLED
return(Qtrue);
#else
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.enabled_xpointer? -> (true|false)
*
* Determine whether libxml xpointer support is enabled.
*/
static VALUE rxml_enabled_xpointer_q(VALUE klass)
{
#ifdef LIBXML_XPTR_ENABLED
return(Qtrue);
#else
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.enabled_zlib? -> (true|false)
*
* Determine whether libxml zlib support is enabled.
*/
static VALUE rxml_enabled_zlib_q(VALUE klass)
{
#ifdef HAVE_ZLIB_H
return(Qtrue);
#else
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.default_tree_indent_string -> "string"
*
* Obtain the default string used by parsers to indent the XML tree
* for output.
*/
static VALUE rxml_default_tree_indent_string_get(VALUE klass)
{
if (xmlTreeIndentString == NULL)
return (Qnil);
else
return (rb_str_new2(xmlTreeIndentString));
}
/*
* call-seq:
* XML.default_tree_indent_string = "string"
*
* Set the default string used by parsers to indent the XML tree
* for output.
*/
static VALUE rxml_default_tree_indent_string_set(VALUE klass, VALUE string)
{
Check_Type(string, T_STRING);
xmlTreeIndentString = (const char *)xmlStrdup((xmlChar *)StringValuePtr(string));
return (string);
}
/*
* call-seq:
* XML.default_compression -> (true|false)
*
* Determine whether parsers use Zlib compression by default
* (requires libxml to be compiled with Zlib support).
*/
static VALUE rxml_default_compression_get(VALUE klass)
{
#ifdef HAVE_ZLIB_H
return(INT2FIX(xmlGetCompressMode()));
#else
rb_warn("libxml was compiled without zlib support");
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.default_compression = true|false
*
* Controls whether parsers use Zlib compression by default
* (requires libxml to be compiled with Zlib support).
*/
static VALUE rxml_default_compression_set(VALUE klass, VALUE num)
{
#ifdef HAVE_ZLIB_H
Check_Type(num, T_FIXNUM);
xmlSetCompressMode(FIX2INT(num));
return(num);
#else
rb_warn("libxml was compiled without zlib support");
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.default_save_no_empty_tags -> (true|false)
*
* Determine whether serializer outputs empty tags by default.
*/
static VALUE rxml_default_save_no_empty_tags_get(VALUE klass)
{
if (xmlSaveNoEmptyTags)
return (Qtrue);
else
return (Qfalse);
}
/*
* call-seq:
* XML.default_save_no_empty_tags = true|false
*
* Controls whether serializer outputs empty tags by default.
*/
static VALUE rxml_default_save_no_empty_tags_set(VALUE klass, VALUE value)
{
if (value == Qfalse)
{
xmlSaveNoEmptyTags = 0;
return (Qfalse);
}
else if (value == Qtrue)
{
xmlSaveNoEmptyTags = 1;
return (Qtrue);
}
else
{
rb_raise(rb_eArgError, "Invalid argument, must be a boolean");
}
}
/*
* call-seq:
* XML.indent_tree_output -> (true|false)
*
* Determines whether XML output will be indented
* (using the string supplied to +default_indent_tree_string+)
*/
static VALUE rxml_indent_tree_output_get(VALUE klass)
{
if (xmlIndentTreeOutput)
return (Qtrue);
else
return (Qfalse);
}
/*
* call-seq:
* XML.indent_tree_output = true|false
*
* Controls whether XML output will be indented
* (using the string supplied to +default_indent_tree_string+)
*/
static VALUE rxml_indent_tree_output_set(VALUE klass, VALUE value)
{
if (value == Qtrue)
{
xmlIndentTreeOutput = 1;
return (Qtrue);
}
else if (value == Qfalse)
{
xmlIndentTreeOutput = 0;
return (Qfalse);
}
else
{
rb_raise(rb_eArgError, "Invalid argument, must be boolean");
}
}
/*
* call-seq:
* XML.memory_dump -> (true|false)
*
* Perform a parser memory dump (requires memory debugging
* support in libxml).
*/
static VALUE rxml_memory_dump(VALUE self)
{
#ifdef DEBUG_MEMORY_LOCATION
xmlMemoryDump();
return(Qtrue);
#else
rb_warn("libxml was compiled without memory debugging support");
return (Qfalse);
#endif
}
/*
* call-seq:
* XML.memory_used -> num_bytes
*
* Perform a parser memory dump (requires memory debugging
* support in libxml).
*/
static VALUE rxml_memory_used(VALUE self)
{
#ifdef DEBUG_MEMORY_LOCATION
return(INT2NUM(xmlMemUsed()));
#else
rb_warn("libxml was compiled without memory debugging support");
return (Qfalse);
#endif
}
/* The libxml gem provides Ruby language bindings for GNOME's Libxml2
* XML toolkit. Refer to the README file to get started
* and the LICENSE file for copyright and distribution information.
*/
void rxml_init_xml(void)
{
mXML = rb_define_module_under(mLibXML, "XML");
/* Constants */
rb_define_const(mXML, "LIBXML_VERSION", rb_str_new2(LIBXML_DOTTED_VERSION));
rb_define_const(mXML, "VERSION", rb_str_new2(RUBY_LIBXML_VERSION));
rb_define_const(mXML, "VERNUM", INT2NUM(RUBY_LIBXML_VERNUM));
rb_define_const(mXML, "XML_NAMESPACE", rb_str_new2((const char*) XML_XML_NAMESPACE));
rb_define_module_function(mXML, "enabled_automata?", rxml_enabled_automata_q, 0);
rb_define_module_function(mXML, "enabled_c14n?", rxml_enabled_c14n_q, 0);
rb_define_module_function(mXML, "enabled_catalog?", rxml_enabled_catalog_q, 0);
rb_define_module_function(mXML, "enabled_debug?", rxml_enabled_debug_q, 0);
rb_define_module_function(mXML, "enabled_docbook?", rxml_enabled_docbook_q, 0);
rb_define_module_function(mXML, "enabled_ftp?", rxml_enabled_ftp_q, 0);
rb_define_module_function(mXML, "enabled_http?", rxml_enabled_http_q, 0);
rb_define_module_function(mXML, "enabled_html?", rxml_enabled_html_q, 0);
rb_define_module_function(mXML, "enabled_iconv?", rxml_enabled_iconv_q, 0);
rb_define_module_function(mXML, "enabled_memory_debug?", rxml_enabled_memory_debug_location_q, 0);
rb_define_module_function(mXML, "enabled_regexp?", rxml_enabled_regexp_q, 0);
rb_define_module_function(mXML, "enabled_schemas?", rxml_enabled_schemas_q, 0);
rb_define_module_function(mXML, "enabled_thread?", rxml_enabled_thread_q, 0);
rb_define_module_function(mXML, "enabled_unicode?", rxml_enabled_unicode_q, 0);
rb_define_module_function(mXML, "enabled_xinclude?", rxml_enabled_xinclude_q, 0);
rb_define_module_function(mXML, "enabled_xpath?", rxml_enabled_xpath_q, 0);
rb_define_module_function(mXML, "enabled_xpointer?", rxml_enabled_xpointer_q, 0);
rb_define_module_function(mXML, "enabled_zlib?", rxml_enabled_zlib_q, 0);
rb_define_module_function(mXML, "catalog_dump", rxml_catalog_dump, 0);
rb_define_module_function(mXML, "catalog_remove", rxml_catalog_remove, 1);
rb_define_module_function(mXML, "check_lib_versions", rxml_check_lib_versions, 0);
rb_define_module_function(mXML, "default_compression", rxml_default_compression_get, 0);
rb_define_module_function(mXML, "default_compression=", rxml_default_compression_set, 1);
rb_define_module_function(mXML, "default_tree_indent_string", rxml_default_tree_indent_string_get, 0);
rb_define_module_function(mXML, "default_tree_indent_string=", rxml_default_tree_indent_string_set, 1);
rb_define_module_function(mXML, "default_save_no_empty_tags", rxml_default_save_no_empty_tags_get, 0);
rb_define_module_function(mXML, "default_save_no_empty_tags=", rxml_default_save_no_empty_tags_set, 1);
rb_define_module_function(mXML, "indent_tree_output", rxml_indent_tree_output_get, 0);
rb_define_module_function(mXML, "indent_tree_output=", rxml_indent_tree_output_set, 1);
rb_define_module_function(mXML, "memory_dump", rxml_memory_dump, 0);
rb_define_module_function(mXML, "memory_used", rxml_memory_used, 0);
}
|